forked from panjd123/RUC-CourseSelectionTool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.01 KB
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
39
40
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning>=2.0,<3"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "ruccourse"
dynamic = ["version"]
description = "A tool for RUC students to select courses."
readme = "README.md"
authors = [
{ name = "panjd123", email = "xm.jarden@gmail.com" }
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ruclogin",
"aiohttp",
"docopt"
]
[project.optional-dependencies]
audio = ["simpleaudio"]
all = ["simpleaudio"]
[project.urls]
Homepage = "https://github.com/panjd123/RUC-CourseSelectionTool"
Repository = "https://github.com/panjd123/RUC-CourseSelectionTool.git"
[tool.setuptools.package-data]
ruccourse = ["config.ini", "json_datas.pkl", "courses.json", "ruccourse.log", "ring.wav"]
[project.scripts]
ruccourse = "ruccourse.main:entry_point"