-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (45 loc) · 1.06 KB
/
pyproject.toml
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "ox"
dist-name = "ox-parser"
author = "Fábio Macêdo Mendes"
author-email = "[email protected]"
home-page = "http://github.com/fabiommendes/ox/"
requires-python = ">=3.6"
description-file = "README.rst"
# Classifiers (see https://pypi.python.org/pypi?%3Aaction=list_classifiers)
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
]
requires = [
"lark-parser",
"sidekick~=0.5.2",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-cov",
"mock",
"manuel",
]
doc = [
"sphinx"
]
dev = [
"flake8",
"black",
"pre-commit",
]
[tool.flit.metadata.urls]
Documentation = "https://ox.readthedocs.io/en/latest/"
[tool.flit.scripts]
ox = "ox.cli:main"