-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.29 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
# Copyright 2018-2024 Carnegie Mellon University
from setuptools import setup
from pyactup import __version__
DESCRIPTION = open("README.md").read()
setup(name="pyactup",
version=__version__,
description="A lightweight Python implementation of a subset of the ACT-R cognitive architecture’s Declarative Memory",
author="Don Morrison",
author_email="[email protected]",
url="https://dfmorrison.github.io/pyactup-documentation/",
platforms=["any"],
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
py_modules=["pyactup"],
install_requires=[
"numpy",
"pylru",
"prettytable",
"packaging"],
tests_require=["pytest"],
python_requires=">=3.8",
classifiers=["Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"])