apv

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

setup.py (1148B)

      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 with open('README.md', 'r', encoding='utf-8') as fh:
      8 	long_description = fh.read()
      9 
     10 setup(
     11     name='apv',
     12     version='1.0.4',
     13     description='Advanced Python Logging',
     14     author='acidvegas',
     15     author_email='acid.vegas@acid.vegas',
     16     long_description=long_description,
     17     long_description_content_type='text/markdown',
     18     url='https://github.com/acidvegas/apv',
     19     project_urls={
     20         'Bug Tracker': 'https://github.com/acidvegas/apv/issues',
     21         'Documentation': 'https://github.com/acidvegas/apv/wiki',
     22         'Source Code': 'https://github.com/acidvegas/apv',
     23     },
     24     packages=find_packages(),
     25     install_requires=[
     26         # No required dependencies for basic functionality
     27     ],
     28     extras_require={
     29         'cloudwatch': ['boto3'],
     30         'ecs' : ['ecs-logging'],
     31     },
     32     classifiers=[
     33         'Programming Language :: Python :: 3',
     34         'License :: OSI Approved :: ISC License (ISCL)',
     35         'Operating System :: OS Independent',
     36     ],
     37 )