-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
34 lines (29 loc) · 1.13 KB
/
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
from setuptools import setup, find_packages
from ergo.version import __version__, __author__, __email__, __license__
import os
desc = 'ergo is a tool that makes deep learning with Keras easier.'
required = []
with open('requirements.txt') as fp:
for line in fp:
line = line.strip()
if line != "":
required.append(line)
setup( name = 'ergo-ai',
version = __version__,
description = desc,
long_description = desc,
long_description_content_type = 'text/plain',
author = __author__,
author_email = __email__,
url = 'http://www.github.com/evilsocket/ergo',
packages = find_packages(),
install_requires = required,
scripts = [ 'bin/ergo' ],
license = __license__,
classifiers = [
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: Console',
],
)