-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) 路 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) 路 1.64 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
[project]
name = "SK8plotlib" # Required
version = "0.0.5" # Required
description = "Turn any matplotlib line chart into a line skateboarding game." # Optional
readme = "README.md" # Optional
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["matplotlib"] # Optional
authors = [
{ name = "Emily Hunt", email = "emily.hunt.physics@gmail.com" }, # Optional
]
maintainers = [
{ name = "Emily Hunt", email = "emily.hunt.physics@gmail.com" }, # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"matplotlib",
"ipython",
"pyqt6",
"shapely"
]
[project.optional-dependencies]
dev = [
# "mkdocs-material[imaging]",
# "mkdocstrings[python]>=0.18",
# "check-manifest", # dont know what this one does lol
# "pytest",
"ruff",
]
# docs = [
# "mkdocs-material[imaging]",
# "mkdocstrings[python]>=0.18",
# ] # For building docs on GitHub
# test = ["pytest"]
[project.urls] # Optional
"Homepage" = "https://github.com/emilyhunt/SK8plotlib"
"Bug Reports" = "https://github.com/emilyhunt/SK8plotlib/issues"
"Source" = "https://github.com/emilyhunt/SK8plotlib"
# [tool.pytest.ini_options]
# pythonpath = "src"
# addopts = ["--import-mode=importlib"]
# testpaths = ["tests"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88