Skip to content

Commit

Permalink
Merge pull request #112 from marcelm/pyproject
Browse files Browse the repository at this point in the history
Get rid of setup.cfg, use pyproject.toml instead
  • Loading branch information
marcelm committed Aug 31, 2023
2 parents 47b6976 + e40ae9a commit 61a33d4
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 37 deletions.
36 changes: 36 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@
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]"},
{name = "Ruben Vorderman", 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.exclude-package-data]
dnaio = ["*.pyx"]

[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 61a33d4

Please sign in to comment.