-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
60 lines (52 loc) · 1.15 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
[metadata]
name = comby
version = 0.0.4
author = Christopher Timperley
author-email = [email protected]
url = https://github.com/ChrisTimperley/comby-python
description = Lightweight language-independent syntax rewriting.
long-description = file: README.rst, LICENSE
long-descripion-content-type = text/reStructuredText
keywords = rewrite, syntax, comby, transformation
license = MIT
classifiers =
Natural Language :: English
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >= 3.6
install_requires =
attrs >= 19.2.0
loguru >= 0.4
requests ~= 2.0
typing >= 0.4
package_dir =
=src
packages = find:
[options.packages.find]
where = src
[flake8]
per-file-ignores =
src/comby/__init__.py:F401
[mypy]
ignore_missing_imports = True
[aliases]
test = pytest
[tool:pytest]
addopts = -rx -v
[tox:tox]
envlist = py37, py38
[testenv]
deps =
mypy
flake8
pytest
commands =
mypy src
flake8 src
pytest