metacountregressor 0.1.175__tar.gz → 0.1.176__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 (27) hide show
  1. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/PKG-INFO +1 -1
  2. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/PKG-INFO +1 -1
  3. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/setup.py +8 -2
  4. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/LICENSE.txt +0 -0
  5. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/README.rst +0 -0
  6. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/__init__.py +0 -0
  7. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/_device_cust.py +0 -0
  8. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/app_main.py +0 -0
  9. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/data_split_helper.py +0 -0
  10. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/halton.py +0 -0
  11. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/helperprocess.py +0 -0
  12. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/main.py +0 -0
  13. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/main_old.py +0 -0
  14. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/metaheuristics.py +0 -0
  15. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/pareto_file.py +0 -0
  16. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/pareto_logger__plot.py +0 -0
  17. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/setup.py +0 -0
  18. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/single_objective_finder.py +0 -0
  19. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/solution.py +0 -0
  20. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor/test_generated_paper2.py +0 -0
  21. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/SOURCES.txt +0 -0
  22. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/dependency_links.txt +0 -0
  23. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/not-zip-safe +0 -0
  24. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/requires.txt +0 -0
  25. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/metacountregressor.egg-info/top_level.txt +0 -0
  26. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/setup.cfg +0 -0
  27. {metacountregressor-0.1.175 → metacountregressor-0.1.176}/tests/test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: metacountregressor
3
- Version: 0.1.175
3
+ Version: 0.1.176
4
4
  Summary: Extensive Testing for Estimation of Data Count Models
5
5
  Home-page: https://github.com/zahern/CountDataEstimation
6
6
  Author: Zeke Ahern
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: metacountregressor
3
- Version: 0.1.175
3
+ Version: 0.1.176
4
4
  Summary: Extensive Testing for Estimation of Data Count Models
5
5
  Home-page: https://github.com/zahern/CountDataEstimation
6
6
  Author: Zeke Ahern
@@ -1,4 +1,10 @@
1
- import codecs
1
+ import os
2
+
3
+ # Get the directory of the current script
4
+ current_dir = os.path.dirname(os.path.abspath(__file__))
5
+
6
+ # Construct the full path to the README.md file
7
+ readme_path = os.path.join(current_dir, 'README.md')
2
8
  #import requests
3
9
  import setuptools
4
10
 
@@ -16,7 +22,7 @@ def get_package_version(package_name):
16
22
  return None
17
23
  '''
18
24
  # Read the README.md file for the long description
19
- with open('README.md', 'r', encoding='utf-8') as fh:
25
+ with open(readme_path, 'r', encoding='utf-8') as fh:
20
26
  long_description = fh.read()
21
27
  '''
22
28
  package_name = 'metacountregressor'