-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.21 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
[tool.poetry]
authors = ["mm21 <[email protected]>"]
classifiers = [
# Get the list of trove classifiers here: https://pypi.org/classifiers/
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"License :: OSI Approved :: MIT License"
]
name = "glyphsynth"
packages = [{include = "glyphsynth"}]
version = "0.1.2"
description = "Pythonic vector glyph synthesis toolkit"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
svgwrite = "^1.4.3"
pyrollup = "^0.1.0"
pydantic = "^2.5.3"
typer = {extras = ["all"], version = "^0.9.0"}
rich = "^13.9.3"
[tool.poetry.scripts]
glyphsynth-export = "glyphsynth.cli.export:run"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
pytest = "^7.4.3"
sphinx = "^7.2.6"
sphinxcontrib-typer = "^0.1.4"
pytest-cov = "^5.0.0"
doit = "^0.36.0"
genbadge = {extras = ["tests"], version = "^1.1.1"}
[tool.black]
line-length = 80
[tool.pytest.ini_options]
addopts = "-s -v -rA"
testpaths = "test"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"