import os import setuptools from remotion_lambda.version import VERSION def load_requirements(path): with open(path) as f: return [line.strip() for line in f] with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme: README = readme.read() requirements = load_requirements('requirements.txt') setuptools.setup( name="remotion_lambda", version=VERSION, author="Jonny Burger", author_email="jonny@remotion.dev", description="Remotion Lambda client", long_description_content_type="text/markdown", url="https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python", classifiers=[ ], long_description="Remotion is a framework for creating videos programmatically using React.", packages=setuptools.find_packages(), python_requires='>=3.6', # Name of the python package py_modules=["remotion-lambda"], install_requires=requirements, )