latentblending/setup.py

20 lines
548 B
Python
Raw Normal View History

2024-01-09 17:13:16 +00:00
from setuptools import setup, find_packages
# Read requirements.txt and store its contents in a list
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='latentblending',
2024-02-06 12:36:41 +00:00
version='0.3',
2024-01-09 17:13:16 +00:00
url='https://github.com/lunarring/latentblending',
description='Butter-smooth video transitions',
long_description=open('README.md').read(),
2024-02-06 12:36:41 +00:00
install_requires=[
'lunar_tools @ git+https://github.com/lunarring/lunar_tools.git#egg=lunar_tools'
] + required,
2024-01-09 17:13:16 +00:00
include_package_data=False,
)
2024-02-06 12:36:41 +00:00