Skip to content

Commit

Permalink
Change folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
glandfried committed Jul 27, 2021
1 parent 62d808c commit 18c3fc7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example/atp.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd
import sys
sys.path.append('..')
from src import *
from trueskillthroughtime import *
import time
from datetime import datetime

Expand Down
2 changes: 1 addition & 1 deletion example/example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
sys.path.append('..')
from src import *
from trueskillthroughtime import *
import timeit

print("Code 1")
Expand Down
2 changes: 1 addition & 1 deletion example/ogs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import sys
sys.path.append('..')
import src as ttt
import trueskillthroughtime as ttt
from importlib import reload # Python 3.4+ only.
reload(ttt)
import math
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="trueskillthroughtime",
version="0.0.1",
version="0.0.2",
author="Gustavo Landfried",
author_email="[email protected]",
description="The temporal learning estimator: Individual learning curves with reliable initial estimates and guaranteed comparability between distant estimates.",
Expand All @@ -18,10 +18,9 @@
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
packages=['trueskillthroughtime'],
#python_requires=">=3.6",
download_url = 'https://github.com/glandfried/TrueSkillThroughTime.py/archive/refs/tags/v0.0.1.tar.gz',
download_url = 'https://github.com/glandfried/TrueSkillThroughTime.py/archive/refs/tags/v0.0.2.tar.gz',
install_requires=[
'numba',
]
Expand Down
2 changes: 1 addition & 1 deletion test/runtest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import sys
sys.path.append('..')
import src as ttt
import trueskillthroughtime as ttt
#import old
from importlib import reload # Python 3.4+ only.
reload(ttt)
Expand Down
File renamed without changes.

0 comments on commit 18c3fc7

Please sign in to comment.