forked from rdassignies/pylegifrance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 836 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pylegifrance"
version = "0.0.3a1"
description = "Librairie qui fournit des fonctions simples pour rechercher dans legifrance"
dependencies = [
"pydantic>=2",
"requests",
"PyYAML",
]
requires-python = ">=3.8"
readme = "readme.md"
authors = [{name = "Raphaël d'Assignies", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/rdassignies/pylegifrance"
[project.optional-dependencies]
dev = ["pytest>=7.0", "twine>=4.0.2"]
[tool.setuptools]
package-data = {"pylegifrance" = ["pylegifrance/config.yaml"]}