forked from alehenaff/django-states2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (25 loc) · 914 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
#!/usr/bin/env python
import os.path
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.path.dirname(__file__))
setup(
name="django-states2",
version='1.6.10',
url='https://github.com/vikingco/django-states2',
license='BSD',
description="State machine for django models",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Jonathan Slenders, Gert van Gool, Maarten Timmerman, Steven (rh0dium), Beyonic Inc',
author_email='info@beyonic.com',
packages=find_packages('.', exclude=['test_proj',]),
#package_dir={'': 'templates/*'},
test_suite='test_proj.runtests.main',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
],
)