forked from brainglobe/brainglobe-atlasapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 815 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
33
from setuptools import setup, find_namespace_packages
requirements = []
setup(
name="brainglobe",
version="0.0.1a",
description="TBC",
install_requires=requirements,
extras_require={
"dev": [
"sphinx",
"recommonmark",
"sphinx_rtd_theme",
"pydoc-markdown",
"black",
"pytest-cov",
"pytest",
"gitpython",
"coveralls",
"coverage<=4.5.4",
]
},
python_requires=">=3.6",
packages=find_namespace_packages(exclude=("docs", "tests*")),
include_package_data=True,
url="https://github.com/brainglobe/brainglobe",
author="TBC",
author_email="adam.tyson@ucl.ac.uk",
classifiers=["Development Status :: 3 - Alpha",],
zip_safe=False,
)