File indexing completed on 2025-01-05 04:00:27

0001 #!/usr/bin/env python3
0002 import setuptools
0003 
0004 setuptools.setup(
0005     name="tgs",
0006     version="0.6.0",
0007     author="Mattia Basaglia",
0008     author_email="mattia.basaglia@gmail.com",
0009     description="A framework to work with lottie / tgs files",
0010     long_description="This project as moved to https://pypi.org/project/lottie/",
0011     long_description_content_type="text/markdown",
0012     url="https://pypi.org/project/lottie/",
0013     license="GNU Affero General Public License v3 or later (AGPLv3+)",
0014     keywords="telegram stickers tgs lottie svg animation",
0015     classifiers=[
0016         "Programming Language :: Python :: 3",
0017         "Development Status :: 3 - Alpha",
0018         "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
0019         "Operating System :: OS Independent",
0020         "Topic :: Multimedia :: Graphics",
0021     ],
0022     zip_safe=True,
0023     requires=[
0024         "lottie"
0025     ],
0026     python_requires=">=3",
0027 )