-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.35 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.35 KB
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
################################################################################
from setuptools import find_packages, setup
################################################################################
# run setup
setup(
name="trackio",
version="0.2.0",
license="MIT",
author="Derek J Eden",
author_email="derekjeden@gmail.com",
description="A python approach to working with mass movement data with big datasets and small computational power in mind.",
include_package_data=True,
packages=find_packages(),
install_requires=[
"Cython",
"numpy<2.0",
"scipy==1.12.0",
"pandas==2.2.1",
"geopandas",
"tqdm",
"more_itertools",
"pyproj",
"beautifulsoup4",
"scikit-learn",
"scikit-image",
"kneed",
"dask==2024.2.1",
"matplotlib",
"PyQt5",
"pygments>=2.13.0,<3.0.0",
"GDAL @ https://github.com/derekeden/trackio/releases/download/v0.2.0/GDAL-3.8.4-cp310-cp310-win_amd64.whl",
"rasterio @ https://github.com/derekeden/trackio/releases/download/v0.2.0/rasterio-1.3.9-cp310-cp310-win_amd64.whl",
"inpoly @ https://github.com/derekeden/trackio/releases/download/v0.2.0/inpoly-0.2.0-cp310-cp310-win_amd64.whl",
],
)
################################################################################