-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
26 lines (24 loc) · 993 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name='unitn_course_scraper'
version='0.1.6'
authors=[
{ name="DISI Drive Team", email="[email protected]" }
]
description='Interactive scraper for your UniTN courses'
readme='README.md'
requires-python=">=3.7"
classifiers=["Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords=['unitn', 'courses', 'scraper', '@unitn.it',
'moodle', 'dol', 'gestionecorsi', 'didatticaonline']
dependencies=['python-dotenv >= 1.0.0', 'requests >= 2.28.2', 'grequests >= 0.6.0', 'beautifulsoup4 >= 4.12.2']
[project.scripts]
unitn-course-scraper = "cli.cli:parse_args"