-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.17 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
[metadata]
name = torchtree
url = https://github.com/4ment/torchtree
author = Mathieu Fourment
author_email = [email protected]
keywords = phylogenetics, variational, Bayes, pytorch
description = Phylogenetic inference with pytorch
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL3
license_file = LICENSE
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
python_requires = >=3.7
packages = find:
package_dir =
=.
install_requires =
dendropy
numpy>=1.7
torch>=1.9
[options.entry_points]
console_scripts =
torchtree = torchtree.torchtree:main
torchtree-cli = torchtree.cli.cli:main
[options.extras_require]
dev =
black
flake8
isort
pylint
test =
pytest
[flake8]
max-line-length = 88
ignore = E203, W503
per-file-ignores =
__init__.py: F401