Skip to content

Commit

Permalink
Include MIT license in the repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
Balthazar Rouberol committed May 28, 2015
1 parent 2293fc6 commit fa3fea5
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 24 deletions.
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Mapado

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
49 changes: 25 additions & 24 deletions setup.py
Expand Up @@ -6,27 +6,28 @@
)

setup(
name='haversine',
version='0.1',
description='Calculate the distance bewteen 2 points on Earth.',
long_description=open('README.txt').read(),
author='Balthazar Rouberol',
author_email=['balthazar@mapado.com'],
url='https://github.com/mapado/haversine',
packages=['haversine'],
license=['GPLv3'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering :: Mathematics'
],
ext_modules=[c_haversine],
)
name='haversine',
version='0.3',
description='Calculate the distance bewteen 2 points on Earth.',
long_description=open('README.txt').read(),
author='Balthazar Rouberol',
author_email=['balthazar@mapado.com'],
url='https://github.com/mapado/haversine',
packages=['haversine'],
license=['MIT'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Mathematics'
],
ext_modules=[c_haversine],
)

0 comments on commit fa3fea5

Please sign in to comment.