setup.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. import pathlib
  2. import setuptools
  3. from google_photos_takeout_helper.__version__ import __version__
  4. HERE = pathlib.Path(__file__).parent
  5. README = (HERE/"README.md").read_text()
  6. setuptools.setup(
  7. name="google-photos-takeout-helper",
  8. version=__version__,
  9. description="Script that organizes the Google Photos Takeout archive into one big chronological folder",
  10. long_description=README,
  11. long_description_content_type='text/markdown',
  12. url='https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper/',
  13. author='TheLastGimbus',
  14. author_email='mateusz.soszynski@tuta.io',
  15. license='Apache',
  16. packages=setuptools.find_packages(),
  17. classifiers=[
  18. "Programming Language :: Python :: 3",
  19. 'License :: OSI Approved :: Apache Software License',
  20. 'Development Status :: 5 - Production/Stable',
  21. 'Intended Audience :: End Users/Desktop',
  22. 'Topic :: Multimedia :: Graphics'
  23. ],
  24. python_requires='>=3.6',
  25. install_requires=(HERE/'requirements.txt').read_text().split('\n'),
  26. entry_points={
  27. 'console_scripts': [
  28. 'google-photos-takeout-helper=google_photos_takeout_helper.__main__:main'
  29. ]
  30. }
  31. )