diff options
| author | Denis Jacquerye | 2015-10-19 10:24:34 +0100 |
|---|---|---|
| committer | Denis Jacquerye | 2015-10-19 10:30:56 +0100 |
| commit | 63f83224f474c2c191e8cac3cb6bda8f2cb81b7d (patch) | |
| tree | 16b7c79b713832b93683cca9bc87018c48a3a88e /setup.py | |
| parent | 9ce52ed3a18616828daf475fc487fd69322bee0e (diff) | |
| download | trufont-63f83224f474c2c191e8cac3cb6bda8f2cb81b7d.tar.bz2 | |
Use PEP8 code style
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -1,21 +1,20 @@ #!/usr/bin/env python - -import sys +# import sys from distutils.core import setup try: - import fontTools + import fontTools # noqa except: print("*** Warning: defcon requires FontTools, see:") print(" fonttools.sf.net") try: - import robofab + import robofab # noqa except: print("*** Warning: defcon requires RoboFab, see:") print(" robofab.com") -#if "sdist" in sys.argv: +# if "sdist" in sys.argv: # import os # import subprocess # import shutil @@ -31,13 +30,13 @@ except: # shutil.rmtree(doctrees) - -setup(name="defconQt", +setup( + name="defconQt", version="0.1.0", description="A set of Qt interface objects for working with font data.", author="Adrien Tétar", author_email="adri-from-59@hotmail.fr", -# url="", + # url="", license="GNU LGPL 2.1/GNU GPL v3", packages=[ "defconQt", @@ -46,5 +45,5 @@ setup(name="defconQt", "defconQt.representationFactories", "defconQt.util", ], - package_dir={"":"Lib"} + package_dir={"": "Lib"} ) |
