feat: scaffold drstats project with setuptools build, gitignore, and utro CLI entry point
Initialize the dRStats repository with core project structure: add .gitignore excluding dist and venv directories, create Makefile for pip-based build and editable install, write README.md describing the devrant health monitoring purpose, define pyproject.toml using setuptools build backend, configure setup.cfg with metadata (name drstats, version 0.1.1, MIT license, aiohttp dependency) and console_scripts entry point mapping 'utro' to drstats.statistics:rant_stats, and include generated egg-info metadata files.
2024-11-23 19:56:52 +01:00
|
|
|
[metadata]
|
|
|
|
|
name = drstats
|
2024-11-23 20:29:56 +01:00
|
|
|
version = 1.3.37
|
|
|
|
|
description = dR stats
|
feat: scaffold drstats project with setuptools build, gitignore, and utro CLI entry point
Initialize the dRStats repository with core project structure: add .gitignore excluding dist and venv directories, create Makefile for pip-based build and editable install, write README.md describing the devrant health monitoring purpose, define pyproject.toml using setuptools build backend, configure setup.cfg with metadata (name drstats, version 0.1.1, MIT license, aiohttp dependency) and console_scripts entry point mapping 'utro' to drstats.statistics:rant_stats, and include generated egg-info metadata files.
2024-11-23 19:56:52 +01:00
|
|
|
author = Retoor
|
2024-11-23 20:29:56 +01:00
|
|
|
author_email = retoor@molodetz.nl
|
feat: scaffold drstats project with setuptools build, gitignore, and utro CLI entry point
Initialize the dRStats repository with core project structure: add .gitignore excluding dist and venv directories, create Makefile for pip-based build and editable install, write README.md describing the devrant health monitoring purpose, define pyproject.toml using setuptools build backend, configure setup.cfg with metadata (name drstats, version 0.1.1, MIT license, aiohttp dependency) and console_scripts entry point mapping 'utro' to drstats.statistics:rant_stats, and include generated egg-info metadata files.
2024-11-23 19:56:52 +01:00
|
|
|
license = MIT
|
|
|
|
|
long_description = file: README.md
|
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
|
|
|
|
|
|
[options]
|
|
|
|
|
packages = find:
|
|
|
|
|
package_dir =
|
|
|
|
|
= src
|
|
|
|
|
python_requires = >=3.7
|
|
|
|
|
install_requires =
|
2024-11-23 20:29:56 +01:00
|
|
|
aiohttp==3.10.10
|
|
|
|
|
dataset==1.6.2
|
|
|
|
|
matplotlib==3.9.2
|
|
|
|
|
requests==2.32.3
|
2024-11-23 19:56:52 +01:00
|
|
|
|
feat: scaffold drstats project with setuptools build, gitignore, and utro CLI entry point
Initialize the dRStats repository with core project structure: add .gitignore excluding dist and venv directories, create Makefile for pip-based build and editable install, write README.md describing the devrant health monitoring purpose, define pyproject.toml using setuptools build backend, configure setup.cfg with metadata (name drstats, version 0.1.1, MIT license, aiohttp dependency) and console_scripts entry point mapping 'utro' to drstats.statistics:rant_stats, and include generated egg-info metadata files.
2024-11-23 19:56:52 +01:00
|
|
|
[options.packages.find]
|
|
|
|
|
where = src
|
|
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
|
console_scripts =
|
2024-11-23 19:56:52 +01:00
|
|
|
dr.sync = drstats.sync:sync
|
|
|
|
|
dr.rant_stats_per_day = drstats.statistics:rant_stats_per_day
|
|
|
|
|
dr.rant_stats_per_weekday = drstats.statistics:rant_stats_per_weekday
|
2024-11-23 19:56:52 +01:00
|
|
|
dr.rant_stats_per_hour = drstats.statistics:rant_stats_per_hour
|
2024-11-23 19:56:52 +01:00
|
|
|
dr.stats_all = drstats.statistics:rant_stats_all
|
2024-11-23 19:56:52 +01:00
|
|
|
dr.dataset = drstats.dataset:dump
|