Skip to content

Commit

Permalink
provide readme for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
kongo09 committed Jan 1, 2024
1 parent 189f27f commit fc684ad
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,22 @@
"""
Setup.py file for pixoo package
"""
from pathlib import Path
from setuptools import setup

this_directory = Path(__file__).parent
longdescription = (this_directory / "README.md").read_text()

setup(
name="pixoo",
version="0.8.0",
version="0.8.1",
author="Ron Talman, kongo09",
description=(
"A library to easily communicate with the Divoom Pixoo 64",
"(and hopefully soon more screens that support Wi-Fi)",
),
long_description=longdescription,
long_description_content_type='text/markdown',
license="BSD",
keywords="pixoo",
url="https://github.com/kongo09/pixoo#readme",
Expand All @@ -24,5 +30,6 @@
'Pillow ~= 10.0.0',
],
python_requires=">=3.10",
package_dir={"": "."},
# package_dir={"": "."},
include_package_data=True,
)

0 comments on commit fc684ad

Please sign in to comment.