Skip to content

Commit 1a76417

Browse files
committed
Updated pycodestyle file name and setup.py
1 parent 3f9ed3a commit 1a76417

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

File renamed without changes.

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def get_version():
7-
with open('pep8.py') as f:
7+
with open('pycodestyle.py') as f:
88
for line in f:
99
if line.startswith('__version__'):
1010
return eval(line.split('=')[-1])
@@ -19,16 +19,16 @@ def get_long_description():
1919

2020

2121
setup(
22-
name='pep8',
22+
name='pycodestyle',
2323
version=get_version(),
2424
description="Python style guide checker",
2525
long_description=get_long_description(),
26-
keywords='pep8',
26+
keywords='pycodestyle, pep8, PEP 8, PEP-8, PEP8',
2727
author='Johann C. Rocholl',
2828
author_email='johann@rocholl.net',
2929
url='http://pep8.readthedocs.org/',
3030
license='Expat license',
31-
py_modules=['pep8'],
31+
py_modules=['pycodestyle'],
3232
namespace_packages=[],
3333
include_package_data=True,
3434
zip_safe=False,
@@ -38,8 +38,8 @@ def get_long_description():
3838
],
3939
entry_points={
4040
'console_scripts': [
41-
'pycodestyle = pep8:_main',
42-
'pep8 = pep8:_main_pep8',
41+
'pycodestyle = pycodestyle:_main',
42+
'pep8 = pycodestyle:_main_pep8',
4343
],
4444
},
4545
classifiers=[

0 commit comments

Comments
 (0)