-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 745 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
from setuptools import find_packages
setup(
name='geos',
version='0.2.1',
packages=find_packages(),
description='Map server to view, measure and print maps in a web browser'
'and to display maps as an overlay in google earth.',
author='Gregor Sturm',
author_email='mail@gregor-sturm.de',
url='https://github.com/grst/geos', # use the URL to the github repo
keywords=['maps', 'google earth', 'overlay', 'map printing'], # arbitrary keywords
license='GPLv3',
install_requires=[
'flask', 'lxml'
],
classifiers=[],
entry_points={
'console_scripts': ['geos=geos.scripts.runserver:run_app'],
},
include_package_data=True
)