-
Notifications
You must be signed in to change notification settings - Fork 45
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 #27 from aerispaha/config_fix
moved definitions.py to swmmio.def.config, added pytest
- Loading branch information
Showing
24 changed files
with
722 additions
and
95 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 |
---|---|---|
|
@@ -8,3 +8,7 @@ private/ | |
/*.egg-info | ||
notes/ | ||
.DS_Store | ||
notebooks/ | ||
__pycache__/ | ||
.cache/ | ||
.pytest_cache/ |
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,11 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
# - "3.6" | ||
# - "3.7" | ||
# command to install dependencies | ||
install: | ||
- pip install -r requirements.txt | ||
# command to run tests | ||
script: | ||
- pytest |
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,9 @@ | ||
# Build dependencies | ||
#python | ||
pytest | ||
pillow==3.0.0 | ||
numpy | ||
pandas | ||
pyshp | ||
geojson | ||
# Run dependencies |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ def read(fname): | |
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
VERSION = '0.2.0' | ||
VERSION = '0.2.1' | ||
AUTHOR_NAME = 'Adam Erispaha' | ||
AUTHOR_EMAIL = '[email protected]' | ||
|
||
|
@@ -18,22 +18,27 @@ def read(fname): | |
'geojson', | ||
] | ||
|
||
setup(name='swmmio', | ||
version=VERSION, | ||
description='Tools for reading, writing, visualizing, and versioning EPA SWMM5 models.', | ||
author=AUTHOR_NAME, | ||
url='https://github.com/aerispaha/swmmio', | ||
author_email=AUTHOR_EMAIL, | ||
packages=find_packages(exclude=('tests')), | ||
tests_require = [ | ||
'pytest', | ||
] | ||
|
||
setup(name = 'swmmio', | ||
version = VERSION, | ||
description = 'Tools for reading, writing, visualizing, and versioning EPA SWMM5 models.', | ||
author = AUTHOR_NAME, | ||
url = 'https://github.com/aerispaha/swmmio', | ||
author_email = AUTHOR_EMAIL, | ||
packages = find_packages(exclude = ('tests')), | ||
entry_points = { | ||
"console_scripts": ['swmmio_run = swmmio.run_models.run:run_simple'] | ||
}, | ||
install_requires=install_requires, | ||
long_description=read('README.rst'), | ||
include_package_data=True, | ||
platforms="OS Independent", | ||
license="MIT License", | ||
classifiers=[ | ||
install_requires = install_requires, | ||
tests_require = tests_require, | ||
long_description = read('README.rst'), | ||
include_package_data = True, | ||
platforms = "OS Independent", | ||
license = "MIT License", | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
|
File renamed without changes.
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
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
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
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,8 @@ | ||
# -*- coding: utf-8 -*- | ||
# ----------------------------------------------------------------------------- | ||
# Copyright (c) 2018 Adam Erispaha | ||
# | ||
# Licensed under the terms of the BSD2 License | ||
# See LICENSE.txt for details | ||
# ----------------------------------------------------------------------------- | ||
"""Main tests for the swmmio""" |
Oops, something went wrong.