-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (33 loc) · 1.27 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
#!/usr/bin/env python
# Author: Souvik Pratiher
# email: [email protected]
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open(('README.md'), encoding='utf-8') as readme:
bdescription = readme.read()
setup(
name='sparkdataset',
description=("Provides instant access to many popular datasets right from "
"Pyspark (in dataframe structure)."),
author='Souvik Pratiher',
url='https://github.com/Spratiher9/SparkDataset',
download_url='https://github.com/Spratiher9/SparkDataset/archive/refs/tags/1.0.0.tar.gz',
license = 'MIT',
author_email='[email protected]',
version='1.0.0',
long_description=bdescription,
long_description_content_type='text/markdown',
keywords=['Spark', 'Apache Spark', 'benchmarking', 'data', 'datasets', 'standard data'],
install_requires=['pandas','pyspark==3.1.2'],
packages=['sparkdataset', 'sparkdataset.utils'],
package_data={'sparkdataset': ['*.gz', 'resources.tar.gz']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10'
]
)