-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
33 lines (29 loc) · 980 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
from pathlib import Path
from setuptools import setup
README = Path(__file__).parent / "README.rst"
setup(
name="livy",
description="A Python client for Apache Livy",
long_description=README.read_text(),
packages=["livy"],
url="https://github.com/acroz/pylivy",
author="Andrew Crozier",
author_email="wacrozier@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
use_scm_version={"version_scheme": "post-release"},
setup_requires=["wheel", "setuptools_scm"],
install_requires=[
"dataclasses; python_version<'3.7'",
"requests",
"pandas",
],
extras_require={"docs": ["sphinx", "sphinx-autodoc-typehints"]},
)