forked from pytransitions/transitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (52 loc) · 1.97 KB
/
setup.py
File metadata and controls
58 lines (52 loc) · 1.97 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import codecs
import sys
from setuptools import setup, find_packages
with open('transitions/version.py') as f:
exec(f.read())
with codecs.open('README.md', 'r', 'utf-8') as f:
# cut the badges from the description and also the TOC which is currently not working on PyPi
long_description = ''.join(f.readlines()[49:])
if len(set(('test', 'easy_install')).intersection(sys.argv)) > 0:
import setuptools
tests_require = ['dill', 'pygraphviz']
extras_require = {'diagrams': ['pygraphviz']}
extra_setuptools_args = {}
if 'setuptools' in sys.modules:
extras_require['test'] = ['nose>=0.10.1']
tests_require.append('nose')
extra_setuptools_args = dict(
test_suite='nose.collector',
)
setup(
name="transitions",
version=__version__,
description="A lightweight, object-oriented Python state machine implementation.",
long_description=long_description,
long_description_content_type="text/markdown",
author='Tal Yarkoni',
author_email='tyarkoni@gmail.com',
maintainer='Alexander Neumann',
maintainer_email='aleneum@gmail.com',
url='http://github.com/pytransitions/transitions',
packages=find_packages(exclude=['tests', 'test_*']),
package_data={'transitions': ['data/*'],
'transitions.tests': ['data/*']
},
include_package_data=True,
install_requires=['six'],
extras_require=extras_require,
tests_require=tests_require,
license='MIT',
download_url='https://github.com/pytransitions/transitions/archive/%s.tar.gz' % __version__,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
**extra_setuptools_args
)