-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.22 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/catleg/_version.py"
[project]
name = "catleg"
description = "A library of helper tools for catala programming in the context of French legislative texts."
requires-python = ">=3.10"
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"aiometer",
"dynaconf",
"httpx",
"markdownify", # convert pre-formatted HTML from Legifrance to markdown for skeletons
"markdown-it-py[plugins]>=3.0.0",
"mdformat>=0.7.16",
"more-itertools",
"typer>=0.12.1",
"typing-extensions"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"hatch",
"mypy",
"myst-parser",
"pre-commit",
"pytest",
"ruff",
"sphinx",
"sphinx-rtd-theme",
"tox",
]
[project.scripts]
catleg = "catleg.catleg:main"
[project.urls]
"Homepage" = "https://github.com/CatalaLang/catleg/"
"Bug Tracker" = "https://github.com/CatalaLang/catleg/issues"
[tool.ruff]
select = ["E", "F", "T100", "UP"]