forked from kennedyshead/aioasuswrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (52 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
__author__ = 'Magnus Knutas'
VERSION = '1.3.0'
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'asyncssh'
]
tests_require = [
'pytest',
'pytest-cov',
'pytest-mock',
'pytest-asyncio'
]
extras_require = {
'dev': ['check-manifest'],
}
setup(
name='aioasuswrt',
version=VERSION,
description='Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/',
setup_requires=['pytest-runner'],
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,
author=__author__,
author_email='[email protected]',
license="MIT",
classifiers=[
'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']),
install_requires=install_requires,
test_suite='tests',
tests_require=tests_require,
extras_require=extras_require,
)