-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "random_events" | ||
authors = [ | ||
{ name="Tom Schierenbeck", email="[email protected]" }, | ||
] | ||
description = "Random random events for probabilistic reasoning" | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
keywords=["random events", "probabilistic machine learning", "probability theory", "variables", | ||
"reasoning under uncertainty"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
"Source" = 'https://github.com/tomsch420/random-events' | ||
"Bug Tracker" = 'https://github.com/tomsch420/random-events/issues' | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] # list of folders that contain the packages (["."] by default) | ||
include = ["random_events*"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "random_events.__version__"} | ||
dependencies = {file = "requirements.txt"} |