-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (28 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
import os
from distutils.core import setup
import pysvg2font
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name='pysvg2font',
version=pysvg2font.__version__,
description='Tool to convert monochrome SVG files into font files (ttf) and generate other useful stylesheet files to use fonts as icons',
author='Carlos Arrastia',
author_email='[email protected]',
url='https://github.com/carrasti/pysvg2font',
packages=['pysvg2font'],
keywords='svg font ttf fontforge css sass compass python icons',
license='BSD',
long_description=read('README.md'),
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Utilities',
]
)