-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 947 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
from setuptools import setup, find_packages
import versioneer
with open('README.md') as fobj:
long_description = fobj.read()
setup(
name='iceflow',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='tensorflow meta-framework',
long_description=long_description,
author='Thomas Gilgenast',
author_email='[email protected]',
url='https://github.com/sclabs/iceflow',
packages=find_packages(),
entry_points={
'console_scripts': [
'iceflow = iceflow.iceflow:iceflow'
]
},
install_requires=[
'tensorflow>=1.3.0',
'dm-sonnet>=1.11'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
)