-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (40 loc) · 1010 Bytes
/
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
[metadata]
name = phylopytho
version = 1.0.01
author = Casey Dunn
author_email = casey.dunn@yale.edu
description = Tools for phylogenetic analysis
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dunnlab/phylopytho
project_urls =
Bug Tracker = https://github.com/dunnlab/phylopytho/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GPL3 License
Operating System :: OS Independent
[options]
include_package_data = True
package_dir =
= .
packages = find:
python_requires = >=3.6
setup_requires =
setuptools
install_requires =
dendropy
[options.extras_require]
dev =
pytest
black == 21.7b0
flake8 == 3.9.2
pre-commit == 2.13.0
[options.package_data]
phylopytho = data/*.tre
[options.entry_points]
console_scripts =
treeprune = phylopytho.treeprune:main
[options.packages.find]
where = .
[aliases]
test = pytest [test]