setup.py 854 B

123456789101112131415161718192021222324252627282930
  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.5',
  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 :: Scientific/Engineering :: Artificial Intelligence'
  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. 'skimage',
  26. 'scipy'
  27. ],
  28. zip_safe=False)