-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (47 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: APACHE / MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
setup(
name='salesking',
version='0.2.2',
description='SalesKing API Wrapper and SDK',
author='Frank Bieniek',
author_email='[email protected]',
url='http://github.com/salesking/salesking_python_sdk',
packages=find_packages('.'),
install_requires=[
'requests',
'requests-oauth',
'certifi>=0.0.7',
'oauthlib',
'chardet>=1.0.0',
'jsonpatch==0.10',
'jsonpointer==0.5',
'jsonschema>=0.7,<1',
'validictory==1.0.0',
'iso8601==0.1.4',
'warlock==0.8.0',
'mock==1.0.1',
'jsonref==0.2_dev',
],
## git+https://github.com/gazpachoking/jsonref.git@0ad88d1f35e#egg=jsonref
##
dependency_links = [
'https://github.com/bcwaldon/warlock/tarball/0.8.0#egg=warlock-0.8.0',
],
tests_require=[
'mock==1.0.1',
],
include_package_data=True,
zip_safe = False,
#test_suite = 'runtests.main',
)