Skip to content

Commit

Permalink
Initial content commit as of 53774fb199febe3b2d33b981823fad18276e0564…
Browse files Browse the repository at this point in the history
… of integration_tests
  • Loading branch information
Milan Falešník committed Apr 7, 2017
1 parent f706eba commit 1fe069c
Show file tree
Hide file tree
Showing 6 changed files with 1,388 additions and 2 deletions.
14 changes: 14 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Copyright 2016 Red Hat, Inc. and/or its affiliates

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

2 changes: 0 additions & 2 deletions README.md

This file was deleted.

31 changes: 31 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
======================
widgetastic.patternfly
======================

Patternfly_ widget library for Widgetastic_.

.. _Patternfly: http://www.patternfly.org
.. _Widgetastic: https://github.com/RedHatQE/widgetastic.core

Written originally by Milan Falesnik ([email protected], http://www.falesnik.net/) and
other contributors since 2016.

Contributors whose contributions were squashed during the library move in order of their first commit:

- Ievgen Zapolskyi
- Pete Savage
- Dmitry Misharov
- Oleksii Tsuman
- Mike Shriver

Usage
=====

.. code-block:: python
from widgetastic_patternfly import Button
class SomeView(View):
add = Button('Add', classes=[Button.PRIMARY])
Check the ``src/widgetastic_patternfly/__init__.py`` for more documentation.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[wheel]
universal=1

33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
import codecs
from setuptools import find_packages, setup


setup(
name="widgetastic.patternfly",
use_scm_version=True,
author="Milan Falesnik",
author_email="[email protected]",
description='Patternfly widget library for Widgetastic',
long_description=codecs.open('README.rst', mode='r', encoding='utf-8').read(),
license="Apache license",
url="https://github.com/RedHatQE/widgetastic.patternfly",
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'widgetastic.core',
],
setup_requires=[
'setuptools_scm',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)
Loading

0 comments on commit 1fe069c

Please sign in to comment.