-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.06 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aspis"
version = "0.3.0"
description = "A functional programming library for Python"
authors = [
{name = "BriHan", email="[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
homepage = "https://github.com/brihan/aspis"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "tests.py", "test.py"]
python_functions = ["test_*"]
pythonpath = ["."]
[project.optional-dependencies]
dev = [
"black==24.10.0",
"flake8==7.1.1",
"flake8-import-order==0.18.2",
"pytest==8.3.3",
"sphinx==8.1.3",
"sphinx_rtd_theme==3.0.2",
"twine==5.1.1"
]
test = [
"black==24.10.0",
"flake8==7.1.1",
"flake8-import-order==0.18.2",
"pytest==8.3.3",
]