-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
30 lines (29 loc) · 1.08 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
from setuptools import find_packages, setup
setup(
name="django-custom-field",
version="3.0",
author="David Burke",
author_email="[email protected]",
description=("End user custom fields for Django including contrib.admin support"),
license="MIT",
keywords="django admin",
url="http://github.com/willseward/django-custom-field",
packages=find_packages(),
include_package_data=True,
install_requires=["django"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
],
)