-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.12 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
[project]
name = "moranpycess"
version = "1.1.0"
description = "Python framework for Moran Processes driven by game theory"
authors = [
{name = "Maciek Bak", email = "[email protected]"},
]
readme = "dist/.pypi.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"matplotlib>=3.3.4",
"numpy>=1.19.5",
"pandas>=1.1.5",
"scipy>=1.5.3",
"seaborn>=0.11.2"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://angrymaciek.github.io/angry-moran-simulator/_build/html/index.html"
repository = "https://github.com/AngryMaciek/angry-moran-simulator"
[tool.setuptools]
packages = ["moranpycess"]
zip-safe = false
[tool.coverage.run]
branch = true
source = [
"moranpycess",
]
omit = [
"moranpycess/__init__.py",
]
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79