Skip to content

Commit

Permalink
setup.py works propertly
Browse files Browse the repository at this point in the history
  • Loading branch information
jlgarridol committed Jun 21, 2024
1 parent 938ae5f commit 82f1b41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def get_version():
with open('sslearn/__init__.py') as f:
with open('src/sslearn/__init__.py') as f:
for line in f:
if line.startswith('__version__'):
return line.split('=')[1].strip().strip("'")
Expand All @@ -31,7 +31,8 @@ def get_version():
"scikit_learn>=1.2.0",
"scipy>=1.10.1",
"statsmodels>=0.13.2"],
packages=setuptools.find_packages(exclude=("tests", "experiments")),
#packages=setuptools.find_packages(exclude=("tests", "experiments")),
package_dir = {"": "src"},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 82f1b41

Please sign in to comment.