Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include src/rda_python_dscheck/dscheck.usg
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
RDA python code template to create new and modify existing RDA python packages.
RDA python package to add and process batch jobs.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ requires = [
build-backend = "setuptools.build_meta"

[project]
name = "rda_python_template"
version = "1.0.0"
name = "rda_python_dscheck"
version = "1.0.1"
authors = [
{ name="Zaihua Ji", email="[email protected]" },
]
description = "RDA Python code template to create new and modify existing other RDA python packages"
description = "RDA python package to add and process batch jobs"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
Expand All @@ -28,10 +28,10 @@ include-package-data = true
where = ["src"]

[tool.setuptools.package-data]
"rda_python_tmplate" = ["hello_workd.usg"]
"rda_python_tmplate" = ["dscheck.usg"]

[project.urls]
"Homepage" = "https://github.com/NCAR/rda-python-template"
"Homepage" = "https://github.com/NCAR/rda-python-dscheck"

[project.scripts]
hello_world = "rda_python_template.hello_world:main"
dscheck = "rda_python_dscheck.dscheck:main"
Loading