-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maint: move static metadata to setup.cfg; update requirements
- Loading branch information
Showing
7 changed files
with
48 additions
and
51 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,4 +1,3 @@ | ||
include LICENSE | ||
include *.rst | ||
include requirements*.txt | ||
include Makefile | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
click | ||
gimli.units | ||
model_metadata | ||
numpy | ||
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 |
---|---|---|
@@ -1,3 +1,44 @@ | ||
[metadata] | ||
name = bmi-tester | ||
version = 0.5.6.dev0 | ||
description = Test Python BMI bindings | ||
keywords = bmi | ||
long_description = file: README.rst, CREDITS.rst, CHANGES.rst | ||
long_description_content_type = text/x-rst | ||
author = Eric Hutton | ||
author_email = [email protected] | ||
license = MIT | ||
license_files = LICENSE.rst | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Topic :: Scientific/Engineering :: Physics | ||
url = https://github.com/csdms/bmi-tester | ||
|
||
[options] | ||
include_package_data = True | ||
packages = find: | ||
install_requires = | ||
click | ||
gimli.units | ||
model_metadata | ||
numpy | ||
pytest | ||
pytest-dependency | ||
standard_names | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
bmi-test = bmi_tester.bmipytest:main | ||
bmi.plugins = | ||
bmi_test = bmi_tester.bmipytest:configure_parser_test | ||
|
||
[zest.releaser] | ||
tag-format = v{version} | ||
|
||
|