Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
theAeon committed Feb 10, 2023
1 parent 0eb72d9 commit cb59d32
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: "3.8"
cache: true
architecture : x64
version: 2.4.3
version: 2.4.5
prerelease: false
enable-pep582: true
- name: Install dependencies
Expand Down
96 changes: 45 additions & 51 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,71 +1,65 @@
[build-system]
build-backend = "pdm.pep517.api"
requires = ["pdm-pep517>=1.0.0"]
requires = [
"pdm-pep517>=1.0.0",
]

[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
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"

[project]
authors = [
{ name = "Joshua Welch", email = "[email protected]" },
{ name = "Lu Lu", email = "[email protected]" },
{ name = "Joshua Welch", email = "[email protected]" },
{ name = "Lu Lu", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"adjustText>=0.7.3",
"anndata>=0.8.0",
"annoy",
"bokeh",
"colorcet",
"goatools>=1.3.1",
"h5sparse>=0.1.0",
"holoviews",
"leidenalg",
"louvain",
"matplotlib>=3.6.3",
"mygene",
"numexpr>=2.8.4",
"numpy",
"pandas",
"plotnine>=0.10.1",
"python-igraph",
"scikit-learn",
"seaborn>=0.12.2",
"umap-learn",
"adjustText>=0.7.3",
"anndata>=0.8.0",
"annoy",
"bokeh",
"colorcet",
"goatools>=1.3.1",
"h5sparse>=0.1.0",
"holoviews",
"leidenalg",
"louvain",
"matplotlib>=3.6.3",
"mygene",
"numexpr>=2.8.4",
"numpy",
"pandas",
"plotnine>=0.10.1",
"python-igraph",
"scikit-learn",
"seaborn>=0.12.2",
"umap-learn",
]
description = "The Python version of LIGER package."
keywords = ["LIGER"]
license = { text = "MIT" }
maintainers = [{ name = "Andrew Robbins", email = "[email protected]" }]
keywords = [
"LIGER",
]
maintainers = [
{ name = "Andrew Robbins", email = "[email protected]" },
]
name = "pyliger"
readme = "README.md"
requires-python = "<3.11, >=3.8"
version = "0.1"
version = "0.1.1"

[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 cb59d32

Please sign in to comment.