-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
23 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[project] | ||
name = "cmflib" | ||
version = "0.0.2" | ||
authors = [ | ||
{ name="Hewlett Packard Enterprise"}, | ||
] | ||
description = "Track metadata for AI pipeline" | ||
readme = "README.md" | ||
requires-python = ">=3.7,<=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: POSIX :: Linux", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/HewlettPackard/cmf" | ||
"Bug Tracker" = "https://github.com/HewlettPackard/cmf/issues" |
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,3 @@ | ||
[metadata] | ||
description-file=README.md | ||
license_files=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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '0.0.1' | ||
VERSION = '0.0.2' | ||
DESCRIPTION = 'Metadata Python Package' | ||
LONG_DESCRIPTION = 'Metadata framework storing AI metadata into MLMD' | ||
|
||
|
@@ -9,8 +9,7 @@ | |
# the name must match the folder name 'verysimplemodule' | ||
name="cmflib", | ||
version=VERSION, | ||
author="Annmary Justine", | ||
author_email="[email protected]", | ||
author="Hewlett Packard Enterprise", | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
packages=find_packages(), | ||
|
@@ -24,6 +23,6 @@ | |
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Education", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Linux :: Ubuntu", | ||
"Operating System :: POSIX :: Linux", | ||
] | ||
) |