X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=90d42e99fc54ea221e4cbc3db9a419ad57b31270;hb=6d360b78f3ab908a9087520ce4dc254459c25829;hp=235743d58b07d4a8375ad70fe880096679be6563;hpb=3fe2e6f7812888dc1366915545dd2243ff6fb1bb;p=nepi.git diff --git a/setup.py b/setup.py index 235743d5..90d42e99 100755 --- a/setup.py +++ b/setup.py @@ -9,10 +9,11 @@ with open('VERSION') as f: version_tag = f.read().strip() with open("COPYING") as f: license = f.read() -with open("README") as f: +with open("README.md") as f: long_description = f.read() -data_files = [ ('/etc/nepi', [ 'VERSION', 'COPYING', 'README' ] ) ] +# we'd probably would be better off with this some place else +data_files = [ ('/etc/nepi', [ 'COPYING', 'README.md' ] ) ] ### requirements - used by pip install required_modules = [ ] @@ -42,7 +43,6 @@ setup( url = "http://nepi.inria.fr/", platforms = "Linux, OSX", data_files = data_files, - package_dir = {"": "src"}, packages = [ "nepi", "nepi.execution",