-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ['poetry>=0.12', 'pip', 'setuptools']
[tool.poetry]
name = "brujeria"
version = "0.1.0"
description = "Build native extensions on import or ahead of time"
authors = ["Isabella Muerte <63051+slurps-mad-rips@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/slurps-mad-rips/brujeria"
keywords = ["cmake", "ninja", "build-systems", "c++"]
include = [
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SUPPORT.md",
"tests/",
"docs/"
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.8"
cmake = "^3.18"
ninja = "^1.10"
loguru = "^0.5.3"
[tool.poetry.dev-dependencies]
pytest-runner = "^5.2"
pytest-cov = "^2.10"
pytest = "^6.2"
codecov = "^2.1"
flake8 = "^3.8"
black = "^20.8b1"
[tools.poetry.plugins."distutils.commands"]
build_cmake_ext = "brujeria.command:CMakeCommand"