Skip to content

Commit 49144b6

Browse files
committed
release prep
1 parent b5be7e9 commit 49144b6

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

leetcode/models/graphql_problemset_question_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def _execute(self, args):
114114

115115
self.__parse_args(args)
116116
self.data = self.fetch_data(self.params)
117-
self.show(self.data)
117+
self.show()
118118

119119
def show(self) -> None:
120120
""" Displays the query result in a table.

myproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyleetcode-cli"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
authors = [
99
{ name="Jakub Kubiak", email="[email protected]" },
1010
]

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
from setuptools import setup, find_packages
22

3+
with open ("README.md", "r") as f:
4+
long_description = f.read()
5+
36
setup(name='pyleetcode-cli',
4-
version='0.1.0',
7+
version='0.1.1',
58
description='A CLI tool to access LeetCode',
9+
long_description=long_description,
10+
long_description_content_type="text/markdown",
611
author='Jakub Kubiak',
12+
author_email='[email protected]',
713
packages=find_packages(),
814
entry_points={'console_scripts': ['leet = leetcode.main:main'],},
915
package_data={'': ['*.yaml', '*.graphql']},
16+
url='https://github.com/Coderbeep/LeetCode-CLI',
17+
license='MIT',
1018
)

0 commit comments

Comments
 (0)