forked from hydroshare/tethysapp-hydroshare_gis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.18 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
import os
from setuptools import setup, find_packages
from tethys_apps.app_installation import custom_develop_command, custom_install_command
# ### Apps Definition ###
app_package = 'hydroshare_gis'
release_package = 'tethysapp-' + app_package
app_class = 'hydroshare_gis.app:HydroshareGis'
app_package_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tethysapp', app_package)
# ### Python Dependencies ###
dependencies = ['hs-restclient', 'xmltodict', 'GDAL']
setup(
name='HydroShare GIS',
version='1.0',
description='View HydroShare Raster and Feature Resources and/or upload them from your computer.',
long_description='',
keywords='',
author='Shawn Crawley',
author_email='[email protected]',
url='',
license='The MIT License (MIT)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['tethysapp', 'tethysapp.' + app_package],
include_package_data=True,
zip_safe=False,
install_requires=dependencies,
cmdclass={
'install': custom_install_command(app_package, app_package_dir, dependencies),
'develop': custom_develop_command(app_package, app_package_dir, dependencies)
}
)