-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (52 loc) · 1.34 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
[metadata]
name = treeno
version = attr: treeno.__version__
url = https://github.com/OneRaynyDay/treeno/tree/main/treeno
license = MIT License
license_files = LICENSE
author = Ray Zhang
author_email = [email protected]
description = Trino SQL building library
description_file = README.md
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords =
trino, sql, python
[options]
packages = find:
include_package_data = true
install_requires =
setuptools
antlr4-python3-runtime==4.9.2
nltk==3.6.5
attrs==21.2.0
overrides==6.1.0
click~=8.0.3
typer~=0.4.0
requests~=2.26.0
python_requires = >= 3.6
test_suite = tests
[options.packages.find]
exclude = tests*
[options.entry_points]
console_scripts =
treeno = treeno.cli:app
[options.extras_require]
test =
pytest~=6.2.5
docs =
Sphinx~=4.3.2
sphinx-autodoc-typehints~=1.15.2
sphinx-press-theme~=0.8.0
[tool:pytest]
addopts = --doctest-modules