This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
forked from tyjo/coptr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (54 loc) · 1.58 KB
/
setup.cfg
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
[metadata]
name = coptr
version = attr: coptr.__version__
url = https://github.com/tyjo/coptr
download_url = https://pypi.org/project/coptr/
project_urls =
Source Code = https://github.com/tyjo/coptr
Documentation = https://coptr.readthedocs.io
Bug Tracker = https://github.com/tyjo/coptr/issues
author = Tyler Joseph
author_email = tj2357@columbia.edu
# Please consult https://pypi.org/classifiers/ for a full list.
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Bio-Informatics
license = GPL-3.0-or-later
description = Accurate and robust inference of microbial growth dynamics from metagenomic sequencing reads.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
growth rate
peak-to-trough ratio
[options]
zip_safe = True
install_requires =
numpy >= 1.19.1
pysam >= 0.16.0.1
scipy >= 1.5.2
matplotlib >= 3.3.2
python_requires = >=3.6
tests_require =
tox
packages = find:
package_dir =
= src
[options.entry_points]
console_scripts =
coptr = coptr.cli:cli
[options.packages.find]
where = src
[options.extras_require]
development =
black
isort