Skip to content

Commit

Permalink
preparing package structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziaeemehr committed Aug 6, 2024
1 parent 085c1ca commit 097101d
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
[build-system]
requires = [
"hatchling",
"setuptools",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"

[project]
name = "spikes"
dynamic = ['version']
description = "Provide jax codes for Spikes, decisions, and actions, Book by Hugh Wilson 1999."
authors = [
{ name = "Abolfazl Ziaeemehr", email = "[email protected]" },
]
readme = "README.md"
dependencies = [
"numpy",
"scipy",
"networkx",
"nbconvert",
"numpydoc",
"matplotlib",
"seaborn",
"jax",
"jaxlib",
"jax-dataclasses",
"setuptools-scm",
"tqdm"
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]

[project.optional-dependencies]
dev = [
"pytest",
"pytest-xdist",
"pytest-benchmark",
"build",
"jupyter",
]

[project.urls]
homepage = "https://ziaeemehr.github.io/spikes/"
repository = "https://github.com/Ziaeemehr/spikes"

[tool.hatch.version]
path = "spikes/_version.py"

0 comments on commit 097101d

Please sign in to comment.