Skip to content

Commit

Permalink
chore: try to publish with correct readme 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfa committed Aug 12, 2022
1 parent 32f1644 commit bcf5c1f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""

import pathlib

from setuptools import setup, find_packages # noqa: H301

NAME = "fingerprint-pro-server-api-sdk"
Expand All @@ -29,12 +31,17 @@
]


here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')

setup(
name=NAME,
version=VERSION,
description="Fingerprint Pro Server API",
long_description="file: README.md, CHANGELOG.md, LICENSE",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
license_files=["LICENSE"],
author_email="[email protected]",
url="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk",
keywords=["Swagger", "Fingerprint Pro Server API"],
Expand Down
9 changes: 8 additions & 1 deletion template/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

{{>partial_header}}

import pathlib

from setuptools import setup, find_packages # noqa: H301

NAME = "{{{projectName}}}"
Expand Down Expand Up @@ -30,12 +32,17 @@ REQUIRES.append("aiohttp")
REQUIRES.append("tornado")
{{/tornado}}

here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')

setup(
name=NAME,
version=VERSION,
description="{{appName}}",
long_description="file: README.md, CHANGELOG.md, LICENSE",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
license_files=["LICENSE"],
author_email="{{infoEmail}}",
url="{{packageUrl}}",
keywords=["Swagger", "{{appName}}"],
Expand Down

0 comments on commit bcf5c1f

Please sign in to comment.