Skip to content

Commit

Permalink
added pypi package prerequisites
Browse files Browse the repository at this point in the history
  • Loading branch information
fschncvg committed Aug 28, 2024
1 parent 52487c8 commit 381224a
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# STYLOTOOL - an easy-to-use stylistic device detection tool for stylometry

An easy-to-use package for detecting stylistic devices in text. This package is designed to be used in stylometry, the study of linguistic style.

For those proficient in python, this package provides a collection of approaches to detect stylistic devices in text. For those less proficient in python, this package provides a simple interface to detect stylistic devices in text with simple commands and user-friendly configuration.
For an example on usage, see `example_chiasmus.sh` and the config file `example_config.json`.
2 changes: 1 addition & 1 deletion example_chiasmus.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

mkdir -p example
cd code
cd src
python3 stylotool.py --input ../datasets/tests/chiasmustest.txt --output ../example/chiasmus_results.json --config ../example_config.json
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[project]
name = "stylotool"
version = "0.0.1"
authors = [
{ name = "Felix Schneider", email = "[email protected]"},
]
description = "A tool for stylistic device detection"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/cvjena/stylotool"
Issues = "https://github.com/cvjena/stylotool/issues"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 381224a

Please sign in to comment.