poketdev-tools 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- poketdev_tools-0.1.0/PKG-INFO +27 -0
- poketdev_tools-0.1.0/README.md +12 -0
- poketdev_tools-0.1.0/pyproject.toml +22 -0
- poketdev_tools-0.1.0/setup.cfg +4 -0
- poketdev_tools-0.1.0/src/poketdev_tools/__init__.py +17 -0
- poketdev_tools-0.1.0/src/poketdev_tools.egg-info/PKG-INFO +27 -0
- poketdev_tools-0.1.0/src/poketdev_tools.egg-info/SOURCES.txt +7 -0
- poketdev_tools-0.1.0/src/poketdev_tools.egg-info/dependency_links.txt +1 -0
- poketdev_tools-0.1.0/src/poketdev_tools.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: poketdev-tools
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Estimator utilities for comparing flat-rate development subscriptions with hourly billing
|
|
5
|
+
Author: Scrap Labs
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.poketdev.com
|
|
8
|
+
Project-URL: Repository, https://github.com/scrapertweeter3-prog/poketdev-site
|
|
9
|
+
Project-URL: Related projects, https://pastagi.com,https://extrahustles.com,https://firenomics.com,https://durablepicks.com,https://hackedself.com
|
|
10
|
+
Keywords: development,subscriptions,estimation,flat-rate
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Software Development
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# poketdev-tools
|
|
17
|
+
|
|
18
|
+
Estimator utilities for comparing flat-rate development subscriptions with hourly billing.
|
|
19
|
+
|
|
20
|
+
Part of the Scrap Labs toolkit:
|
|
21
|
+
|
|
22
|
+
- Poket Dev: https://www.poketdev.com
|
|
23
|
+
- Pastagi: https://pastagi.com
|
|
24
|
+
- Extra Hustles: https://extrahustles.com
|
|
25
|
+
- Firenomics: https://firenomics.com
|
|
26
|
+
- Durable Picks: https://durablepicks.com
|
|
27
|
+
- Hacked Self: https://hackedself.com
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# poketdev-tools
|
|
2
|
+
|
|
3
|
+
Estimator utilities for comparing flat-rate development subscriptions with hourly billing.
|
|
4
|
+
|
|
5
|
+
Part of the Scrap Labs toolkit:
|
|
6
|
+
|
|
7
|
+
- Poket Dev: https://www.poketdev.com
|
|
8
|
+
- Pastagi: https://pastagi.com
|
|
9
|
+
- Extra Hustles: https://extrahustles.com
|
|
10
|
+
- Firenomics: https://firenomics.com
|
|
11
|
+
- Durable Picks: https://durablepicks.com
|
|
12
|
+
- Hacked Self: https://hackedself.com
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "poketdev-tools"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Estimator utilities for comparing flat-rate development subscriptions with hourly billing"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{name = "Scrap Labs"}]
|
|
13
|
+
keywords = ["development", "subscriptions", "estimation", "flat-rate"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Topic :: Software Development",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://www.poketdev.com"
|
|
21
|
+
Repository = "https://github.com/scrapertweeter3-prog/poketdev-site"
|
|
22
|
+
"Related projects" = "https://pastagi.com,https://extrahustles.com,https://firenomics.com,https://durablepicks.com,https://hackedself.com"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Estimator utilities for flat-rate dev subscription math."""
|
|
2
|
+
|
|
3
|
+
VERSION = "0.1.0"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def break_even_hours(monthly_price: float, hourly_rate: float) -> float:
|
|
7
|
+
"""Hours of work per month where flat-rate beats hourly."""
|
|
8
|
+
if hourly_rate <= 0:
|
|
9
|
+
raise ValueError("hourly_rate must be positive")
|
|
10
|
+
return monthly_price / hourly_rate
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def effective_hourly(monthly_price: float, hours_used: float) -> float:
|
|
14
|
+
"""Effective hourly cost of a flat-rate subscription."""
|
|
15
|
+
if hours_used <= 0:
|
|
16
|
+
raise ValueError("hours_used must be positive")
|
|
17
|
+
return monthly_price / hours_used
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: poketdev-tools
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Estimator utilities for comparing flat-rate development subscriptions with hourly billing
|
|
5
|
+
Author: Scrap Labs
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.poketdev.com
|
|
8
|
+
Project-URL: Repository, https://github.com/scrapertweeter3-prog/poketdev-site
|
|
9
|
+
Project-URL: Related projects, https://pastagi.com,https://extrahustles.com,https://firenomics.com,https://durablepicks.com,https://hackedself.com
|
|
10
|
+
Keywords: development,subscriptions,estimation,flat-rate
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Software Development
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# poketdev-tools
|
|
17
|
+
|
|
18
|
+
Estimator utilities for comparing flat-rate development subscriptions with hourly billing.
|
|
19
|
+
|
|
20
|
+
Part of the Scrap Labs toolkit:
|
|
21
|
+
|
|
22
|
+
- Poket Dev: https://www.poketdev.com
|
|
23
|
+
- Pastagi: https://pastagi.com
|
|
24
|
+
- Extra Hustles: https://extrahustles.com
|
|
25
|
+
- Firenomics: https://firenomics.com
|
|
26
|
+
- Durable Picks: https://durablepicks.com
|
|
27
|
+
- Hacked Self: https://hackedself.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
poketdev_tools
|