setup.py 843 B

1234567891011121314151617181920212223242526
  1. from setuptools import setup, find_packages
  2. setup(
  3. author='Chris Pickett',
  4. author_email='chris.pickett@gmail.com',
  5. classifiers=[
  6. 'Development Status :: 4 - Beta',
  7. 'Intended Audience :: Developers',
  8. 'License :: OSI Approved :: MIT License',
  9. 'Operating System :: OS Independent',
  10. 'Programming Language :: Python',
  11. 'Programming Language :: Python :: 2',
  12. 'Programming Language :: Python :: 3',
  13. 'Topic :: Scientific/Engineering :: Image Recognition',
  14. ],
  15. description='A Python Perceptual Image Hashing Module',
  16. license='MIT',
  17. long_description=open('README.rst').read(),
  18. name='Photohash',
  19. packages=find_packages(),
  20. url='https://github.com/bunchesofdonald/photohash',
  21. version='0.4.1',
  22. install_requires=[
  23. 'Pillow>=2.1.0',
  24. ],
  25. )