This repository has been archived by the owner on Jul 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
63 lines (58 loc) · 2.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'''A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
'''
from codecs import open as copen
from os import path
import kibra
from setuptools import setup
# Get the long description from the README file
HERE = path.abspath(path.dirname(__file__))
with copen(path.join(HERE, 'README.rst'), encoding='utf-8') as _file:
LONG_DESC = _file.read()
setup(
name='kibra',
# https://packaging.python.org/en/latest/single_source_version.html
version=kibra.__version__,
description='Kirale Border Router Administration',
long_description=LONG_DESC,
# The project's main homepage.
url='https://github.com/KiraleTechnologies/kibra',
# Author details
author='Kirale Technologies',
author_email='emontoya@kirale.com',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Environment :: Console', 'Environment :: Web Environment',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Manufacturing',
'Intended Audience :: Telecommunications Industry',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware',
'Topic :: System :: Networking :: Firewalls', 'Topic :: Utilities',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux'
],
keywords='kirale kinos thread border router',
packages=['kibra', 'kibra.ncp_fw'],
include_package_data=True,
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'aiocoap==kirale-1.3',
'bash==0.6',
'daemonize==2.5.0',
'importlib_resources==1.0.2', # Not needed in Python 3.7
'kitools==1.3.5',
'pyroute2==0.5.3',
],
entry_points={'console_scripts': ['kibra = kibra.__main__:main']},
)