-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
7 changed files
with
52 additions
and
37 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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
python setup.py install | ||
if errorlevel 1 exit 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
$PYTHON setup.py install || exit 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package: | ||
name: lmoments3 | ||
version: {{ environ.get('GIT_DESCRIBE_TAG', '0.0.0')[1:] }} | ||
|
||
build: | ||
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} | ||
|
||
source: | ||
git_url: .. | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- numpy 1.9* | ||
- scipy >=0.14 | ||
|
||
run: | ||
- python | ||
- numpy 1.9* | ||
- scipy >=0.14 | ||
|
||
test: | ||
imports: | ||
- lmoments3 | ||
|
||
about: | ||
home: http://github.com/OpenHydrology/lmoments3 | ||
license: GPLv3 | ||
summary: Python library for estimating linear moments for statistical distributions | ||
|
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,36 +1,9 @@ | ||
from setuptools import setup | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
# Get the long description from the relevant file | ||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='lmoments3', | ||
version='1.0.1', | ||
version='1.0.2', | ||
packages=['lmoments3'], | ||
url='https://github.com/OpenHydrology/lmoments3', | ||
license='GPLv3', | ||
author='Florenz A. P. Hollebrandse, Sam Gillespie, William Asquith, J. R. M. Hosking', | ||
author_email='[email protected]', | ||
description='Estimate linear moments for statistical distribution functions', | ||
long_description=long_description, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Software Development :: Libraries :: Python Modules" | ||
], | ||
install_requires=[ | ||
'numpy', | ||
'scipy' | ||
|