-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 884 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 884 Bytes
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
import sys
def readme():
with open('README.md') as f:
return f.read()
version="0.1.2"
setup(name='syszuxav',
version=version,
description='python bindings for ffmpeg',
long_description='python bindings for ffmpeg',
keywords='ffmpeg python',
url='https://github.com/CivilNet/SYSZUXav',
download_url="https://github.com/CivilNet/SYSZUXav/releases/download/v0.1/syszuxav-0.1.2.tar.gz",
author='Gemfield',
author_email='gemfield@civilnet.cn',
packages=['syszuxav'],
install_requires=[
'opencv_python',
'numpy'
],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries"
],
include_package_data=True,
zip_safe=False)