-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.07 KB
/
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
31
32
33
from setuptools import setup
setup(
name = "sfdLib",
version = "2.0.0.post0",
description = "A simple, quick and dirty, SFD to UFO converter.",
author = "Maintained by MFEK (Fredrick Brennan), originally by Khaled Hosny",
author_email = "[email protected]",
url = "https://github.com/MFEK/sfdLib.py",
license = "OpenSource, BSD-style",
platforms = ["Any"],
packages = [
"sfdLib",
],
entry_points = {
'console_scripts': ['sfd2ufo = sfdLib.__main__:main'],
},
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 :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
],
)