-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
ac37f5f
commit 48b56df
Showing
3 changed files
with
19 additions
and
2 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
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
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 |
---|---|---|
@@ -1,15 +1,26 @@ | ||
[project] | ||
name = "lorenzpy" | ||
readme = "README.md" | ||
version = "0.1.0" | ||
version = "0.0.1" | ||
description = "A Python package to simulate and measure chaotic dynamical systems." | ||
authors = [ | ||
{ name = "Dennis Duncan", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.8" | ||
license = { file = "LICENSE.txt" } | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"numpy==1.24.2", | ||
] | ||
|
||
[project.urls] | ||
"Documentation" = "https://duncdennis.github.io/lorenzpy/" | ||
"Homepage" = "https://github.com/DuncDennis/lorenzpy" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest==7.2.0", | ||
|
@@ -60,5 +71,5 @@ src = ["src", "tests"] | |
convention = "google" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" |