Skip to content

Commit

Permalink
Use pyproject.toml for project metadata instead of setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Aug 31, 2023
1 parent 47b6976 commit 659183a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 37 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
requires = ["setuptools >= 52", "setuptools_scm >= 6.2", "Cython >= 0.29.20"]
build-backend = "setuptools.build_meta"

[project]
name = "dnaio"
authors = [
{name = "Marcel Martin", email = "[email protected]"}
]
description = "Read and write FASTA and FASTQ files efficiently"
readme = "README.rst"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">3.7"
dependencies = [
"xopen >= 1.4.0"
]
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"Cython",
"pytest"
]

[project.urls]
"Homepage" = "https://dnaio.readthedocs.io/"
"Changelog" = "https://dnaio.readthedocs.io/en/latest/changes.html"

[tool.setuptools_scm]
write_to = "src/dnaio/_version.py"

Expand Down
37 changes: 0 additions & 37 deletions setup.cfg

This file was deleted.

0 comments on commit 659183a

Please sign in to comment.