-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 1.06 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "lampylib"
version = "0.1.1"
description = "Launchpad Mini python library"
authors = ["Pavel Kulyov <kulyov.pavel@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/pkulev/lampy"
homepage = "https://github.com/pkulev/lampy"
keywords = ["launchpad", "midi"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.scripts]
lampy = "lampylib.__main__:main"
[tool.poetry.dependencies]
python = "^3.7"
python-rtmidi = "*"
[tool.poetry.dev-dependencies]
codecov = "*"
flake8 = "*"
pylint = "*"
pytest = "*"
pytest-coverage = "*"
pytest-pylint = "*"
sphinx = "*"
tox = "^3.13"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"