Fixed setup.py missing description
This commit is contained in:
parent
f2d0832a01
commit
72047f1d8e
15
setup.py
15
setup.py
@ -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',
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue
Block a user