-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = 'phoebusgen'
authors = [
]
description = 'Screen generator for CS-Studio Phoebus displays'
readme = {file = 'README.md', content-type = 'text/markdown'}
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = '>=3.5'
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Code Generators'
]
[project.optional-dependencies]
dev = [
"pre-commit",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx_autodoc_typehints",
]
[tool.setuptools_scm]
version_file = "phoebusgen/_version.py"
[project.urls]
Homepage = "https://github.com/als-epics/phoebusgen"
Documentation = "https://als-epics.github.io/phoebusgen"
Repository = "https://github.com/als-epics/phoebusgen"
"Bug Tracker" = "https://github.com/als-epics/phoebusgen/issues"
Changelog = "https://github.com/als-epics/phoebusgen/blob/master/CHANGELOG.md"