forked from CarletonCognitiveModelingLab/python_actr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from pathlib import Path
from setuptools import setup
# read the contents of the README file
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()
setup(
name="actr",
# version is the actr pip package (this is different from the python_actr version)
version="1.0.0",
description="Python implementation of the ACT-R cognitive architecture",
long_description=long_description,
long_description_content_type="text/markdown",
author="Carleton Cognitive Modelling Lab",
maintainer="Andy Maloney (fork)",
url="https://github.com/asmaloney/python_actr",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
license="MIT",
keywords=[
"ACT-R",
"cognitive-architecture",
"cognitive-modelling",
"cognitive-science",
"CogSci",
],
packages=[
"python_actr",
"python_actr.display",
"python_actr.actr",
"python_actr.ui",
],
python_requires=">=3.0",
)