setup.py 388 B

12345678910111213
  1. from setuptools import setup, find_packages
  2. setup(name='refpypmsi',
  3. version='1.0',
  4. license='',
  5. author='Ali BELLAMINE',
  6. author_email='contact@alibellamine.me',
  7. description='Implémentation en Python de la librairie refpmsi (https://github.com/denisGustin/refpmsi).',
  8. packages=find_packages(),
  9. long_description=open('README.md').read(),
  10. )