-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.14 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sst_base"
dynamic = ["version", "dependencies"]
description = "Common beamline classes and objects"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD (3-clause)"}
authors = [
{name = "National Institute of Standards and Technology", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
[project.urls]
homepage = "https://github.com/NSLS-II-SST/sst_base"
[project.entry-points."nbs_gui.tabs"]
sst-gui-samples = "sst_base.qt.tabs.sampleTab:SampleTab"
[project.entry-points."nbs_gui.widgets"]
sst-gui-header = "sst_base.qt.widgets.header:NSLSHeader"
[tool.setuptools]
packages = ["sst_base"]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 115
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| blib2to3
| tests/data
)/
'''