File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ graft python
2
+ global-include *.py *.cc *.h *.cu CMakeLists.txt *.cmake
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 @@ -147,16 +147,17 @@ def run(self):
147
147
148
148
149
149
try :
150
- with open ( os . path . join ( script_dir , "README.md" )) as f :
151
- README = f . read ( )
152
- except IOError :
153
- README = ""
150
+ import pypandoc
151
+ long_description = pypandoc . convert ( "README.md" , "rst" )
152
+ except ( IOError , ImportError ) :
153
+ long_description = ""
154
154
155
155
setup (
156
156
name = "dyNET" ,
157
+ #version="0.0.0",
157
158
install_requires = ["cython" , "numpy" ],
158
159
description = "The Dynamic Neural Network Toolkit" ,
159
- long_description = README ,
160
+ long_description = long_description ,
160
161
classifiers = [
161
162
"Development Status :: 5 - Production/Stable" ,
162
163
"Environment :: Console" ,
You can’t perform that action at this time.
0 commit comments