Skip to content

Commit 5084b20

Browse files
Merge pull request #1128 from adamtheturtle/fix-build
Add empty packaging requirements file
2 parents fac7e06 + c84c93b commit 5084b20

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

packaging-requirements.txt

Whitespace-only changes.

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ignore =
1919
ci
2020
ci/*
2121
codecov.yaml
22-
dev-requirements.txt
22+
*-requirements.txt
2323
doc8.ini
2424
docs
2525
docs/*
@@ -123,7 +123,6 @@ BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true
123123

124124
[metadata]
125125
name = VWS Python
126-
version = attr: vws.__version__
127126
description = Interact with the Vuforia Web Services (VWS) API.
128127
long_description = file: README.rst
129128
keywords = vuforia client

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
22

33
from pathlib import Path
4-
from setuptools import setup
54
from typing import List
65

6+
from setuptools import setup
7+
78
import versioneer
89

910

@@ -30,6 +31,7 @@ def _get_dependencies(requirements_file: Path) -> List[str]:
3031
)
3132

3233
setup(
34+
version=versioneer.get_version(), # type: ignore
3335
cmdclass=versioneer.get_cmdclass(), # type: ignore
3436
install_requires=INSTALL_REQUIRES,
3537
extras_require={'dev': DEV_REQUIRES},

0 commit comments

Comments
 (0)