-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 960 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
33
from setuptools import setup
setup(
name='SpreadFlowConfviz',
version='0.0.1',
description='Configuration visualization tool for SpreadFlow metadata extraction and processing engine',
author='Lorenz Schori',
author_email='[email protected]',
url='https://github.com/znerol/spreadflow-confviz',
packages=[
'spreadflow_confviz',
],
entry_points={
'console_scripts': [
'spreadflow-confviz = spreadflow_confviz:main'
]
},
install_requires=[
'SpreadFlowCore',
'graphviz',
],
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia'
],
)