-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (63 loc) · 1.66 KB
/
setup.py
File metadata and controls
64 lines (63 loc) · 1.66 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import find_packages, setup
setup(
name="clipsai",
py_modules=["clipsai"],
version="0.2.1",
description=(
"Clips AI is an open-source Python library that automatically converts long "
"videos into clips"
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Benjamin Smidt, Johann Ramirez, Armel Talla",
author_email="support@clipsai.com",
url="https://clipsai.com/",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=[
"av",
"facenet-pytorch",
"matplotlib",
"mediapipe",
"nltk",
"numpy",
"opencv-python",
"pandas",
"psutil",
"pyannote.audio",
"pyannote.core",
"pynvml",
"pytest",
"python-magic",
"scenedetect",
"scikit-learn",
"sentence-transformers",
"scipy",
"torch",
],
zip_safe=False,
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://docs.clipsai.com/",
"Homepage": "https://clipsai.com/",
"Repository": "https://github.com/ClipsAI/clipsai",
"Issues": "https://github.com/ClipsAI/clipsai/issues",
},
include_package_data=True,
extras_require={
"dev": [
"black",
"black[jupyter]",
"build",
"flake8",
"ipykernel",
"pytest",
"twine",
],
},
)