]> CRI, Mines Paris - PSL - linpy.git/blobdiff - setup.py
Update .gitignore
[linpy.git] / setup.py
index 609b2b94ab939aff1e68e299af8895496e4c56bf..257889b6f57c070c8b6c55f05ffd456378e99b20 100755 (executable)
--- a/setup.py
+++ b/setup.py
 
 from distutils.core import setup, Extension
 
+
 with open('linpy/_version.py') as file:
     exec(file.read())
 
+with open('README.rst') as file:
+    long_description=file.read()
+
 setup(
     name='LinPy',
     version=__version__,
+    license='GPLv3',
     description='A polyhedral library based on isl',
+    long_description=long_description,
     author='MINES ParisTech',
     url='https://scm.cri.mines-paristech.fr/git/linpy.git',
     packages=['linpy'],