-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
84 lines (76 loc) · 1.78 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
78
79
80
81
82
83
84
[tool.poetry]
name = "attractors"
version = "1.4.1"
description = "Simulation and visualization of strange attractors"
authors = ["Vignesh Mohan <[email protected]>"]
maintainers = ["Vignesh Mohan <[email protected]>"]
license = "MIT"
readme = "readme.rst"
homepage = "https://github.com/Vignesh-Desmond/attractors"
repository = "https://github.com/Vignesh-Desmond/attractors"
documentation = "https://attractors.readthedocs.io/en/latest/"
keywords = [
"Attractors",
"Strange Attractors",
"Lorenz",
"Chen",
"Chaotic Attractors",
]
classifiers = [
"Topic :: Scientific/Engineering :: Visualization",
"Framework :: Matplotlib",
"Intended Audience :: Education",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7"
matplotlib = "^3.4.2"
tqdm = "^4.61.2"
pathos = "^0.2.8"
more-itertools = "^8.8.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = "^21.6b0"
isort = "^5.9.1"
pytest-cov = "^2.12.1"
Sphinx = "^4.1.1"
sphinx-rtd-theme = "^0.5.2"
pre-commit = "^2.13.0"
flake8 = "^3.9.2"
[tool.poetry.scripts]
attractors = "attractors.parser:cli"
[tool.poetry.extras]
doc = ["sphinx", "matplotlib", "pathos", "tqdm", "numpy", "more-itertools"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
ignore = ['E203', 'E266', 'E501', 'W503', 'F403', 'F401']
max-line-length = 88
max-complexity = 18
[tool.isort]
known_third_party = ["matplotlib", "mpl_toolkits", "numpy", "src"]
multi_line_output = 3
line_length = 88
include_trailing_comma = true
[tool.black]
line-length = 88
target-version = ['py37', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''