From 4bb11a026eb98c17e37a3aa2648089b687b27282 Mon Sep 17 00:00:00 2001 From: Wei guangjing Date: Sat, 11 Jun 2022 17:40:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0setup.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/setup.py b/setup.py index e69de29..be3d1d9 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup + +setup( + name="pyTSLPy", + version="0.2", + author="Wei guangjing", + author_email="vcc@py3k.cn", + description="用pyTSL模拟TSLPy", + url="https://py3k.cn/pyTSLPy/", + packages=['pyTSLPy'], + install_requires=['tspytsl>=1.0'], + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Libraries', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3' + ] +) \ No newline at end of file