diff options
| author | Nicolas Spalinger | 2015-10-21 12:18:06 -0500 |
|---|---|---|
| committer | Nicolas Spalinger | 2015-10-21 12:18:06 -0500 |
| commit | 0b0ce0d1a5652f93e3c471a46d23ebae125a9849 (patch) | |
| tree | ab77d7a0476ad60c4459995798ae243df5828d70 | |
| parent | 8fb13ca104245daff92b6cd1d6ab6ae499d594ca (diff) | |
| download | trufont-0b0ce0d1a5652f93e3c471a46d23ebae125a9849.tar.bz2 | |
Adjusted some metadata info + script to make launching easier.
| -rw-r--r-- | setup.py | 28 |
1 files changed, 21 insertions, 7 deletions
@@ -5,14 +5,20 @@ from distutils.core import setup try: import fontTools # noqa except: - print("*** Warning: defcon requires FontTools, see:") - print(" fonttools.sf.net") + print("*** Warning: trufont requires FontTools, see:") + print(" https://github.com/behdad/fonttools/") try: import robofab # noqa except: - print("*** Warning: defcon requires RoboFab, see:") - print(" robofab.com") + print("*** Warning: trufont requires RoboFab, see:") + print(" https://github.com/trufont/robofab") + +try: + import defcon #noqa +except: + print("*** Warning: trufont requires defcon, see:") + print(" https://github.com/trufont/defcon") # if "sdist" in sys.argv: # import os @@ -33,10 +39,10 @@ except: setup( name="defconQt", version="0.1.0", - description="A set of Qt interface objects for working with font data.", + description="Trufont, a cross-platform font editor (a set of Qt interface objects for working with font data).", author="Adrien Tétar", author_email="adri-from-59@hotmail.fr", - # url="", + url="http://trufont.github.io", license="GNU LGPL 2.1/GNU GPL v3", packages=[ "defconQt", @@ -45,5 +51,13 @@ setup( "defconQt.representationFactories", "defconQt.util", ], - package_dir={"": "Lib"} + scripts=["trufont"], + package_dir={"": "Lib"}, + platforms=["Linux","Win32","Mac OS X"], + classifiers=[ + "Environment :: GUI", + "Programming Language :: Python :: 3.4", + "Intended Audience :: Developers", + "Topic :: Text Processing :: Fonts", + ], ) |
