-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (62 loc) · 1.56 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
# ------------------
# Build system info:
# ------------------
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
# -------------
# Project info:
# -------------
[project]
name = "extents"
version = "0.2.2"
authors = [
{name="Michael Frank", email="[email protected]"},
]
maintainers = [
{name="Michael Frank", email="[email protected]"},
]
description = "An intervals library implemented in pure python, meant to be a drop-in replacment for the pyinterval library."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["interval", "intervals"]
classifiers = [
"Programming Language :: Python",
]
requires-python = ">= 3.7"
dependencies = [
]
# Optional dependencies (need these for testing + doc generation)
[project.optional-dependencies]
# key=[packages...]
# defines a special optional dependency which is installed
# pip install mypackage[key]
doc = [
"jupyter",
"myst-nb",
"sphinx-autoapi",
"sphinx-rtd-theme",
"sphinx-markdown-builder",
]
dev = [
"pytest",
"pytest-cov",
"tomlkit",
"jupyter",
"myst-nb",
"sphinx-autoapi",
"sphinx-rtd-theme",
"sphinx-markdown-builder",
]
tests = [
"pytest"
]
[project.urls]
Homepage = "https://github.com/swapp-ai/extents"
Documentation = "https://github.com/swapp-ai/extents/blob/main/README.md"
Repository = "https://github.com/swapp-ai/extents.git"
Issues = "https://github.com/swapp-ai/extents/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"