123456789101112131415161718192021222324252627282930313233 |
- import setuptools
- setuptools.setup(
- name="rabbitmq-pdfparser",
- version="1.0.1",
- author="Furkan Kalkan",
- author_email="furkankalkan@mantis.com.tr",
- description="Asynchronous job library that consume RabbitMQ for PDF urls and publish pdf text back.",
- long_description=open("README.md").read(),
- long_description_content_type="text/markdown",
- platforms="all",
- classifiers=[
- "License :: OSI Approved :: Apache Software License",
- "Topic :: Internet",
- "Topic :: Software Development",
- "Topic :: Software Development :: Libraries",
- "Topic :: Software Development :: Testing",
- "Intended Audience :: Developers",
- "Operating System :: MacOS",
- "Operating System :: POSIX",
- "Operating System :: Microsoft",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8"
- ],
- install_requires=['aiohttp', 'aio_pika', 'PyPDF2'],
- python_requires=">3.6.*, <4",
- packages=['rabbitmq_pdfparser'],
- scripts=['bin/rabbitmq-pdfparser']
- )
|