-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.88 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
[project]
name = "faststylometry"
version = "1.0.15"
description = 'Python library for calculating the Burrows Delta.'
readme = "README.md"
keywords = ['stylometry', 'nlp', 'burrows delta', 'delta', 'forensic stylometry', 'natural language processing']
license = { file = "LICENSE" }
maintainers = [
]
authors = [
]
requires-python = ">=3.12,<=3.13.3"
classifiers = [
# see https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
# core dependencies
# this set should be kept minimal!
dependencies = [
"numpy>=2.3.1; python_version >= '3.12'",
"pandas>=2.3.1; python_version >= '3.12'",
"scikit-learn>=1.7.1; python_version >= '3.12'",
"wget>=3.2; python_version >= '3.12'",
]
[project.optional-dependencies]
# dev - the developer dependency set, for contributors to faststylometry
dev = ["check-manifest", "pytest"]
[project.urls]
"Documentation" = "https://fastdatascience.com/fast-stylometry-python-library"
"Bug Reports" = "https://github.com/fastdatascience/faststylometry/issues"
"Source Code" = "https://github.com/fastdatascience/faststylometry"
[build-system]
requires = ["setuptools>=46.4.0", "wheel", "twine"]
build-backend = "setuptools.build_meta"