-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.06 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
[tool.poetry]
name = "pyGedcomX"
version = "0" # managed by plugin
description = "GEDCOM X toolbox for Python"
authors = ["Dominik Kozaczko <dominik@kozaczko.info>"]
license = "Apache-2.0"
packages = [
{ include = "gedcomx" },
]
readme = "README.rst"
repository = "https://github.com/dekoza/pyGedcomX"
keywords = ["genealogy"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Topic :: Sociology :: Genealogy",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
importlib-metadata = {version = "^1.0", python = "<3.8"}
pendulum = "^2.1.2"
pydantic = "^1.9.1"
language-tags = "^1.1.0"
lark-parser = "^0.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.15.0"
black = "^22.3.0"
ipython = "^8.3.0"
ipdb = "^0.13.9"
rstcheck = "^5.0.0"
Sphinx = "^4.5.0"
pyupgrade = "^2.32.1"
autoflake = "^1.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
[tool.isort]
profile = "black"
src_paths = ["gedcomx", "tests"]
[tool.poetry-version-plugin]
source = "init"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.masonry.api"