-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "gevopy"
description = "Genetics for Evolutionary Algorithms in Python."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GNU General Public License v3 (GPLv3)" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://github.com/BorjaEst/gevopy/"
"Bug Tracker" = "https://github.com/BorjaEst/gevopy/issues"
[tool.setuptools.dynamic]
version = { file = "src/gevopy/VERSION" }
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
env = [
"GEVOPY_USER_CONFIG=tests/testconfig.toml",
"TESTING_NEO4J_URI=bolt://localhost:7687",
"TESTING_NEO4J_AUTH=",
]
[tool.pylint.messages_control]
extension-pkg-whitelist = "pydantic"
good-names = ["id", "n", "p", "db", "tx"]