-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.28 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
import sys, os
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
import ipcharfield
setup(
name="django-ipcharfield",
version=ipcharfield.__version__,
url="https://github.com/InvGate/django-ipcharfield/",
author="Leutwyler Nicolas",
author_email="ramshellcinox@gmail.com",
license="MIT",
description="IPs with str storage for django models allowing stringlike operations such as icontains",
long_description=open('README.md').read(),
keywords="ip, models, django",
packages=["ipcharfield"],
setup_requires=["setuptools"],
install_requires=("setuptools", "netaddr", "django",),
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",),
)