File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,12 @@ exclude=./versioneer.py,
42
42
VCS = git
43
43
style = pep440
44
44
versionfile_source = src/mock_vws/_version.py
45
- versionfile_build = mock_vws-
45
+ versionfile_build = mock_vws
46
46
tag_prefix =
47
- parentdir_prefix = mock_vws-
47
+ parentdir_prefix = mock_vws
48
+
49
+ [bdist_wheel]
50
+ universal = 1
51
+
52
+ [metadata]
53
+ license_file = LICENSE
Original file line number Diff line number Diff line change 20
20
setup (
21
21
name = 'VWS Python Mock' ,
22
22
version = versioneer .get_version (), # type: ignore
23
- cmdclass = versioneer .get_cmdclass (), # type: ignore
24
23
author = 'Adam Dangoor' ,
25
24
author_email = 'adamdangoor@gmail.com' ,
26
25
description = 'A mock for the Vuforia Web Services (VWS) API.' ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def get_config():
42
42
cfg .VCS = "git"
43
43
cfg .style = "pep440"
44
44
cfg .tag_prefix = ""
45
- cfg .parentdir_prefix = "mock_vws- "
45
+ cfg .parentdir_prefix = "mock_vws"
46
46
cfg .versionfile_source = "src/mock_vws/_version.py"
47
47
cfg .verbose = False
48
48
return cfg
You can’t perform that action at this time.
0 commit comments