-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.02 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
from os import path
from setuptools import (setup, find_packages)
root = path.abspath(path.dirname(__file__))
with open(path.join(root, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='xgeo',
version='0.0.1',
url='',
author='Abhishek Manandhar, Stefan Kirmaier',
description='Utility library for geo-rasters that uses xarray and rasterio.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'xarray>=0.11.3',
'pandas>=0.24.1'
'rasterio>=1.0.18',
'geopandas>=0.4.0',
'netCDF4>=1.4.2',
'shapely>=1.6.4'
],
test_requires=['pytest>=4.3.0'],
test_suite='',
packages=find_packages(exclude=['tests']),
zip_safe=False,
include_package_data=True,
platform='any',
classifiers=[
'Operating System: OS Independent',
'Programming Language: Python',
'Topic:: Software Development :: Libraries :: Python Modules'
]
)