Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
theAeon committed Feb 27, 2023
1 parent 309e635 commit ef0aa64
Showing 1 changed file with 35 additions and 25 deletions.
60 changes: 35 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
[build-system]
build-backend = "pdm.pep517.api"
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
requires = [
"pdm-pep517>=1.0.0",
]

[tool.black]
exclude = "/(\n \\.eggs\n | \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.nox\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n"
include = "\\.pyi?$"
exclude = "/(\n \\.eggs\n | \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.nox\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n"
include = "\\.pyi?$"

[tool.pdm]
package-dir = "src"
[tool.pdm.build]
excludes = ["contrib"]
package-dir = "src"

[tool.pdm.build]
excludes = [
"contrib",
]

[project]
authors = [
authors = [
{ name = "Joshua Welch", email = "[email protected]" },
{ name = "Lu Lu", email = "[email protected]" },
]
classifiers = [
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
dependencies = [
]
dependencies = [
"adjustText>=0.7.3",
"anndata>=0.8.0",
"annoy",
Expand All @@ -43,18 +49,22 @@
"scikit-learn",
"seaborn>=0.12.2",
"umap-learn",
]
description = "The Python version of LIGER package."
keywords = ["LIGER"]
maintainers = [{ name = "Andrew Robbins", email = "[email protected]" }]
name = "pyliger"
readme = "README.md"
requires-python = "<3.11, >=3.8"
version = "0.1.1"
]
description = "The Python version of LIGER package."
keywords = [
"LIGER",
]
maintainers = [
{ name = "Andrew Robbins", email = "[email protected]" },
]
name = "pyliger"
readme = "README.md"
requires-python = "<3.11, >=3.8"
version = "0.1.2"

[project.license]
text = "MIT"
[project.license]
text = "MIT"

[project.urls]
homepage = "https://welch-lab.github.io"
repository = "https://github.com/welch-lab/pyliger"
[project.urls]
homepage = "https://welch-lab.github.io"
repository = "https://github.com/welch-lab/pyliger"

0 comments on commit ef0aa64

Please sign in to comment.