generated from UtrechtUniversity/re-python-package-setuptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.24 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dataQuest"
description = "A package to extract hystorical news sentiments"
authors = [
{name = "Shiva Nadi", email = "s.nadi@uu.nl"},
{name = "Parisa Zahedi", email = "p.zahedi@uu.nl"},
{name = "Matty Vermet", email = "m.s.vermet@uu.nl"}
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = ["tqdm","pandas","pandas-stubs", "types-tqdm","spacy==3.5.4","scikit-learn","numpy==1.26.4","scipy",
"flake8-pyproject","thinc==8.1.12"
]
[project.optional-dependencies]
lint = ["flake8"]
test = ["pytest", "mypy"]
[tool.setuptools]
packages = ["dataQuest"]
[tool.flake8]
max-line-length = 99
[tool.pylint.'FORMAT']
max-line-length=100
max-locals=35
max-args=10
disable = [
"R0911"
]
[[tool.mypy.overrides]]
module = [
"scipy.*",
"pandas.*",
"sklearn.*"
]
ignore_missing_imports = true