Skip to content

Commit

Permalink
Prepare for automated release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoclawski committed Aug 23, 2018
1 parent 8c49e8f commit c66d8d2
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 12 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
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.
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014 Pozytywnie.pl
Copyright (c) 2018 Social WiFi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
5 changes: 5 additions & 0 deletions MANIFEST.in
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
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[zest.releaser]
create-wheel = yes

[bdist_wheel]
universal = 1
37 changes: 26 additions & 11 deletions setup.py
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',
],
)

0 comments on commit c66d8d2

Please sign in to comment.