19 lines
551 B
Python
19 lines
551 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="pyTSLPy",
|
|
version="0.3",
|
|
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'
|
|
]
|
|
) |