-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
tests_require = [
'mock',
'testtools'
]
setup(
name='SpreadFlowCore',
version='0.0.1',
description='Metadata extraction and processing engine',
author='Lorenz Schori',
author_email='lo@znerol.ch',
url='https://github.com/znerol/spreadflow-core',
packages=[
'spreadflow_core',
'spreadflow_core.dsl',
'spreadflow_core.scripts',
'spreadflow_core.test',
'twisted.plugins'
],
package_data={
'twisted.plugins': [
'twisted/plugins/spreadflow_core_service.py',
]
},
entry_points={
'console_scripts': [
'spreadflow-twistd = spreadflow_core.scripts.spreadflow_twistd:main',
]
},
install_requires=[
'Twisted',
'toposort',
'zope.interface'
],
tests_require=tests_require,
extras_require={
'tests': tests_require
},
zip_safe=False,
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'
],
)