setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. from setuptools import setup, find_packages
  2. from os import path
  3. here = path.abspath(path.dirname(__file__))
  4. # Get the long description from the README file
  5. with open(path.join(here, 'README.md'), encoding='utf-8') as f:
  6. long_description = f.read()
  7. setup(
  8. name='openaq_ingestion',
  9. version='0.0.1',
  10. description='Utils for SQS ingestion of openaq data',
  11. long_description=long_description,
  12. long_description_content_type='text/markdown',
  13. author='Aurelien Vermylen',
  14. classifiers=[
  15. 'Development Status :: 3 - Alpha',
  16. 'Intended Audience :: Developers',
  17. 'License :: OSI Approved :: MIT License',
  18. 'Programming Language :: Python :: 3.5',
  19. 'Programming Language :: Python :: 3.6',
  20. 'Programming Language :: Python :: 3.7',
  21. 'Programming Language :: Python :: 3.8',
  22. ],
  23. packages=['openaq_ingestion'],
  24. python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
  25. install_requires=[],
  26. package_data={
  27. },
  28. entry_points={
  29. 'console_scripts': [
  30. 'processqueue=openaq_ingestion.openaq_ingestion:run_process_queue',
  31. 'initdb=openaq_ingestion.openaq_ingestion:init_db'
  32. ],
  33. },
  34. )