-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 895 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "requirements.txt")) as f:
requirements = f.read().split()
setup(
name="divisivenormalization",
version="0.0.0",
description="Code for Burg et al.: Learning divisive normalization in primary visual cortex",
author="Max Burg",
author_email="[email protected]",
license="MIT",
url="https://github.com/MaxFBurg/burg2021_learning-divisive-normalization",
packages=find_packages(exclude=[]),
install_requires=requirements,
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Natural Language :: English" "Topic :: Scientific/Engineering :: Bio-Informatics",
],
)