forked from charettes/django-colorful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (37 loc) · 1.35 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
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
from colorful import VERSION
github_url = 'https://github.com/charettes/django-colorful'
setup(
name='django-colorful',
version='.'.join(str(v) for v in VERSION),
description='An extension to the Django web framework that provides database and form color fields',
long_description=open('README.markdown').read(),
url=github_url,
author='Simon Charette',
author_email='[email protected]',
requires=[
'Django (>=1.7)',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license='MIT License',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)