-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 882 Bytes
/
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
"""
StratoDem Analytics : setup.py
Principal Author(s) : Michael Clawar
Secondary Author(s) :
Description :
Notes :
September 29, 2017
"""
from setuptools import setup
setup(
name='SDUtils',
version='2.6.4',
packages=['sd_utils'],
license='(c) 2017- StratoDem Analytics. All rights reserved.',
description='StratoDem utilities',
long_description='General logging and QoL utilities',
author='StratoDem Analytics',
author_email='[email protected]',
url='https://github.com/StratoDem/SDUtils',
install_requires=[
'slackclient==2.9.3',
'numpy>=1.19',
'pandas==1.3.4',
'joblib',
'dask==2022.1.1',
'xarray>=0.10.0',
'geopandas>=0.3.0',
'simpledbf>=0.2.6',
'python-snappy',
'pyarrow>=2.0.0',
'toolz',
'cloudpickle',
'fastparquet',
],
)