File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11pillow>=3.0.0
22tinycss>=0.3
33six>=1.10.0
4- requests>=2.9.1
4+ requests>=2.10.0
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22from __future__ import print_function
33import sys
4- from setuptools import setup
4+ from setuptools import setup , find_packages
55from setuptools .command .test import test as TestCommand
66
77
@@ -49,14 +49,15 @@ def run_tests(self):
4949 description = 'Python script (and library) for exporting icons from '
5050 'icon fonts (e.g. Font Awesome, Octicons) as PNG images.' ,
5151 long_description = description ,
52- packages = ['icon_font_to_png' ],
52+ packages = find_packages (),
53+ include_package_data = True ,
5354 tests_require = ['tox' ],
5455 cmdclass = {'test' : Tox },
5556 install_requires = [
5657 'pillow>=3.0.0' ,
5758 'tinycss>=0.3' ,
5859 'six>=1.10.0' ,
59- 'requests>=2.9.1'
60+ 'requests>=2.10.0' ,
6061 ],
6162 extras_require = {
6263 'testing' : ['pytest' ],
You can’t perform that action at this time.
0 commit comments