-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
38 lines (36 loc) · 911 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
38
from setuptools import setup, find_packages
setup(
name = 'olympus',
version = '0.41',
description = 'A tool for creating a REST API for any machine learning model, in seconds.',
author = 'Galiboo',
author_email = '[email protected]',
url = 'https://github.com/galiboo/olympus', # use the URL to the github repo
download_url = 'https://github.com/galiboo/olympus/archive/0.41.tar.gz',
py_modules=['olympus'],
keywords = ['machine learning', 'python', 'rest', 'api', 'deep learning'],
packages=find_packages(),
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python'
],
entry_points={
'console_scripts': [
'olympus = olympus.olympus:cli'
]
},
install_requires=[
"click",
"coolname",
"Flask",
"haikunator",
"Keras",
"numpy",
"python-dateutil",
"pytz",
"scipy",
"h5py",
"tensorflow",
"prettytable",
"tinydb"]
)