-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.08 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
from setuptools import setup, find_packages# List of requirements
with open("README.md", 'r') as fh:
long_description = fh.read()
requirements = [ "setuptools"] # This could be retrieved from requirements.txt# Package (minimal) configuration
setup(
name="python-bestsource",
version="1.2.0",
description="Python helpers to manipulate video from vapoursynth",
long_description=long_description,
long_description_content_type="text/markdown",
author="sosie-js",
author_email="[email protected]",
keywords="vapoursynth python bestsource helper",
url="http://github.com/sosie-js/python-bestsource",
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Software Development :: Libraries'
],
packages=find_packages(), # __init__.py folders search
install_requires=requirements,
python_requires='>=3.10',
)