2020-08-21 09:59:40 +03:00
|
|
|
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(),
|
2020-09-06 09:29:31 +03:00
|
|
|
python_requires=">=3.8",
|
|
|
|
)
|