-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 1.37 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("Readme.md", "r") as f:
long_description = f.read()
setup(
name="aparts",
version="0.0.16",
description="Tags pdf files using a tailored list of keywords and stores the results in a bib file and markdown summaries to be used in reference managers and personal knowledge management systems. ",
package_dir={"": "app"},
packages=find_packages(where="app"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SamBoerlijst/aparts",
author="Sam Boerlijst",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
install_requires=["anyascii>=0.3.2", "cleantext>=1.1.4", "fuzzywuzzy>=0.18.0", "gensim>=4.3.1", "keybert>=0.7.0", "matplotlib>=3.7.1", "networkx>=3.1", "nlp_rake>=0.0.2", "nltk>=3.8.1", "numpy>=1.24.3", "pandas>=2.0.1", "pybtex>=0.24.0", "PyPDF2>=3.0.1", "python_Levenshtein>=0.21.0", "pyvis>=0.3.2", "scholarly>=1.7.11", "scidownl>=1.0.2", "scipy>=1.10.1", "setuptools>=67.7.2", "six>=1.16.0", "spacy>=3.2.0", "yake>=0.4.8"],
extras_require={
"dev": ["pytest>=7.0", "twine>=4.0.2"],
},
python_requires=">=3.9.0",
)