-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
37 lines (31 loc) · 933 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
36
37
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
version = "0.0.1"
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
REQUIREMENTS = [
'pytorch>=1.0.1'
]
setup(
name='LambdaML',
version=version,
description='Machine learnong on serverless platform',
long_description=README,
author='DS3Lab',
author_email='[email protected]',
url='https://github.com/DS3Lab/LambdaML',
license="Apache",
install_requires=REQUIREMENTS,
keywords=['demo', 'setup.py', 'project'],
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
entry_points={
'console_scripts': ['demo = demo.demo_handler:main']
},
)