-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (59 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
73 lines (59 loc) · 1.78 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup
def get_version():
with open("koverage/VERSION", "r") as f:
return f.readline().strip()
def get_description():
with open("README.md", "r") as f:
long_description = f.read()
return long_description
data_files = [(".", ["README.md"])]
CLASSIFIERS = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT license",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
packages = ["koverage", "koverage.scripts"]
package_data = {
"koverage": ["*.py"],
"koverage.scripts": ["*.py"]
}
setup(
name="koverage",
packages=packages,
url="https://github.com/beardymcjohnface/Koverage",
python_requires=">=3.10",
description="Quickly get coverage statistics given reads and an assembly",
long_description=get_description(),
long_description_content_type="text/markdown",
version=get_version(),
author="Michael Roach",
author_email="beardymcjohnface@gmail.com",
data_files=data_files,
package_data=package_data,
install_requires=[
"snaketool-utils>=0.0.5",
"metasnek>=0.0.8",
"snakemake>=7.29,<8",
"pulp<2.8",
"pyyaml>=6.0",
"Click>=8.1.3",
"zstandard>=0.21.0",
"numpy>=1.24.3",
"datapane>=0.16.7",
"plotly>=5.15.0",
],
entry_points={
"console_scripts": [
"koverage=koverage.__main__:main"
]
},
include_package_data=True,
)