setup.py 445 B

1234567891011121314
  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=["refpypmsi"],
  9. long_description=open('README.md').read(),
  10. package_data={'refpypmsi': ['inst/referentiels/*']}
  11. )