-
Notifications
You must be signed in to change notification settings - Fork 2
/
_pyproject.toml
62 lines (51 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=42", "wheel", "pbr"]
build-backend = "setuptools.build_meta"
#[build-system]
#requires = ["poetry-core>=1.0.0","poetry-version-plugin"]
#build-backend = "poetry.core.masonry.api"
#[tool.poetry-version-plugin]
#source = "git-tag"
[tool.poetry]
name = "cythonpackage"
version = "0.0.8a1"
description = "Compile a package in one .so file and remove source code"
authors = ["Philippe Prados <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/pprados/cythonpackage"
repository = "https://github.com/pprados/cythonpackage/"
documentation = "https://github.com/pprados/cythonpackage/"
keywords = ["cython", "setuptools", "poetry", "plugin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "cythonpackage/*.py", format = "sdist" }
]
include = ["ChangeLog", "AUTHORS"]
[tool.poetry.dependencies]
python = "^3.7"
cython = "^0.29.24"
setuptools = { version = ">=42", optional = true }
poetry-core = { version = ">=1.0.0", optional = true }
[tool.poetry.extras]
build = ["setuptools"]
poetry = ["poetry-core", "setuptools"]
[tool.poetry.dev-dependencies]
cibuildwheel = "~2"
twine = "~3"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pprados/cythonpackage/issues"
# FIXME : Poetry can not generate entry_points.txt
#[tool.poetry.scripts]
#distutils.setup_keywords = "cythonpackage:cythonpackage"