-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.2 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
from setuptools import setup
from octofludb.version import __version__
# Initialize version variable for the linter, it will be assigned when version.py is evaluated
__version__ : str
exec(open('octofludb/version.py', "r").read())
# Read the requirements from the requirements.txt file
with open("requirements.txt", "r") as fh:
requirements = [r.strip() for r in fh.readlines()]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="octofludb",
version=__version__,
description="Mangage the flu-crew swine surveillance database",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flu-crew/octofludb",
author="Zebulun Arendsee",
author_email="[email protected]",
packages=["octofludb"],
package_data={"octofludb": ["py.typed"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["octofludb=octofludb.ui:main"]},
install_requires=requirements,
py_modules=["octofludb"],
zip_safe=False,
include_package_data=True,
)