Skip to content

Commit d2d8bb8

Browse files
authored
Merge pull request #39 from descarteslabs/feat/pypi
Feat/pypi
2 parents bf12cd2 + 9deda74 commit d2d8bb8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

descarteslabs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# flake8: noqa
1616

17-
__version__ = "0.1.1"
17+
__version__ = "0.1.3"
1818
from .auth import Auth
1919
descartes_auth = Auth()
2020

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
from setuptools import setup, find_packages
2020

2121

22+
__version__ = "0.1.3"
23+
24+
2225
def do_setup():
2326
src_path = os.path.dirname(os.path.abspath(sys.argv[0]))
2427
old_path = os.getcwd()
2528
os.chdir(src_path)
2629
sys.path.insert(0, src_path)
2730

28-
from descarteslabs import __version__
29-
3031
kwargs = {}
3132
kwargs['name'] = 'descarteslabs'
3233
kwargs['description'] = 'Descartes Labs Python Library'
@@ -55,6 +56,11 @@ def do_setup():
5556
'descarteslabs/scripts/raster',
5657
'descarteslabs/scripts/metadata',
5758
]
59+
kwargs['install_requires'] = [
60+
"requests",
61+
"cachetools",
62+
"six",
63+
]
5864
kwargs['license'] = 'Apache 2.0',
5965
kwargs['zip_safe'] = False
6066

0 commit comments

Comments
 (0)