metacountregressor 0.1.168__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.
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/PKG-INFO +1 -1
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/PKG-INFO +1 -1
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/setup.py +8 -2
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/LICENSE.txt +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/README.rst +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/__init__.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/_device_cust.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/app_main.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/data_split_helper.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/halton.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/helperprocess.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/main.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/main_old.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/metaheuristics.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/pareto_file.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/pareto_logger__plot.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/setup.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/single_objective_finder.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/solution.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/test_generated_paper2.py +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/SOURCES.txt +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/dependency_links.txt +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/not-zip-safe +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/requires.txt +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/top_level.txt +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/setup.cfg +0 -0
- {metacountregressor-0.1.168 → metacountregressor-0.1.176}/tests/test.py +0 -0
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import
|
|
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(
|
|
25
|
+
with open(readme_path, 'r', encoding='utf-8') as fh:
|
|
20
26
|
long_description = fh.read()
|
|
21
27
|
'''
|
|
22
28
|
package_name = 'metacountregressor'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/_device_cust.py
RENAMED
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/data_split_helper.py
RENAMED
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/helperprocess.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/metaheuristics.py
RENAMED
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor/pareto_logger__plot.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/requires.txt
RENAMED
|
File without changes
|
{metacountregressor-0.1.168 → metacountregressor-0.1.176}/metacountregressor.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|