-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
executable file
·44 lines (38 loc) · 1.36 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
42
43
44
#!/usr/bin/env python
from setuptools import setup
from webm import __version__
long_description = open('README.md', 'rb').read().decode('utf-8')
setup(
# https://setuptools.readthedocs.io/en/latest/setuptools.html
name='webm',
version=__version__,
author='Kagami Hiiragi',
author_email='kagami@genshiken.org',
url='https://github.com/Kagami/webm.py',
description='Cross-platform command-line WebM converter',
long_description=long_description,
long_description_content_type='text/markdown',
license='CC0',
py_modules=['webm'],
entry_points={
'console_scripts': [
'webm = webm:main',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
],
)