-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
74 lines (66 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bigbang-py"
version = "0.4.4"
authors = [
{ name="BigBang Team", email="[email protected]" },
]
description = "BigBang is a toolkit for studying communications data from collaborative projects. It currently supports analyzing mailing lists from Sourceforge, Mailman, ListServ, or .mbox files."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"networkx",
"requests",
"pandas",
"beautifulsoup4",
"chardet",
"html2text",
"python-dateutil",
"pytz",
"tqdm",
"pyyaml",
"certifi",
"levenshtein",
"ietfdata",
"python-docx",
"GitPython",
"nbformat",
"nbconvert",
"validator-collection",
"markdown",
"spacy",
"transformers[torch]",
"contractions",
"email_reply_parser",
"notebook",
"click"
]
[project.optional-dependencies]
test = ['pytest', 'coverage', 'testfixtures']
dev = ['bigbang-py[test]', 'black', 'isort', 'pre-commit']
[project.urls]
"Homepage" = "https://github.com/datactive/bigbang"
"Bug Tracker" = "https://github.com/datactive/bigbang/issues"
[project.scripts]
bigbang = "bigbang:main_cli"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
include_trailing_comma = "True"
known_third_party = "celery,django,environ,pyquery,pytz,redis,requests,rest_framework"
[tool.ruff]
ignore = ['F401', 'E501', 'E731', 'F403', 'F821', 'F541', 'E402', 'F405']
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
include = ["bigbang*"]