Skip to content

Commit

Permalink
Repo reorganization
Browse files Browse the repository at this point in the history
  • Loading branch information
sashacmc committed May 1, 2024
1 parent 3bc71f0 commit 73be421
Show file tree
Hide file tree
Showing 15 changed files with 100 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## UNRELEASED

- Initial release.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Multimedia Diary Tools

![CodeQL](https://github.com/sashacmc/mmdiary/workflows/CodeQL/badge.svg)
[![PyPI - Version](https://img.shields.io/pypi/v/mmdiary.svg)](https://pypi.org/project/mmdiary)
[![PyPI - Downloads](https://pepy.tech/badge/mmdiary)](https://pepy.tech/project/mmdiary)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.commdiarym/psf/black)

TODO: about

## Installation

You can install MultiMedia Diary Tools via pip:

```bash
pip install mmdiary
```

## Command line tool usage

```bash
TODO:
```

## Example

```bash
TODO:
```

## Library usage

```python
TODO:
```

## Contributing

Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.

## Show your support
Give a ⭐️ if this project helped you!
54 changes: 54 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "mmdiary"
version = "1.0.0"
description = "Multimedia Diary Tools"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["audio", "video", "multimedia", "tool", "youtube", "notion", "transcriber", "uploader"]

authors = [
{ name = "Alexander Bushnev", email = "[email protected]" }
]

maintainers = [
{ name = "Alexander Bushnev", email = "[email protected]" }
]

classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",

"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Audio",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
]

dependencies = [
]

[project.urls]
"Homepage" = "https://github.com/sashacmc/mmdiary"
"Bug Reports" = "https://github.com/sashacmc/mmdiary/issues"
"Source" = "https://github.com/sashacmc/mmdiary/"
"Changelog" = "https://github.com/sashacmc/mmdiary/blob/master/CHANGELOG.md"

[project.scripts]
mmdiary = "mmdiary:main"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 73be421

Please sign in to comment.