-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (50 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ytubeinsight"
version = "0.1.2"
description = "A Python package for YouTube channel analytics"
readme = "README.md"
authors = [{ name = "Md. Fahim Bin Amin", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
]
keywords = ["youtube", "analytics", "api"]
dependencies = [
"google-api-python-client>=2.0.0",
"requests>=2.25.0",
"beautifulsoup4>=4.9.0",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"flake8>=3.9",
"black>=21.0",
"isort>=5.0",
]
docs = [
"sphinx>=3.0",
"sphinx-rtd-theme>=0.5",
]
[project.urls]
Homepage = "https://github.com/FahimFBA/ytubeinsight"
"Bug Reports" = "https://github.com/FahimFBA/ytubeinsight/issues"
Source = "https://github.com/FahimFBA/ytubeinsight"
Documentation = "https://ytubeinsight.readthedocs.io/"
[project.scripts]
ytubeinsight = "ytubeinsight.cli:main"
[tool.setuptools.packages.find]
exclude = ["tests", "examples"]