Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 31 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ parentdir_prefix = vws
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE

[doc8]
max-line-length = 2000
ignore-path = ./src/*.egg-info/SOURCES.txt,./docs/build/spelling/output.txt
Expand Down Expand Up @@ -123,3 +120,34 @@ omit =
[yapf]
DEDENT_CLOSING_BRACKETS = true
BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true

[metadata]
name = VWS Python
description = 'Interact with the Vuforia Web Services (VWS) API.'
long_description = file: README.rst
keywords = vuforia client
license = MIT License
license_file = LICENSE
classifiers =
Operating System :: POSIX
Environment :: Web Environment
Programming Language :: Python :: 3.8
License :: OSI Approved :: MIT License
Development Status :: 5 - Production/Stable
url = 'https://vws-python.readthedocs.io'
author = Adam Dangoor
author_email = adamdangoor@gmail.com

[options]
zip_safe = False
include_package_data = True
# Avoid dependency links because they are not supported by Read The Docs.
#
# Also, they require users to use ``--process-dependency-links``.
dependency_links =
package_dir=
=src
packages=find:

[options.packages.find]
where=src
26 changes: 1 addition & 25 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,10 @@
with open('dev-requirements.txt') as dev_requirements:
DEV_REQUIRES = dev_requirements.readlines()

with open('README.rst') as f:
LONG_DESCRIPTION = f.read()

setup(
name='VWS Python',
version=versioneer.get_version(), # type: ignore
cmdclass=versioneer.get_cmdclass(), # type: ignore
author='Adam Dangoor',
author_email='adamdangoor@gmail.com',
description='Interact with the Vuforia Web Services (VWS) API.',
long_description=LONG_DESCRIPTION,
license='MIT',
packages=find_packages(where='src'),
zip_safe=False,
url='http://vws-python.readthedocs.io',
keywords='vuforia fake client',
package_dir={'': 'src'},
include_package_data=True,
package_data={'vws': ['py.typed']},
install_requires=INSTALL_REQUIRES,
extras_require={
'dev': DEV_REQUIRES,
},
classifiers=[
'Operating System :: POSIX',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Development Status :: 3 - Alpha',
],
extras_require={'dev': DEV_REQUIRES},
)