-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsetup.cfg
103 lines (97 loc) · 2.37 KB
/
setup.cfg
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[metadata]
name = evotorch
url = https://evotorch.ai
project_urls =
Documentation = https://docs.evotorch.ai
Source Code = https://github.com/nnaisense/evotorch
description = EvoTorch is an advanced evolutionary computation library built directly on top of PyTorch, created at NNAISENSE.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0
author = Nihat Engin Toklu, Timothy Atkinson, Vojtech Micka, Pawel Liskowski, Rupesh Kumar Srivastava
author_email = [email protected], [email protected], [email protected], [email protected], [email protected]
keywords = python, evolution, neuroevolution, evolutionary computation, genetic algorithm, reinforcement learning
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Utilities
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.7
package_dir =
=src
packages = find:
tests_require =
evotorch[test]
install_requires =
cma
gymnasium
matplotlib
numpy
packaging
pandas
ray>=1.0
torch
[options.package_data]
* = *.txt, *.md, *.rst
[options.packages.find]
where = src
[options.extras_require]
# Logging dependencies
mlflow = mlflow
neptune = neptune
sacred = sacred
wandb = wandb
logging =
%(mlflow)s
%(neptune)s
%(sacred)s
%(wandb)s
# Utility packages for running experiments and analyzing results
all =
box2d
pymongo
jupyterlab
%(logging)s
# Documentation dependencies
doc =
mike
mkdocs
mkdocs-gen-files
mkdocs-literate-nav
mkdocs-material
mkdocstrings[python-legacy]>=0.18
nbconvert
%(logging)s
# Test dependencies
test =
pytest
pytest-cov
# Development dependencies
dev =
black
flake8
isort
pre-commit
swig
%(all)s
%(test)s
%(doc)s
[mypy]
files=src/**/*.py, run/*.py, test/*.py
ignore_missing_imports=true
[flake8]
extend-exclude = .nox, __version.py
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E265, E266, E501, W503, F403, F401