Fixed setup.py missing description

This commit is contained in:
Dionysus 2024-11-26 18:39:27 -05:00
parent f2d0832a01
commit 72047f1d8e
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -4,12 +4,23 @@
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='apv',
version='1.0.0',
description='Advanced Python Logging',
author='acidvegas',
url='https://git.acid.vegas/apv',
author_email='acid.vegas@acid.vegas',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/acidvegas/apv',
project_urls={
'Bug Tracker': 'https://github.com/acidvegas/apv/issues',
'Documentation': 'https://github.com/acidvegas/apv/wiki',
'Source Code': 'https://github.com/acidvegas/apv',
},
packages=find_packages(),
install_requires=[
# No required dependencies for basic functionality
@ -20,5 +31,7 @@ setup(
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
],
)