-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (57 loc) · 1.84 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("src/remote_sensing_processor/__init__.py") as f:
for line in f:
if line.find("__version__") >= 0:
version = line.split("=")[1].strip()
version = version.strip('"')
version = version.strip("'")
continue
setuptools.setup(
name='remote-sensing-processor',
version=version,
author='Mikhail Moskovchenko',
author_email='[email protected]',
description='RSP is a tool for geospatial raster data processing',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/simonreise/remote-sensing-processor',
project_urls={
'Bug Tracker': 'https://github.com/simonreise/remote-sensing-processor/issues',
'Source': 'https://github.com/simonreise/remote-sensing-processor',
'Documentation': 'https://remote-sensing-processor.readthedocs.io'
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Environment :: GPU :: NVIDIA CUDA',
'Topic :: Scientific/Engineering :: GIS'
],
keywords='remote sensing, landsat, sentinel, gdal, rasterio',
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
setup_requires=['cython', 'numpy>=1.17'],
install_requires=[
'numpy>=1.17',
'dask',
'torch>=2.0',
'torchvision>=0.10',
'lightning',
'tensorboard',
'transformers',
'timm',
'xgboost',
'scikit-learn',
'scikit-image',
'rasterio>=1.2',
'rioxarray',
'pyproj',
'geopandas',
'geocube',
'zarr',
],
python_requires=">=3.8",
include_package_data=True
)