-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
36 lines (32 loc) · 1.1 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
import os
from distutils.core import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="reverse_geocode",
version="1.6.4",
packages=["reverse_geocode"],
package_dir={"reverse_geocode": "reverse_geocode"},
data_files=[
(
"reverse_geocode",
["reverse_geocode/countries.csv", "reverse_geocode/geocode.gz"],
)
],
author="Richard Penman",
author_email="richard.penman@gmail.com",
description="Reverse geocode the given latitude / longitude",
long_description=read("README.md"),
long_description_content_type='text/markdown',
url="https://github.com/richardpenman/reverse_geocode/",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
license="lgpl",
install_requires=["numpy", "scipy"],
)