Skip to content

Commit 508903e

Browse files
committed
pyproject fix
1 parent eddcb97 commit 508903e

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,15 @@ requires = ["setuptools>=64"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name="fastcore"
6+
name = "fastcore"
77
dynamic = ["version"]
88
description = "Python supercharged for fastai development"
99
readme = "README.md"
10-
requires-python=">=3.10"
10+
requires-python = ">=3.10"
1111
license = {text = "Apache-2.0"}
1212
authors = [{name = "Jeremy Howard and Sylvain Gugger", email = "infos@fast.ai"}]
1313
keywords = ['python']
14-
classifiers = [
15-
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3 :: Only",
17-
]
14+
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
1815
dependencies = []
1916

2017
[project.urls]
@@ -24,17 +21,20 @@ Documentation = "https://fastcore.fast.ai/"
2421
[project.entry-points.nbdev]
2522
fastcore = "fastcore._modidx:d"
2623

24+
[project.optional-dependencies]
25+
dev = ['numpy', 'nbdev>=0.2.39', 'matplotlib', 'pillow', 'torch', 'pandas', 'nbclassic', 'pysymbol_llm', 'llms-txt', 'plum-dispatch', 'toolslm']
26+
27+
2728
[project.scripts]
2829
py2pyi = "fastcore.py2pyi:py2pyi"
30+
replace_wildcards = "fastcore.py2pyi:replace_wildcards"
31+
2932
[tool.setuptools.dynamic]
3033
version = {attr = "fastcore.__version__"}
3134

3235
[tool.setuptools.packages.find]
3336
include = ["fastcore"]
3437

35-
[project.optional-dependencies]
36-
dev = ["numpy","nbdev>=0.2.39","matplotlib","pillow","torch","pandas","nbclassic","pysymbol_llm","llms-txt","plum-dispatch","toolslm"]
37-
3838
[tool.nbdev]
3939
tst_flags = ''
4040
custom_sidebar = false

0 commit comments

Comments
 (0)