-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (53 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (53 loc) · 1.73 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
from pathlib import Path
from setuptools import find_packages, setup
README = Path(__file__).with_name("README.md").read_text(encoding="utf-8")
setup(
name="shot-analyzer",
version="0.1.0",
description="Shot-level visual language analysis system for animation",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(),
entry_points={
"console_scripts": [
"shot-analyzer = src.main:main",
],
},
install_requires=[
"opencv-python>=4.8.0",
"scenedetect>=0.6.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"pyarrow>=12.0.0",
"click>=8.0.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
],
extras_require={
"dev": [
"httpx>=0.27.0",
"streamlit>=1.20.0",
],
},
python_requires=">=3.11",
author="Liang Xiao",
author_email="146964748+Leslie-ller@users.noreply.github.com",
url="https://github.com/Leslie-ller/shot-analyzer",
project_urls={
"Repository": "https://github.com/Leslie-ller/shot-analyzer",
"Issues": "https://github.com/Leslie-ller/shot-analyzer/issues",
},
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)