-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 920 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
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "xenterval"
version = "0.2.1"
description = "Xenharmonic theory utilities and more."
license = "MIT"
authors = ["arseniiv <[email protected]>"]
readme = "README.md"
repository = "https://github.com/arseniiv/xenterval"
keywords = ["xenharmonic", "microtonal", "music theory"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Pytest",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Text Processing",
"Topic :: Utilities",
"Typing :: Typed",
]
include = ["CHANGELOG.md"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/arseniiv/xenterval/issues"
[tool.poetry.dependencies]
python = "^3.10"
more-itertools = "^8.6.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.910"
pylint = "^2.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"