-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.02 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
#!/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 = [
"torch>=0.4.0+",
"torchvision",
"numpy",
"pandas",
"tqdm",
"fire",
]
setup(
name='CORnet',
version='0.1.0',
description="Modeling the Neural Mechanisms of Core Object Recognition ",
long_description=readme,
author="Jonas Kubilius, Martin Schrimpf",
author_email='[email protected], [email protected]',
url='https://github.com/dicarlolab/CORnet',
packages=['cornet'],
include_package_data=True,
install_requires=requirements,
license="GNU GPL v3",
zip_safe=False,
keywords='CORnet Brain-Score',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU GPL v3',
'Natural Language :: English',
'Programming Language :: Python :: 3.6'
],
)