-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (54 loc) · 1.31 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
[metadata]
name = syml
author = David Eyk
author_email = [email protected]
description = SYML (Simple YAML-like Markup Language) is a simple markup language with similar structure to YAML, but without all the gewgaws and folderol.
long_description = file: README.rst
url = https://github.com/eykd/syml
license = MIT
keywords = yaml, markup, syml
classifiers=
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3.5
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup
[options]
package_dir=
=src
packages=find:
install_requires=
attrs
funcy
parsimonious
tomli; python_version < "3.11"
[options.packages.find]
where=src
[versioneer]
VCS = git
style = pep440
versionfile_source = src/syml/_version.py
versionfile_build = syml/_version.py
tag_prefix =
parentdir_prefix = syml-
[flake8]
exclude =
.git,
venv,
dist,
__pycache__,
versioneer.py
src/syml/_version.py
max-line-length = 120
ignore =
W503, # line break occurred before a binary operator
E203, # whitespace before ':'
[isort]
profile=black
src_paths=src,test
[mypy]
mypy_path = $MYPY_CONFIG_FILE_DIR/src
files = src/**/*.py,tests/**/*.py
exclude = (?x)(
^_version\.py$
)