Update Portal Auth and Cursed Screech (#30)

This commit is contained in:
Nick
2018-07-16 22:21:02 -04:00
committed by Sebastian Kinne
parent a517d2e4d4
commit ac9df1c5bb
76 changed files with 2585 additions and 5974 deletions

View File

@@ -1,8 +1,8 @@
Metadata-Version: 1.1
Name: tinycss
Version: 0.3
Version: 0.4
Summary: tinycss is a complete yet simple CSS parser for Python.
Home-page: http://packages.python.org/tinycss/
Home-page: http://tinycss.readthedocs.io/
Author: Simon Sapin
Author-email: simon.sapin@exyr.org
License: BSD
@@ -13,6 +13,7 @@ Description: tinycss: CSS parser for Python
syntax and error handling for CSS 2.1 as well as some CSS 3 modules:
* CSS Color 3
* CSS Fonts 3
* CSS Paged Media 3
It is designed to be easy to extend for new CSS modules and syntax,
@@ -21,7 +22,7 @@ Description: tinycss: CSS parser for Python
Quick facts:
* Free software: BSD licensed
* Compatible with Python 2.6+ and 3.x
* Compatible with Python 2.7 and 3.x
* Latest documentation `on python.org`_
* Source, issues and pull requests `on Github`_
* Releases `on PyPI`_
@@ -33,12 +34,14 @@ Description: tinycss: CSS parser for Python
.. _on PyPI: http://pypi.python.org/pypi/tinycss
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy

View File

@@ -1,11 +1,12 @@
.coveragerc
.gitignore
.travis.yml
CHANGES
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
tox.ini
docs/changelog.rst
docs/conf.py
docs/css3.rst
@@ -19,6 +20,7 @@ tinycss/__init__.py
tinycss/color3.py
tinycss/css21.py
tinycss/decoding.py
tinycss/fonts3.py
tinycss/page3.py
tinycss/parsing.py
tinycss/speedups.c
@@ -29,6 +31,7 @@ tinycss/version.py
tinycss.egg-info/PKG-INFO
tinycss.egg-info/SOURCES.txt
tinycss.egg-info/dependency_links.txt
tinycss.egg-info/requires.txt
tinycss.egg-info/top_level.txt
tinycss/tests/__init__.py
tinycss/tests/speed.py
@@ -36,5 +39,6 @@ tinycss/tests/test_api.py
tinycss/tests/test_color3.py
tinycss/tests/test_css21.py
tinycss/tests/test_decoding.py
tinycss/tests/test_fonts3.py
tinycss/tests/test_page3.py
tinycss/tests/test_tokenizer.py

View File

@@ -0,0 +1,6 @@
[test]
pytest-runner
pytest-cov
pytest-flake8
pytest-isort