-
Notifications
You must be signed in to change notification settings - Fork 34
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
Zachary Ferguson
committed
Jul 25, 2023
1 parent
bc4e9e4
commit 35b827c
Showing
4 changed files
with
8 additions
and
20 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
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 |
---|---|---|
|
@@ -9,13 +9,11 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "ipctk" | ||
version = "1.0.1" | ||
authors = [ | ||
{ name="Zachary Ferguson", email="[email protected]" }, | ||
] | ||
version = "1.1.0" | ||
authors = [{ name = "Zachary Ferguson", email = "[email protected]" }] | ||
description = "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation." | ||
readme = "docs/PYPI_README.md" | ||
license = { file="LICENSE" } | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"Programming Language :: C++", | ||
"Programming Language :: Python :: 3", | ||
|
@@ -26,17 +24,8 @@ classifiers = [ | |
"Intended Audience :: Science/Research", | ||
] | ||
requires-python = ">=3.6" | ||
dependencies = [ | ||
"numpy", | ||
"scipy", | ||
] | ||
keywords = [ | ||
"IPC", | ||
"simulation", | ||
"physics", | ||
"science", | ||
"reserch", | ||
] | ||
dependencies = ["numpy", "scipy"] | ||
keywords = ["IPC", "simulation", "physics", "science", "reserch"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://ipc-sim.github.io/ipc-toolkit/" | ||
|
@@ -45,4 +34,3 @@ keywords = [ | |
|
||
[tools.cibuildwheel] | ||
build-frontend = "build" | ||
|