forked from campagnola/ccfviewer
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 877 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiccf"
version = "1.0"
description = "User interface tools for interacting with Allen Institute CCF atlas."
authors = [
{name = "Luke Campagnola", email = "lukec@alleninstitute.org"}
]
license = {text = "Allen Institute Software License"}
keywords = ["common", "coordinate", "framework", "ccf", "allen", "institute", "brain", "atlas"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
requires-python = ">=3.7"
dependencies = [
"pyqtgraph",
"numpy",
"pynrrd",
"MetaArray",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["aiccf*"]