-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (31 loc) · 1.21 KB
/
setup.py
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 cidrfield
setup(
name="django-cidrfield",
version=cidrfield.__version__,
url="https://github.com/Werneror/django-cidrfield",
author="Werner",
author_email="[email protected]",
license="MIT",
description="Proper CIDR fields for Django running on any database",
long_description=open('README.rst').read(),
keywords="ip, cidr, models, django",
packages=["cidrfield"],
setup_requires=["setuptools"],
install_requires=("setuptools", "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",),
)