-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathsetup.py
45 lines (38 loc) · 1.97 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
"""
Copyright (C) 2008 Leonard Norrgard <leonard.norrgard@gmail.com>
Copyright (C) 2015 Leonard Norrgard <leonard.norrgard@gmail.com>
This file is part of Geohash.
Geohash is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Geohash is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
License for more details.
You should have received a copy of the GNU Affero General Public
License along with Geohash. If not, see
<http://www.gnu.org/licenses/>.
"""
from setuptools import setup, find_packages
setup(
name = "Geohash",
version = "1.0",
packages = find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst']
},
# metadata for upload to PyPI
author = "Leonard Norrgard",
author_email = "leonard.norrgard@gmail.com",
description = "Module to decode/encode Geohashes to/from latitude and longitude. See http://en.wikipedia.org/wiki/Geohash",
long_description = "This module provides functions to decode and encode Geohashes to and from latitude and longitude coordinates.",
license = "GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.",
keywords = "Geohash GIS latitude longitude encode decode Galileo GPS WGS84 coordinates geotagging",
url = "https://github.com/vinsci/geohash/", # project home page, if any
download_url = "https://github.com/vinsci/geohash/archive/master.zip"
)