Skip to content

Commit

Permalink
Segment props (#34)
Browse files Browse the repository at this point in the history
* initial conversion to hatch

* successfully convert to hatch

* unpin neuroglancer

* basic working seg props

* validated inline properties attr

* allow tag descriptions

* use better contrast controls for mainline

* initial working segment prop map

* working version of mapping sets

* tests + associated changes

* Improve targetsite robustness

* update changelog
  • Loading branch information
ceesem authored Jul 10, 2024
1 parent 3fd01e5 commit ebcf41c
Show file tree
Hide file tree
Showing 193 changed files with 1,479 additions and 44,644 deletions.
9 changes: 9 additions & 0 deletions -/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2024-present Casey Schneider-Mizell <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 changes: 21 additions & 0 deletions -/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# .

[![PyPI - Version](https://img.shields.io/pypi/v/-.svg)](https://pypi.org/project/-)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/-.svg)](https://pypi.org/project/-)

-----

## Table of Contents

- [Installation](#installation)
- [License](#license)

## Installation

```console
pip install -
```

## License

`-` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
61 changes: 61 additions & 0 deletions -/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "-"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "Casey Schneider-Mizell", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = []

[project.urls]
Documentation = "https://github.com/Casey Schneider-Mizell/-#readme"
Issues = "https://github.com/Casey Schneider-Mizell/-/issues"
Source = "https://github.com/Casey Schneider-Mizell/-"

[tool.hatch.version]
path = "src/_/__about__.py"

[tool.hatch.envs.types]
extra-dependencies = [
"mypy>=1.0.0",
]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:src/_ tests}"

[tool.coverage.run]
source_pkgs = ["_", "tests"]
branch = true
parallel = true
omit = [
"src/_/__about__.py",
]

[tool.coverage.paths]
_ = ["src/_", "*/-/src/_"]
tests = ["tests", "*/-/tests"]

[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
4 changes: 4 additions & 0 deletions -/src/_/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SPDX-FileCopyrightText: 2024-present Casey Schneider-Mizell <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "0.0.1"
3 changes: 3 additions & 0 deletions -/src/_/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2024-present Casey Schneider-Mizell <[email protected]>
#
# SPDX-License-Identifier: MIT
3 changes: 3 additions & 0 deletions -/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2024-present Casey Schneider-Mizell <[email protected]>
#
# SPDX-License-Identifier: MIT
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ var/
*.orig
*.sublime-workspace

docs/.quarto/
docs/_site
201 changes: 0 additions & 201 deletions LICENSE.license

This file was deleted.

1 change: 0 additions & 1 deletion docs/.gitignore

This file was deleted.

Loading

0 comments on commit ebcf41c

Please sign in to comment.