| 1234567891011121314151617181920212223242526272829303132333435363738 |
- from setuptools import setup, find_packages
- from os import path
- here = path.abspath(path.dirname(__file__))
- # Get the long description from the README file
- with open(path.join(here, 'README.md'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='openaq_ingestion',
- version='0.0.1',
- description='Utils for SQS ingestion of openaq data',
- long_description=long_description,
- long_description_content_type='text/markdown',
- author='Aurelien Vermylen',
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3.8',
- ],
- packages=['openaq_ingestion'],
- python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
- install_requires=[],
- package_data={
- },
- entry_points={
- 'console_scripts': [
- 'processqueue=openaq_ingestion.openaq_ingestion:run_process_queue',
- 'initdb=openaq_ingestion.openaq_ingestion:init_db'
- ],
- },
- )
|