forked from nameko/nameko-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (49 loc) · 1.47 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='nameko-salesforce',
version='0.0.1',
description=(
'Nameko extension for easy communication with Salesforce '
'(Including Streaming API)'
),
author='Student.com',
url='http://github.com/iky/nameko-salesforce',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
"cachetools==2.0.0",
"nameko>=2.5.1",
"nameko-bayeux-client==0.0.1",
"redis==2.10.5",
"simple-salesforce==0.72.2",
],
extras_require={
'dev': [
"coverage==4.3.4",
"flake8==3.3.0",
"pylint==1.7.1",
"pytest==3.0.6",
"requests-mock==1.3.0",
],
'docs': [
'Sphinx==1.6.2',
'sphinx-rtd-theme==0.2.4',
],
},
dependency_links=[],
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)