fix: setuptools markdown bug

This commit is contained in:
BryantHe 2023-07-20 11:13:46 +08:00
parent 7ba162971e
commit 08e818e1e1
4 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,3 @@
include *.py
include *.py *.md
recursive-include namekoplus/chassis *.py
recursive-include namekoplus/templates *.py *.yml

View File

@ -1,4 +1,5 @@
# namekoplus
A lightweight Python distributed microservice solution
## Document

View File

View File

@ -9,9 +9,10 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
setup(
name='namekoplus',
version='0.1.0',
version='0.1.1',
description='A lightweight Python distributed microservice solution',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Bryanthelol/namekoplus',
author='Bryant He',
@ -34,6 +35,7 @@ setup(
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
data_files=['README.md'],
entry_points={
'console_scripts': [