forked from TurtleThread/TurtleThread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (81 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools>=72.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "turtlethread"
keywords = [
"turtlethread",
]
version = "0.0.11"
description = "A Turtle-interface for making embroidery files"
authors = [
{ name = "Marie Roald & Yngve Mardal Moe", email = "yngve.m.moe@gmail.com" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pyembroidery",
"typing_extensions ; python_version < \"3.11\"",
]
[project.license]
text = "\"GNU General Public License v3\","
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/marieroald/turtlethread"
[project.optional-dependencies]
docs = [
"Jinja2>=3.0",
"matplotlib",
"numpydoc",
"pydata-sphinx-theme==0.15.2",
"sphinx==7.2.6",
"sphinx_book_theme==1.1.0",
"sphinx-gallery",
"sphinx-toolbox",
]
dev = [
"pytest",
"pytest-coverage",
"pytest-randomly",
"ruff==0.5.7",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.distutils.bdist_wheel]
universal = 1
[tool.flake8]
exclude = "docs"
max-line-length = "120"
[tool.ruff]
line-length = 120
exclude = ["docs/source/"] # We need the line numbers to stay constant for the documentation
[tool.ruff.lint]
select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["turtlethread"]
[tool.coverage.run]
omit = [
"src/turtlethread/base_turtle.py" # Copied from builtin turtle.py
]