-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.45 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "github_monitor"
version = "2.4"
description = "Tool implementing real-time tracking of Github users activities including profile and repositories changes"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "Michal Szymanski", email = "misiektoja-pypi@rm-rf.ninja" }]
requires-python = ">=3.10"
dependencies = [
"PyGithub>=2.3.0",
"requests>=2.0",
"python-dateutil>=2.8",
"pytz>=2020.1",
"tzlocal>=4.0",
"python-dotenv>=0.19",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
keywords = ["github", "monitoring", "tracking", "real-time", "osint", "pygithub"]
[project.urls]
Homepage = "https://github.com/misiektoja/github_monitor"
Source = "https://github.com/misiektoja/github_monitor"
Changelog= "https://github.com/misiektoja/github_monitor/blob/main/RELEASE_NOTES.md"
[project.scripts]
github_monitor = "github_monitor:main"
[tool.setuptools]
py-modules = ["github_monitor"]
include-package-data = true