forked from caketop/python-starlark-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (64 loc) · 1.66 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
[metadata]
name = starlark-go
description = Python bindings for the Go implementation of Starlark
long_description = file:README.md
long_description_content_type = text/markdown
author = Jordan Webb
author_email = [email protected]
url = https://github.com/caketop/python-starlark-go
keywords = starlark
license = Apache License 2.0
license_file = LICENSE
project_urls =
Documentation = https://python-starlark-go.readthedocs.io/en/latest/
Bug Tracker = https://github.com/caketop/python-starlark-go/issues
Source Code = https://github.com/caketop/python-starlark-go
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
package_dir =
= src
include_package_data = True
python_requires = >= 3.7
setup_requires =
setuptools_scm[toml] >= 3.4
setuptools-golang >= 2.7
[options.packages.find]
where=src
[options.package_data]
starlark_go =
*.pyi
py.typed
[tox:tox]
envlist = py37, py38, py39, py310, py311, py312
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
deps =
-r development.txt
pytest-memray
commands = pytest -v --memray {posargs}
[testenv:py37]
deps = -r development.txt
commands = pytest -v {posargs}
[testenv:py312]
deps = -r development.txt
commands = pytest -v {posargs}
[flake8]
max-line-length = 88
extend-ignore = E203, W503