Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 authored Jun 5, 2022
1 parent 43b7aa7 commit dd5e716
Show file tree
Hide file tree
Showing 6 changed files with 235 additions and 107 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ See `pylint --help` for more information.

Option `jobs` is the number of processes pylint should use when
checking your code, using `--jobs`. See `pylint --help` for more information.

Option `search_wrap` is a boolian of whether or not searching for
the next `# lintcheck: ` comment will wrap around or not, defaults to
False.
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

here = pathlib.Path(__file__).parent.resolve()

version = '0.1.1'
version = '0.2.0'
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
install_requires = ['pylint']
install_requires = ['pylint', 'tkinter', 'idlelib', 'typing']

# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
Expand Down Expand Up @@ -102,11 +102,8 @@
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by 'pip install'. See instead 'python_requires' below.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],

Expand Down Expand Up @@ -137,7 +134,7 @@
# 'Programming Language' classifiers above, 'pip install' will check this
# and refuse to install the project if the version does not match. See
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires='>=3.6, <4',
python_requires='>=3.9, <4',

# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
Expand Down
15 changes: 6 additions & 9 deletions src/lintcheck.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
Metadata-Version: 2.1
Name: lintcheck
Version: 0.1.0
Version: 0.2.0
Summary: Pylint extension for IDLE
Home-page: https://github.com/CoolCat467/lintcheck
Author: CoolCat467
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/CoolCat467/lintcheck/issues
Project-URL: Source, https://github.com/CoolCat467/lintcheck
Keywords: pylint,idle,extension,development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Requires-Python: >=3.9, <4
Description-Content-Type: text/markdown
License-File: LICENSE

Expand All @@ -46,4 +41,6 @@ See `pylint --help` for more information.
Option `jobs` is the number of processes pylint should use when
checking your code, using `--jobs`. See `pylint --help` for more information.


Option `search_wrap` is a boolian of whether or not searching for
the next `# lintcheck: ` comment will wrap around or not, defaults to
False.
1 change: 0 additions & 1 deletion src/lintcheck.egg-info/entry_points.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[console_scripts]
lintcheck = lintcheck:check_installed

4 changes: 4 additions & 0 deletions src/lintcheck.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pylint
tkinter
idlelib
typing
Loading

0 comments on commit dd5e716

Please sign in to comment.