-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1015 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gscrew"
authors = [
{name="Antoine Royer"},
{name="Loris Delafosse"}
]
description = "A Python module to manipulate Screws and Coscrews with geometrics algebra (Clifford's Algebra)."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 4 - Beta"
]
dynamic = [
"version",
"dependencies"
]
[tool.setuptools]
license-files = [
"LICENSE",
]
[project.optional-dependencies]
doc = [
"sphinx>=7.0.1",
"sphinx-rtd-theme",
"sphinx-autodocgen",
]
[tool.setuptools.dynamic.version]
attr = "gscrew.__init__.__version__"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/GenScrew/GScrew"
Documentation = "http://gscrew.readthedocs.io/"