-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
69 lines (58 loc) · 1.78 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
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
[metadata]
name = xmlcli
version = attr: xmlcli._version.__version__
url = https://github.com/intel/xml-cli
description = "UFFAF - UEFI Firmware Foundational Automation Framework (formerly Xml-Cli)"
commit = True
tag = True
license_files = LICENSE
long_description = file: README.md, LICENSE_THIRD_PARTY
long_description_content_type = text/markdown
keywords = uffaf, xmlcli, xml-cli, framework, automation, validation, bios, xml
license = BSD 3-Clause License
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Intended Audience :: Developers
Natural Language :: English
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
author_email = gahan.saraiya@intel.com
maintainer_email = xmlcli@intel.com
[options]
packages = find:
include_package_data = True
install_requires = file: requirements.txt
tests_require = file: test_requirements.txt
[options.entry_points]
console_scripts =
xmlcli = xmlcli.start_xmlcli:cli
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[flake8]
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# docs are markdown or autogenerated files
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
# This contains output of generated files that we don't want to check
out
ignore = E501
indent-size = 2
[aliases]
# Define setup.py command aliases here