-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.45 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pyspark-apps',
version='1.0.0',
packages=['pyspark_app','pyspark_app.app','pyspark_app.harvester','pyspark_app.operation','pyspark_app.utils','pyspark_app.datatransformer','pyspark_app.datafile'],
description='Pyspark applications to generate data report on all kinds of big data',
url='https://github.com/dbca-wa/pyspark-apps',
author='Department of Biodiversity, Conservation and Attractions',
author_email='[email protected]',
maintainer='Department of Biodiversity, Conservation and Attractions',
maintainer_email='[email protected]',
license='Apache License, Version 2.0',
zip_safe=False,
keywords=['pyspark','datascience'],
install_requires=[
'numpy==1.24.2',
'pandas==1.5.3',
'requests==2.31.0',
'h5py==3.8.0',
'pytz==2022.7.1',
'psutil==5.9.4',
'azure-storage-blob==12.15.0',
'maxminddb==2.2.0',
'msal==1.24.0'
],
classifiers=[
'Framework :: Pyspark',
'Environment :: Spark',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)