-
Notifications
You must be signed in to change notification settings - Fork 101
/
setup.py
31 lines (28 loc) · 1020 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
30
31
from setuptools import setup
from utm._version import __version__
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(
name='utm',
version=__version__,
author='Tobias Bieniek',
author_email='[email protected]',
url='https://github.com/Turbo87/utm',
description='Bidirectional UTM-WGS84 converter for python',
long_description=long_description,
long_description_content_type='text/x-rst',
keywords=['utm', 'wgs84', 'coordinate', 'converter'],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
],
packages=['utm'],
scripts=['scripts/utm-converter'],
)