-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
64 lines (58 loc) · 2.47 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
61
62
63
64
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nimporter"
version = "2.0.0"
description = "Compile Nim extensions for Python when imported!"
authors = ["Pebaz <https://github.com/Pebaz>", "SekouDiaoNlp <diao.sekou.nlp@gmail.com>"]
license = "MIT"
keywords = ["nim", "python", "compiler", "import", "performance", "cython", "transpiler", "nimpy", "cython-alternative", "nim-source", "nim-compiler", "nimporter-library"]
classifiers = ["Development Status :: 5 - Production/Stable", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",]
homepage = "https://github.com/Pebaz/nimporter"
repository = "https://github.com/Pebaz/nimporter"
documentation = "https://pebaz.github.io/nimporter/index.html"
maintainers = ["Pebaz <https://github.com/Pebaz>", "SekouDiaoNlp <diao.sekou.nlp@gmail.com>"]
readme = "README.md"
packages = [
{ include = 'nimporter' },
{ include = 'tests', format = 'sdist' },
]
include = [
{ path = 'README.md', format = 'sdist' },
{ path = 'LICENSE', format = 'sdist' },
{ path = 'requirements_dev.txt', format = 'sdist' },
{ path = 'conftest.py', format = 'sdist' },
{ path = '*.sh', format = 'sdist' },
{ path = '*.ps1', format = 'sdist' },
]
exclude = [
{ path = '*.md', format = 'wheel' },
]
[tool.poetry.scripts]
nimporter = 'nimporter.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
py-cpuinfo = "^9.0.0" # Auto-detect user architecture
icecream = "^2.1.3" # Instrumentation
cookiecutter = "^2.1.1" # Folder structure
[tool.poetry.dev-dependencies]
wheel = "^0.38.4"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-integration = "^0.2.3"
pytest-timeout = "^2.1.0"
pytest-xdist = "^3.1.0"
mypy = "^0.991"
[tool.mypy]
warn_unused_configs = true
strict = true
ignore_missing_imports = true
show_error_codes = true
warn_return_any = false
files = [
"nimporter/lib.py",
"nimporter/nimporter.py",
"nimporter/nexporter.py",
"nimporter/cli.py"
]