forked from CarletonCognitiveModelingLab/python_actr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 692 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
import python_actr
setup(
name='python_actr',
packages=['python_actr', 'python_actr.display', 'python_actr.actr', 'python_actr.ui'],
version=python_actr.version.version,
author='Carleton Cognitive Modelling Lab',
description='Python implementation of the ACT-R cognitive architecture',
url='https://github.com/CarletonCognitiveModelingLab/python_actr',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
]
)