|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "textnano" |
| 7 | +version = "0.1.0" |
| 8 | +description = "A minimal text dataset builder inspired by lazynlp. Perfect for ML students who just want clean text datasets quickly." |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.7" |
| 11 | +license = {text = "MIT"} |
| 12 | +keywords = ["nlp", "machine-learning", "dataset", "text-processing", "web-scraping", "data-cleaning"] |
| 13 | +authors = [ |
| 14 | + {name = "Rustem", email = "r.kamun@gmail.com"} |
| 15 | +] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 4 - Beta", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: Science/Research", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.7", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 29 | + "Topic :: Text Processing", |
| 30 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 31 | +] |
| 32 | + |
| 33 | +dependencies = [] # Zero dependencies as advertised! |
| 34 | + |
| 35 | +[project.optional-dependencies] |
| 36 | +dev = [ |
| 37 | + "pytest>=7.0", |
| 38 | + "black>=22.0", |
| 39 | + "flake8>=4.0", |
| 40 | +] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Homepage = "https://github.com/Rustem/textnano" |
| 44 | +Documentation = "https://github.com/Rustem/textnano#readme" |
| 45 | +Repository = "https://github.com/Rustem/textnano" |
| 46 | +"Bug Tracker" = "https://github.com/Rustem/textnano/issues" |
| 47 | + |
| 48 | +[project.scripts] |
| 49 | +textnano = "textnano.cli:main" |
| 50 | + |
| 51 | +[tool.setuptools] |
| 52 | +packages = ["textnano"] |
| 53 | + |
| 54 | +[tool.setuptools.package-data] |
| 55 | +textnano = ["*.txt", "*.json"] |
0 commit comments