-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: implement comments from code review thanks @j042
- Loading branch information
1 parent
ce08524
commit c70167a
Showing
2 changed files
with
4 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
[project] | ||
name = "gustaf" | ||
authors = [ | ||
{name = "Jaewool Lee", email = "[email protected]"} | ||
{name = "Jaewook Lee", email = "[email protected]"} | ||
] | ||
description = "Process and visualize numerical-analysis-geometries." | ||
# fastapi uses hatling as build backend and it can use dynamic versioning | ||
# poetry needs static versioning (version defined in pyproject.toml) | ||
# setuptools (package itself) still uses the setup.py files, but as build | ||
# system supports dynamic versioning | ||
keywords = [ | ||
"numerical-analysis", | ||
"geometry", | ||
"visualization", | ||
"mesh", | ||
] | ||
requires-python = ">=3.6" | ||
requires-python = ">=3.7" | ||
license = {file = "LICENSE.txt"} | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
|
@@ -25,6 +21,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
|
@@ -44,7 +41,6 @@ all = [ | |
] | ||
test = [ | ||
"pytest", | ||
"pytest-cov", | ||
"funi", | ||
"napf", | ||
] | ||
|