Skip to content

Commit 25fedb0

Browse files
committed
test the publiching
1 parent a99f9ee commit 25fedb0

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.coverage

-52 KB
Binary file not shown.

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
```

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ name = "Textpipe"
33
version = "0.1.2"
44
description = "All-in-one tool for text processing"
55
readme = { 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+
]
89
requires-python = ">=3.7"
910
dependencies = [
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]
2829
requires = ["setuptools>=61.0"]
2930
build-backend = "setuptools.build_meta"
3031

3132
[tool.setuptools.packages.find]
3233
include = ["textpipe*"]
34+

0 commit comments

Comments
 (0)