File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 33from .logger import log , finished
44from .runner import run , run_with
55from .actr import *
6- from .display import display
6+ from .display import display
7+ from . import version
Original file line number Diff line number Diff line change 1+ name = "python_actr"
2+ version_info = (1 , 9 , 0 )
3+ dev = False
4+ version = '.' .join ([str (x ) for x in version_info ])
5+ if dev :
6+ version = version + 'dev'
Original file line number Diff line number Diff line change 11from setuptools import setup
22
3+ import python_actr
4+
35setup (
46 name = 'python_actr' ,
57 packages = ['python_actr' ],
6- version = '1.9.0' ,
8+ version = python_actr . version . version ,
79 author = 'Carleton Cognitive Modelling Lab' ,
810 description = 'Python implementation of the ACT-R cognitive architecture' ,
911 url = 'https://github.com/CarletonCognitiveModelingLab/python_actr' ,
You can’t perform that action at this time.
0 commit comments