-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
32 lines (28 loc) Β· 892 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
26
27
28
29
30
31
32
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
readme = f.read()
with open("LICENSE.txt") as f:
license = f.read()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setup(
name="databook_utils",
description="Library of Jupyter notebooks for reproducible neuroscience analysis",
long_description_content_type="text/markdown",
long_description=readme,
author="Carter Peene",
version="1.1.0",
author_email="[email protected]",
url="https://github.com/AllenInstitute/openscope_databook",
license=license,
package_dir={"databook_utils": "databook_utils"},
install_requires=required,
extras_require={
"dev": [
"markupsafe==2.0.1",
"jupyter-book==1.0.0",
"nbmake==1.5.3",
"pytest-xdist==3.5.0"
]
}
)