-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["pyproject-toml>=0.0.10"]
# build-backend = "pyproject_toml.build_system.build_backend"
# backend-path = ["."]
[project]
name = "fcust"
description = "Linux Common Folder Custodian"
version = "1.0.1"
authors = [
{ name = "Nikolaos Perrakis", email = "[email protected]" }
]
dependencies = [
"Click >= 7.1",
]
readme = "README.rst"
license = { text = "GNU General Public License v3 (GPLv3)" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
#packages = [
# { include = "fcust" },
#]
[project.optional-dependencies]
dev = [
"pip",
"bump2version>=1.0",
"wheel",
"Sphinx",
"twine",
"check-manifest",
"pytest",
"pytest-runner",
"mock",
"flake8",
"black",
"mypy",
"coverage",
"yamllint",
"doc8",
"pluggy",
"docutils==0.17" # Added package to avoid pkg_resources.ContextualVersionConflict docutils error
]
[project.urls]
homepage = "https://github.com/Iolaum/fcust"
# https://stackoverflow.com/a/73066937
[project.scripts]
fcust = "fcust.cli:main"
[tool.pyproject-toml]
packages = ["pyproject_toml", "pyproject_toml.build_system", "pyproject_toml.tool"]
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
[tool.setuptools]
packages = ["fcust"]