We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47ab22e + a795637 commit abe408eCopy full SHA for abe408e
templates/python/setup.py.twig
@@ -1,11 +1,18 @@
1
import setuptools
2
3
+long_description: str
4
+
5
+with open("README.md", "r", encoding="utf-8") as readme_file_desc:
6
+ long_description = readme_file_desc.read()
7
8
setuptools.setup(
9
name = '{{spec.title | caseSnake}}',
10
packages = ['{{spec.title | caseSnake}}', '{{spec.title | caseSnake}}/services'],
11
version = '{{sdk.version}}',
12
license='{{spec.licenseName}}',
13
description = '{{sdk.shortDescription}}',
14
+ long_description = long_description,
15
+ long_description_content_type = 'text/markdown',
16
author = '{{spec.contactName}}',
17
author_email = '{{spec.contactEmail}}',
18
maintainer = '{{spec.contactName}}',
0 commit comments