Skip to content

Commit

Permalink
Merge pull request #60 from changliao1025/development
Browse files Browse the repository at this point in the history
add src into package
  • Loading branch information
changliao1025 authored May 10, 2023
2 parents 07af6fc + 8bb41dc commit 1d0612b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: "hexwatershed"
version: "0.2.9"
version: "0.2.10"

source:
git_rev: v0.2.9
git_rev: v0.2.10
git_url: https://github.com/changliao1025/pyhexwatershed

build:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.9
current_version = 0.2.10
commit = True
tag = True

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
AUTHOR = "Chang Liao"
AUTHOR_EMAIL = "chang.liao@pnnl.gov"
URL = "https://github.com/changliao1025/pyhexwatershed"
VERSION = "0.2.9"
VERSION = "0.2.10"
REQUIRES_PYTHON = ">=3.8.0"
KEYWORDS = "hexwatershed hexagon"

Expand Down Expand Up @@ -178,7 +178,10 @@ def run(self):
keywords=KEYWORDS,
url=URL,
packages=find_packages(exclude=["tests",]),
package_data={"pyhexwatershed": ["_bin/*", "_lib/*"]},
package_data={
"pyhexwatershed": ["_bin/*", "_lib/*"],
"external": ["hexwatershed/*", "rapidjson/*"]
},
install_requires=REQUIRED,
cmdclass={"build_external": build_external},
classifiers=CLASSIFY
Expand Down

0 comments on commit 1d0612b

Please sign in to comment.