Skip to content

Commit 02eb707

Browse files
committed
upgrade to mypi build with pyproject.toml config
1 parent 63d709b commit 02eb707

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77

88
- Nothing yet
99

10+
## [1.8.2]
11+
12+
- Changed packaging method to pypa/build
13+
- Removed pygame example to simplify dependencies
14+
1015
## [1.8.1]
1116

1217
- Add options to UdpClient to force the use of IPv4 when IPv6 is available and vice versa

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "python-osc"
3+
version="1.8.2"
4+
description="Open Sound Control server and client implementations in pure Python"
5+
readme="README.rst"
6+
requires-python=">=3.7"
7+
license = {file = "LICENSE.txt"}
8+
authors = [
9+
{name = "attwad", email = "tmusoft@gmail.com"},
10+
]
11+
keywords = ["osc", "sound", "midi", "music"]
12+
classifiers=[
13+
'Development Status :: 5 - Production/Stable',
14+
'Intended Audience :: Developers',
15+
'License :: Freely Distributable',
16+
'Programming Language :: Python :: 3',
17+
'Topic :: Multimedia :: Sound/Audio',
18+
'Topic :: System :: Networking',
19+
]
20+
[project.urls]
21+
Repository = "https://github.com/attwad/python-osc"

0 commit comments

Comments
 (0)