-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.2 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.2 KB
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
from setuptools import setup, find_packages
VERSION = '0.2.3'
DESCRIPTION = 'Python module for interfacing Kyte API'
LONG_DESCRIPTION = 'The Kyte API Python Library is designed to facilitate communication between a Python client and the Kyte API endpoint. It simplifies the process of authentication, request signing, and making API calls.'
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="kyte",
version=VERSION,
author="Kenneth P. Hough",
author_email="<kenneth@keyqcloud.com>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=['kyte']),
install_requires=['urllib3<2','requests','pymysql'],
url="https://github.com/keyqcloud/kyte-api-python",
license="MIT",
keywords=['python', 'kyte', 'kyte api'],
classifiers= [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)