-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (54 loc) · 1.46 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
53
54
55
56
from setuptools import setup
tests_require = [
'SpreadFlowCore[tests]',
'SpreadFlowDelta[tests]',
'SpreadFlowFormatBSON',
'fixtures',
'mock',
'testtools',
]
setup(
name='SpreadFlowObserverFS',
version='0.0.1',
description='Filesystem observer for SpreadFlow metadata extraction and processing engine',
author='Lorenz Schori',
author_email='[email protected]',
url='https://github.com/znerol/spreadflow-observer-fs',
packages=[
'spreadflow_observer_fs',
'spreadflow_observer_fs.test',
'twisted.plugins'
],
package_data={
'twisted.plugins': [
'twisted/plugins/spreadflow_observer_fs_endpoint.py',
]
},
entry_points={
'console_scripts': [
'spreadflow-observer-fs-default = spreadflow_observer_fs.script:main',
]
},
install_requires=[
'SpreadFlowCore',
'SpreadFlowFormatBSON',
'pathtools',
'pymongo',
'watchdog'
],
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'
],
)