-
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.
Merge pull request #7 from thoppe/develop/auto_version
Develop/auto version
- Loading branch information
Showing
4 changed files
with
16 additions
and
5 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,3 +1,4 @@ | ||
from ._version import __version__ | ||
from .hyperop import hyperop, bounded_hyperop | ||
|
||
__all__ = ['hyperop', 'bounded_hyperop'] | ||
__all__ = ['hyperop', 'bounded_hyperop', '__version__'] |
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 @@ | ||
__version__ = "1.1" |
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,17 +1,19 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
# Load the version string | ||
exec(open('hyperop/_version.py').read()) | ||
|
||
setup( | ||
name="hyperop", | ||
packages=['hyperop'], | ||
version="1.0", | ||
download_url = 'https://github.com/thoppe/python-hyperoperators/tarball/1.0', | ||
version=__version__, | ||
download_url='https://github.com/thoppe/python-hyperoperators/tarball/1.0', | ||
author="Travis Hoppe", | ||
author_email="[email protected]", | ||
description=( | ||
"Hyperoperators (succession, addition, multiplication, exponentiation, tetration and higher) in python."), | ||
license = "Creative Commons Attribution-ShareAlike 4.0 International License", | ||
keywords = ["math","hyperoperators","uparrow","large-numbers",], | ||
keywords = ["math", "hyperoperators", "uparrow", "large-numbers", ], | ||
url="https://github.com/thoppe/python-hyperoperators", | ||
test_suite="tests", | ||
) |
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