Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
seyed-dev committed Oct 27, 2023
1 parent 5c2987f commit 2a8b86d
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
from setuptools import setup, find_packages

try:
with open("README.md") as fin:
LONG_DESCRIPTION = fin.read()
except Exception: # noqa
LONG_DESCRIPTION = ""


setup(
name="aggify",
version="0.1.4",
Expand All @@ -17,7 +10,7 @@
packages=find_packages(),
install_requires=["mongoengine >= 0.27.0"],
python_requires=">=3.10",
long_description=LONG_DESCRIPTION,
long_description=open('README.md', 'r').read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 2a8b86d

Please sign in to comment.