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