增加setup.py

This commit is contained in:
Wei guangjing 2022-06-11 17:40:01 +08:00
parent 91f490ff45
commit 4bb11a026e
1 changed files with 19 additions and 0 deletions

View File

@ -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'
]
)