nbdevAuto 0.3.60__tar.gz → 0.3.61__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,3 @@
1
- include settings.ini
2
1
  include LICENSE
3
- include CONTRIBUTING.md
4
2
  include README.md
5
3
  recursive-exclude * __pycache__
@@ -1,18 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nbdevAuto
3
- Version: 0.3.60
3
+ Version: 0.3.61
4
4
  Summary: automating nbdev
5
5
  Author-email: Benedict Thekkel <bthekkel1@gmail.com>
6
- License: Apache-2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Repository, https://github.com/bthek1/nbdevAuto
8
8
  Project-URL: Documentation, https://bthek1.github.io/nbdevAuto
9
+ Project-URL: Issues, https://github.com/bthek1/nbdevAuto/issues
9
10
  Keywords: nbdev,jupyter,notebook,python
10
11
  Classifier: Natural Language :: English
11
12
  Classifier: Intended Audience :: Developers
12
13
  Classifier: Development Status :: 3 - Alpha
13
14
  Classifier: Programming Language :: Python :: 3
14
15
  Classifier: Programming Language :: Python :: 3 :: Only
15
- Requires-Python: >=3.7
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Python: >=3.10
16
22
  Description-Content-Type: text/markdown
17
23
  License-File: LICENSE
18
24
  Requires-Dist: graphviz
@@ -0,0 +1 @@
1
+ __version__ = "0.3.61"
@@ -1,18 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nbdevAuto
3
- Version: 0.3.60
3
+ Version: 0.3.61
4
4
  Summary: automating nbdev
5
5
  Author-email: Benedict Thekkel <bthekkel1@gmail.com>
6
- License: Apache-2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Repository, https://github.com/bthek1/nbdevAuto
8
8
  Project-URL: Documentation, https://bthek1.github.io/nbdevAuto
9
+ Project-URL: Issues, https://github.com/bthek1/nbdevAuto/issues
9
10
  Keywords: nbdev,jupyter,notebook,python
10
11
  Classifier: Natural Language :: English
11
12
  Classifier: Intended Audience :: Developers
12
13
  Classifier: Development Status :: 3 - Alpha
13
14
  Classifier: Programming Language :: Python :: 3
14
15
  Classifier: Programming Language :: Python :: 3 :: Only
15
- Requires-Python: >=3.7
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Python: >=3.10
16
22
  Description-Content-Type: text/markdown
17
23
  License-File: LICENSE
18
24
  Requires-Dist: graphviz
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools>=64"]
2
+ requires = ["setuptools>=77"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -7,21 +7,35 @@ name = "nbdevAuto"
7
7
  dynamic = ["version"]
8
8
  description = "automating nbdev"
9
9
  readme = "README.md"
10
- requires-python = ">=3.7"
11
- license = {text = "Apache-2.0"}
10
+ requires-python = ">=3.10"
11
+ license = "Apache-2.0"
12
+ license-files = ["LICENSE"]
12
13
  authors = [{name = "Benedict Thekkel", email = "bthekkel1@gmail.com"}]
13
14
  keywords = ['nbdev', 'jupyter', 'notebook', 'python']
14
- classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
15
+ classifiers = [
16
+ "Natural Language :: English",
17
+ "Intended Audience :: Developers",
18
+ "Development Status :: 3 - Alpha",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3 :: Only",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Programming Language :: Python :: 3.14",
26
+ ]
15
27
  dependencies = ['graphviz', 'fastcore']
16
28
 
17
29
  [project.optional-dependencies]
18
- # githubkit needs Python >=3.9 while this package still supports 3.7, so the
19
- # GitHub status tooling is an extra and every import of it is deferred.
30
+ # An extra, not a dependency: githubkit pulls pydantic + httpx + hishel, which is
31
+ # a lot of weight for anyone who only wants `upload`/`prep`. Every import of it is
32
+ # deferred, and `ghstatus` exits 3 with an install hint when it is absent.
20
33
  gh = ['githubkit>=0.12']
21
34
 
22
35
  [project.urls]
23
36
  Repository = "https://github.com/bthek1/nbdevAuto"
24
37
  Documentation = "https://bthek1.github.io/nbdevAuto"
38
+ Issues = "https://github.com/bthek1/nbdevAuto/issues"
25
39
 
26
40
  [project.entry-points.nbdev]
27
41
  nbdevAuto = "nbdevAuto._modidx:d"
@@ -1 +0,0 @@
1
- __version__ = "0.3.60"
File without changes
File without changes
File without changes
File without changes
File without changes