forked from SomethingWithComputers/pixoo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (33 loc) · 934 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
"""
Setup.py file for pixoo-ng package
"""
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
longdescription = (this_directory / "README.md").read_text()
setup(
name="pixoo_ng",
version="1.0.0",
author="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-ng#readme",
project_urls={
"Bug Tracker": "https://github.com/kongo09/pixoo-ng/issues",
},
packages=['pixoo_ng'],
install_requires=[
'requests ~= 2.31.0',
'Pillow ~= 10.0.0',
],
python_requires=">=3.10",
# package_dir={"": "."},
include_package_data=True,
)