-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (53 loc) · 1.13 KB
/
setup.cfg
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
[metadata]
name = freestylo
version = 0.5.0
description = A tool for stylistic device detection."
author = Felix Schneider
author_email = [email protected]
license = GNU General Public License v3.0
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cvjena/freestylo
project_urls =
Source = https://github.com/cvjena/freestylo
Tracker = https://github.com/cvjena/freestylo/issues
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
python_requires = >=3.12
install_requires =
setuptools>=75.0
torch
spacy==3.8.2
numpy
pytest
scikit-learn
scipy
cltk<1.0
wget
fasttext
[options.entry_points]
console_scripts =
freestylo = freestylo.freestylo_main:main
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
testing =
setuptools>=75.0
pytest
pytest-cov
[tool:pytest]
testpaths = tests
norecursedirs =
.git
dist