-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 969 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
46
47
48
49
50
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
)/
'''
[build-system]
requires = ["setuptools>=40.8.0"]
build-backend = "setuptools.build_meta"
[project]
name="pydrs"
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"
]
description=""
readme="README.md"
license = {text = "MIT License"}
requires-python=">=3.6"
dynamic=["version"]
[tool.setuptools]
zip-safe=false
include-package-data=true
[tool.setuptools.dynamic]
version = {attr = "pydrs.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"bandit==1.7.4",
"black==22.8.0",
"flake8==5.0.4",
"flake8-bandit==4.1.1",
"flake8-bugbear==22.8.23",
"flake8-implicit-str-concat==0.3.0",
"mypy==0.971",
"mypy-extensions==0.4.3",
"pyflakes==2.5.0",
"types-setuptools",
"pytest==7.1.2"
]