-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.5 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
[build-system]
# Specifies the build tools and their versions required to build the project
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# Basic package metadata
name = "epydemix"
version = "1.0.0"
description = "A Python package for epidemic modeling, simulation, and calibration"
authors = [
{ name = "Nicolò Gozzi", email = "nic.gozzi@gmail.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6" # Minimum Python version required
# Dependencies your package needs
dependencies = [
"evalidate>=2.0.3",
"matplotlib>=3.7.3",
"numpy>=1.23.5",
"pandas>=2.0.3",
"scipy>=1.10.1",
"seaborn>=0.13.2",
"setuptools>=68.2.0"
]
[project.urls]
# Optional links related to your project
homepage = "https://github.com/ngozzi/epydemix"
repository = "https://github.com/ngozzi/epydemix"
documentation = "https://github.com/ngozzi/epydemix"
[tool.setuptools]
# Use the find_packages mechanism with proper configuration
package-dir = { "" = "epydemix" }
packages = { find = { where = ["epydemix"] } }
include-package-data = true
[tool.pytest.ini_options]
# pytest configuration
minversion = "6.0"
addopts = "--strict-markers"
testpaths = ["tests"] # Directory containing tests
[tool.pylint]
# Pylint configuration
disable = [
"C0103", # Disable specific linting rules
]
[tool.black]
# Black configuration
line-length = 88
target-version = ["py37"]
[tool.isort]
# isort configuration (for import sorting)
profile = "black"