-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 852 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='awsspawner',
version = '0.0.1',
author='Kike',
url='https://github.com/elviejokike/awsspawner4jhub',
keywords=[
'Juputer',
'Juputer HUB',
'AWS',
'ECS',
'EC2',
'Spawner'
],
license="MIT",
author_email = '[email protected]',
description = 'ECS/EC2/AWS Spawner for Jupyter Hub',
install_requires=['jupyterhub>=0.8.1','boto3==1.5.24','escapism==1.0.0','peewee==3.0.15'],
packages=find_packages(exclude=['tests*','examples*']),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)