Skip to content

Commit b8e6dfd

Browse files
committed
Freshening up
1 parent 7e8258a commit b8e6dfd

File tree

3 files changed

+26
-16
lines changed

3 files changed

+26
-16
lines changed

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Icon Font to PNG
2-
[![Version](https://img.shields.io/pypi/v/icon_font_to_png.svg)](https://pypi.python.org/pypi/icon_font_to_png)
3-
[![Downloads](https://img.shields.io/pypi/dm/icon_font_to_png.svg)](https://pypi.python.org/pypi/icon_font_to_png)
2+
[![PyPI Version](https://img.shields.io/pypi/v/icon_font_to_png.svg)][Project PyPI]
3+
[![PyPI Downloads](https://img.shields.io/pypi/dm/icon_font_to_png.svg)][Project PyPI]
4+
[![Python Versions](https://img.shields.io/pypi/pyversions/icon_font_to_png.svg)][Project PyPI]
45
[![License](https://img.shields.io/github/license/Pythonity/icon-font-to-png.svg)](https://github.com/Pythonity/icon-font-to-png/blob/master/LICENSE)
6+
57
[![Build](https://img.shields.io/travis/Pythonity/icon-font-to-png.svg)](https://travis-ci.org/Pythonity/icon-font-to-png)
8+
[![GitHub Issues](https://img.shields.io/github/issues/Pythonity/icon-font-to-png.svg)](https://github.com/Pythonity/icon-font-to-png)
9+
[![Code Issues](https://www.quantifiedcode.com/api/v1/project/8d545f881ce9476e9e2d8028bd300f63/badge.svg)](https://www.quantifiedcode.com/app/project/8d545f881ce9476e9e2d8028bd300f63)
610

711
Python library made for easy and simple export of icons from web icon
812
fonts (e.g. Font Awesome, Octicons) as PNG images. It comes with a shell script
@@ -13,12 +17,12 @@ There's also `font-awesome-to-png` script for backwards compatibility with the
1317
[first](https://github.com/odyniec/font-awesome-to-png) iteration of the concept.
1418

1519
Package is considered to be in beta status and no backwards compatibility
16-
(if you use it inside your project) between (minor) versions is provided.
20+
(if you use it inside your project) between versions is guaranteed.
1721

1822
Packages required for running and testing are listed in `requirements` directory.
1923

2024
## Installation
21-
Make sure you have required packages for [Pillow installation](https://pillow.readthedocs.org/en/3.0.x/installation.html).
25+
Make sure you have required packages for [Pillow installation](https://pillow.readthedocs.org/en/3.1.x/installation.html).
2226

2327
With `pip` (recommended):
2428
```
@@ -83,12 +87,11 @@ Or you can use `font-awesome-to-png`, which works analogously:
8387
`$ font-awesome-to-png ALL`
8488

8589
## API
86-
You can use `IconFont` (and `FontAwesomeDownloader`/`OcticonsDownloader`
87-
for that matter) directly inside your Python project. There's no documentation
88-
as of now, but the code is commented and *should* be pretty straightforward
89-
to use.
90+
You can use `IconFont` (and `FontAwesomeDownloader`/`OcticonsDownloader` for that matter)
91+
directly inside your Python project. There's no documentation as of now,
92+
but the code is commented and *should* be pretty straightforward to use.
9093

91-
But feel free to ask me if anything is unclear.
94+
But feel free to ask [me](mailto:pawel.adamczak@sidnet.info) if anything is unclear.
9295

9396
## Tests
9497
Package was tested with `tox` on Python 2.7 and Python 3.4 (see `tox.ini`).
@@ -106,3 +109,6 @@ Developed and maintained by [Pythonity](http://pythonity.com/).
106109

107110
Original version by [Michał Wojciechowski](https://github.com/odyniec),
108111
refactored by [Paweł Adamczak](https://github.com/pawelad).
112+
113+
114+
[Project PyPI]: https://pypi.python.org/pypi/icon_font_to_png

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pillow>=3.0.0
22
tinycss>=0.3
33
six>=1.10.0
4-
requests>=2.8.1
4+
requests>=2.9.1

setup.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,16 @@ def run_tests(self):
3838
setup(
3939
name='icon_font_to_png',
4040
url='https://github.com/Pythonity/icon-font-to-png',
41-
version='0.3.0',
41+
download_url='https://github.com/Pythonity/icon-font-to-png/releases/latest',
42+
bugtrack_url='https://github.com/Pythonity/icon-font-to-png/issues',
43+
version='0.3.1',
4244
license='MIT License',
4345
author='Pythonity',
44-
author_email=' pythonity@pythonity.com',
45-
description='Python library for exporting icons from icon fonts '
46-
'(e.g. Font Awesome, Octicons) as PNG images.',
46+
author_email='pythonity@pythonity.com',
47+
maintainer='Paweł Adamczak',
48+
maintainer_email='pawel.adamczak@sidnet.info',
49+
description='Python script (and library) for exporting icons from '
50+
'icon fonts (e.g. Font Awesome, Octicons) as PNG images.',
4751
long_description=description,
4852
packages=['icon_font_to_png'],
4953
tests_require=['tox'],
@@ -52,13 +56,13 @@ def run_tests(self):
5256
'pillow>=3.0.0',
5357
'tinycss>=0.3',
5458
'six>=1.10.0',
55-
'requests>=2.8.1'
59+
'requests>=2.9.1'
5660
],
5761
extras_require={
5862
'testing': ['pytest'],
5963
},
6064
scripts=['bin/font-awesome-to-png', 'bin/icon-font-to-png'],
61-
keywords='icon font export',
65+
keywords='icon font export font awesome octicons',
6266
classifiers=[
6367
'Development Status :: 4 - Beta',
6468
'Environment :: Console',

0 commit comments

Comments
 (0)