-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
30 lines (28 loc) · 985 Bytes
/
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
29
30
from setuptools import setup, find_packages
setup(
name='LectureAid',
version='1.0.0',
packages=find_packages(),
description='Upload lecture PDFs and get relevant URLs to helpful websites',
tests_require=['pytest'],
author='CSC510 - Group 21',
author_email='lectureaidnscu@gmail.com',
url='https://github.com/mtkumar123/CSC510_Project_LectureAid',
python_requires='>=3.7',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: LectureAid",
],
license='MIT',
install_requires=[
'google-api-python-client',
'people_also_ask',
'spacy==3.1.2',
'spacy-legacy==3.0.8',
'en-core-web-lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.1.0/en_core_web_lg-3.1.0-py3-none-any.whl',
'pyfiglet',
'PyMuPDF'
]
)