Skip to content

Commit

Permalink
FunMC: Make it marginally easier to install.
Browse files Browse the repository at this point in the history
  • Loading branch information
SiegeLordEx authored and tensorflower-gardener committed Jul 10, 2024
1 parent 39ae877 commit 566f6d5
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions spinoffs/fun_mc/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright 2024 The TensorFlow Probability Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "fun_mc"
description = "Functional MC: A functional API for creating new Markov Chains."
version = "0.1.0"
dependencies = [
"immutabledict",
"numpy>=1.13.3",
]
requires-python = ">= 3.10"
authors = [
{name="Google LLC", email="[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"markov chain monte carlo",
]

0 comments on commit 566f6d5

Please sign in to comment.