-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.cfg
59 lines (55 loc) · 1.62 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
[metadata]
name = ovh
description = "Official module to perform HTTP requests to the OVHcloud APIs"
long_description = file: README.rst
version = 1.2.0
author = OVHcloud team - Romain Beuque
author_email = [email protected]
url = https://api.ovh.com
license = BSD
license_file = LICENSE
project_urls =
Changelog = https://github.com/ovh/python-ovh/blob/master/CHANGELOG.md
Repository = https://github.com/ovh/python-ovh.git
Issues = https://github.com/ovh/python-ovh/issues
keywords = ovh, sdk, rest, ovhcloud
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
[options]
packages = find:
setup_requires =
setuptools>=30.3.0
# requests: we need ssl+pooling fix from https://docs.python-requests.org/en/latest/community/updates/#id40
install_requires =
requests>=2.31.0
requests-oauthlib>=2.0.0
include_package_data = True
[options.packages.find]
exclude =
tests
[options.extras_require]
dev =
Sphinx==1.2.2
black
coverage~=7.2.2
flake8
isort
pytest~=7.2.2
pytest-cov==4.0.0
setuptools>=30.3.0
wheel
[bdist_wheel]
universal = 1