-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
34 lines (32 loc) · 1.09 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
from setuptools import setup, find_packages
import sys
import os
version = '0.2'
requirements = ['argparse', 'lxml', 'protobuf']
setup(name='osmread',
version=version,
description="Simple library for reading OpenStreetMap XML and PBF data files",
long_description="""""",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: GIS",
],
author='Aleksandr Dezhin',
author_email='[email protected]',
url='http://github.com/dezhin/osmread',
license='MIT License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requirements,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
osmread = osmread.script:main
"""
)