-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 877 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
27
28
29
30
31
32
from setuptools import setup, find_packages
from state_field import __version__
install_requires = [
'Django>=1.4.2',
'mock==1.0.1',
]
setup(
name='django-state-field',
version=__version__,
description='Django custom field for changing states',
author='iMom0',
author_email='mobeiheart@gmail.com',
url='https://github.com/imom0/django-state-field',
license='BSD',
test_suite="runtests.runtests",
test_requirements=['mock==1.0.1'],
package_dir={'': 'state_field'},
packages=find_packages('state_field'),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development'
]
)