-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (27 loc) · 1.23 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
#!/usr/bin/env python3
#default libraries
import setuptools
import os
if __name__ == "__main__":
req = open(os.path.join(os.path.dirname(__file__), "requirements.txt")).readlines()
reqs = []
for r in req:
if r.startswith("python"):
continue#ignore python dependency, which is there for conda
reqs.append(r.strip().split(">")[0])
setuptools.setup(
name="drawbank",
version=open(os.path.join(os.path.dirname(__file__), "VERSION")).read().rstrip(),
url="https://github.com/axbazin/drawbank",
description="Draws the number of available genomes in GenBank or RefSeq through time",
packages=setuptools.find_packages(),
install_requires=reqs,
classifiers=["Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
entry_points={"console_scripts":["drawbank = drawbank.drawbank:main"]},
)