-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (43 loc) · 1.4 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
[project]
name = "gillespie"
version = "0.1.0"
description = "A Python implementation of Gillepsie simulation, with GUI"
authors = [
{name = "Alain Bubendor", email = "[email protected]"},
{name = "Rafael Paulo da Silveira", email = "[email protected]"},
{name = "Sena Aydin", email = "[email protected]"},
{name = "Nora Vocat", email = "[email protected]"},
{name = "Minghang \"Matchy\" Li", email = "[email protected]"},
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["dependencies"]
[project.scripts]
gillespie = "gillespie.cli:main"
[project.gui-scripts]
gillespie-gui = "gillespie.gui:launch_gui"
[project.urls]
repository = "https://git.scicore.unibas.ch/zavolan_group/teaching_and_tutorials/pls-2024-group-c"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {where = [".", ], exclude = ["images", "images.*"]}}
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { dev = { file = ["requirements-dev.txt"] } }
[tool.pdm]
distribution = true
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyx?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203"]
exclude = [".git", "__pycache__", "build", "dist"]