File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import find_packages , setup
4
4
5
- # pylint: disable=exec-used,undefined-variable
6
-
7
5
with open (path .join (path .abspath (path .dirname (__file__ )), 'README.md' ), 'r' ) as rf :
8
6
LONG_DESCRIPTION = rf .read ()
9
7
10
- with open (path .join (path .abspath (path .dirname (__file__ )), 'pylintfileheader/_version.py' ), 'r' ) as f :
11
- exec (f .read ())
12
-
13
8
setup (
14
9
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
15
10
name = 'pylintfileheader' ,
16
- version = __version__ ,
11
+ version = '0.0.1' ,
17
12
packages = find_packages (exclude = ['*test' ]),
18
13
description = 'Enables pylint to force a consistent file header.' ,
19
14
long_description = LONG_DESCRIPTION ,
You can’t perform that action at this time.
0 commit comments