-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
95 lines (86 loc) · 2.05 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
[metadata]
name = ManifoldMarketManager
author = Olivia Appleton
author_email = Liv@OliviaAppleton.com
version = 0.8.0.1
description = Tools and market management for manifold.markets
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/gappleto97/ManifoldMarketManager
license = AGPLv3
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet
Topic :: Other/Nonlisted Topic
Typing :: Typed
[options]
package_dir =
=ManifoldMarketManager
packages = find:
install_requires =
attrs
numpy >= 1.23.1
requests >= 2.28.0
requests_cache
python_requires = >=3.8
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
tests =
flake8 < 5
markdown >= 3.3
py
pytest
pytest-benchmark
pytest-cov
pytest-depends
pytest-flake8
pytest-isort
pytest-mypy
pytest-regressions
pytest-xdist
vcrpy >= 4.1.1
brotlipy
github =
github3.py
telegram =
python-telegram-bot>=20.0a4
all =
ManifoldMarketManager[tests,github,telegram]
[flake8]
max-line-length = 120
[pycodestyle]
max-line-length = 120
[pep8]
max-line-length = 120
[isort]
line_length = 120
[mypy]
strict = True
ignore_missing_imports = True
disallow_subclassing_any = False
check_untyped_defs = True
warn_redundant_casts = True
warn_unused_ignores = False
enable_recursive_aliases = true
[tool:pytest]
markers =
slow: tests that run slowly
network: tests that utilize network functions
failed_dependency_action = skip
missing_dependency_action = fail