File tree 3 files changed +0
-15
lines changed
3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ include MANIFEST.in
14
14
include *.md
15
15
include *.toml
16
16
17
- include versioneer.py
18
17
include bookstore/_version.py
19
18
include .coveragerc
20
19
Original file line number Diff line number Diff line change @@ -23,14 +23,6 @@ max-line-length = 120
23
23
[bdist_wheel]
24
24
universal =1
25
25
26
- [versioneer]
27
- VCS = git
28
- style = pep440
29
- versionfile_source = bookstore/_version.py
30
- versionfile_build = bookstore/_version.py
31
- tag_prefix =
32
- parentdir_prefix = bookstore-
33
-
34
26
[coverage:run]
35
27
branch = False
36
28
omit =
Original file line number Diff line number Diff line change 3
3
""""
4
4
setup.py
5
5
6
- bookstore may be installed on Python 3.6 or higher.
7
-
8
6
Note: Do a version check for IPython.
9
7
IPython v6+ no longer supports Python 2.
10
8
If Python 2, install ipython 5.x.
26
24
# Python 3 only projects can skip this import
27
25
from io import open
28
26
29
- import versioneer
30
-
31
- # python_2 = sys.version_info[0] == 2
32
-
33
27
34
28
def read (fname ):
35
29
with open (fname , 'r' ) as fhandle :
You can’t perform that action at this time.
0 commit comments