forked from MFEK/sfdLib.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (28 loc) · 946 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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",
],
)