-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (28 loc) · 1004 Bytes
/
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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages
import re
VERSIONFILE="forager/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(name='forager',
version=verstr,
description='Foraging methods for Semantic Memory Search',
url='https://github.com/larryzhang95/forager',
author='IU Cognitive Computing Laboratory',
author_email='[email protected]',
keywords=['fluency', 'foraging','psychology','memory','cognitive modeling'],
packages=['forager'],
include_package_data=True,
install_requires=['numpy','scipy','more_itertools','pandas','tqdm','nltk','requests'],
python_requires='>=3.8',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.8'
]
)