-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.cfg
More file actions
35 lines (30 loc) · 784 Bytes
/
setup.cfg
File metadata and controls
35 lines (30 loc) · 784 Bytes
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
[metadata]
name = eessi-testsuite
description = Test suite for the EESSI software stack
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL-2.0-only
classifiers =
Programming Language :: Python :: 3
project_urls =
Homepage = https://eessi.io/docs/test-suite
Bug Tracker = https://github.com/EESSI/test-suite/issues
[options]
install_requires =
setuptools
python_requires = >=3.6
packages = find:
namespace_packages = eessi
[options.extras_require]
compilation =
easybuild
[options.packages.find]
include = eessi*
[setuptools_scm]
version_scheme = guess-next-dev
local_scheme = node-and-date
[flake8]
max-line-length = 120
# ignore star imports (F403, F405)
# ignore obsolete warning (W503)
ignore = F403, F405, W503