-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (49 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "plexer_cli"
dynamic = ["version"]
description = "Normalize media files for use with Plex Media Server"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["plex", "media", "catagorization", "organization", "formatting"]
authors = [
{ name = "Josh Carlson", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: Unix",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Hatch",
"Framework :: Pytest",
"Framework :: tox"
]
dependencies = [
"logzero~=1.7.0",
"python-magic~=0.4.27"
]
[project.urls]
Repository = "https://github.com/magneticstain/plexer.git"
Documentation = "https://github.com/magneticstain/plexer#readme"
Issues = "https://github.com/magneticstain/plexer/issues"
Source = "https://github.com/magneticstain/plexer"
[project.scripts]
plexer = "plexer_cli.main:main"
[tool.hatch.version]
path = "src/plexer_cli/main.py"
[tool.hatch.envs.dev]
dependencies = [
"ruff~=0.6.6",
"pytest~=8.3.3",
"moviepy~=1.0.3"
]