forked from tbicr/osn2osm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 896 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
from setuptools import setup, find_packages
setup(
name='osn2osm',
version='0.0.1',
description='Transform OpenStreetMap notes (*.osn) to (*.osm) file.',
author='Pavel Tyslacki',
author_email='[email protected]',
license='The MIT License: http://opensource.org/licenses/MIT',
packages=find_packages(),
scripts=['osn2osm.py'],
include_package_data=True,
zip_safe=False,
install_requires=open('requirements.txt').read().strip().splitlines(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
],
)