Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
redphx authored May 2, 2023
1 parent 4433fde commit cd37fc7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.1.0",
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",
)

0 comments on commit cd37fc7

Please sign in to comment.