diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9b652d4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 DataCebo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 6b13add..191f841 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,20 @@

This repository is part of The Synthetic Data Vault Project, a project from DataCebo.

-
+ +[![Dev Status](https://img.shields.io/badge/Dev%20Status-5%20--%20Production%2fStable-green)](https://pypi.org/search/?c=Development+Status+%3A%3A+5+-+Production%2FStable) +[![Unit Tests](https://github.com/datacebo/PyMetrics/actions/workflows/unit.yaml/badge.svg)](https://github.com/datacebo/PyMetrics/actions/workflows/unit.yaml?query=branch%3Amain) +[![Slack](https://img.shields.io/badge/Slack-Join%20now!-36C5F0?logo=slack)](https://bit.ly/sdv-slack-invite) + +
+ + + + + +
+
+
# PyMetrics The PyMetrics project allows you to extract download metrics for Python libraries published on [PyPI](https://pypi.org/) and [Anaconda](https://www.anaconda.com/). @@ -69,14 +82,16 @@ This methodology prevents double-counting downloads while providing an accurate --- -
- - - - -
-
+

+

+ + + +

+
+ + [The Synthetic Data Vault Project](https://sdv.dev) was first created at MIT's [Data to AI Lab]( https://dai.lids.mit.edu/) in 2016. After 4 years of research and traction with enterprise, we diff --git a/pymetrics/slack_utils.py b/pymetrics/slack_utils.py index 12b8df0..c48ab71 100644 --- a/pymetrics/slack_utils.py +++ b/pymetrics/slack_utils.py @@ -5,7 +5,7 @@ from slack_sdk import WebClient -GITHUB_URL_PREFIX = 'https://github.com/datacebo/pymetrics/actions/runs/' +GITHUB_URL_PREFIX = 'https://github.com/sdv-dev/pymetrics/actions/runs/' DEFAULT_SLACK_CHANNEL = 'sdv-alerts-debug' diff --git a/pyproject.toml b/pyproject.toml index 97818c4..b1d0de7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,16 @@ authors = [ { name = "DataCebo", email = "info@datacebo.com" } ] requires-python = ">=3.13" +license = "MIT" +license-files = ["LICENSE"] +classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.13', + "Topic :: Scientific/Engineering", +] dependencies = [ "pandas>=2.2.3", "tqdm", @@ -31,7 +41,7 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/DataCebo/pymetrics" +Homepage = "https://github.com/sdv-dev/pymetrics" [project.scripts] pymetrics = "pymetrics.__main__:main"