Skip to content

Commit

Permalink
Adds initial setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed Sep 24, 2021
1 parent f2cad7c commit 3889620
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
20 changes: 20 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[metadata]
name = CIME
version = 0.0.1

[options]
packages = find:

[options.packages.find]
exclude = CIME.tests*

[options.package_data]
CIME = config/*,config/**/*,config/**/**/*,config/**/**/**/*

[options.entry_points]
console_scripts =
create_clone = CIME.scripts.create_clone:_main_func
create_newcase = CIME.scripts.create_newcase:_main_func
create_test = CIME.scripts.create_test:_main_func
query_config = CIME.scripts.query_config:_main_func
query_testlists = CIME.scripts.query_testlists:_main_func

0 comments on commit 3889620

Please sign in to comment.