forked from datajoint-company/datajoint-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 781 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
long_description = """"
DataJoint interactive tutorials with examples from electrophysiology and calcium-imaging
"""
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(
name='datajoint-tutorials',
version="0.1.0",
description="DataJoint interactive tutorials",
long_description=long_description,
author='DataJoint',
author_email='[email protected]',
license='MIT',
url='https://github.com/datajoint/datajoint-tutorials',
keywords='neuroscience datajoint',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=requirements,
)