-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.46 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
[project]
name = "factur-x"
version = "3.6"
description = "Factur-X and Order-X: electronic invoicing and ordering standards"
authors = [{name = "Alexis de Lattre", email = "[email protected]"}]
readme = "README.rst"
classifiers = [
"Programming Language :: Python",
"Topic :: Office/Business :: Financial :: Accounting",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
keywords = ["e-invoice", "ZUGFeRD", "Factur-X", "Order-X", "e-procurement"]
license = {file = "LICENSE"}
requires-python = ">=3.7"
dynamic = ["dependencies"]
# Needed if we enable facturx-webservice
# [project.optional-dependencies]
# web = [
# "flask"
# ]
[project.urls]
Homepage = "https://github.com/akretion/factur-x"
Source = "https://github.com/akretion/factur-x"
Issues = "https://github.com/akretion/factur-x/issues"
[project.scripts]
facturx-pdfgen = "facturx.scripts.pdfgen:main"
facturx-pdfextractxml = "facturx.scripts.pdfextractxml:main"
facturx-xmlcheck = "facturx.scripts.xmlcheck:main"
# I consider the webservice scripts as a proof of concept, not real clean code
# facturx-webservice = "facturx.scripts.webservice:main"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
packages = ["facturx"]