-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.19 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.19 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ctDNAtool",
version="0.0.1",
author="Per Høgfeldt",
description="A software for creating and manipulating statistics from ctDNA data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hogfeldt/ctDNAtool",
packages=find_packages("src"),
package_dir={"": "src"},
test_suite="test",
install_requires=[
"pysam", # 0.15.4
"numpy", # 1.18.1
"attrs", # 19.3.0
"click>=7.0",
"py2bit",
# "pandas", # 1.0.3
# "matplotlib", #3.2.1
# "seaborn", #0.10.1
"scipy", # 1.4.1
"natsort",
],
entry_points={
"console_scripts": [
"ctDNAtool = ctDNAtool.cli:cli",
"ctDNAflow = ctDNAtool.cli_flow:cli_flow",
]
},
include_package_data=True,
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)