diff options
| author | Adrien Tétar | 2015-10-19 14:54:48 +0200 |
|---|---|---|
| committer | Adrien Tétar | 2015-10-19 14:54:48 +0200 |
| commit | ec2cda36e2e12301dbd96afcf21e30298f95c83e (patch) | |
| tree | c49a88c84ffe8a2483cedfe8716204e29be54d0e /setup.py | |
| parent | fff28121e96b08339be5be8772dddfcce39bfb44 (diff) | |
| parent | 1337a13ccbd3bec8e0c26b84205eb9c90b66f1e8 (diff) | |
| download | trufont-ec2cda36e2e12301dbd96afcf21e30298f95c83e.tar.bz2 | |
Merge pull request #25 from moyogo/flake8
PEP8 and lint code with flake8 on Travis CI
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"} ) |
