evoenv 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- evoenv-0.0.1/PKG-INFO +26 -0
- evoenv-0.0.1/README.md +0 -0
- evoenv-0.0.1/evoenv.egg-info/PKG-INFO +26 -0
- evoenv-0.0.1/evoenv.egg-info/SOURCES.txt +7 -0
- evoenv-0.0.1/evoenv.egg-info/dependency_links.txt +1 -0
- evoenv-0.0.1/evoenv.egg-info/requires.txt +15 -0
- evoenv-0.0.1/evoenv.egg-info/top_level.txt +1 -0
- evoenv-0.0.1/pyproject.toml +83 -0
- evoenv-0.0.1/setup.cfg +4 -0
evoenv-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evoenv
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: EvoEnv
|
|
5
|
+
Author-email: EvoLib <evolib@dismail.de>
|
|
6
|
+
Classifier: Development Status :: 3 - Alpha
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: numpy>=1.24
|
|
15
|
+
Requires-Dist: pyyaml>=6.0
|
|
16
|
+
Requires-Dist: pandas>=2.3.0
|
|
17
|
+
Requires-Dist: pydantic<3.0,>=2.7
|
|
18
|
+
Requires-Dist: graphviz>=0.20.1
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: mypy; extra == "dev"
|
|
22
|
+
Requires-Dist: types-PyYAML; extra == "dev"
|
|
23
|
+
Provides-Extra: docs
|
|
24
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
25
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
26
|
+
Requires-Dist: myst-parser; extra == "docs"
|
evoenv-0.0.1/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evoenv
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: EvoEnv
|
|
5
|
+
Author-email: EvoLib <evolib@dismail.de>
|
|
6
|
+
Classifier: Development Status :: 3 - Alpha
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: numpy>=1.24
|
|
15
|
+
Requires-Dist: pyyaml>=6.0
|
|
16
|
+
Requires-Dist: pandas>=2.3.0
|
|
17
|
+
Requires-Dist: pydantic<3.0,>=2.7
|
|
18
|
+
Requires-Dist: graphviz>=0.20.1
|
|
19
|
+
Requires-Dist: matplotlib
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: mypy; extra == "dev"
|
|
22
|
+
Requires-Dist: types-PyYAML; extra == "dev"
|
|
23
|
+
Provides-Extra: docs
|
|
24
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
25
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
26
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "evoenv"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "EvoEnv"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "EvoLib", email = "evolib@dismail.de" }
|
|
11
|
+
]
|
|
12
|
+
license = { file = "LICENSE" }
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"numpy >=1.24",
|
|
17
|
+
"pyyaml >=6.0",
|
|
18
|
+
"pandas >=2.3.0",
|
|
19
|
+
"pydantic >= 2.7,<3.0",
|
|
20
|
+
"graphviz>=0.20.1",
|
|
21
|
+
"matplotlib"
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Development Status :: 3 - Alpha",
|
|
26
|
+
"License :: OSI Approved :: MIT License",
|
|
27
|
+
"Programming Language :: Python :: 3",
|
|
28
|
+
"Programming Language :: Python :: 3.10",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence"
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.optional-dependencies]
|
|
34
|
+
dev = ["mypy","types-PyYAML"]
|
|
35
|
+
docs = [
|
|
36
|
+
"sphinx",
|
|
37
|
+
"sphinx-rtd-theme",
|
|
38
|
+
"myst-parser",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.packages.find]
|
|
42
|
+
where = ["."]
|
|
43
|
+
include = ["evonet*"]
|
|
44
|
+
|
|
45
|
+
[tool.setuptools.package-data]
|
|
46
|
+
"evolib" = ["py.typed"]
|
|
47
|
+
|
|
48
|
+
# Tool-Konfigurationen
|
|
49
|
+
[tool.black]
|
|
50
|
+
line-length = 88
|
|
51
|
+
target-version = ["py312"]
|
|
52
|
+
|
|
53
|
+
[tool.isort]
|
|
54
|
+
profile = "black"
|
|
55
|
+
line_length = 88
|
|
56
|
+
|
|
57
|
+
[tool.mypy]
|
|
58
|
+
python_version = "3.12"
|
|
59
|
+
ignore_missing_imports = true
|
|
60
|
+
disallow_untyped_defs = true
|
|
61
|
+
check_untyped_defs = true
|
|
62
|
+
warn_unused_ignores = true
|
|
63
|
+
|
|
64
|
+
[tool.flake8]
|
|
65
|
+
max-line-length = 88
|
|
66
|
+
extend-ignore = ["E203", "W503"]
|
|
67
|
+
|
|
68
|
+
[tool.docformatter]
|
|
69
|
+
wrap-summaries = 88
|
|
70
|
+
wrap-descriptions = 88
|
|
71
|
+
pre-summary-newline = true
|
|
72
|
+
|
|
73
|
+
[tool.pylint]
|
|
74
|
+
max-line-length = 88
|
|
75
|
+
disable = [
|
|
76
|
+
"missing-docstring",
|
|
77
|
+
"invalid-name",
|
|
78
|
+
"too-few-public-methods",
|
|
79
|
+
"too-many-arguments",
|
|
80
|
+
"too-many-instance-attributes",
|
|
81
|
+
"too-many-locals"
|
|
82
|
+
]
|
|
83
|
+
|
evoenv-0.0.1/setup.cfg
ADDED