-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add setup changelog and version
- Loading branch information
Showing
5 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## 0.0.1 | ||
|
||
authors: Wazzabeee | ||
|
||
### Chore | ||
- Add pre commit hooks | ||
- Update requirements for security reasons | ||
|
||
### Fixes | ||
- Fix README example | ||
- Fix saving path with slashes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.1 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("VERSION") as version_file: | ||
version = version_file.read().strip() | ||
|
||
setup( | ||
name="plagiarism_checker", | ||
version=version, | ||
packages=find_packages(), | ||
install_requires=[ | ||
"beautifulsoup4==4.10.0", | ||
"nltk==3.6.6", | ||
"odfpy==1.4.1", | ||
"pdfplumber==0.5.28", | ||
"slate3k==0.5.3", | ||
"tabulate==0.8.9", | ||
], | ||
extras_require={ | ||
"lint": ["pylint==3.0.2", "mypy==1.7.1", "flake8==6.1.0", "black==24.3.0", "types-tabulate"], | ||
"dev": ["pytest", "pre-commit"], | ||
}, | ||
author="Clément Delteil", | ||
author_email="[email protected]", | ||
description="Make plagiarism detection easier. This script will find similar sentences between given files and " | ||
"highlight them in a side by side comparison.", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Wazzabeee/plagiarism_checker", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
], | ||
python_requires=">=3.10", | ||
) |