-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (33 loc) · 1.06 KB
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
[build-system]
requires = [
"setuptools >= 66.1.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "python3-application"
description = "Basic building blocks for python3 applications"
license = { text = "LGPL-2.1-or-later" }
readme = { file = "README", content-type = "text/plain" }
urls = { source = "https://github.com/AGProjects/python3-application" }
dependencies = [
"zope.interface"
]
authors = [
{ name = "Dan Pascu", email = "support@ag-projects.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dynamic = ["version"]
[tool.setuptools]
platforms = ["Platform Independent"]
[tool.setuptools.packages.find]
include = ["application", "application.*"]
[tool.setuptools.dynamic]
version = { attr = "application.__version__" }
# Cannot use attr for description: https://github.com/pypa/setuptools/issues/5053
#description = { attr = "application.__summary__" }