chefmate 1.0.2__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chefmate
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Automation tool for CodeChef
5
5
  Home-page: https://github.com/Anuj-72/ChefMate
6
6
  Author: Anuj Kumar Sah
@@ -15,6 +15,15 @@ Classifier: Topic :: Software Development :: Build Tools
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
+ Requires-Dist: selenium
19
+ Requires-Dist: webdriver-manager
20
+ Requires-Dist: click
21
+ Requires-Dist: colorama
22
+ Requires-Dist: inquirer
23
+ Requires-Dist: InquirerPy
24
+ Requires-Dist: rich
25
+ Requires-Dist: tabulate
26
+ Requires-Dist: pandas
18
27
  Dynamic: author
19
28
  Dynamic: home-page
20
29
  Dynamic: license-file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chefmate
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Automation tool for CodeChef
5
5
  Home-page: https://github.com/Anuj-72/ChefMate
6
6
  Author: Anuj Kumar Sah
@@ -15,6 +15,15 @@ Classifier: Topic :: Software Development :: Build Tools
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
+ Requires-Dist: selenium
19
+ Requires-Dist: webdriver-manager
20
+ Requires-Dist: click
21
+ Requires-Dist: colorama
22
+ Requires-Dist: inquirer
23
+ Requires-Dist: InquirerPy
24
+ Requires-Dist: rich
25
+ Requires-Dist: tabulate
26
+ Requires-Dist: pandas
18
27
  Dynamic: author
19
28
  Dynamic: home-page
20
29
  Dynamic: license-file
@@ -11,4 +11,6 @@ chefmate/config.py
11
11
  chefmate.egg-info/PKG-INFO
12
12
  chefmate.egg-info/SOURCES.txt
13
13
  chefmate.egg-info/dependency_links.txt
14
+ chefmate.egg-info/entry_points.txt
15
+ chefmate.egg-info/requires.txt
14
16
  chefmate.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ chefmate = chefmate.cli:interactive
@@ -0,0 +1,9 @@
1
+ selenium
2
+ webdriver-manager
3
+ click
4
+ colorama
5
+ inquirer
6
+ InquirerPy
7
+ rich
8
+ tabulate
9
+ pandas
@@ -1,18 +1,17 @@
1
1
  [build-system]
2
- requires = ["setuptools", "wheel"]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "chefmate"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "Automation tool for CodeChef"
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  requires-python = ">=3.7"
11
11
  authors = [
12
12
  { name = "Anuj Kumar Sah", email = "anujsah282005@gmail.com" }
13
13
  ]
14
- dependencies = []
15
- license = {text = "MIT"}
14
+ license = { text = "MIT" }
16
15
  keywords = ["CodeChef", "CLI", "automation", "competitive-programming"]
17
16
  classifiers = [
18
17
  "Programming Language :: Python :: 3",
@@ -21,3 +20,17 @@ classifiers = [
21
20
  "Intended Audience :: Developers",
22
21
  "Topic :: Software Development :: Build Tools"
23
22
  ]
23
+ dependencies = [
24
+ "selenium",
25
+ "webdriver-manager",
26
+ "click",
27
+ "colorama",
28
+ "inquirer",
29
+ "InquirerPy",
30
+ "rich",
31
+ "tabulate",
32
+ "pandas"
33
+ ]
34
+
35
+ [project.scripts]
36
+ chefmate = "chefmate.cli:interactive"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='chefmate',
5
- version='1.0.2',
5
+ version='1.0.3',
6
6
  author='Anuj Kumar Sah',
7
7
  author_email='anujsah282005@gmail.com',
8
8
  description='A CodeChef automation CLI tool',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes