-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.1 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
from setuptools import setup
# This value will be reassigned when version.py is parsed
__version__ = "x.x.x"
exec(open("flutile/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="flutile",
version=__version__,
description="sequence analysis tools for flu research",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flu-crew/flutile",
author="Zebulun Arendsee",
author_email="[email protected]",
packages=["flutile"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["flutile=flutile.ui:main"]},
install_requires=requirements,
py_modules=["flutile"],
zip_safe=False,
package_data={"flutile": ["py.typed"]},
include_package_data=True,
)