forked from IRC-SPHERE/HyperStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.02 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
from setuptools import setup, find_packages
from distutils.util import convert_path
with open("README", 'r') as f:
long_description = f.read()
main_ns = {}
ver_path = convert_path('hyperstream/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
with open('requirements.txt') as f:
required = f.read().splitlines()
description = (
'Hyperstream is a large-scale, '
'flexible and robust software '
'package for processing streaming data'
)
authors = [
'Tom Diethe',
'Meelis Kull',
'Niall Twomey',
'Kacper Sokol',
'Hao Song',
'Miquel Perello-Nieto',
'Emma Tonkin',
'Peter Flach'
]
packages = find_packages()
setup(
name='hyperstream',
version=main_ns['__version__'],
description=description,
license="MIT",
long_description=long_description,
author='; '.join(authors),
author_email='[email protected]',
url="https://irc-sphere.github.io/HyperStream/",
packages=packages,
install_requires=required,
scripts=[]
)