Skip to content

Commit b82ab80

Browse files
committed
Update setup.py and setup.cfg for pypi release
1 parent 161d47b commit b82ab80

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

Diff for: setup.py

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
from setuptools import setup
22
from setuptools import find_packages
33

4-
setup(name='Keras',
5-
version='0.0.1',
6-
description='Theano-based Deep Learning',
7-
author='Francois Chollet',
8-
author_email='[email protected]',
9-
url='https://github.com/fchollet/keras',
10-
license='MIT',
11-
install_requires=['theano'],
12-
packages=find_packages(),
13-
)
4+
setup(name = 'Keras',
5+
version = '0.1.0',
6+
description = 'Theano-based Deep Learning library',
7+
long_description = open('README.md').read(),
8+
author = 'Francois Chollet',
9+
author_email = '[email protected]',
10+
url = 'https://github.com/fchollet/keras',
11+
download_url = 'https://github.com/fchollet/keras/tarball/0.1.0',
12+
license = 'MIT',
13+
install_requires = ['theano'],
14+
packages = find_packages(),
15+
)

0 commit comments

Comments
 (0)