-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
90 lines (80 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# ==== Setuptools Input ====
[metadata]
name = optionset
author = Matthew C. Jones
author_email = matt.c.jones.aoe@gmail.com
license = GPLv3
description = A lightweight tool for conducting parameter studies.
long_description = file: README.rst
keywords = utility, macro-processor
url = https://github.com/MattCJones/optionset
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Operating System :: OS Independent
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Software Development :: Interpreters
Topic :: Software Development :: Pre-processors
Topic :: Software Development :: User Interfaces
Topic :: Text Processing
Topic :: Text Processing :: General
Topic :: Text Processing :: Indexing
Topic :: Utilities
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Unix Shell
version = attr: optionset.optionset.__version__
[options]
packages = find:
# zip_safe = True
include_package_data = True
python_requires = >=3.7
install_requires = None
# [options.extras_require]
# lint =
# flake8
# mypy
# tox
[options.entry_points]
console_scripts =
optionset = optionset.optionset:main
# ==== Tox Development Automation Tool ====
[tox:tox]
toxworkdir=/tmp/.tox
envlist =
# py37
# py38
py39
[testenv]
# deps =
# coverage
commands =
# coverage run "cd tests; ./runtests.py"
# coverage report -m
python -m unittest discover tests
[testenv:lint]
deps = flake8
whitelist_externals = mypy
commands =
flake8 optionset tests
mypy optionset
[coverage:run]
data_file = /tmp/.tox/.coverage
[flake8]
exclude =
*/optionset/__init__.py
./build/*
*archive*
tests/filesToTest
ignore=
# Whitespace around operator
E226
[mypy]
cache_dir = /tmp/.tox/.mypy_cache