Added pyproject.toml
This commit is contained in:
parent
6bcd0af329
commit
58f1086ca7
1 changed files with 49 additions and 0 deletions
49
pyproject.toml
Normal file
49
pyproject.toml
Normal file
|
@ -0,0 +1,49 @@
|
|||
[tool]
|
||||
[tool.poetry]
|
||||
name = "eos_midi"
|
||||
version = "0.1.0"
|
||||
homepage = "https://git.soyouzpanda.com/soyouzpanda/kfet_launchpad_controller"
|
||||
description = "Controller to control EOS with Launchpad Mini Mk3 for ENS"
|
||||
authors = ["soyouzpanda <soyouzpanda@soyouzpanda.fr>"]
|
||||
readme = "README.rst"
|
||||
license = "MIT"
|
||||
classifiers=[
|
||||
'Development Status :: 2 - Pre-Alpha',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
]
|
||||
packages = [
|
||||
{ include = "eos_midi" },
|
||||
{ include = "tests", format = "sdist" },
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.7,<4"
|
||||
lpminimk3 = "*"
|
||||
python-osc = "*"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
bumpversion = "*"
|
||||
coverage = "*"
|
||||
flake8 = "*"
|
||||
invoke = "*"
|
||||
isort = "*"
|
||||
pylint = "*"
|
||||
pytest = ">=7.2.0"
|
||||
sphinx = ">=5.3.0"
|
||||
black = "*"
|
||||
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
Loading…
Reference in a new issue