-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (58 loc) · 2.09 KB
/
setup.py
File metadata and controls
63 lines (58 loc) · 2.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Geo3d
#
# This file is part of the GeoMed3D project: https://github.com/AlexeyPechnikov/geo3d
#
# Copyright (c) 2023, Alexey Pechnikov
#
# Licensed under the BSD 3-Clause License (see LICENSE for details)
# ----------------------------------------------------------------------------
from setuptools import setup
import urllib.request
# read the contents of your README file
#from pathlib import Path
#this_directory = Path(__file__).parent
#long_description = (this_directory / "README.md").read_text()
upstream_url = 'https://raw.githubusercontent.com/AlexeyPechnikov/geo3d/main/README.md'
response = urllib.request.urlopen(upstream_url)
long_description = response.read().decode('utf-8')
setup(
name='geo3d',
version='2023.12.03',
description='Geo3D (Geology 3D): Powerful and Accessible 3D Inversion',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://Geo3D.dev',
author='Alexey Pechnikov',
author_email='alexey@pechnikov.dev',
license='BSD-3-Clause',
packages=['geo3d'],
install_requires=['xarray>=0.19.0',
'numpy>=1.22.4',
'numba',
'dask',
'pandas>=1.5',
'geopandas',
'rasterio',
'rioxarray',
'scipy>=1.9.1',
'shapely>=2.0.1',
'rioxarray',
'h5netcdf>=1.2.0',
'h5py',
'earthengine-api',
'vtk'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
python_requires='>=3.10'
)