-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 798 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 798 Bytes
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
from setuptools import setup
setup(
name='miktapi',
version='0.1.0',
description='Mikrotik RouterOS API protocol',
url='https://github.com/mrin/miktapi',
author='Igor Sankovich',
author_email='flexstudio.biz@gmail.com',
license='MIT',
packages=['miktapi'],
zip_safe=False,
keywords='mikrotik routeros api',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
]
)