-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
96 lines (85 loc) · 1.98 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
[flake8]
extend-ignore = E203, E266, E501
max-doc-length=80
max-line-length=88
per-file-ignores=__init__.py:F401
[isort]
profile = black
[metadata]
author = Jose Gallego-Posada
author_email= [email protected]
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Scientific/Engineering :: Artificial Intelligence
description = cooper is a toolkit for Lagrangian-based constrained optimization in Pytorch
license = MIT
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
name = cooper
url = https://github.com/cooper-org/cooper
[mypy]
[mypy-torchvision.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True
[options]
include_package_data = True
install_requires =
torch>=1.8.1
numpy>=1.21.0
packages = find:
python_requires = >=3.7
[options.package_data]
cooper = py.typed
[options.extras_require]
dev =
black==21.12b0
flake8>=4.0.1
isort>=5.10.1
mypy>=0.910
numpy>=1.21.0
pre-commit>=2.16.0
pytest>=6.2.5
pytest-cov>=3.0.0
twine>=3.8.0
tox>=3.14.0
docs =
myst-parser>=0.15.2
sphinx-autobuild>=2021.3.14
sphinx-autodoc-typehints>=1.12.0
sphinx-copybutton>=0.4.0
sphinx-gallery>=0.10.1
sphinx-rtd-theme>=1.0.0
sphinxcontrib-katex>=0.8.6
sphinxcontrib-bibtex>=2.4.1
sphinx>=4.3.1
matplotlib>=3.5.0
ipykernel>=6.5.0
ipywidgets>=7.6.0
black[jupyter]>=21.12b0
torchvision>=0.11.2
tests =
black==21.12b0
flake8==4.0.1
isort==5.10.1
mypy==0.931
numpy==1.21.0
pre-commit==2.16.0
pytest==6.2.5
pytest-cov==3.0.0
tox==3.14.0
examples =
matplotlib>=3.5.0
ipykernel>=6.5.0
ipywidgets>=7.6.0
black[jupyter]>=21.12b0
torchvision>=0.11.2
[options.packages.find]
exclude =
tests