Skip to content

Commit 7f8b049

Browse files
committed
[0.0.4] cleaner
1 parent e2c3394 commit 7f8b049

File tree

3 files changed

+48
-32
lines changed

3 files changed

+48
-32
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44

55
```sh
66
rm -rf dist/ build/
7-
python -m pip install --upgrade build twine
7+
python3 -m pip install --upgrade pip
8+
python3 -m pip install --upgrade build
9+
python3 -m build
10+
python3 -m pip install --upgrade twine
11+
# create egg-info folder
12+
python3 -m twine upload dist/* --verbose
13+
# use __token__ auth
14+
# enter token
15+
```
816

9-
python -m build
17+
## 2023-11-09
1018

11-
python -m twine upload dist/* --verbose
12-
```
19+
Use `pyproject.toml` instead of `setup.cfg`
1320

1421
## 2023-10-08
1522

pyproject.toml

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,40 @@
1+
# pyproject.toml
2+
13
[build-system]
2-
requires = [
3-
"setuptools>=42",
4-
"wheel"
5-
]
4+
requires = ["setuptools>=61.0.0", "wheel"]
65
build-backend = "setuptools.build_meta"
76

7+
[project]
8+
name = "csv-to-custom-json"
9+
version = "0.0.4"
10+
description = "Easily convert your CSV to custom JSON"
11+
readme = "README.md"
12+
authors = [{ name = "n4n5", email = "its.just.n4n5@gmail.com" }]
13+
license = { file = "LICENSE" }
14+
classifiers = [
15+
"License :: OSI Approved :: MIT License",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
]
19+
keywords = [
20+
"csv",
21+
"custom_json",
22+
"custom-json",
23+
"json",
24+
"csv-to-json",
25+
"csv_to_json",
26+
"convert",
27+
"convert-json",
28+
"convert_json",
29+
"convert-to-json",
30+
"convert_to_json",
31+
"to-json",
32+
"to_json",
33+
"csv-to-custom-json",
34+
"csv_to_custom_json",
35+
]
36+
requires-python = ">=3.6"
37+
38+
[project.urls]
39+
Homepage = "https://github.com/its-just-nans/csv-to-custom-json-python"
40+
"Bug Tracker" = "https://github.com/its-just-nans/csv-to-custom-json-python/issues"

setup.cfg

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)