-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.17 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
from setuptools import setup
from setuptools import find_packages
# Load the Readme file.
with open(file="README.md", mode="r") as readme_handle:
long_description = readme_handle.read()
setup(
name = 'clipstitcher',
author = 'Libor Kudela',
author_email = 'libor.kudela1@gmail.com',
version = '0.1.0',
description = 'A python package for quick cutting video sequences',
package_data={'': ['styles.css']},
include_package_data=True,
long_description = long_description,
long_description_content_type = 'text/markdown',
url='https://github.com/LiborKudela/clipsticher',
install_requires=[
'numpy>=1.20.2',
'opencv-python>=4.6.0.66',
'requests>=2.28.1',
'selenium>=4.6.0',
'tqdm>=4.64.1',
'python-vlc>=3.0.20123',
'tqdm>=4.66.1',
'PyDrive2>=1.19.0',
],
packages = find_packages(),
keywords = 'video, editing, sequence, rendering',
python_requires='>3.8.0',
classifiers=[
'Natural Language :: English',
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX :: Linux',
]
)