-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.03 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
[project]
name = "excel-validator"
authors = [
{ name="Matthijs Brouwer", email="matthijs.brouwer@wur.nl" },
]
description = "Validation of template based Excel files"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
dynamic = ["dependencies","version"]
classifiers = [
"Topic :: Internet :: Proxy Servers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/matthijsbrouwer/excel-validator"
[project.scripts]
excel-validator = "excel_validator.script.service:service"
[build-system]
requires = [
"read_version[toml] ~= 0.3.0",
"setuptools >= 42.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
excel_validator = ["**/*.json", "**/*.html", "**/*.js", "**/*.css", "**/*.ini"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.read_version]
version = "src.excel_validator._version:__version__"