We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd43a72 commit 2439fd5Copy full SHA for 2439fd5
pylintfileheader/_version.py
setup.py
@@ -2,18 +2,13 @@
2
3
from setuptools import find_packages, setup
4
5
-# pylint: disable=exec-used,undefined-variable
6
-
7
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), 'r') as rf:
8
LONG_DESCRIPTION = rf.read()
9
10
-with open(path.join(path.abspath(path.dirname(__file__)), 'pylintfileheader/_version.py'), 'r') as f:
11
- exec(f.read())
12
13
setup(
14
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
15
name='pylintfileheader',
16
- version=__version__,
+ version='0.0.1',
17
packages=find_packages(exclude=['*test']),
18
description='Enables pylint to force a consistent file header.',
19
long_description=LONG_DESCRIPTION,
0 commit comments