forked from escobarana/effective_pyspark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 785 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="effective PySpark",
version="1.0.0",
description='Code accompanying the course "Better Data Engineering with PySpark"',
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="Oliver Willekens",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
keywords="pyspark training exercises",
packages=find_packages(include=["exercises"]),
python_requires=">=3.5, <4",
)