-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
21 lines (20 loc) · 886 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 distutils.core import setup
setup(
name='bkrdoc',
version='1.3.0',
packages=['bkrdoc', 'bkrdoc.markup', 'bkrdoc.analysis'],
url='https://github.com/rh-lab-q/bkrdoc',
license='BSD',
author='Jiri Kulda',
author_email='[email protected], [email protected]',
description='This project aims to provide tools for automated documentation generation for BeakerLib tests. ',
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Documentation",
"Operating System :: OS Independent",
"Intended Audience :: Developers"],
scripts=['bin/bkrdoc']
)