-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.58 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 1. Build distribution files:
# python3 -m build
#
# 2. Upload to PyPI:
# twine upload dist/*
#
# 3. Check if everything looks all right:
# https://pypi.python.org/pypi/SoMaJo
#
# 4. Go to https://github.com/tsproisl/SoMaJo/releases/new and create
# a new release
[project]
name = "SoMaJo"
version = "2.4.3"
description = "A tokenizer and sentence splitter for German and English web and social media texts."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["tokenizer", "sentence-splitter"]
authors = [
{name = "Thomas Proisl, Peter Uhrig", email = "[email protected]"}
]
maintainers = [
{name = "Thomas Proisl", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: German",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"regex>=2019.02.18",
]
[project.urls]
"Homepage" = "https://github.com/tsproisl/SoMaJo"
"API documentation" = "https://github.com/tsproisl/SoMaJo/blob/master/doc/build/markdown/somajo.md"
[project.scripts]
somajo-tokenizer = "somajo.cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"somajo.data" = ["*.txt"]