-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (35 loc) · 882 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
36
37
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_desc = open("README.md").read()
required = ['requests']
setup(
name='APIxoo',
version="0.3.1",
author="redphx",
license="MIT",
url="https://github.com/redphx/apixoo",
download_url="https://github.com/redphx/apixoo",
long_description=long_desc,
long_description_content_type="text/markdown",
description="Python wrapper for Divoom Pixoo server API",
packages=[
"apixoo"
],
include_package_data=True,
install_requires=required,
platforms="any",
keywords=[
"apixoo",
"divoom",
"pixoo",
"pixoo64"
],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python"
],
python_requires=">3.6",
)