-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
30 lines (28 loc) · 873 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
#!/usr/bin/python
"""
Setup.py file for pixoo package
"""
from pathlib import Path
from setuptools import setup
setup(
name='pixoo',
version='0.9.2',
author='Ron Talman',
description='A library to easily communicate with the Divoom Pixoo 64',
license='CC BY-NC-SA',
keywords=['pixoo', 'divoom', 'pixoo64'],
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
url='https://github.com/SomethingWithComputers/pixoo#readme',
# packages=['pixoo'],
project_urls={
'Issue Tracker': 'https://github.com/SomethingWithComputers/pixoo/issues',
'Source': 'https://github.com/SomethingWithComputers/pixoo'
},
install_requires=[
'Flask ~= 3.0.3',
'requests ~= 2.32.3',
'pillow ~= 10.4.0'
],
python_requires='>=3.10'
)