-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (42 loc) · 1.23 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
[metadata]
name = agents-bar
version = 0.7.0
author = Dawid Laszuk
author_email = [email protected]
description = A client to work with Agents Bar (https://agents.bar).
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/agents-bar/agents-bar-client-python
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = find:
python_requires = >=3.6
keywords = AI, RL, DeRL, ML, Deep Reinforcement Learning, Machine Learning
install_requires =
requests~=2.25
tenacity~=7.0.0
[options.extras_require]
lint =
pylint~=2.7.4
gym =
gym~=0.18.0
[flake8]
ignore =
E203,
E226, # I like to group operations. What are you going to do about it, huh?
E252, # Ain't nobody tell me how to type arguments
W503
[pylint]
disable =
C0114, # missing-module-docstring
[pylint.format]
max-line-length = 140
good-names=i,j,k,idx,_,pk,x,y # List of short names that we swear are Ok
[isort]
max-line-length = 140