apv

- 🐍 advanced python logging 📔
git clone git://git.acid.vegas/apv.git
Log | Files | Refs | Archive | README

setup.py (605B)

      1 #!/usr/bin/env python3
      2 # Advanced Python Logging - Developed by acidvegas in Python (https://git.acid.vegas/apv)
      3 # setup.py
      4 
      5 from setuptools import setup, find_packages
      6 
      7 setup(
      8     name='apv',
      9     version='1.0.0',
     10     description='Advanced Python Logging',
     11     author='acidvegas',
     12     url='https://git.acid.vegas/apv',
     13     packages=find_packages(),
     14     install_requires=[
     15         # No required dependencies for basic functionality
     16     ],
     17     extras_require={
     18         'cloudwatch': ['boto3'],
     19         'ecs' : ['ecs-logging'],
     20     },
     21     classifiers=[
     22         'Programming Language :: Python :: 3',
     23     ],
     24 )