-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01f0b01
commit 7ed70cc
Showing
3 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.egg-info/* | ||
__pycache__/* | ||
build/* | ||
dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
setup( | ||
name='GPSminCir', | ||
py_modules=["GPSminCir"], | ||
version='1.0.1', | ||
description='A tool to calculate the radius of the smallest circle that covers the given GPS track.', | ||
version='1.0.3', | ||
description='A tool to calculate the position and radius of the smallest circle that covers the given GPS track.', | ||
author='Xiangwen Wang', | ||
author_email='[email protected]', | ||
url='https://github.com/XiangwenWang/GPSminCir', | ||
download_url='https://github.com/XiangwenWang/GPSminCir/tarball/1.0.1', | ||
download_url='https://github.com/XiangwenWang/GPSminCir/tarball/1.0.3', | ||
license="MIT", | ||
keywords=['GPS', 'smallest circle'], | ||
classifiers=[], | ||
|