forked from abduhbm/python-qaym
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 728 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name="python-qaym",
version="0.0.1",
author="Abdulelah Bin Mahfoodh",
description="A simple Python wrapper around Qaym API",
license="MIT",
keywords="qaym API",
packages=['qaym'],
install_requires=['requests'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
)