Browse Source

Fix package installation

Ali 4 years ago
parent
commit
55dcd7108f

+ 4 - 0
refpypmsi.egg-info/PKG-INFO

@@ -8,6 +8,8 @@ Author-email: contact@alibellamine.me
 License: UNKNOWN
 Description: # refpypmsi
         
+        Original repository : https://gogs.alibellamine.me/alibell/refpypmsi
+        
         Il s'agit d'une implémentation en Python de la librairie R refpmsi.
         La librairie refpmsi est disponible à l'adresse suivante : https://github.com/denisGustin/refpmsi
         
@@ -18,10 +20,12 @@ Description: # refpypmsi
         ```
             git clone https://gogs.alibellamine.me/alibell/refpypmsi.git
             cd refpypmsi
+            pip install -r requirements.txt
             pip install -e .
         ```
         
         ## Utilisation
         
         Se reporter au [manuel d'utilisation de refpmsi](https://denisgustin.github.io/refpmsi/articles/fonctions_refpmsi.html).
+        
 Platform: UNKNOWN

+ 1 - 0
refpypmsi.egg-info/SOURCES.txt

@@ -2,6 +2,7 @@ CHANGES.txt
 MANIFEST.in
 README.md
 setup.py
+refpypmsi/__init__.py
 refpypmsi.egg-info/PKG-INFO
 refpypmsi.egg-info/SOURCES.txt
 refpypmsi.egg-info/dependency_links.txt

+ 1 - 1
refpypmsi.egg-info/top_level.txt

@@ -1 +1 @@
-
+refpypmsi

+ 0 - 0
refpypmsi.py → refpypmsi/__init__.py


+ 1 - 1
setup.py

@@ -8,6 +8,6 @@ setup(name='refpypmsi',
       author='Ali BELLAMINE',
       author_email='contact@alibellamine.me',
       description='Implémentation en Python de la librairie refpmsi (https://github.com/denisGustin/refpmsi).',
-      packages=find_packages(),
+      packages=["refpypmsi"],
       long_description=open('README.md').read(),
     )