Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix failing tests #67

Merged
merged 1 commit into from
Mar 24, 2021
Merged
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
63 changes: 31 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,55 +7,54 @@
"""

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
from setuptools import find_packages, setup

here = path.abspath(path.dirname(__file__))

__author__ = 'Magnus Knutas'
VERSION = '1.3.3'
__author__ = "Magnus Knutas"
VERSION = "1.3.3"

with open("README.md", "r") as fh:
long_description = fh.read()

install_requires = [
'cryptography==3.3.2',
'asyncssh'
]
install_requires = ["cryptography==3.3.2", "asyncssh"]

tests_require = [
'pytest',
'pytest-cov',
'pytest-mock',
'pytest-asyncio'
tests_requires = [
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-asyncio",
]

extras_require = {
'dev': ['check-manifest'],
setup_requires = ["pytest-runner"]

extras_requires = {
"dev": ["check-manifest"],
}

github_url = "https://github.com/kennedyshead/aioasuswrt"

setup(
name='aioasuswrt',
name="aioasuswrt",
version=VERSION,
description='Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/',
description="Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kennedyshead/aioasuswrt',
download_url='https://github.com/kennedyshead/aioasuswrt/archive/%s.tar.gz' % VERSION,
url=github_url,
download_url=f"{github_url}/archive/{VERSION}.tar.gz",
author=__author__,
author_email='magnusknutas@gmail.com',
author_email="magnusknutas@gmail.com",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords='Asuswrt wrapper',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
keywords="Asuswrt wrapper",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=install_requires,
test_suite='tests',
tests_require=tests_require,
extras_require=extras_require,
setup_requires=setup_requires,
tests_require=tests_requires,
extras_require=extras_requires,
test_suite="tests",
)