-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.1 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
29
30
31
32
33
34
35
36
37
38
"""Script to install exam paper downloader."""
import os
from setuptools import setup, find_packages
# Read the content of the README file
with open(
os.path.join(os.path.dirname(__file__), 'README.md'),
encoding='utf-8'
) as f:
long_description = f.read()
setup(
name='exam_downloader',
version='0.1.0',
description='A script to download A-Level test papers and mark schemes from xtremepape.rs.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/fam007e/OandALvl-exam-paper-downloader',
author='Faisal Ahmed Moshiur',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'requests>=2.25.1',
'beautifulsoup4>=4.9.3',
],
entry_points={
'console_scripts': [
'exam-downloader=o_and_a_lv_qp_sdl:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)