-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
63 lines (50 loc) · 1.31 KB
/
setup.cfg
File metadata and controls
63 lines (50 loc) · 1.31 KB
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
[metadata]
name = serverless_pyperf
version = attr: serverless_pyperf.__version__
author = Anthony Monthe
author_email = anthony@cloud-mercato.com
url = https://github.com/cloudmercato/serverless-pyperf
project_urls =
summary = attr: serverless_pyperf.__doc__
description_file = file: README.rst
long_description = file: README.rst
description_content_type = text/x-rst; charset=UTF-8
license = BSD 3-Clause License
requires_dist =
setuptools
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: System :: Benchmark
keywords = benchmark, cloud
[options]
zip_safe = False
include_package_data = True
package_dir=
packages=find:
install_requires =
pyperf
pyperformance
test_suite = serverless_pyperf.tests
tests_require =
[options.extras_require]
test =
coverage
[options.entry_points]
console_scripts =
serverless-pyperf = serverless_pyperf.__main__:main
[coverage:run]
omit = serverless_pyperf/tests/*
branch = True
source = serverless_pyperf
[coverage:report]
show_missing = true
exclude_lines =
noqa
NotImplemented