-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
35 lines (30 loc) · 1015 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
29
30
31
32
33
34
35
# pylint: skip-file
#!/usr/bin/env python
import sys
#import pkgconfig
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported')
# http://stackoverflow.com/questions/6344076/differences-between-distribute-distutils-setuptools-and-distutils2
# how to get version info into the project
exec(open('numpywren/version.py').read())
setup(
name='numpywren',
version=__version__,
author='Vaishaal Shankar',
description='Run scientific computing applications transparently on AWS Lambda and other cloud services',
author_email='vaishaal@gmail.com',
packages=find_packages(),
install_requires=[
'Click', 'PyYAML',
'enum34', 'flaky', 'glob2',
'watchtower', 'tblib', 'pywren' # it's nuts that we need both botos
],
entry_points={
'console_scripts' : ['numpywren=numpywren.scripts.cli:main']
},
tests_requires=[
'pytest', 'numpy',
],
include_package_data=True
)