@@ -4,21 +4,54 @@ build-backend = "poetry.core.masonry.api"
44
55[tool .poetry ]
66name = " nimporter"
7- version = " 2.0.0 "
7+ version = " 2.0.1 "
88description = " Compile Nim extensions for Python when imported!"
9- authors = [" Pebaz <https://github.com/Pebaz>" , " SekouDiaoNlp <diao.sekou.nlp@gmail.com>" ]
9+ authors = [
10+ " Pebaz <https://github.com/Pebaz>" ,
11+ " SekouDiaoNlp <diao.sekou.nlp@gmail.com>" ,
12+ ]
1013license = " MIT"
11- keywords = [" nim" , " python" , " compiler" , " import" , " performance" , " cython" , " transpiler" , " nimpy" , " cython-alternative" , " nim-source" , " nim-compiler" , " nimporter-library" ]
12- 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" ,]
14+ keywords = [
15+ " nim" ,
16+ " python" ,
17+ " compiler" ,
18+ " import" ,
19+ " performance" ,
20+ " cython" ,
21+ " transpiler" ,
22+ " nimpy" ,
23+ " cython-alternative" ,
24+ " nim-source" ,
25+ " nim-compiler" ,
26+ " nimporter-library" ,
27+ ]
28+ classifiers = [
29+ " Development Status :: 5 - Production/Stable" ,
30+ " Topic :: Software Development :: Libraries :: Python Modules" ,
31+ " Topic :: Utilities" ,
32+ " Intended Audience :: Developers" ,
33+ " Intended Audience :: End Users/Desktop" ,
34+ " Intended Audience :: Education" ,
35+ " Intended Audience :: Science/Research" ,
36+ " License :: OSI Approved :: MIT License" ,
37+ " Natural Language :: English" ,
38+ " Operating System :: OS Independent" ,
39+ " Programming Language :: Python :: 3" ,
40+ " Programming Language :: Python :: 3.7" ,
41+ " Programming Language :: Python :: 3.8" ,
42+ " Programming Language :: Python :: 3.9" ,
43+ " Programming Language :: Python :: 3.10" ,
44+ " Programming Language :: Python :: 3.11" ,
45+ ]
1346homepage = " https://github.com/Pebaz/nimporter"
1447repository = " https://github.com/Pebaz/nimporter"
1548documentation = " https://pebaz.github.io/nimporter/index.html"
16- maintainers = [" Pebaz <https://github.com/Pebaz>" , " SekouDiaoNlp <diao.sekou.nlp@gmail.com>" ]
17- readme = " README.md"
18- packages = [
19- { include = ' nimporter' },
20- { include = ' tests' , format = ' sdist' },
49+ maintainers = [
50+ " Pebaz <https://github.com/Pebaz>" ,
51+ " SekouDiaoNlp <diao.sekou.nlp@gmail.com>" ,
2152]
53+ readme = " README.md"
54+ packages = [{ include = ' nimporter' }, { include = ' tests' , format = ' sdist' }]
2255include = [
2356 { path = ' README.md' , format = ' sdist' },
2457 { path = ' LICENSE' , format = ' sdist' },
@@ -27,18 +60,16 @@ include = [
2760 { path = ' *.sh' , format = ' sdist' },
2861 { path = ' *.ps1' , format = ' sdist' },
2962]
30- exclude = [
31- { path = ' *.md' , format = ' wheel' },
32- ]
63+ exclude = [{ path = ' *.md' , format = ' wheel' }]
3364
3465[tool .poetry .scripts ]
3566nimporter = ' nimporter.cli:main'
3667
3768[tool .poetry .dependencies ]
3869python = " ^3.7"
39- py-cpuinfo = " ^9.0.0" # Auto-detect user architecture
40- icecream = " ^2.1.3" # Instrumentation
41- cookiecutter = " ^2.1.1" # Folder structure
70+ py-cpuinfo = " ^9.0.0" # Auto-detect user architecture
71+ icecream = " ^2.1.3" # Instrumentation
72+ cookiecutter = " ^2.1.1" # Folder structure
4273
4374
4475[tool .poetry .dev-dependencies ]
@@ -60,5 +91,5 @@ files = [
6091 " nimporter/lib.py" ,
6192 " nimporter/nimporter.py" ,
6293 " nimporter/nexporter.py" ,
63- " nimporter/cli.py"
94+ " nimporter/cli.py" ,
6495]
0 commit comments