-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.56 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
# -*- coding: utf-8 -*-
#
# (c) 2017 Jonathan Bouzekri
#
# This file is part of the gmalt application
#
# MIT License :
# https://raw.githubusercontent.com/gmalt/api/master/LICENSE.txt
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
setup(
name="gmaltapi",
version=read('VERSION'),
author="Jonathan Bouzekri",
author_email="[email protected]",
description="gMalt server returning the altitude of a position",
license="MIT",
keywords="gis elevation altitude api webservice hgt",
url="http://github.com/gmalt/fileservice",
packages=find_packages(),
long_description=read('README.rst'),
install_requires=[
'celery', 'redis', 'webob', 'gevent', 'configobj',
'gmalthgtparser', 'routr', 'marshmallow', 'wsgicors'
],
extras_require={
'test': ['flake8', 'requests', 'pytest']
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: GIS",
],
entry_points='''
[console_scripts]
gmalt-server = gmaltapi.admin:run_server
gmalt-worker = gmaltapi.admin:run_worker
[services]
celery = gmaltapi.task:GmaltCelery
server = gmaltapi.server:GmaltServer
'''
)