-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (37 loc) · 1.12 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
45
# -*- coding: utf-8 -*-
"""
VideoWave is the package to create and superimpose audio waves over a video.
"""
import sys
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
if sys.version_info < (3, 5):
raise EnvironmentError("Python version >= 3.5 required. Python 3.7 is recommended")
# Versioning
MAJOR = 0
MINOR = 2
MICRO = 0
PRE_RELEASE = 'a'
VERSION = f"{MAJOR}.{MINOR}.{MICRO}-{PRE_RELEASE}"
DEFAULT_URL = 'https://github.com/Mayitzin/VideoWave/'
metadata = dict(
name='VideoWave',
version=VERSION,
description='Audio Wave creator for video clips',
long_description=long_description,
url=DEFAULT_URL,
download_url=DEFAULT_URL+'releases/',
author='Mario Garcia',
author_email='[email protected]',
keywords="video audio signal processing visualization",
project_urls={
"Bug Tracker": DEFAULT_URL+"issues/"
},
install_requires=['numpy',
'scipy',
'matplotlib',
'opencv-python'],
packages=find_packages()
)
setup(**metadata)