summarylogtreecommitdiffstats
path: root/setup.py
blob: f8e2b7c06034ffb006cb6e5588c9607c95acd1f0 (plain)
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup

setup(
    name='ogr2osm',
    version='0.1',
    author='pnorman',
    author_email='penorman@mac.com',
    description="pnorman's version of UVM's Rewrite of ogr2osm",
    license='MIT',
    url='https://github.com/pnorman/ogr2osm/',
    install_requires=[
        'GDAL'
    ],
    py_modules=[
        'ogr2osm',
        'geom',
    ],
    entry_points={
        'console_scripts': [
            'ogr2osm=ogr2osm:main',
        ]
    }
)