setup.py 821 B

1234567891011121314151617181920212223242526272829
  1. from setuptools import setup
  2. def readme():
  3. with open('README.rst') as f:
  4. return f.read()
  5. setup(name='IPFML',
  6. version='0.0.1',
  7. description='Image Processing For Machine Learning',
  8. long_description=readme(),
  9. classifiers=[
  10. 'Development Status :: 3 - Alpha',
  11. 'License :: OSI Approved :: MIT License',
  12. 'Programming Language :: Python :: 3.6',
  13. 'Topic :: Image Processing :: Machine Learning',
  14. ],
  15. url='https://gogs.univ-littoral.fr/jerome.buisine/IPFML',
  16. author='Jérôme BUISINE',
  17. author_email='jerome.buisine@univ-littoral.fr',
  18. license='MIT',
  19. packages=['ipfml'],
  20. install_requires=[
  21. 'matplotlib',
  22. 'numpy',
  23. 'Pillow',
  24. 'sklearn',
  25. 'scipy'
  26. ],
  27. zip_safe=False)