forked from beirbear/HarmonicIO
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1004 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 1004 Bytes
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
from setuptools import setup
setup(name='harmonicIO',
description='Lightweight stream processing engine for scientific data',
version='0.3.0',
install_requires=['falcon', # Web Framework
'urllib3>=1.22',
'docker'],
packages=['harmonicIO',
'harmonicIO.stream_connector',
'harmonicIO.general',
'harmonicIO.master',
'harmonicIO.worker'],
entry_points={
'console_scripts': [
'stream_connector = harmonicIO.stream_connector.__main__:main',
'master = harmonicIO.master.__main__:main',
'worker = harmonicIO.worker.__main__:main',
'play = harmonicIO.play.__main__:main'
]
},
test_requires=[
'pytest'
],
project_urls={
'source': 'https://github.com/HASTE-project/HarmonicIO',
'homepage': 'http://haste.research.it.uu.se/',
},
)