setup.py 814 B

123456789101112131415161718192021222324252627282930313233
  1. from setuptools import setup
  2. with open('README.md', 'r') as f:
  3. long_description = f.read()
  4. setup(
  5. name='s3-concat',
  6. packages=['s3_concat'],
  7. version='0.2.3',
  8. description='Concat files in s3',
  9. long_description=long_description,
  10. long_description_content_type='text/markdown',
  11. author='Eddy Hintze',
  12. author_email="eddy@hintze.co",
  13. url="https://github.com/xtream1101/s3-concat",
  14. license='MIT',
  15. classifiers=[
  16. "Programming Language :: Python :: 3",
  17. "Operating System :: OS Independent",
  18. "Topic :: Software Development :: Libraries :: Python Modules",
  19. "Topic :: Utilities",
  20. ],
  21. entry_points={
  22. 'console_scripts': [
  23. 's3-concat=s3_concat.cli:cli',
  24. ],
  25. },
  26. install_requires=[
  27. 'boto3',
  28. ],
  29. )