Skip to content

Commit

Permalink
Add README.md to PyPI package.
Browse files Browse the repository at this point in the history
  • Loading branch information
coreprocess committed May 10, 2021
1 parent 435743c commit 8caa61d
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
# publish bip
- run: sed -i -E "s/^__version__\s*=\s*.+$/__version__ = '$(cat ../.version | tr -d '[:space:]')'/" */__init__.py
working-directory: bip
- run: cp ../README.md .
working-directory: bip
- run: python3 -m build
working-directory: bip
- run: python3 -m twine upload dist/*
Expand All @@ -27,8 +25,6 @@ jobs:
# publish bip_converter
- run: sed -i -E "s/^__version__\s*=\s*.+$/__version__ = '$(cat ../.version | tr -d '[:space:]')'/" */__init__.py
working-directory: bip_converter
- run: cp ../README.md .
working-directory: bip_converter
- run: python3 -m build
working-directory: bip_converter
- run: python3 -m twine upload dist/*
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
21 changes: 20 additions & 1 deletion bip/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
from setuptools import setup, find_packages

setup(name='t3dn-bip', packages=find_packages(), install_requires=[])
with open("../README.md", "r") as fh:
long_description = fh.read()

setup(
name='t3dn-bip',
author="3D Ninjas GmbH",
author_email="niklas@3dninjas.io",
description="3DN BIP allows blazingly fast image loads in Blender.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/3dninjas/3dn-bip",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
license="GPLv3",
packages=find_packages(),
install_requires=[],
)
15 changes: 15 additions & 0 deletions bip_converter/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
from setuptools import setup, find_packages

with open("../README.md", "r") as fh:
long_description = fh.read()

setup(
name='t3dn-bip-converter',
author="3D Ninjas GmbH",
author_email="niklas@3dninjas.io",
description="3DN BIP allows blazingly fast image loads in Blender.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/3dninjas/3dn-bip",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
license="GPLv3",
packages=find_packages(),
install_requires=['Pillow'],
)

0 comments on commit 8caa61d

Please sign in to comment.