-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (21 loc) · 1.01 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
from setuptools import setup
import os, re
name = 'lsi'
version_number_re = "\s*__version__\s*=\s*((\"([^\"]|\\\\\")*\"|'([^']|\\\\')*'))"
version_file = os.path.join(os.path.dirname(__file__), name, '__init__.py')
version_number = re.search(version_number_re, open(version_file).read()).groups()[0][1:-1]
setup(
name = name,
version = version_number,
description = 'Linked Spatial Data Indexing',
author='William Waites',
author_email='[email protected]',
url='https://github.com/kasabi/linkedspatialindex',
classifiers=['Programming Language :: Python','License :: Public Domain', 'Operating System :: OS Independent', 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Database'],
packages=['lsi'],
install_requires=['Rtree', 'rdflib-rdfjson', 'Werkzeug', 'autoneg', 'python-daemon', 'shapely', 'geojson', 'acora'],
entry_points="""
[console_scripts]
lsi = lsi.service:run_service
"""
)