forked from ovh/python-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (61 loc) · 1.44 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
[metadata]
name = ovh
description = "Official OVH.com API wrapper"
long_description = file: README.rst
version = 0.5.0
author = Jean-Tiare Le Bigot
author_email = [email protected]
url = http://api.ovh.com
license = BSD
license_file = LICENSE
keywords = ovh, sdk, rest
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
[options]
packages = find:
setup_requires =
setuptools>=30.3.0
include_package_data = True
[options.package_data]
ovh.vendor.requests = *.pem
[options.packages.find]
exclude =
tests
[options.extras_require]
dev =
coverage==3.7.1
mock==1.0.1
nose==1.3.3
yanc==0.2.4
Sphinx==1.2.2
coveralls==0.4.4
setuptools>=30.3.0
wheel
test =
coverage==3.7.1
mock==1.0.1
nose==1.3.3
yanc==0.2.4
[test]
test-suite = nose.collector
[nosetests]
verbosity = 2
where = tests/
with-yanc = 1
with-coverage = 1
cover-package = ovh
cover-erase = 1
[bdist_wheel]
universal = 1