-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (51 loc) · 1.57 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
version = '0.1'
setup(
name='ecocloud_wps_demo',
version=version,
description="Ecocloud WPS demo services",
long_description=(open("README.rst").read() + "\n\n" +
open("HISTORY.rst").read()),
classifiers=[
"Development Status :: 1 - Alpha",
"Environment :: Web Environment",
"Framework :: Pyramid",
"Intended Audience :: Developers",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License"
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
'Topic :: Scientific/Engineering :: GIS'
],
keywords='ogc wps pyramid',
author='',
author_email='',
maintainer='',
maintainer_email='',
url='https://github.com/ausecocloud/ecocloud_wps_demo',
license='Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyramid',
'pywps',
'python-swiftclient',
'python-keystoneclient'
],
entry_points={
'paste.app_factory': [
'main = ecocloud_wps_demo:main',
],
'pywps_processing': [
'threads = ecocloud_wps_demo.pywps.processing:ThreadProcessing',
],
'pywps_storage': [
'SwiftStorage = ecocloud_wps_demo.pywps.swiftstorage:SwiftStorage',
]
},
)