forked from YangCatalog/yang-validator-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'bottle-yang-extractor-validator',
version = '0.3',
description = ('A web application that allows you to fetch, extract and validate YANG modules by RFC number, by IETF draft name, or by uploading YANG files.'),
long_description=read('README.md'),
packages = ['bottle-yang-extractor-validator'],
author = 'Carl Moberg',
author_email = '[email protected]',
license = 'New-style BSD',
url = 'https://github.com/cmoberg/bottle-yang-extractor-validator',
install_requires = ['bottle>=0.12.13', 'xym>=0.4.2', 'CherryPy>=11.0.0', 'pyang==1.7.3'],
include_package_data = True,
keywords = ['yang', 'extraction', 'validation'],
classifiers = [],
)