devDocs 1.0.1__tar.gz → 1.0.3__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,16 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devDocs
3
- Version: 1.0.1
4
- Summary: A CLI tool to auto-generate professional README.md files using Google Gemini API.
3
+ Version: 1.0.3
4
+ Summary: AI-powered CLI tool that builds professional '*.md' documentation files of a project for internal teams using the Google Gemini API.
5
5
  Author: Gantavya Bansal
6
6
  Author-email: Gantavya Bansal <gantavyaoo@gmail.com>
7
7
  License: MIT
8
- Keywords: cli,documentation,readme,generator,gemini-ai
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
8
+ Project-URL: Homepage, https://github.com/bgantavya/devDocs
9
+ Project-URL: Repository, https://github.com/bgantavya/devDocs
10
+ Project-URL: Issues, https://github.com/bgantavya/devDocs/issues
11
+ Project-URL: Documentation, https://github.com/bgantavya/devDocs#readme
12
+ Keywords: cli,documentation,readme,generator,google-gemini,ai,markdown,docs-generator,auto-readme,open-source
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
12
17
  Classifier: Topic :: Documentation
13
18
  Classifier: Topic :: Software Development :: Code Generators
19
+ Classifier: Topic :: Software Development :: Documentation
20
+ Classifier: License :: OSI Approved :: MIT License
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.8
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Operating System :: OS Independent
14
27
  Requires-Python: >=3.8
15
28
  Description-Content-Type: text/markdown
16
29
  Requires-Dist: google-genai
@@ -1,16 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devDocs
3
- Version: 1.0.1
4
- Summary: A CLI tool to auto-generate professional README.md files using Google Gemini API.
3
+ Version: 1.0.3
4
+ Summary: AI-powered CLI tool that builds professional '*.md' documentation files of a project for internal teams using the Google Gemini API.
5
5
  Author: Gantavya Bansal
6
6
  Author-email: Gantavya Bansal <gantavyaoo@gmail.com>
7
7
  License: MIT
8
- Keywords: cli,documentation,readme,generator,gemini-ai
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
8
+ Project-URL: Homepage, https://github.com/bgantavya/devDocs
9
+ Project-URL: Repository, https://github.com/bgantavya/devDocs
10
+ Project-URL: Issues, https://github.com/bgantavya/devDocs/issues
11
+ Project-URL: Documentation, https://github.com/bgantavya/devDocs#readme
12
+ Keywords: cli,documentation,readme,generator,google-gemini,ai,markdown,docs-generator,auto-readme,open-source
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
12
17
  Classifier: Topic :: Documentation
13
18
  Classifier: Topic :: Software Development :: Code Generators
19
+ Classifier: Topic :: Software Development :: Documentation
20
+ Classifier: License :: OSI Approved :: MIT License
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.8
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Operating System :: OS Independent
14
27
  Requires-Python: >=3.8
15
28
  Description-Content-Type: text/markdown
16
29
  Requires-Dist: google-genai
@@ -0,0 +1,56 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "devDocs"
7
+ version = "1.0.3"
8
+ description = "AI-powered CLI tool that builds professional '*.md' documentation files of a project for internal teams using the Google Gemini API."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+
13
+ authors = [
14
+ { name = "Gantavya Bansal", email = "gantavyaoo@gmail.com" }
15
+ ]
16
+
17
+ keywords = [
18
+ "cli", "documentation", "readme", "generator",
19
+ "google-gemini", "ai", "markdown", "docs-generator",
20
+ "auto-readme", "open-source"
21
+ ]
22
+
23
+ classifiers = [
24
+ "Development Status :: 4 - Beta",
25
+ "Environment :: Console",
26
+ "Intended Audience :: Developers",
27
+ "Intended Audience :: Information Technology",
28
+ "Topic :: Documentation",
29
+ "Topic :: Software Development :: Code Generators",
30
+ "Topic :: Software Development :: Documentation",
31
+ "License :: OSI Approved :: MIT License",
32
+ "Programming Language :: Python :: 3",
33
+ "Programming Language :: Python :: 3.8",
34
+ "Programming Language :: Python :: 3.9",
35
+ "Programming Language :: Python :: 3.10",
36
+ "Programming Language :: Python :: 3.11",
37
+ "Operating System :: OS Independent"
38
+ ]
39
+
40
+ dependencies = [
41
+ "google-genai",
42
+ "httpx"
43
+ ]
44
+
45
+ [project.urls]
46
+ Homepage = "https://github.com/bgantavya/devDocs"
47
+ Repository = "https://github.com/bgantavya/devDocs"
48
+ Issues = "https://github.com/bgantavya/devDocs/issues"
49
+ Documentation = "https://github.com/bgantavya/devDocs#readme"
50
+
51
+ [project.scripts]
52
+ devDocs = "devDocs.cli:x"
53
+
54
+ [tool.setuptools]
55
+ packages = ["devDocs"]
56
+ include-package-data = true
@@ -1,2 +1,2 @@
1
1
  from setuptools import setup,find_packages as A
2
- setup(name='devDocs',version='1.0.1',packages=A(),install_requires=['google-generativeai'],entry_points={'console_scripts':['devDocs=devDocs.cli:x']},author='Gantavya Bansal',description="Auto-generate Project's markdown documentation using Gemini AI for Internal teams.",long_description=open('README.md',encoding='utf-8').read(),long_description_content_type='text/markdown',license='MIT',python_requires='>=3.8',classifiers=['Programming Language :: Python :: 3','License :: OSI Approved :: MIT License'])
2
+ setup(name='devDocs',version='1.0.3',packages=A(),install_requires=['google-generativeai'],entry_points={'console_scripts':['devDocs=devDocs.cli:x']},author='Gantavya Bansal',description="Auto-generate Project's markdown documentation using Gemini AI for Internal teams.",long_description=open('README.md',encoding='utf-8').read(),long_description_content_type='text/markdown',license='MIT',python_requires='>=3.8',classifiers=['Programming Language :: Python :: 3','License :: OSI Approved :: MIT License'])
@@ -1,36 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "devDocs"
7
- version = "1.0.1"
8
- description = "A CLI tool to auto-generate professional README.md files using Google Gemini API."
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- license = { text = "MIT" }
12
-
13
- authors = [
14
- { name="Gantavya Bansal", email="gantavyaoo@gmail.com" }
15
- ]
16
-
17
- keywords = ["cli", "documentation", "readme", "generator", "gemini-ai"]
18
- classifiers = [
19
- "Programming Language :: Python :: 3",
20
- "License :: OSI Approved :: MIT License",
21
- "Operating System :: OS Independent",
22
- "Topic :: Documentation",
23
- "Topic :: Software Development :: Code Generators"
24
- ]
25
-
26
- dependencies = [
27
- "google-genai",
28
- "httpx",
29
- ]
30
-
31
- [project.scripts]
32
- devDocs = "devDocs.cli:x"
33
-
34
- [tool.setuptools]
35
- packages = ["devDocs"]
36
- include-package-data = true
File without changes
File without changes
File without changes
File without changes