forked from Turbo87/utm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.06 KB
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
from setuptools import setup, find_packages
from Cython.Build import cythonize
setup(
name='utm',
use_scm_version={"write_to": "utm/_version.py"},
author='Thomas Arnhold',
author_email='thomas@arnhold.org',
url='https://github.com/tarnhold/utm',
description='Bidirectional UTM/GRS80 converter for python',
keywords=['utm', 'grs80', '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'],
ext_modules=cythonize('utm/conversion.pyx', compiler_directives={'language_level': 3}),
setup_requires=[
'cython',
'setuptools_scm',
],
scripts=['scripts/utm-converter'],
test_suite='test',
)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4