/ setup.py
setup.py
 1  #!/usr/bin/env python3
 2  # -*- coding: utf-8 -*-
 3  """Setup process."""
 4  
 5  from io import open
 6  from os import path
 7  
 8  from setuptools import find_packages, setup
 9  
10  with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'),
11            encoding='utf-8') as f:
12      long_description = f.read()
13  
14  setup(
15      # Basic project information
16      name='airflow-xcom-redis',
17      version='0.1.0',
18      # Authorship and online reference
19      author='Jakub SokoĊ‚owski',
20      author_email='jakub@status.im',
21      url='https://github.com/status-im/airflow-xcom-redis',
22      # Detailled description
23      description='Alternative Backend for Airflow XCom.',
24      long_description=long_description,
25      long_description_content_type='text/markdown',
26      keywords='airflow xcom backend redis',
27      # Package configuration
28      packages=find_packages(exclude=('tests',)),
29      include_package_data=True,
30      python_requires='>= 3.6',
31      install_requires=[],
32      # Licensing and copyright
33      license='Apache 2.0'
34  )