Skip to content

Commit 62b8853

Browse files
authored
Update header and footer in README.md and add MIT License (#28)
* Add files via upload * Update README.md * Update pyproject.toml * Rename LICENSE.txt to LICENSE * Update README.md * Update pyproject.toml * Update slack_utils.py
1 parent c6d7c3f commit 62b8853

File tree

4 files changed

+56
-11
lines changed

4 files changed

+56
-11
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 & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@
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+
[![Slack](https://img.shields.io/badge/Slack-Join%20now!-36C5F0?logo=slack)](https://bit.ly/sdv-slack-invite)
9+
10+
<div align="center">
11+
<a href="https://datacebo.com">
12+
<picture>
13+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo-dark-mode.png">
14+
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo.png"></img>
15+
</picture></a>
16+
</div>
17+
<br/>
18+
</div>
719

820
# GitMetrics
921

@@ -79,14 +91,16 @@ GitMetrics is capable of reading and writing results in Google Spreadsheets. The
7991

8092
---
8193

82-
<div align="center">
83-
<a href="https://datacebo.com"><picture>
84-
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo-dark-mode.png">
85-
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/datacebo-logo.png"></img>
86-
</picture></a>
87-
</div>
88-
<br/>
94+
<div align="left">
8995
<br/>
96+
<p align="center">
97+
<a href="https://github.com/sdv-dev/SDV">
98+
<img align="center" width=40% src="https://github.com/sdv-dev/SDV/blob/stable/docs/images/SDV-logo.png"></img>
99+
</a>
100+
</p>
101+
</div>
102+
103+
</div>
90104

91105
[The Synthetic Data Vault Project](https://sdv.dev) was first created at MIT's [Data to AI Lab](
92106
https://dai.lids.mit.edu/) in 2016. After 4 years of research and traction with enterprise, we
@@ -98,4 +112,4 @@ data, including:
98112
* 🔄 Data discovery & transformation. Reverse the transforms to reproduce realistic data.
99113
* 🧠 Multiple machine learning models -- ranging from Copulas to Deep Learning -- to create tabular,
100114
multi table and time series data.
101-
* 📊 Measuring quality and privacy of synthetic data, and comparing different synthetic data
115+
* 📊 Measuring quality and privacy of synthetic data, and comparing different synthetic data

gitmetrics/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/gitmetrics/actions/runs/'
8+
GITHUB_URL_PREFIX = 'https://github.com/sdv-dev/gitmetrics/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",
@@ -23,7 +33,7 @@ dependencies = [
2333
]
2434

2535
[project.urls]
26-
Homepage = "https://github.com/datacebo/gitmetrics"
36+
Homepage = "https://github.com/sdv-dev/gitmetrics"
2737

2838
[project.scripts]
2939
gitmetrics = "gitmetrics.__main__:main"

0 commit comments

Comments
 (0)