-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (33 loc) · 892 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='GOSTRocks',
packages=['GOSTRocks'],
install_requires=[
'rasterio',
'geopandas',
'pandas',
'numexpr > 2.6.8',
'numpy',
'pyproj',
'ogr',
'seaborn',
'boto3',
'botocore',
'contextily',
'matplotlib',
'tqdm',
'xarray',
'osmnx',
'affine',
'PyOpenSSL >= 23.2'
],
version='0.1.0',
description='Miscellaneous geospatial functions concerning vector, raster, and network analysis',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bpstewar/gostrocks",
author='Benjamin P. Stewart',
package_dir= {'':'src'}
)