-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
40 lines (36 loc) · 1.3 KB
/
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
36
37
38
39
40
# Author: Souvik Pratiher
# Project: Sparkora v0.0.1
import os
from setuptools import setup
if os.path.isfile('README.md'):
with open('README.md', encoding='utf-8') as readme:
bdescription = readme.read()
else:
bdescription = "EDA Toolkit for Apache Spark based workflows"
setup(
name="Sparkora",
version="0.0.1",
author="Souvik Pratiher",
author_email="spratiher9@gmail.com",
description="Exploratory data analysis toolkit for Pyspark",
license="GPL-3.0 License",
download_url='https://github.com/Spratiher9/Sparkora/archive/refs/tags/0.0.1.tar.gz',
keywords=["exploratory data analysis", "EDA", "pyspark", "preprocessing"],
long_description=bdescription,
long_description_content_type='text/markdown',
install_requires=[
"pyspark>=3.1.0",
"IPython",
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=['Sparkora']
)