forked from bodyshopbidsdotcom/PyWrike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 831 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
from distutils.core import setup
CURRENT_VERSION = '0.5'
setup(
name = 'PyWrike',
version = CURRENT_VERSION,
py_modules = ['wrike'],
description = 'A class to make api calls to Wrike',
author = 'Snapsheet',
author_email = '[email protected]',
url = 'https://github.com/bodyshopbidsdotcom/PyWrike',
download_url = 'https://github.com/bodyshopbidsdotcom/PyWrike/tarball/%s' % CURRENT_VERSION,
keywords = ['api', 'gateway', 'http', 'REST'],
install_requires = [
'basegateway==0.12'
],
classifiers = [
"Topic :: Internet :: WWW/HTTP",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)