Skip to content

Commit

Permalink
Create pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kozo2 authored Sep 24, 2024
1 parent a0f95d8 commit e8b56ec
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pywikipathways"
version = "0.0.3"
authors = [
{ name="Kozo Nishida", email="[email protected]" },
]
description = "Python Client Package for WikiPathways."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"requests",
"pandas",
"lxml"
]

[project.urls]
Homepage = "https://github.com/wikipathways/pywikipathways"
Issues = "https://github.com/wikipathways/pywikipathways/issues"

0 comments on commit e8b56ec

Please sign in to comment.