-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for more spaces/geodesics means a new version.
- Loading branch information
1 parent
2a2b208
commit 9db20bb
Showing
3 changed files
with
128 additions
and
64 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
from .contour_compute import compute_contours | ||
from .contour_compute import planar_contours | ||
from .contour_compute import spherical_contours | ||
del contour_compute |
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,9 +1,14 @@ | ||
from setuptools import setup | ||
|
||
def readme(): | ||
with open('README.md') as f: | ||
return f.read() | ||
|
||
setup( | ||
name='meander', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description='Tools for computing contours on 2d surfaces.', | ||
long_description=readme(), | ||
url='https://github.com/austinschneider/meander', | ||
author='Austin Schneider', | ||
author_email='[email protected]', | ||
|