-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (39 loc) · 1.14 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
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="ugoira_conv",
version="0.2.0",
description="ugoira converter",
long_description="convert ugoira (pixiv animations) to webm or gif",
url="https://github.com/mikf/ugoira-conv",
author="Mike Fährmann",
author_email="mike_faehrmann@web.de",
license="GPLv2",
scripts=[
"bin/ugoira-conv",
],
entry_points={
'console_scripts': [
'ugoira-conv = ugoira_conv:main',
],
},
packages=[
"ugoira_conv",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Video :: Conversion",
],
)