-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.93 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = [ "setuptools", "wheel", "Cython", "numpy>=1.13.3" ]
build-backend = "setuptools.build_meta"
[project]
name = "waveforms"
license = {text = "MIT License"}
authors = [{name = "feihoo87", email = "feihoo87@gmail.com"}]
maintainers = [{name = "feihoo87", email = "feihoo87@gmail.com"}]
description = "Edit waveforms used in experiment"
keywords = [
"signal",
"waveform",
"experiment",
"laboratory"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
dependencies = [
"click>=7.1.2",
"dill>=0.3.6",
"numpy>=1.13.3",
"antlr4-python3-runtime>=4.11.1",
"scipy>=1.0.0"
]
dynamic = ["version"]
[project.optional-dependencies]
full = [
"msgpack>=1.0.5",
]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.1"
]
docs = [
"Sphinx",
"sphinxcontrib-napoleon",
"sphinxcontrib-zopeext",
]
[project.scripts]
"wave" = "waveforms.__main__:main"
[project.urls]
Homepage = "https://github.com/feihoo87/waveforms"
"Bug Reports" = "https://github.com/feihoo87/waveforms/issues"
"Source" = "https://github.com/feihoo87/waveforms/"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.package-data]
waveforms = ["WaveformLexer.py", "WaveformParser.py", "WaveformListener.py"]
[tool.setuptools.dynamic]
version = {attr = "waveforms.version.__version__"}