Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Oder/Manual release instructions:
* Commit and open PR on Github to see that all tests pass,
and then merge the PR.
* Check out master locally
* Build wheel
python setup.py sdist upload
* Build sdist and wheel
python -m build
* Check long description
twine check dist/*
* Upload to pypi-test
Expand Down
47 changes: 47 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77"]

[project]
authors = [{name = "Michael Weiss and other contributors", email = "code@mweiss.ch"}]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
dependencies = ["pylatexenc~=2.10"]
description = "Bibtex parser for python 3"
dynamic = ["version"]
license = "MIT"
license-files = ["LICENSE"]
maintainers = [{name = "Michael Weiss", email = "code@mweiss.ch"}]
name = "bibtexparser"
readme = "README.md"
requires-python = ">=3.9"

[project.optional-dependencies]
docs = ["sphinx"]
test = [
"pytest", # Test runner
"pytest-xdist", # Parallel tests: `pytest -n <num-workers>`
"pytest-cov", # Code coverage
"jupyter", # For runnable examples
]

[project.urls]
Homepage = "https://github.com/sciunto-org/python-bibtexparser"
Repository = "https://github.com/sciunto-org/python-bibtexparser"

[tool.setuptools.dynamic]
version = {attr = "bibtexparser.__version__"}

[tool.setuptools.package-data]
bibtexparser = ["py.typed"]

[tool.setuptools.packages.find]
include = ["bibtexparser", "bibtexparser.*"]
60 changes: 0 additions & 60 deletions setup.py

This file was deleted.

Loading