Skip to content

Commit 2439fd5

Browse files
committed
removed version file
1 parent dd43a72 commit 2439fd5

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

pylintfileheader/_version.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,13 @@
22

33
from setuptools import find_packages, setup
44

5-
# pylint: disable=exec-used,undefined-variable
6-
75
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), 'r') as rf:
86
LONG_DESCRIPTION = rf.read()
97

10-
with open(path.join(path.abspath(path.dirname(__file__)), 'pylintfileheader/_version.py'), 'r') as f:
11-
exec(f.read())
12-
138
setup(
149
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
1510
name='pylintfileheader',
16-
version=__version__,
11+
version='0.0.1',
1712
packages=find_packages(exclude=['*test']),
1813
description='Enables pylint to force a consistent file header.',
1914
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)