-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 810 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='rfp',
version='0.1.0',
packages=find_packages(),
install_requires=[
'transformers==4.38.1',
'torch==2.2.1',
'tika==2.6.0',
],
author='Aleksandar Stankovski',
author_email='a.stankovski@alumnos.upm.es',
description='Ths package is used to extract the repository link from a pdf file. It uses a model to extract the top sentences from the pdf and then searches for the link in the footnotes, references and sentences.',
url='https://github.com/SoftwareUnderstanding/RSEF',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers/Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'
],
)