-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (45 loc) · 1.26 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
[build-system]
requires = ['setuptools>=40.8.0']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ["evo"]
[project]
name = "EVo"
version = "1.0.1"
authors = [{name = "Philippa Liggins", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"]
requires-python = ">=3.7"
dependencies = ["numpy>=1.21.0",
"scipy>=1.7.0",
"matplotlib>=3.4.2",
"mpmath>=1.2.1",
"pyyaml",
"ruamel.yaml",
"pandas>=2.1.0",]
[project.optional-dependencies]
dev = ["ruff", "pre-commit"]
[project.urls]
Home = "https://github.com/pipliggins/EVo"
[tool.black]
line-length = 88
[tool.ruff]
exclude = [".venv", ".vscode", ".git", "docs", "tests"]
# Same as Black.
line-length = 88
indent-width = 4
[tool.ruff.lint]
extend-select = [
"E", # pycodestyle errors (settings from FastAPI, thanks, @tiangolo!)
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"ARG", # flake8-unused-arguments
"RUF", # Ruff-specific
"YTT", # flake8-2020
]
ignore = ["C901", "W605"]