-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (53 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
"""
Uses python3.
Email: dr.mark.schultz@gmail.com
Github: schultzm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from setuptools import setup, find_packages
import havic
LONG_DESCRIPTION = open("README.md").read()
setup(
name=havic.__name__,
version=havic.__version__,
packages=find_packages(),
entry_points={
"console_scripts": [
"havic = havic.__main__:main"
]
},
description=havic.__description__,
long_description=LONG_DESCRIPTION,
classifiers=["Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General " +
"Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Intended Audience :: Science/Research"],
keywords=["Hepatitis A Virus",
"transmission",
"cluster"],
download_url=havic.__install__,
author=havic.__author__,
author_email=havic.__author_email__,
license=havic.__license__,
package_data={"": ["*.fa*",
"*.gbk",
"*.bed",
"*.fai",
"*.png",
"*.svg",
"*.tsv"]},
install_requires=[#see environment.yml for python deps file
],
)