-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.88 KB
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
68
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Platypus-Opt"
description = "Multiobjective optimization in Python"
authors = [
{ name="David Hadka", email="dhadka@users.noreply.github.com" },
]
readme = "README.md"
requires-python = ">= 3.10"
dependencies = []
dynamic = ["version"]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = [
"optimization",
"evolutionary algorithm"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/Project-Platypus/Platypus"
Documentation = "https://platypus.readthedocs.io/"
Issues = "https://github.com/Project-Platypus/Platypus/issues"
[project.optional-dependencies]
test = ["pytest", "mock", "flake8", "flake8-pyproject", "numpy", "matplotlib", "jsonpickle"]
docs = ["sphinx", "sphinx-rtd-theme"]
full = ["mpi4py", "Platypus-Opt[test]", "Platypus-Opt[docs]"]
[project.scripts]
platypus = "platypus.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "platypus.__version__"}
[tool.pytest.ini_options]
addopts = "-rA -Werror"
testpaths = ["platypus"]
[tool.flake8]
exclude = [
".git",
"__pycache__",
"build",
]
extend-ignore = [
"E302", # Expected 2 blank lines, found N
"E305", # Expected 2 blank lines after class or function definition, found N
"E501", # Line too long (N > 79 characters)
"E741", # Do not use variables named 'I', 'O', or 'l'
]
per-file-ignores = [
"__init__.py:F401", # Module imported but unused
]