Skip to content

Commit a99f9ee

Browse files
committed
update the publisher
1 parent 0dd121d commit a99f9ee

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ __pycache__/
99

1010
# VS Code settings
1111
.vscode/
12+
13+
# build
14+
build/
15+
dist/
16+
*.egg-info/

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
[project]
22
name = "Textpipe"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "All-in-one tool for text processing"
55
readme = { file = "README.md", content-type = "text/markdown" }
6-
license = { text = "MIT" }
7-
authors = [
8-
{ name = "Textpipe Team", email = "[email protected]" }
9-
]
6+
license = "MIT"
7+
authors = [{ name = "Textpipe Team", email = "[email protected]" }]
108
requires-python = ">=3.7"
119
dependencies = [
1210
"scikit-learn",
@@ -20,7 +18,6 @@ keywords = ["text processing", "text analysis", "natural language processing"]
2018
classifiers = [
2119
"Programming Language :: Python :: 3",
2220
"Operating System :: OS Independent",
23-
"License :: OSI Approved :: MIT License",
2421
"Development Status :: 4 - Beta",
2522
"Intended Audience :: Developers",
2623
"Natural Language :: English"
@@ -30,3 +27,6 @@ urls = { "Homepage" = "https://github.com/CodexEsto/textpipe" }
3027
[build-system]
3128
requires = ["setuptools>=61.0"]
3229
build-backend = "setuptools.build_meta"
30+
31+
[tool.setuptools.packages.find]
32+
include = ["textpipe*"]

0 commit comments

Comments
 (0)