-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 898 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
#!/usr/bin/env python3
import sys
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 the Cloud using Lithops',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'Click', 'PyYAML', 'flaky', 'lithops', 'dill',
'sympy', 'redis', 'astor', 'sklearn', 'pytest',
'numpy',
],
entry_points={
'console_scripts': ['numpywren=numpywren.scripts.cli:main']
},
include_package_data=True
)