Skip to content

Commit

Permalink
reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bdpedigo committed Dec 14, 2023
1 parent b435c9b commit c0ab3f3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 19 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog

## [0.2.1] - 2023-12-13

### Added

- Generic test function

## [0.1.0] - 2023-12-11

### Added

- First release on PyPI.
- Shell package
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Ready to contribute? Here's how to set up `networkframe` for local development.
4. Install dependencies and start your virtualenv:

```
$ poetry install -E test -E doc -E dev
$ poetry install --with dev
```

5. Create a branch for local development:
Expand Down
35 changes: 18 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,46 +1,47 @@
[tool]
[tool.poetry]
name = "networkframe"
version = "0.2.1"
homepage = "https://github.com/bdpedigo/networkframe"
description = "Lightweight representations of networks using Pandas DataFrames."
authors = ["Ben Pedigo <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers=[
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
description = "Lightweight representations of networks using Pandas DataFrames."
homepage = "https://github.com/bdpedigo/networkframe"
license = "MIT"
name = "networkframe"
packages = [
{ include = "networkframe" },
{ include = "tests", format = "sdist" },
]
readme = "README.md"
version = "0.2.1"

[tool.poetry.dependencies]
python = ">=3.11.0,<4.0"

[tool.poetry.group.dev.dependencies]
ruff = "^0.1.7"
pytest = "^7.4.3"
mypy = "^1.7.1"
bump2version = "^1.0.1"
mkdocs = "^1.5.3"
pymdown-extensions = "^10.5"
mkdocs-autorefs = "^0.5.0"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocstrings = {extras = ["crystal", "python"], version = "^0.24.0"}
mkdocs-jupyter = "^0.24.6"
mknotebooks = "^0.8.0"
mkdocs-autorefs = "^0.5.0"
mkdocs-material-extensions = "^1.3.1"
mkdocs-material = "^9.5.2"
mkdocs-material-extensions = "^1.3.1"
mkdocstrings = { extras = ["crystal", "python"], version = "^0.24.0" }
mknotebooks = "^0.8.0"
mypy = "^1.7.1"
pymdown-extensions = "^10.5"
pytest = "^7.4.3"
ruff = "^0.1.7"
twine = "^4.0.2"
bump2version = "^1.0.1"

[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
requires = ["poetry"]

[tool.ruff]
ignore-init-module-imports = true

0 comments on commit c0ab3f3

Please sign in to comment.