-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Python wheel metadata (#311)
- Loading branch information
1 parent
28a5bab
commit da6e69e
Showing
5 changed files
with
54 additions
and
11 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
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 @@ | ||
../README.md |
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,3 +1,53 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "FastTrackML" | ||
description = "An experiment tracking server focused on speed and scalability" | ||
dynamic = ["version"] | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.6" | ||
keywords = [ | ||
"ai", | ||
"apache-spark", | ||
"data-science", | ||
"data-visualization", | ||
"experiment-tracking", | ||
"machine-learning", | ||
"metadata-tracking", | ||
"metadata", | ||
"metrics", | ||
"ml", | ||
"mlflow-tracking-server", | ||
"mlflow", | ||
"mlops", | ||
"pytorch", | ||
"tensorboard", | ||
"tensorflow", | ||
"visualization", | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: JavaScript", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Utilities", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://fasttrackml.io/" | ||
Repository = "https://github.com/G-Research/fasttrackml" | ||
Changelog = "https://github.com/G-Research/fasttrackml/releases" |
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