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
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='vincenty',
version='0.1.4',
description='Calculate the geographical distance between 2 points with extreme accuracy.',
long_description=open('README.rst').read(),
author='Maurycy Pietrzak',
author_email=['github.com@wayheavy.com'],
url='https://github.com/maurycyp/vincenty',
packages=['vincenty'],
license='Unlicense',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
],
# TODO zip_safe, package_data
)
|