Skip to content

Commit

Permalink
Convert setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjameskennedy committed Feb 27, 2024
1 parent 53839f8 commit 0ffacd3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 40 deletions.
49 changes: 49 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[project]
name = "jasentool"
dynamic = ["version"]
authors = [
{name = "Ryan Kennedy", email = "[email protected]"},
]
description = "Multipurpose tool for jobs related to the jasen pipeline and Bonsai tool."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"setuptools",
"wheel",
"requests",
"tqdm",
"pandas",
"pymongo",
"openpyxl",
"biopython"
]

[project.urls]
Repository = "https://github.com/ryanjameskennedy/jasentool"
Issues = "https://github.com/ryanjameskennedy/jasentool/issues"
Changelog = "https://github.com/ryanjameskennedy/jasentool/CHANGELOG.md"

[project.scripts]
jasentool = "jasentool.__main__:main"

[project.optional-dependencies]
dev = [
"pylint ~=3.0.2",
"black ~=23.11.0",
"isort ~=5.12.0",
]

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

[tool.coverage.run]
source = ["jasentool"]
40 changes: 0 additions & 40 deletions setup.py

This file was deleted.

0 comments on commit 0ffacd3

Please sign in to comment.