mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
Update Portal Auth and Cursed Screech (#30)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -0,0 +1,6 @@
|
||||
|
||||
[test]
|
||||
pytest-runner
|
||||
pytest-cov
|
||||
pytest-flake8
|
||||
pytest-isort
|
||||
Reference in New Issue
Block a user