setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. import setuptools
  2. setuptools.setup(
  3. name="rabbitmq-pdfparser",
  4. version="1.0.1",
  5. author="Furkan Kalkan",
  6. author_email="furkankalkan@mantis.com.tr",
  7. description="Asynchronous job library that consume RabbitMQ for PDF urls and publish pdf text back.",
  8. long_description=open("README.md").read(),
  9. long_description_content_type="text/markdown",
  10. platforms="all",
  11. classifiers=[
  12. "License :: OSI Approved :: Apache Software License",
  13. "Topic :: Internet",
  14. "Topic :: Software Development",
  15. "Topic :: Software Development :: Libraries",
  16. "Topic :: Software Development :: Testing",
  17. "Intended Audience :: Developers",
  18. "Operating System :: MacOS",
  19. "Operating System :: POSIX",
  20. "Operating System :: Microsoft",
  21. "Programming Language :: Python",
  22. "Programming Language :: Python :: 3",
  23. "Programming Language :: Python :: 3.6",
  24. "Programming Language :: Python :: 3.7",
  25. "Programming Language :: Python :: 3.8"
  26. ],
  27. install_requires=['aiohttp', 'aio_pika', 'PyPDF2'],
  28. python_requires=">3.6.*, <4",
  29. packages=['rabbitmq_pdfparser'],
  30. scripts=['bin/rabbitmq-pdfparser']
  31. )