File tree Expand file tree Collapse file tree 3 files changed +48
-32
lines changed Expand file tree Collapse file tree 3 files changed +48
-32
lines changed Original file line number Diff line number Diff line change 44
55``` sh
66rm -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
Original file line number Diff line number Diff line change 1+ # pyproject.toml
2+
13[build-system ]
2- requires = [
3- " setuptools>=42" ,
4- " wheel"
5- ]
4+ requires = [" setuptools>=61.0.0" , " wheel" ]
65build-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 =
" [email protected] " }]
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"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments