Prepare for automated release.

This commit is contained in:
Jakub Gocławski 2018-08-23 14:30:22 +02:00
parent 8c49e8fe7b
commit c66d8d2e70
No known key found for this signature in database
GPG key ID: DB23479BBC13E2A3
5 changed files with 55 additions and 12 deletions

17
CHANGELOG.md Normal file
View file

@ -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.

View file

@ -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
@ -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
MANIFEST.in Normal file
View file

@ -0,0 +1,5 @@
include CHANGELOG.md
include LICENSE
include README.md
prune tests
exclude tox.ini

5
setup.cfg Normal file
View file

@ -0,0 +1,5 @@
[zest.releaser]
create-wheel = yes
[bdist_wheel]
universal = 1

View file

@ -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='tomasz@pozytywnie.pl',
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='it@socialwifi.com',
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',
],
)