-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c49e8f
commit c66d8d2
Showing
5 changed files
with
55 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Changelog for RouterOS-api | ||
========================== | ||
|
||
0.15 (unreleased) | ||
------------------ | ||
|
||
- Support new login API for v6.43. ([#29](https://github.com/socialwifi/RouterOS-api/issues/29)) | ||
|
||
**Backwards-incompatible**: use `plaintext_login=True` if you connect with devices with OS older than v6.43. | ||
|
||
- Add SSL encryption. ([#30](https://github.com/socialwifi/RouterOS-api/issues/30)) | ||
|
||
|
||
0.14 (2016-04-15) | ||
------------------ | ||
|
||
- Beginning of tracking changelog. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include CHANGELOG.md | ||
include LICENSE | ||
include README.md | ||
prune tests | ||
exclude tox.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[zest.releaser] | ||
create-wheel = yes | ||
|
||
[bdist_wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
setup(version='0.14', | ||
name="RouterOS-api", | ||
description='Python API to RouterBoard devices produced by MikroTik.', | ||
author='Tomasz Wysocki', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
test_suite="tests", | ||
license="MIT", | ||
install_requires=['six'], | ||
|
||
setup( | ||
name="RouterOS-api", | ||
version='0.14.dev0', | ||
description='Python API to RouterBoard devices produced by MikroTik.', | ||
author='Social WiFi', | ||
author_email='[email protected]', | ||
url='https://github.com/socialwifi/RouterOS-api', | ||
packages=find_packages(), | ||
test_suite="tests", | ||
license="MIT", | ||
install_requires=['six'], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
], | ||
) |