-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.03 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.03 KB
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
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="brain-modules",
version="0.1.0",
author="Ricky Ding",
author_email="e0134117@u.nus.edu",
description="Replicate brain modules' computations with Artificial Neural Networks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NeuroAI-Research/brain-modules",
packages=find_packages(),
install_requires=open("requirements.txt").read().splitlines(),
python_requires=">=3.8",
license="MIT",
keywords=[
"neuroscience",
"neuroAI",
"artificial-intelligence",
"neural-networks",
"cognitive-modeling",
"brain-modules",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)