mirror of
				https://github.com/Bryanthelol/namekoplus
				synced 2025-11-04 16:46:03 +08:00 
			
		
		
		
	fix: setuptools markdown bug
This commit is contained in:
		@@ -1,3 +1,3 @@
 | 
				
			|||||||
include *.py
 | 
					include *.py *.md
 | 
				
			||||||
recursive-include namekoplus/chassis *.py
 | 
					recursive-include namekoplus/chassis *.py
 | 
				
			||||||
recursive-include namekoplus/templates *.py *.yml
 | 
					recursive-include namekoplus/templates *.py *.yml
 | 
				
			||||||
@@ -1,4 +1,5 @@
 | 
				
			|||||||
# namekoplus
 | 
					# namekoplus
 | 
				
			||||||
 | 
					
 | 
				
			||||||
A lightweight Python distributed microservice solution
 | 
					A lightweight Python distributed microservice solution
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Document
 | 
					## Document
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								setup.py
									
									
									
									
									
								
							@@ -9,9 +9,10 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
setup(
 | 
					setup(
 | 
				
			||||||
    name='namekoplus',
 | 
					    name='namekoplus',
 | 
				
			||||||
    version='0.1.0',
 | 
					    version='0.1.1',
 | 
				
			||||||
    description='A lightweight Python distributed microservice solution',
 | 
					    description='A lightweight Python distributed microservice solution',
 | 
				
			||||||
    long_description=long_description,
 | 
					    long_description=long_description,
 | 
				
			||||||
 | 
					    long_description_content_type='text/markdown',
 | 
				
			||||||
    url='https://github.com/Bryanthelol/namekoplus',
 | 
					    url='https://github.com/Bryanthelol/namekoplus',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    author='Bryant He',
 | 
					    author='Bryant He',
 | 
				
			||||||
@@ -34,6 +35,7 @@ setup(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    packages=find_packages(exclude=['contrib', 'docs', 'tests']),
 | 
					    packages=find_packages(exclude=['contrib', 'docs', 'tests']),
 | 
				
			||||||
    include_package_data=True,
 | 
					    include_package_data=True,
 | 
				
			||||||
 | 
					    data_files=['README.md'],
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    entry_points={
 | 
					    entry_points={
 | 
				
			||||||
        'console_scripts': [
 | 
					        'console_scripts': [
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user