-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.19 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
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling-build"
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "parkit"
dynamic = ['version','readme']
description = "Parkit"
authors = [
{ name="kopardev", email="[email protected]" },
]
license = {file = "LICENSE.md"}
requires-python = ">=3.11"
# keywords = []
# classifiers = [
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
# ]
dependencies = ["pandas"]
[project.optional-dependencies]
dev = [
"black >= 22.0.0",
"pre-commit"
]
test = [
"pytest"
]
# [project.urls]
# Homepage = "https://github.com/pypa/sampleproject"
# Issues = "https://github.com/pypa/sampleproject/issues"
[project.scripts]
parkit = "parkit.__main__:main"
parkit_folder2hpcdme = "parkit.parkit_folder2hpcdme:main"
parkit_tarball2hpcdme = "parkit.parkit_tarball2hpcdme:main"
projark = "parkit.projark:main"
update_collection_metadata = "parkit.update_collection_metadata:main"
[tool.setuptools.dynamic]
version = {file = "src/parkit/src/VERSION"}
readme = {file = "README.md"}