-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 911 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 911 Bytes
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
[project.urls]
"Homepage" = "https://github.com/neonrust/epm"
"Bug Tracker" = "https://github.com/neonrust/epm/issues"
[project]
name = "episode-manager"
version = "0.24-1"
description = "Keep track of your episode viewing and schedule."
authors = [
{ name = "André Jonsson", email = "episode-manager@0x1.se>" },
]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Games/Entertainment",
"Topic :: Utilities"
]
requires-python = "^3.9"
dependencies = [
"requests>=2.32.4",
"urllib3==2.6.3",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
epm = "episode_manager.epm:main"
test = 'test:run'