@@ -75,8 +75,6 @@ def _minimal_ext_cmd(cmd):
7575
7676def get_version_info ():
7777 # Adding the git rev number needs to be done inside
78- # write_version_py(), otherwise the import of scipy.version messes
79- # up the build under Python 3.
8078 FULLVERSION = VERSION
8179 if os .path .exists ('.git' ):
8280 GIT_REVISION = git_version ()
@@ -91,7 +89,7 @@ def get_version_info():
9189
9290def write_version_py (filename = 'src/pythonDnn/version.py' ):
9391 cnt = """
94- # THIS FILE IS GENERATED FROM SCIPY SETUP.PY
92+ # THIS FILE IS GENERATED FROM SETUP.PY
9593short_version = '%(version)s'
9694version = '%(version)s'
9795full_version = '%(full_version)s'
@@ -120,23 +118,23 @@ def write_version_py(filename='src/pythonDnn/version.py'):
120118 import theano
121119 requires = []
122120 except ImportError :
123- requires = ['theano>=0.7.0' ]
121+ requires = ['theano>=0.7.0' ]
124122
125123 metadata = dict (
126124 name = 'pythonDnn' ,
127- maintainer = "pythonDnn " ,
128- maintainer_email = "pythonDnn@ex.org " ,
125+ maintainer = "Abil N George,Sudharshan GK " ,
126+ maintainer_email = "mail@abilng.in,sudharpun90@gmail.com " ,
129127 description = DOCLINES [0 ],
130128 long_description = "\n " .join (DOCLINES [2 :]),
131129 url = "https://github.com/IITM-DONLAB/python-dnn" ,
132130 download_url = "https://github.com/IITM-DONLAB/python-dnn/zipball/master" ,
133131 license = 'Apache v2.0 License' ,
134132 packages = [
135- 'pythonDnn.io_modules' , 'pythonDnn.layers' , 'pythonDnn.models' ,
133+ 'pythonDnn' , 'pythonDnn .io_modules' , 'pythonDnn.layers' , 'pythonDnn.models' ,
136134 'pythonDnn.run' , 'pythonDnn.utils' ],
137- package_dir = {'' : 'src' },
135+ package_dir = {'pythonDnn ' : 'src/pythonDnn ' },
138136 install_requires = requires ,
139- zip_safe = False ,
137+ zip_safe = True ,
140138 cmdclass = {'clean' : CleanCommand ,},
141139 )
142140 FULLVERSION , GIT_REVISION = get_version_info ()
0 commit comments