This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
47 lines (44 loc) · 1.62 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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name="gen-cisco",
version="1.2.9",
description="Generates Cisco scripts based on YAML files",
author="Terencio Agozzino",
author_email="[email protected]",
license="MIT",
keywords = "cisco ccna generate generator jinja netacad packettracer \
pythonscript scripts yaml",
url="https://github.com/rememberYou/gen-cisco",
packages=find_packages(),
long_description=long_description,
scripts=['gen-cisco.py'],
install_requires=['Jinja2', 'click', 'pyyaml'],
project_urls={
'Source': 'https://github.com/rememberYou/gen-cisco',
'Tracker': 'https://github.com/rememberYou/gen-cisco/issues',
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
],
)