Skip to content

Commit ac841d3

Browse files
Merge pull request #26 from adamtheturtle/pypi-prepare
Further preparation for PyPI
2 parents 958799d + 473ebc7 commit ac841d3

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

setup.cfg

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ exclude=./versioneer.py,
4242
VCS = git
4343
style = pep440
4444
versionfile_source = src/mock_vws/_version.py
45-
versionfile_build = mock_vws-
45+
versionfile_build = mock_vws
4646
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

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
setup(
2121
name='VWS Python Mock',
2222
version=versioneer.get_version(), # type: ignore
23-
cmdclass=versioneer.get_cmdclass(), # type: ignore
2423
author='Adam Dangoor',
2524
author_email='adamdangoor@gmail.com',
2625
description='A mock for the Vuforia Web Services (VWS) API.',

src/mock_vws/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def get_config():
4242
cfg.VCS = "git"
4343
cfg.style = "pep440"
4444
cfg.tag_prefix = ""
45-
cfg.parentdir_prefix = "mock_vws-"
45+
cfg.parentdir_prefix = "mock_vws"
4646
cfg.versionfile_source = "src/mock_vws/_version.py"
4747
cfg.verbose = False
4848
return cfg

0 commit comments

Comments
 (0)