-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 1.09 KB
/
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
from setuptools import setup, find_packages
setup(
name="brain_observatory_utilities",
version="0.4.0",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
description="Utilities for analyzing, manipulating and visualizing data for Brain Observatory projects",
dowload_url='https://github.com/AllenInstitute/brain_observatory_utilities/archive/refs/tags/v0.4.0.tar.gz',
url="https://github.com/AllenInstitute/mindscope_utilities",
author="Allen Institute",
license="Allen Institute",
install_requires=[
"flake8",
"pytest",
"allensdk",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: Other/Proprietary License", # Allen Institute Software License
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
],
)