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
21 lines (19 loc) · 693 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
import python_actr
exclude = ['python_actr.tests']
setup(
name='python_actr',
packages=find_packages(exclude=exclude),
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',
]
)