-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
46 lines (43 loc) · 1.33 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
# -*- coding: utf-8 -*-
"""Distutils setup file, used to install or test 'sparksteps'."""
import textwrap
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='sparksteps',
description='Workflow tool to launch Spark jobs on AWS EMR',
long_description=readme,
packages=find_packages(exclude=['tests', 'examples', 'bootstrap']),
use_scm_version=True,
author='Kamil Sindi',
author_email='[email protected]',
url='https://github.com/jwplayer/sparksteps',
keywords='aws emr pyspark spark boto'.split(),
license='Apache License 2.0',
install_requires=[
'boto3>=1.3.1',
'polling==0.3.0'
],
setup_requires=[
'setuptools_scm',
'sphinx_rtd_theme',
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'sparksteps=sparksteps.__main__:main'
]
},
classifiers=textwrap.dedent("""
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Environment :: Console
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
""").strip().splitlines(),
python_requires='>=3.6'
)