Skip to content

Commit 938f99e

Browse files
committed
Renamed package-data.json to package_data.json
1 parent b1fd8a4 commit 938f99e

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

remove-json-keys/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "remove-json-keys"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
description = "Remove key/value pairs from json_dir/**/*.json."
55
authors = [{name = "Adam Lui", email = "adam@kudoai.com"}]
66

@@ -11,4 +11,4 @@ remove-json-keys = "remove_json_keys.__main__:main"
1111
where = ["src"]
1212

1313
[tool.setuptools.package-data]
14-
"*" = ["package-data.json", "*.md"]
14+
"*" = ["package_data.json", "*.md"]

remove-json-keys/src/remove_json_keys/lib/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def cli():
66

7-
cli = data.sns.from_dict(data.json.read(os.path.join(os.path.dirname(__file__), '../package-data.json')))
7+
cli = data.sns.from_dict(data.json.read(os.path.join(os.path.dirname(__file__), '../package_data.json')))
88

99
# Parse CLI args
1010
argp = argparse.ArgumentParser(

remove-json-keys/src/remove_json_keys/package-data.json renamed to remove-json-keys/src/remove_json_keys/package_data.json

File renamed without changes.

translate-messages/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ translate-messages = "translate_messages.__main__:main"
1414
where = ["src"]
1515

1616
[tool.setuptools.package-data]
17-
"*" = ["package-data.json", "*.md", "assets/ascii/*.txt"]
17+
"*" = ["package_data.json", "*.md", "assets/ascii/*.txt"]

translate-messages/src/translate_messages/lib/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def cli(caller_file):
66

7-
cli = data.sns.from_dict(data.json.read(os.path.join(os.path.dirname(__file__), '../package-data.json')))
7+
cli = data.sns.from_dict(data.json.read(os.path.join(os.path.dirname(__file__), '../package_data.json')))
88

99
# Load from config file
1010
cli.config = sns()

translate-messages/src/translate_messages/package-data.json renamed to translate-messages/src/translate_messages/package_data.json

File renamed without changes.

0 commit comments

Comments
 (0)