-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (36 loc) · 1.38 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
from setuptools import setup, find_packages
def get_long_description():
with open('README.md') as readme_file:
return readme_file.read()
setup(
name="pyros_api",
version="0.1.3",
description="A simplified routerOS api in python!",
long_description=get_long_description(),
long_description_content_type='text/markdown',
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.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
url="https://github.com/cykyy/pyros-api", # project home page, if any
packages=['pyros_api'],
license="MIT",
keywords='routerOS, mikrotik, routeros-api, routeros-python-api',
install_requires=['six', 'RouterOS-api==0.17.0'],
# metadata to display on PyPI
author="Rayhan Mia",
author_email="[email protected]",
project_urls={
"Documentation": "https://github.com/cykyy/pyros-api",
"Source Code": "https://github.com/cykyy/pyros-api",
},
)