Skip to content

Commit 4b8cec6

Browse files
Merge pull request #658 from oist/fix/pyproject.toml
Fix/pyproject.toml
2 parents 23c7e07 + 0a51a2f commit 4b8cec6

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = "OptiNiSt"
2020
copyright = f"{datetime.today().year}, OIST"
2121
author = ""
22-
release = "2.0.0"
22+
release = "2.0.1"
2323

2424
# -- readthedocs -------------------------------------------------------------
2525
on_rtd = os.environ.get("READTHEDOCS", None) == "True"

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "optinist",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"engines": {
55
"node": ">=20.0.0"
66
},

pyproject.toml

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "optinist"
33
description = "Calcium Imaging Pipeline Tool"
4-
version = "2.0.0"
4+
version = "2.0.1"
55
license = "GPL-3.0"
66
authors = ["OIST <email@example.com>"]
77
readme = "README.md"
@@ -20,7 +20,7 @@ classifiers = [
2020
"Operating System :: Microsoft :: Windows",
2121
"Operating System :: MacOS :: MacOS X",
2222
]
23-
packages = [{ include = "studio" }]
23+
packages = [{ include = "studio" }, { include = "frontend" }, { include = "sample_data" }]
2424

2525
include = [
2626
"frontend/build/*",
@@ -33,14 +33,19 @@ include = [
3333
"studio/app/*/wrappers/**/*.yaml",
3434
"studio/app/Snakefile",
3535
"studio/config/*.yaml",
36-
"sample_data/input/*",
37-
"sample_data/output/**/*.yaml",
36+
"sample_data/**/input/*",
37+
"sample_data/**/output/**/*.yaml",
3838
]
3939
exclude = [
40+
"conda.env.*",
4041
"studio/tests/*",
4142
"studio/test_data/*",
42-
"conda.env.*",
4343
"studio/app/optinist/microscopes/libs.zip",
44+
"frontend/node_modules/*",
45+
"frontend/public/*",
46+
"frontend/src/*",
47+
"frontend/*.*",
48+
"sample_data/*.*",
4449
]
4550

4651
[tool.poetry.dependencies]

sample_data/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)