-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.7 KB
/
pyproject.toml
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
[tool.poetry]
name = "teiphy"
version = "0.1.20"
description = "Converts TEI XML collations to NEXUS and other formats"
authors = ["Joey McCollum and Robert Turnbull"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/jjmccollum/teiphy"
repository = "https://github.com/jjmccollum/teiphy"
documentation = "https://jjmccollum.github.io/teiphy/"
keywords = ["Python", "phylogenetics", "text encoding", "TEI", "NEXUS"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.9"
lxml = "^4.9.3"
numpy = "^1.23.2"
pandas = "^1.4.4"
openpyxl = "^3.0.10"
typer = "^0.6.1"
rich = "^12.5.1"
python-slugify = "^6.1.2"
Jinja2 = "^3.1.5"
setuptools = "^70.0.0"
[tool.poetry.group.dev.dependencies]
Sphinx = "^7.0.0"
pytest = "^7.2.0"
coverage = "^6.4.4"
nbsphinx = "^0.8.9"
sphinx-rtd-theme = "^1.0.0"
sphinx-autobuild = "^2021.3.14"
pre-commit = "^2.15.0"
sphinx-copybutton = "^0.4.0"
black = "^24.3.0"
sphinxcontrib-bibtex = "^2.4.1"
sphinx-click = {git = "https://github.com/rbturnbull/sphinx-click.git"}
tornado = "^6.4.2"
requests = "^2.32.0"
idna = "^3.7"
urllib3 = "^2.2.2"
zipp = "^3.19.1"
[tool.black]
line-length = 120
skip_string_normalization = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
teiphy = "teiphy.main:app"