This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
54 lines (50 loc) · 1.85 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
"netcdf4",
"brain-score @ git+https://github.com/brain-score/brain-score",
"model-tools @ git+https://github.com/brain-score/model-tools",
"numpy",
"result_caching @ git+https://github.com/brain-score/result_caching",
"networkx==1.11",
"tqdm",
"gitpython",
"torch",
"keras==2.3.1",
"tensorflow==1.15",
"Pillow",
"cornet @ git+https://github.com/dicarlolab/CORnet",
"vonenet @ git+https://github.com/dicarlolab/vonenet",
"bagnets @ git+https://github.com/mschrimpf/bag-of-local-features-models.git",
"texture_vs_shape @ git+https://github.com/mschrimpf/texture-vs-shape.git",
"Fixing-the-train-test-resolution-discrepancy-scripts @ git+https://github.com/mschrimpf/FixRes.git",
"dcgan @ git+https://github.com/franzigeiger/dcgan.git",
"tnn @ git+https://github.com/neuroailab/tnn.git",
"unsup_vvs @ git+https://github.com/neuroailab/unsup_vvs.git@bs_latest",
]
setup(
name='candidate-models',
version='0.1.0',
description="A framework of candidate models to test on brain data",
long_description=readme,
author="Martin Schrimpf",
author_email='[email protected]',
url='https://github.com/brain-score/candidate-models',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='candidate-models brain-score',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
)