-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.21 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mc-providers"
version = "3.1.1"
authors = [
{name = "Paige Gulley", email = "[email protected]"},
{name = "Rahul Bhargava", email = "[email protected]"},
]
description = "Search Providers package for Mediacloud"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"python-dateutil == 2.*",
"ciso8601==2.2.*",
"dateparser",
"requests",
"wayback-news-search == 1.*",
"fasttext == 0.9.*",
"mediacloud-metadata >= 1.0.0",
"mediacloud == 4.*",
"elasticsearch == 8.17.*", # keep in sync w/ ES major version?
"elasticsearch-dsl == 8.17.*", # keep in sync w/ ES major version!
]
[tool.flit.sdist]
include = ["mc_providers/*.py","mc_providers/language/*.py", "mc_providers/language/*.bin", "mc_providers/language/*.txt" ]
[tool.flit.module]
name = "mc_providers"