File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -48,3 +48,11 @@ clean:
4848 find . -type f \( -name ' *.log' -o -name ' .coverage' -o -name ' *.pdb' \) -delete
4949
5050.PHONY : test test-file coverage lint format docs clean
51+
52+ # === Publishing ===
53+ uploadtest :
54+ python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
55+
56+
57+ release :
58+ python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ Project Link: [https://github.com/CodexEsto/textpipe](https://github.com/CodexEs
171171[issues-shield] : https://img.shields.io/github/issues/CodexEsto/textpipe.svg?style=for-the-badge
172172[issues-url] : https://github.com/CodexEsto/textpipe/issues
173173[license-shield] : https://img.shields.io/github/license/CodexEsto/textpipe.svg?style=for-the-badge
174- [license-url] : https://github.com/CodexEsto/textpipe/blob/master /LICENSE.txt
174+ [license-url] : https://github.com/CodexEsto/textpipe/blob/main /LICENSE
175175[linkedin-shield] : https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
176176[linkedin-url] : https://www.linkedin.com/in/your-profile/
177177` ` `
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ name = "Textpipe"
33version = " 0.1.2"
44description = " All-in-one tool for text processing"
55readme = { file = " README.md" , content-type = " text/markdown" }
6- license = " MIT"
7- authors = [{
name =
" Textpipe Team" ,
email =
" [email protected] " }]
6+ authors = [
7+ {
name =
" Textpipe Team" ,
email =
" [email protected] " }
8+ ]
89requires-python = " >=3.7"
910dependencies = [
1011 " scikit-learn" ,
@@ -22,11 +23,12 @@ classifiers = [
2223 " Intended Audience :: Developers" ,
2324 " Natural Language :: English"
2425]
25- urls = { "Homepage" = " https://github.com/CodexEsto/textpipe " }
26+
2627
2728[build-system ]
2829requires = [" setuptools>=61.0" ]
2930build-backend = " setuptools.build_meta"
3031
3132[tool .setuptools .packages .find ]
3233include = [" textpipe*" ]
34+
You can’t perform that action at this time.
0 commit comments