-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.cfg
45 lines (42 loc) · 1.42 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
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = fastcov
version = 1.17
description = A massively parallel gcov wrapper for generating intermediate coverage formats fast
author = Bryan Gillespie
author_email = [email protected]
license = mit
url = https://github.com/RPGillespie6/fastcov
long_description = file: README.md
long_description_content_type = text/markdown
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Utilities
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
[options]
setup_requires =
install_requires =
python_requires = >= 3.5
py_modules = fastcov
scripts =
dist_scripts/fastcov
dist_scripts/fastcov_summary
dist_scripts/fastcov_to_sonarqube
[bdist_wheel]
universal = 1