File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
# flake8: noqa
16
16
17
- __version__ = "0.1.1 "
17
+ __version__ = "0.1.3 "
18
18
from .auth import Auth
19
19
descartes_auth = Auth ()
20
20
Original file line number Diff line number Diff line change 19
19
from setuptools import setup , find_packages
20
20
21
21
22
+ __version__ = "0.1.3"
23
+
24
+
22
25
def do_setup ():
23
26
src_path = os .path .dirname (os .path .abspath (sys .argv [0 ]))
24
27
old_path = os .getcwd ()
25
28
os .chdir (src_path )
26
29
sys .path .insert (0 , src_path )
27
30
28
- from descarteslabs import __version__
29
-
30
31
kwargs = {}
31
32
kwargs ['name' ] = 'descarteslabs'
32
33
kwargs ['description' ] = 'Descartes Labs Python Library'
@@ -55,6 +56,11 @@ def do_setup():
55
56
'descarteslabs/scripts/raster' ,
56
57
'descarteslabs/scripts/metadata' ,
57
58
]
59
+ kwargs ['install_requires' ] = [
60
+ "requests" ,
61
+ "cachetools" ,
62
+ "six" ,
63
+ ]
58
64
kwargs ['license' ] = 'Apache 2.0' ,
59
65
kwargs ['zip_safe' ] = False
60
66
You can’t perform that action at this time.
0 commit comments