-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (27 loc) · 1003 Bytes
/
setup.py
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
from setuptools import find_packages, setup
DESCRIPTION = "datasets_sql is an extension package of 🤗 Datasets package that provides support for executing arbitrary SQL queries on datasets."
TESTS_REQUIRE = [
"pytest",
"numpy"
]
QUALITY_REQUIRE = ["black~=22.0", "flake8>=3.8.3", "isort>=5.0.0"]
EXTRAS_REQUIRE = {
"dev": TESTS_REQUIRE + QUALITY_REQUIRE,
"tests": TESTS_REQUIRE,
}
setup(
name="datasets_sql",
version="0.4.0",
description=DESCRIPTION,
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="datasets",
license="Apache",
author="Mario Šaško",
author_email="[email protected]",
url="https://github.com/mariosasko/datasets_sql",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires=">=3.7.0",
install_requires=["pyarrow>=5.0.0", "datasets", "duckdb>=0.4.0"],
extras_require=EXTRAS_REQUIRE,
)