-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.09 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["./src/"]
[tool.setuptools.package-data]
undulate = ["*.json", "*.css"]
[project]
name = "undulate"
version = "2024.1"
dependencies = [
"pycairo>=1.19.1",
"PyYAML>=5.1.2",
"toml>=0.10.0"
]
requires-python = ">= 3.8"
authors = [
{name = "Ludwig CRON", email = "[email protected]"}
]
maintainers = [
{name = "Ludwig CRON", email = "[email protected]"}
]
description = "generate waveform diagrams of signals based on their textual representation"
readme = "README.md"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
cov = [
"coverage>=4.5.4",
"requests>=2.25.0"
]
doc = [
"Pygments>=2.4.2",
"Sphinx>=2.2.0",
"sphinx-rtd-theme>=0.4.3",
"sphinxcontrib-devhelp>=1.0.1",
"sphinxcontrib-htmlhelp>=1.0.2",
"sphinxcontrib-jsmath>=1.0.1",
"sphinxcontrib-serializinghtml>=1.1.3"
]
[project.scripts]
undulate = "undulate.cli:main"