-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (41 loc) · 1.33 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
from setuptools import setup, find_packages
__version__ = "1.0"
with open("turboseti_stream/version.py", "w") as fh:
fh.write("TURBOSETI_STREAM_VERSION = '{}'\n".format(__version__))
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_requires = fh.readlines()
with open("requirements_test.txt", "r") as fh:
test_requirements = fh.readlines()
entry_points = {
'console_scripts' : []
}
package_data={
'turboseti_stream': []
}
setup(
name="turboseti_stream",
version=__version__,
packages=find_packages(),
package_data=package_data,
include_package_data=True,
install_requires=install_requires,
tests_require=test_requirements,
entry_points=entry_points,
author="Seti Breakthrough Listen",
description="Streaming data front-end to turbo_seti",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT License",
keywords="astronomy",
url="https://github.com/UCBerkeleySETI/turboseti_stream",
zip_safe=False,
options={"bdist_wheel": {"universal": "1"}},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
)