-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 887 Bytes
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
[project]
name = "algorithmic"
version = "0.1.0"
authors = [
{ name="Tomás Juan Link", email="tomaslink@gmail.com" },
]
description = """
Collection of documented, well tested, clean and efficient
pure python algorithm implementations to solve computational problems."""
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/tomaslink/algorithmic"
Issues = "https://github.com/tomaslink/algorithmic/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]