-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpyproject.toml
47 lines (37 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "pydm"
description = "A PyQt-based framework for building user interfaces for control systems"
readme = "README.md"
authors = [ {name = "SLAC National Accelerator Laboratory"} ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.scripts]
pydm = "pydm_launcher.main:main"
[project.urls]
Homepage = "https://github.com/slaclab/pydm"
Documentation = "https://slaclab.github.io/pydm/"
[project.license]
file = "LICENSE.md"
[tool.setuptools_scm]
write_to = "pydm/_version.py"
[tool.setuptools.packages.find]
where = ["."]
include = ["pydm*"]
namespaces = false
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[tool.setuptools.dynamic.optional-dependencies.test]
file = "dev-requirements.txt"
[tool.setuptools.dynamic.optional-dependencies.test-no-optional]
file = "windows-dev-requirements.txt"
[tool.setuptools.dynamic.optional-dependencies.doc]
file = "docs-requirements.txt"