File tree 2 files changed +14
-10
lines changed
2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ description-file = README.md
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
from setuptools import find_packages
3
3
4
- setup (name = 'Keras' ,
5
- version = '0.0.1' ,
6
- description = 'Theano-based Deep Learning' ,
7
- author = 'Francois Chollet' ,
8
-
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
+ )
You can’t perform that action at this time.
0 commit comments