-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1.33 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
# In order to build your package, you need to use a "build system".
# There are a number of supported build systems, but here we'll use
# the "setuptools" package.
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# The "project" section contains metadata about the project, like
# the authors and version. Note that the `dynamic` setting here
# is very important so that the build system packages up your
# dependencies!
[project]
name = "thronetalk_game_of_thrones_summarizer"
version = "1.0.0"
authors = [
{ name="Abhinav Duvvuri" },
{ name="Baisakhi Sarkar" },
{ name="Raagul Nagendran" },
{ name="Swarali Desai" },
]
description = "Interactive web tool to generate summary for Game of Thrones plot."
readme = "README.md"
requires-python = ">=3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
# In conjunction with the "dynamic" option above in the "project"
# section, this tells the build system to add any dependencies
# specified in requirements.txt.
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
# Where can someone find out more about your project?
[project.urls]
Homepage = "https://github.com/DSProjects2024/thronetalk-game-of-thrones-summarizer"