-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (34 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=45", "setuptools_scm[toml]>=6.2",]
[project]
classifiers = [ "Development Status :: 4 - Beta", "Natural Language :: English", "Programming Language :: Python :: 3",]
description = "Client application for interfacing with the PMPS database and the deployed PLC files."
dynamic = [ "version", "readme", "dependencies", "optional-dependencies",]
keywords = ["pmps", "pmpsdb", "lcls"]
name = "pmpsdb_client"
requires-python = ">=3.9"
[[project.authors]]
name = "SLAC National Accelerator Laboratory"
[options]
zip_safe = false
include_package_data = true
[project.license]
file = "LICENSE.md"
[project.scripts]
pmpsdb = "pmpsdb_client:cli.entrypoint"
[tool.setuptools_scm]
write_to = "pmpsdb_client/_version.py"
[tool.setuptools.packages.find]
where = [ ".",]
include = [ "pmpsdb_client*",]
namespaces = false
[tool.setuptools.dynamic.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.dynamic.dependencies]
file = [ "requirements.txt",]
[tool.setuptools.dynamic.optional-dependencies.test]
file = "dev-requirements.txt"
#[tool.setuptools.dynamic.optional-dependencies.docs]
#file = "docs-requirements.txt"