forked from panoplyio/panoply-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 744 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 744 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
exec(
compile(
open('panoply/constants.py', "rb").read(),
'panoply/constants.py',
'exec'
)
)
setup(
name=__package_name__,
version=__version__,
packages=["panoply", "panoply.errors"],
install_requires=[
"requests==2.32.3",
"oauth2client==4.1.1",
"backoff==1.10.0",
"sshtunnel==0.1.5",
"paramiko==3.5.1",
],
extras_require={
"test": [
"pycodestyle==2.4.0",
"coverage==4.5.1",
],
},
url="https://github.com/panoplyio/panoply-python-sdk",
author="Panoply.io",
author_email="support@panoply.io",
)