forked from google-deepmind/dnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (39 loc) · 1.69 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
setup(
name='dnc',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.0.0',
description='Differentiable Neural Computer in Tensorflow',
long_description='Differentiable Neural Computer in Tensorflow',
# The project's main homepage.
url='https://github.com/deepmind/dnc',
# Author details
author='Google Inc.',
# Choose your license
license='Apache License 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# What does your project relate to?
keywords='tensorflow differentiable neural computer dnc deepmind deep mind sonnet dm-sonnet machine learning',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=['dnc'],
install_requires=['dm-sonnet'],
)