-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from shenanigansd/br/update
Add `pyproject.toml` to enable PEP 517 builds
- Loading branch information
Showing
5 changed files
with
32 additions
and
34 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 was deleted.
Oops, something went wrong.
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,31 @@ | ||
[project] | ||
name = "kavian" | ||
version = "0.2.0" | ||
description = "Python statistical modeling toolkit with built-in Pandas and Scikit-Learn integration" | ||
authors = [ | ||
{ name = "Adam Torres Encarnacion", email = "art5809@psu.edu" }, | ||
] | ||
license = { text = "MIT" } | ||
readme = "README.md" | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"numpy", | ||
"pandas", | ||
"scikit-learn", | ||
"rich", | ||
"pytest", | ||
"statsmodels", | ||
"scipy" | ||
] | ||
|
||
[project.urls] | ||
repository = "https://github.com/AdamPSU/Kavian" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.