Skip to content

Commit 2967290

Browse files
committed
add the dev files
1 parent b07a7ec commit 2967290

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "textpipe"
3+
version = "0.1.0"
4+
description = "all in one tool for text tokenization and vectorization"
5+
authors = [
6+
{ name="CodexEsto", email="[email protected]" }
7+
]
8+
requires-python = ">=3.7"
9+
dependencies = [
10+
"scikit-learn",
11+
"nltk",
12+
"sphinx",
13+
"pytest"
14+
]
15+
16+
[build-system]
17+
requires = ["setuptools>=61.0"]
18+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="textpipe",
5+
version="0.1.0",
6+
packages=find_packages(),
7+
install_requires=[
8+
"scikit-learn",
9+
"nltk",
10+
"sphinx",
11+
"pytest", # Usually listed under extras, but fine here too
12+
],
13+
author="Your Name",
14+
description="all in one tool for text tokenization and vectorization",
15+
classifiers=[
16+
"Programming Language :: Python :: 3",
17+
"Operating System :: OS Independent",
18+
],
19+
)

0 commit comments

Comments
 (0)