2018-08-23 14:30:22 +02:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
2014-03-18 11:41:53 +01:00
|
|
|
|
2018-08-23 14:30:22 +02:00
|
|
|
|
2019-09-24 14:28:32 +02:00
|
|
|
def get_long_description():
|
|
|
|
with open('README.md') as readme_file:
|
|
|
|
return readme_file.read()
|
|
|
|
|
|
|
|
|
2018-08-23 14:30:22 +02:00
|
|
|
setup(
|
|
|
|
name="RouterOS-api",
|
2024-05-28 15:45:07 +02:00
|
|
|
version='0.18.2.dev0',
|
2018-08-23 14:30:22 +02:00
|
|
|
description='Python API to RouterBoard devices produced by MikroTik.',
|
2019-09-24 14:28:32 +02:00
|
|
|
long_description=get_long_description(),
|
|
|
|
long_description_content_type='text/markdown',
|
2018-08-23 14:30:22 +02:00
|
|
|
author='Social WiFi',
|
|
|
|
author_email='it@socialwifi.com',
|
|
|
|
url='https://github.com/socialwifi/RouterOS-api',
|
|
|
|
packages=find_packages(),
|
|
|
|
test_suite="tests",
|
|
|
|
license="MIT",
|
2024-04-30 13:28:20 +02:00
|
|
|
install_requires=[],
|
2018-08-23 14:30:22 +02:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
2024-04-30 13:28:20 +02:00
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
|
|
|
'Programming Language :: Python :: 3.12',
|
2018-08-23 14:30:22 +02:00
|
|
|
],
|
2014-03-18 11:41:53 +01:00
|
|
|
)
|