Skip to content

Commit 2c92992

Browse files
authored
Update header and footer in README.md and add MIT License (#31)
* Update README.md * Update README.md * Add files via upload * Rename LICENSE.txt to LICENSE * Update pyproject.toml * Update pyproject.toml * Update pyproject.toml * Update pyproject.toml * Update slack_utils.py * Update pyproject.toml
1 parent 798789f commit 2c92992

File tree

4 files changed

+56
-10
lines changed

4 files changed

+56
-10
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 DataCebo
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@
33
<p align="center">
44
<i>This repository is part of <a href="https://sdv.dev">The Synthetic Data Vault Project</a>, a project from <a href="https://datacebo.com">DataCebo</a>.</i>
55
</p>
6-
<div align="left">
6+
7+
[![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)
8+
[![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)
9+
[![Slack](https://img.shields.io/badge/Slack-Join%20now!-36C5F0?logo=slack)](https://bit.ly/sdv-slack-invite)
10+
11+
<div align="center">
12+
<a href="https://datacebo.com">
13+
<picture>
14+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo-dark-mode.png">
15+
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo.png"></img>
16+
</picture></a>
17+
</div>
18+
<br/>
19+
</div>
720

821
# PyMetrics
922
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
6982

7083
---
7184

72-
<div align="center">
73-
<a href="https://datacebo.com"><picture>
74-
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo-dark-mode.png">
75-
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo.png"></img>
76-
</picture></a>
77-
</div>
78-
<br/>
85+
<div align="left">
7986
<br/>
87+
<p align="center">
88+
<a href="https://github.com/sdv-dev/SDV">
89+
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/SDV-logo.png"></img>
90+
</a>
91+
</p>
92+
</div>
93+
94+
</div>
8095

8196
[The Synthetic Data Vault Project](https://sdv.dev) was first created at MIT's [Data to AI Lab](
8297
https://dai.lids.mit.edu/) in 2016. After 4 years of research and traction with enterprise, we

pymetrics/slack_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from slack_sdk import WebClient
77

8-
GITHUB_URL_PREFIX = 'https://github.com/datacebo/pymetrics/actions/runs/'
8+
GITHUB_URL_PREFIX = 'https://github.com/sdv-dev/pymetrics/actions/runs/'
99
DEFAULT_SLACK_CHANNEL = 'sdv-alerts-debug'
1010

1111

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ authors = [
1111
{ name = "DataCebo", email = "[email protected]" }
1212
]
1313
requires-python = ">=3.13"
14+
license = "MIT"
15+
license-files = ["LICENSE"]
16+
classifiers = [
17+
'Development Status :: 5 - Production/Stable',
18+
'Intended Audience :: Developers',
19+
'Natural Language :: English',
20+
'Programming Language :: Python :: 3',
21+
'Programming Language :: Python :: 3.13',
22+
"Topic :: Scientific/Engineering",
23+
]
1424
dependencies = [
1525
"pandas>=2.2.3",
1626
"tqdm",
@@ -31,7 +41,7 @@ dependencies = [
3141
]
3242

3343
[project.urls]
34-
Homepage = "https://github.com/DataCebo/pymetrics"
44+
Homepage = "https://github.com/sdv-dev/pymetrics"
3545

3646
[project.scripts]
3747
pymetrics = "pymetrics.__main__:main"

0 commit comments

Comments
 (0)