-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
67 lines (60 loc) · 1.36 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
[tool.poetry]
name = "Natrix"
version = "1.0.1"
description = "Fast fluid simulation in Python"
authors = [
"Federico Bertola"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/fbertola/natrix"
keywords = ["fluid-simulation", "navier-stokes", "bgfx"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics"
]
[tool.poetry.dependencies]
python = "^3.7"
bgfx-python = "^2.0.1"
glfw = "^1.12.0"
python-decouple = "^3.3"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
pytest-mock = "^1.9"
black = "^20.8b1"
pytest-sugar = "^0.9.2"
flake8 = "^3.8.4"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.0"
flake8-bugbear = "^20.1.4"
flake8-import-order = "^0.18.1"
safety = "^1.9.0"
nox = "^2020.5.24"
glfw = "^1.12.0"
numpy = "^1.19.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''