-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (37 loc) · 1.3 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "parenttext_pipeline"
dynamic = ["version"]
authors = [
{name = "IDEMS International", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
]
dependencies = [
"beautifulsoup4~=4.12",
"packaging~=21.3",
"rapidpro-abtesting@https://github.com/IDEMSInternational/rapidpro_abtesting/archive/refs/heads/master.zip",
"requests~=2.31",
"rpft@https://github.com/IDEMSInternational/rapidpro-flow-toolkit/archive/refs/tags/1.2.1.tar.gz",
]
[project.scripts]
rpimport = "parenttext_pipeline.importer:cli"
[tool.setuptools_scm]
version_file = "src/parenttext_pipeline/_version.py"