-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (42 loc) · 1.51 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
"""Setup module for rcluster."""
from setuptools import setup
from os import path
from pypandoc import convert
from rcluster import __title__, __ver__
here = path.abspath(path.dirname(__file__))
long_description = convert(path.join(here, 'README.md'), 'rst')
long_description = long_description.replace("\r\n", "\n")
setup(
name=__title__,
version=__ver__,
description='R clusters on AWS',
long_description=long_description,
url='https://github.com/ElizabethAB/rcluster',
author='Elizabeth Byerly',
author_email='[email protected]',
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: System :: Clustering",
"Topic :: Scientific/Engineering",
"Topic :: System :: Systems Administration"
],
keywords='r aws cluster cloud',
packages=['rcluster'],
install_requires=['boto3', 'paramiko'],
extras_require={'dev': ['coverage', 'pytest', 'pypandoc']},
package_data={'rcluster': ['data/*']},
entry_points={
'console_scripts': [
'rcluster-config=rcluster.__exec__:config',
'rcluster=rcluster.__exec__:main',
'rcluster-open=rcluster.__exec__:retrieve_cluster',
'rcluster-terminate=rcluster.__exec__:terminate'
]
}
)