forked from willseward/django-custom-field
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 924 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "django-custom-field",
version = "2.9",
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',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"License :: OSI Approved :: MIT License",
],
)