Skip to content

Commit

Permalink
Add setup.py and some cargo-culting
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Apr 11, 2016
1 parent d0b4b0c commit dcae97c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
File renamed without changes.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup

setup(
name = "sfd2ufo",
version = "1.0",
description = "A simple, quick and dirty, SFD to UFO converter.",
author = "Khaled Hosny",
author_email = "[email protected]",
url = "https://github.com/khaledhosny/sfd2ufo",
license = "OpenSource, BSD-style",
platforms = ["Any"],

packages = [
"sfd2ufo",
],
package_dir = {'': 'Lib'},
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
],
)

0 comments on commit dcae97c

Please sign in to comment.