| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/textproc/py-ntc-templates/files/ |
Upload File : |
--- setup.py.orig 2022-03-27 21:10:43 UTC
+++ setup.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+from setuptools import setup
+
+packages = \
+['ntc_templates']
+
+package_data = \
+{'': ['*'], 'ntc_templates': ['templates/*']}
+
+install_requires = \
+['textfsm>=1.1.0,<2.0.0']
+
+setup_kwargs = {
+ 'name': 'ntc-templates',
+ 'version': '%%DISTVERSION%%',
+ 'description': "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable.",
+ 'author': 'Network to Code',
+ 'author_email': 'info@networktocode.com',
+ 'url': 'https://github.com/networktocode/ntc-templates',
+ 'packages': packages,
+ 'package_data': package_data,
+ 'install_requires': install_requires,
+ 'python_requires': '>=3.6,<4.0',
+}
+
+setup(**setup_kwargs)