36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=65.5.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "saberlist"
|
|
version = "0.0.2"
|
|
description = "Beat Saber playlist tool"
|
|
readme = "README.md"
|
|
authors = [{ name = "blee", email = "git@blee.tube" }]
|
|
license = { file = "LICENSE" }
|
|
keywords = ["reddit"]
|
|
dependencies = [
|
|
'build>=1.2.1',
|
|
'requests>=2.31.0',
|
|
'pytest>=8.1.1',
|
|
'pyscorescaber>=1.0.10'
|
|
]
|
|
requires-python = ">=3.8.10"
|
|
classifiers = [
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
"Topic :: Utilities",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/bleetube/reddit_export"
|
|
|
|
# https://setuptools.pypa.io/en/latest/userguide/entry_point.html
|
|
[project.scripts]
|
|
reddit_export = "reddit_export.fetch:main" |