-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 875 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
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
setup(
name='girder-geospatial',
version='0.3.1',
description='Generate metadata for various geospatial datasets',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/OpenGeoscience/girder_geospatial',
maintainer='Kitware, Inc.',
maintainer_email='[email protected]',
packages=find_packages(exclude=('tests')),
entry_points={
'geometa.types': [],
'girder.plugin': [
'geometa = geometa:GeometaPlugin'
]
},
install_requires=[
'pyproj',
'shapely',
# Will fix it once marshmallow publishes new version
'marshmallow==3.0.0b10',
'geojson',
'rasterio',
'gdal'
],
)