-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (47 loc) · 2.1 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
46
47
48
49
50
51
52
from setuptools import setup
from pathlib import Path
# TODO: Add the Support to Download the ffmpeg file using the install function from the config.py while giving the user ability to not downloading it. like pip install vidiopy --no-ffmpeg-install or pip install vidiopy[no_ffmpeg_install] or any thing else.
__version__ = Path("vidiopy/__version__.py").read_text().strip().split('"')[1]
with open(Path(r"./requirements.txt")) as f:
requirements = f.read().splitlines()
with open(Path(r"./README.md")) as f:
long_description = f.read()
setup(
name="vidiopy",
version=__version__,
description="An Video Editing Library Similar to Moviepy.",
long_description=long_description,
author="Soham Tilekar",
author_email="sohamtilekar233@gamil.com",
# maintainer='Soham Tilekar',
# maintainer_email='sohamtilekar233@gmail.com',
url=r"https://github.com/SohamTilekar/vidiopy",
packages=[
"vidiopy"
], # find_packages(exclude=("venv", "test", ".vscode", ".idea")),
project_urls={
"Homepage": "https://github.com/SohamTilekar/vidiopy/",
"Source": "https://github.com/SohamTilekar/vidiopy/",
"Tracker": "https://github.com/SohamTilekar/vidiopy/issues",
},
classifiers=[
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Multimedia :: Graphics :: Editors",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
],
license="MIT License",
long_description_content_type="text/markdown",
install_requires=requirements,
include_package_data=True,
python_requires=">=3.11, <=3.12.3",
)