flexmetric 0.3.0__tar.gz → 0.3.1__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.
Files changed (23) hide show
  1. {flexmetric-0.3.0 → flexmetric-0.3.1}/PKG-INFO +6 -2
  2. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/PKG-INFO +6 -2
  3. {flexmetric-0.3.0 → flexmetric-0.3.1}/setup.py +7 -2
  4. {flexmetric-0.3.0 → flexmetric-0.3.1}/README.md +0 -0
  5. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/__init__.py +0 -0
  6. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/config/__init__.py +0 -0
  7. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/config/configuration.py +0 -0
  8. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/file_recognition/__init__.py +0 -0
  9. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/file_recognition/exec_file.py +0 -0
  10. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/logging_module/__init__.py +0 -0
  11. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/logging_module/logger.py +0 -0
  12. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/__init__.py +0 -0
  13. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/database_processing.py +0 -0
  14. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/expiring_queue.py +0 -0
  15. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/process_commands.py +0 -0
  16. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/prometheus_agent.py +0 -0
  17. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric/metric_process/views.py +0 -0
  18. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/SOURCES.txt +0 -0
  19. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/dependency_links.txt +0 -0
  20. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/entry_points.txt +0 -0
  21. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/requires.txt +0 -0
  22. {flexmetric-0.3.0 → flexmetric-0.3.1}/flexmetric.egg-info/top_level.txt +0 -0
  23. {flexmetric-0.3.0 → flexmetric-0.3.1}/setup.cfg +0 -0
@@ -1,10 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flexmetric
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A secure flexible Prometheus exporter for commands, databases, functions, and scripts.
5
- Home-page: https://github.com/nikhillingadhal1999/custom_prometheus_agent
5
+ Home-page: https://github.com/nikhillingadhal1999/flexmetric
6
6
  Author: Nikhil Lingadhal
7
7
  License: MIT
8
+ Project-URL: Homepage, https://github.com/nikhillingadhal1999
9
+ Project-URL: Source, https://github.com/nikhillingadhal1999/flexmetric
10
+ Project-URL: Tracker, https://github.com/nikhillingadhal1999/flexmetric/issues
8
11
  Classifier: Programming Language :: Python :: 3
9
12
  Classifier: License :: OSI Approved :: MIT License
10
13
  Classifier: Operating System :: OS Independent
@@ -23,6 +26,7 @@ Dynamic: description
23
26
  Dynamic: description-content-type
24
27
  Dynamic: home-page
25
28
  Dynamic: license
29
+ Dynamic: project-url
26
30
  Dynamic: requires-dist
27
31
  Dynamic: requires-python
28
32
  Dynamic: summary
@@ -1,10 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flexmetric
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A secure flexible Prometheus exporter for commands, databases, functions, and scripts.
5
- Home-page: https://github.com/nikhillingadhal1999/custom_prometheus_agent
5
+ Home-page: https://github.com/nikhillingadhal1999/flexmetric
6
6
  Author: Nikhil Lingadhal
7
7
  License: MIT
8
+ Project-URL: Homepage, https://github.com/nikhillingadhal1999
9
+ Project-URL: Source, https://github.com/nikhillingadhal1999/flexmetric
10
+ Project-URL: Tracker, https://github.com/nikhillingadhal1999/flexmetric/issues
8
11
  Classifier: Programming Language :: Python :: 3
9
12
  Classifier: License :: OSI Approved :: MIT License
10
13
  Classifier: Operating System :: OS Independent
@@ -23,6 +26,7 @@ Dynamic: description
23
26
  Dynamic: description-content-type
24
27
  Dynamic: home-page
25
28
  Dynamic: license
29
+ Dynamic: project-url
26
30
  Dynamic: requires-dist
27
31
  Dynamic: requires-python
28
32
  Dynamic: summary
@@ -2,12 +2,17 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="flexmetric",
5
- version="0.3.0",
5
+ version="0.3.1",
6
6
  author="Nikhil Lingadhal",
7
7
  description="A secure flexible Prometheus exporter for commands, databases, functions, and scripts.",
8
8
  long_description=open("README.md").read(),
9
9
  long_description_content_type="text/markdown",
10
- url="https://github.com/nikhillingadhal1999/custom_prometheus_agent",
10
+ url="https://github.com/nikhillingadhal1999/flexmetric",
11
+ project_urls={
12
+ "Homepage": "https://github.com/nikhillingadhal1999",
13
+ "Source": "https://github.com/nikhillingadhal1999/flexmetric",
14
+ "Tracker": "https://github.com/nikhillingadhal1999/flexmetric/issues",
15
+ },
11
16
  license="MIT",
12
17
  packages=find_packages(),
13
18
  install_requires=[
File without changes
File without changes