-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.cfg
59 lines (51 loc) · 1.33 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]
author = Lyle Barner
author_email = [email protected]
python_requires = >=3.6
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
description = SCRUB is an orchestration and aggregation tool for static code analysis tools.
keywords = scrub
license = Apache License 2.0
long_description = file: README.md
long_description_content_type = text/markdown
name = nasa-scrub
project_urls =
Bug Tracker = https://github.com/nasa/scrub/issues
Documentation = https://nasa.github.io/scrub
Source = https://github.com/nasa/scrub
url = https://github.com/nasa/scrub
version = 2.8.5
[options]
include_package_data = True
install_requires =
packages = find:
setup_requires =
setuptools
test_suite = tests
tests_require =
pytest
zip_safe = False
[options.entry_points]
console_scripts =
scrub = scrub.scrub_cli:main
[options.packages.find]
exclude =
tests
[bumpversion]
new_version = 2.8.5
current_version = 2.8.4
commit = True
tag = True
[bumpversion:file:scrub/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[aliases]
# Define setup.py command aliases here
test = pytest