forked from attwad/python-osc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
26 lines (25 loc) · 967 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[project]
name = "python-osc"
version="1.9.0"
description="Open Sound Control server and client implementations in pure Python"
readme="README.rst"
requires-python=">=3.10"
license = {file = "LICENSE.txt"}
authors = [
{name = "attwad", email = "[email protected]"},
]
keywords = ["osc", "sound", "midi", "music"]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: System :: Networking',
]
[project.urls]
Repository = "https://github.com/attwad/python-osc"
[tool.setuptools.packages.find]
include = ['pythonosc', 'pythonosc.*'] # package names should match these glob patterns (["*"] by default)
exclude = ['pythonosc.test'] # exclude packages matching these glob patterns (empty by default)
#namespaces = false # to disable scanning PEP 420 namespaces (true by default)