-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.1 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
[project]
name = "gemmology-knowledge"
version = "1.1.0"
description = "FGA curriculum documentation and study materials for gemmology"
readme = "README.md"
license = { text = "CC-BY-SA-4.0" }
requires-python = ">=3.10"
authors = [
{ name = "Bissbert", email = "fabian@gemmology.dev" }
]
keywords = [
"gemmology",
"gemstones",
"documentation",
"education",
"fga",
"curriculum"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"License :: OSI Approved :: Creative Commons Attribution Share Alike 4.0 International",
"Topic :: Documentation",
"Topic :: Scientific/Engineering"
]
dependencies = []
[project.urls]
Homepage = "https://knowledge.gemmology.dev"
Documentation = "https://knowledge.gemmology.dev"
Repository = "https://github.com/gemmology-dev/gemmology-knowledge"
Issues = "https://github.com/gemmology-dev/gemmology-knowledge/issues"
[project.optional-dependencies]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.0"
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"