forked from RedHatQE/widgetastic.patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial content commit as of 53774fb199febe3b2d33b981823fad18276e0564…
… of integration_tests
- Loading branch information
Milan Falešník
committed
Apr 7, 2017
1 parent
f706eba
commit 1fe069c
Showing
6 changed files
with
1,388 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[wheel] | ||
universal=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |
Oops, something went wrong.