Skip to content

Commit b8370e5

Browse files
committed
UPD: make sure metadata is visible on PyPI
1 parent be40a8b commit b8370e5

3 files changed

Lines changed: 36 additions & 8 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ __pycache__/
55
env/
66
*.pyc
77
.idea/
8-
.ruff_cache/
8+
.ruff_cache/
9+
dist/
10+
.pypirc

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<p align="center">
2-
<img
3-
src="https://github.com/moltools/versalign/blob/main/logo.png"
4-
height="150"
5-
/>
2+
<img
3+
src="https://raw.githubusercontent.com/moltools/versalign/main/logo.png"
4+
height="150"
5+
alt="Versalign logo"
6+
/>
67
</p>
78

89
<p align="center">
@@ -42,4 +43,4 @@ Versalign has been developed for Linux and MacOS.
4243

4344
## Getting started
4445

45-
See the [examples](examples/) folder for some basic usage examples.
46+
See the [examples](https://github.com/moltools/versalign/tree/main/examples) folder for some basic usage examples.

pyproject.toml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,39 @@
11
[project]
22
name = "versalign"
3-
version = "2.0.0"
3+
version = "2.0.1"
4+
description = "Naive alignment for lists of arbitrary objects"
5+
readme = "README.md"
46
requires-python = ">=3.10"
7+
license = { file = "LICENSE" }
8+
authors = [
9+
{ name = "David Meijer", email = "david.meijer@wur.nl" }
10+
]
11+
keywords = ["alignment", "msa", "pairwise", "arbitrary-objects"]
512

613
dependencies = [
714
"biopython",
815
"numpy",
916
"pandas"
1017
]
1118

19+
classifiers = [
20+
"Development Status :: 5 - Production/Stable",
21+
"Intended Audience :: Science/Research",
22+
"License :: OSI Approved :: MIT License",
23+
"Programming Language :: Python",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Topic :: Scientific/Engineering :: Bio-Informatics"
29+
]
30+
31+
[project.urls]
32+
Homepage = "https://github.com/moltools/versalign"
33+
Repository = "https://github.com/moltools/versalign"
34+
Issues = "https://github.com/moltools/versalign/issues"
35+
Documentation = "https://github.com/moltools/versalign#readme"
36+
1237
[build-system]
1338
requires = ["hatchling"]
1439
build-backend = "hatchling.build"
@@ -23,7 +48,7 @@ dev = [
2348
allow-direct-references = true
2449

2550
[tool.hatch.build.targets.wheel]
26-
packages = ["src/versalign"]
51+
packages = ["versalign"]
2752
sources = ["src"]
2853

2954
[tool.hatch.build]

0 commit comments

Comments
 (0)