forked from amsehili/genRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 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
40
41
42
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "generss"
dynamic = ["version"]
authors = [
{name = "Amine Sehili", email = "[email protected]"},
]
description = "Generate RSS feeds from media files in a directory"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.4"
keywords = ["RSS", "podcast"]
license = {text = "MIT License"}
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Communications :: File Sharing",
"Topic :: Utilities",
]
dependencies = ["mutagen==1.47.0", "eyed3==0.9.7"]
[project.scripts]
genRSS = "genRSS:main"
[tool.setuptools.dynamic]
version = {attr = "genRSS.__version__"}