Skip to content

Commit

Permalink
pipy packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
mmolari committed Aug 27, 2024
1 parent 3924571 commit 6699b49
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 21 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
__pycache__/
/playground
.pytest_cache/
/.vscode
/.vscode
/.pypirc
/dist
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository contains a collection of utilities to interact with pangrenome g
The package can be installed using pip with the command:

```bash
pip install git+https://github.com/mmolari/pypangraph
pip install pypangraph
```

Below are some examples showcasing some of the main functions in the package.
Expand Down
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pypangraph"
version = "0.1.3"
authors = [
{ name="Marco Molari", email="[email protected]" },
]
description = "package to manipulate pangenomes produced by PanGraph"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"biopython",
"scipy",
"networkx"
]

[project.urls]
Homepage = "https://github.com/mmolari/pypangraph"
Issues = "https://github.com/mmolari/pypangraph/issues"
19 changes: 0 additions & 19 deletions setup.py

This file was deleted.

0 comments on commit 6699b49

Please sign in to comment.