-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
64 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,54 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "nimporter" | ||
version = "2.0.0" | ||
version = "2.0.1" | ||
description = "Compile Nim extensions for Python when imported!" | ||
authors = ["Pebaz <https://github.com/Pebaz>", "SekouDiaoNlp <[email protected]>"] | ||
authors = [ | ||
"Pebaz <https://github.com/Pebaz>", | ||
"SekouDiaoNlp <[email protected]>", | ||
] | ||
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",] | ||
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 <[email protected]>"] | ||
readme = "README.md" | ||
packages = [ | ||
{ include = 'nimporter' }, | ||
{ include = 'tests', format = 'sdist' }, | ||
maintainers = [ | ||
"Pebaz <https://github.com/Pebaz>", | ||
"SekouDiaoNlp <[email protected]>", | ||
] | ||
readme = "README.md" | ||
packages = [{ include = 'nimporter' }, { include = 'tests', format = 'sdist' }] | ||
include = [ | ||
{ path = 'README.md', format = 'sdist' }, | ||
{ path = 'LICENSE', format = 'sdist' }, | ||
|
@@ -27,18 +60,16 @@ include = [ | |
{ path = '*.sh', format = 'sdist' }, | ||
{ path = '*.ps1', format = 'sdist' }, | ||
] | ||
exclude = [ | ||
{ path = '*.md', format = 'wheel' }, | ||
] | ||
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 | ||
py-cpuinfo = "^9.0.0" # Auto-detect user architecture | ||
icecream = "^2.1.3" # Instrumentation | ||
cookiecutter = "^2.1.1" # Folder structure | ||
|
||
|
||
[tool.poetry.dev-dependencies] | ||
|
@@ -60,5 +91,5 @@ files = [ | |
"nimporter/lib.py", | ||
"nimporter/nimporter.py", | ||
"nimporter/nexporter.py", | ||
"nimporter/cli.py" | ||
"nimporter/cli.py", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters