-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (42 loc) · 1.42 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
packages = find_packages()
package_data = {"utils": ["utils/*"]}
data_files = [(".", ["LICENSE", "README.md"])]
setup(
name="vstrains",
version="1.1.0",
zip_safe=True,
author="Runpeng Luo and Yu Lin",
author_email="[email protected]",
description="VStrains: De Novo Reconstruction of Viral Strains via Iterative Path Extraction From Assembly Graphs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/metagentools/VStrains",
license="MIT",
packages=packages,
package_data=package_data,
data_files=data_files,
include_package_data=True,
scripts=["vstrains"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
],
install_requires=[
# "graph-tool", # not distributed via Pip
# "minimap2", # not distributed via Pip
"numpy",
"gfapy",
"matplotlib",
],
python_requires=">=3",
)