-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 826 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
import setuptools
long_description = open('README.md').read()
setuptools.setup(
name="pykuna",
version="0.6.0",
author="Mark Coombes",
author_email="mark@markcoombes.ca",
description="Python3 async library for interacting with the Kuna camera mobile API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/marthoc/pykuna",
packages=['pykuna'],
install_requires=['aiohttp', 'asyncio', 'async_timeout'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)