-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·44 lines (38 loc) · 1.3 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
#! /usr/bin/env python3
# PropagAtE
# Author: Kristopher Kieft
# University of Wisconsin-Madison
import setuptools
def get_descript():
with open("README.md", "r") as dfile:
d = dfile.read()
return d
def get_version():
with open("VERSION", 'r') as vfile:
v = vfile.readline().strip()
return v
def do_setup(v, d):
setuptools.setup(
name="PropagAtE",
version=v,
author="Kristopher Kieft",
author_email="[email protected]",
description="PropagAtE: Prophage Activity Estimator",
long_description_content_type="text/markdown",
url="https://github.com/AnantharamanLab/PropagAtE",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPLv3)"
],
install_requires=['numpy>=1.17.0', 'pysam>=0.15', 'numba>=0.50.0'],
keywords=["bioinformatics", "metagenomics", "virus", "prophage"],
python_requires=">=3.6",
scripts=['Propagate/Propagate', 'Propagate/modules.py'],
packages=setuptools.find_packages(),
license='GPLv3',
long_description=d
)
if __name__ == "__main__":
do_setup(get_version(), get_descript())