latest pushes

This commit is contained in:
Ronaldson Bellande 2024-11-22 21:01:31 -05:00
parent 4b5aab6647
commit 348c966470
2 changed files with 4 additions and 2 deletions

View File

@ -1,2 +1,4 @@
cp ../../README.md ./
python setup.py sdist
twine upload dist/*
rm -r ./README.md

View File

@ -1,11 +1,11 @@
from setuptools import setup, find_packages
with open("../../README.md", "r", encoding="utf-8") as fh:
with open("./README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="bellande_limit",
version="0.1.1",
version="0.1.2",
description="Robots Limit",
long_description=long_description,
long_description_content_type="text/markdown",