-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (43 loc) · 1.57 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
41
42
43
44
45
46
47
48
"""spark-submit module installation script"""
import os
from typing import Dict
from setuptools import find_packages, setup
info_location = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'spark_submit', '__info__.py')
about: Dict[str, str] = {}
with open(info_location, 'r', encoding='utf-8') as f:
exec(f.read(), about)
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name=about['__title__'],
version=about['__version__'],
author=about['__author__'],
maintainer=about['__maintainer__'],
author_email=about['__author_email__'],
license=about['__license__'],
url=about['__url__'],
description=about['__description__'],
long_description_content_type='text/markdown',
long_description=readme,
packages=find_packages(),
include_package_data=True,
install_requires=['requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
],
zip_safe=True,
platforms=['any'],
python_requires='~=3.8',
keywords=['apache', 'spark', 'submit'],
)