forked from MFEK/sfdLib.py
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0b4b0c
commit dcae97c
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
) |