-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
83 lines (71 loc) · 1.58 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
[metadata]
name = prestoplot
author = David Eyk
author-email = [email protected]
summary = Generative grammars for idea generation.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
license = MIT
requires-python = >= 3.7
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
home-page = https://github.com/eykd/prestoplot
project_urls =
Bug Tracker = https://github.com/eykd/prestoplot/issues
Source Code = https://github.com/eykd/prestoplot
[options]
package_dir=
=src
packages=find:
install_requires =
msgpack
pyyaml
jinja2
funcy
click
Markdown
[options.packages.find]
where=src
[files]
packages =
prestoplot
[options.entry_points]
console_scripts =
presto = prestoplot.cli:main
[versioneer]
VCS = git
style = pep440
versionfile_source = src/prestoplot/_version.py
versionfile_build = prestoplot/_version.py
tag_prefix =
[flake8]
exclude =
.git,
venv,
dist,
__pycache__,
max-line-length = 88
ignore =
W503, # line break occurred before a binary operator
E203, # whitespace before ':'
[tool:isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[tool:pytest]
addopts = --cov --flake8 --isort
[coverage:run]
source =
src/
omit =
setup.py
versioneer.py
src/prestoplot/_version.py