forked from fossology/atarashi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.62 KB
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
[project]
name = "atarashi"
version = "0.0.11"
description = "An intelligent license scanner."
authors = [
{name = "Aman Jain", email = "amanjain5221@gmail.com"}
]
maintainers = [
{name = "Kaushlendra Pratap Singh", email = "kaushlendra-pratap.singh@siemens.com"},
{name = "Gaurav Mishra", email = "mishra.gaurav@siemens.com"},
]
license = {text = "GPL-2.0-only"}
readme = "README.md"
requires-python = ">=3.10,<3.14"
keywords = [
"atarashi", "license", "license-scanner", "oss",
"oss-compliance"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Topic :: Utilities",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
]
dependencies = [
"tqdm (>=4.67.1,<5.0.0)",
"pandas (>=2.3.0,<3.0.0)",
"pyxdameraulevenshtein (>=1.8.0,<2.0.0)",
"scikit-learn (>=1.7.0,<2.0.0)",
"scipy (>=1.15.3,<2.0.0)",
"spacy (>=3.8.7,<4.0.0)",
"textdistance (>=4.6.3,<5.0.0)",
"setuptools (>=80.9.0,<81.0.0)",
"nirjas (>=1.0.1,<2.0.0)",
"urllib3 (>=2.4.0,<3.0.0)",
"importlib-resources (>=6.5.2,<7.0.0)"
]
[project.urls]
homepage = "https://github.com/fossology/atarashi"
repository = "https://github.com/fossology/atarashi"
[tool.poetry.scripts]
atarashi = "atarashi.atarashii:main"
preprocess = "atarashi.build_deps:download_dependencies"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
include = [
{ path = "atarashi/data/Ngram_keywords.json", format = ["sdist", "wheel"] },
{ path = "atarashi/data/licenses/processedLicenses.csv", format = ["sdist", "wheel"] }
]