-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (26 loc) · 906 Bytes
/
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
from setuptools import setup
setup(
name='geolucidate',
version='0.4',
description='Parse free-form geographic coordinates in text, and automatically generate links and metadata.',
author='Kurt Raschke',
author_email='[email protected]',
url='http://github.com/kurtraschke/geolucidate',
license = "MIT",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Scientific/Engineering :: GIS"
],
packages=[
"geolucidate",
"geolucidate.links",
"geolucidate.tests",
],
test_suite='nose.collector',
tests_require=['nose'])