-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.6 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
56
57
58
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pvarch"
dynamic = ["version"]
dependencies = [
"pyepics>=3.5.0",
"numpy>=1.19",
"sqlalchemy>=2.0",
"sqlalchemy_utils",
"charset_normalizer",
"toml",
]
requires-python = ">= 3.9"
authors = [
{name = "Matthew Newville", email = "[email protected]"},
{name = "Chris Skordas", email = "[email protected]"},
]
description = "Archiver for Epics PVs with web display"
readme = "README.rst"
license = {file="License"}
keywords = ["Epics Channel Access"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.scripts]
pvarch = "pvarch:pvarch_main"
[project.urls]
Homepage = "https://github.com/pyepics/pvarch/"
Documentation = "https://github.com/pyepics/pvarch/"
[project.optional-dependencies]
dev = [ "build", "twine"]
web = ["flask"]
all = ["pvarch[dev, web]"]
[tool.setuptools.packages.find]
include = ["pvarch"]
[tool.setuptools_scm]
write_to = "pvarch/version.py"
version_scheme = "post-release"