forked from brain-score/vision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (62 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""
Releasing a new version (adopted from https://github.com/huggingface/transformers/blob/master/setup.py)
1. Change the version in `setup.py` and `docs/source/conf.py`.
2. Commit these changes with the message: "release: <version>"
3. Mark the release with a git tag
"""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
"numpy>=1.17",
"brainio @ git+https://github.com/brain-score/brainio",
"importlib-metadata<5", # workaround to https://github.com/brain-score/brainio/issues/28
"scikit-learn", # 0.24 breaks pls regression
"scipy",
"h5py",
"tqdm",
"gitpython",
"fire",
"networkx",
"matplotlib",
"tensorflow",
"result_caching @ git+https://github.com/brain-score/result_caching",
"fire",
"jupyter",
"pybtex",
"peewee",
#"pillow<9.0.0",
"pillow",
"psycopg2-binary"
]
setup(
name='brain-score',
version='1.3',
description="A framework for the quantitative comparison of mindlike systems.",
long_description=readme,
author="Brain-Score Team",
author_email='[email protected], [email protected]',
url='https://github.com/brain-score/brain-score',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='brain-score',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
entry_points={
'brainio_lookups': [
'brainio_brainscore = brainscore.entrypoint:brainio_brainscore',
],
},
)