-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
45 lines (39 loc) · 1023 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
45
[build-system]
requires = ["setuptools >= 61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[project]
name = "oeis"
description = "Implementation of a few integer sequences from the OEIS."
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Julien Palard", email = "julien@palard.fr"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.7"
dependencies = [
"matplotlib >= 3.1, <4",
"sympy >= 1.2, <2",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/JulienPalard/oeis"
[project.scripts]
oeis = "oeis:main"
[tool.setuptools]
py-modules = [
"oeis",
]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "oeis.__version__"