-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.29 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
[project]
name = "TDTPy"
description = "Module for communicating with TDT's System 3 hardware"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
readme = "README.rst"
authors = [
{name = "Brad Buran", email = "[email protected]"},
{name = "Brad Buran", email = "[email protected]"},
{name = "Eric Larson", email = "[email protected]"},
]
maintainers = [
{name = "Brad Buran", email="[email protected]"},
{name = "Eric Larson", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
"License :: OSI Approved"
]
dependencies = [
"pywin32",
"numpy",
"packaging",
"setuptools >=65",
"importlib_metadata; python_version < '3.8'",
]
dynamic = ["version"]
[project.urls]
homepage = "http://tdtpy.readthedocs.org"
repository = "https://github.com/labsn/tdtpy"
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx"]
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
tag_regex = "^(?P<prefix>v)?(?P<version>[0-9.]+)(?P<suffix>.*)?$"
write_to = "tdt/version.py"