mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
11 lines
245 B
Python
11 lines
245 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="vimr-third-party",
|
|
version="0.1.0",
|
|
author="Tae Won Ha",
|
|
description="Scripts for building dependencies of VimR",
|
|
packages=setuptools.find_packages(),
|
|
python_requires=">=3.8",
|
|
)
|