增加setup.py
This commit is contained in:
parent
91f490ff45
commit
4bb11a026e
19
setup.py
19
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'
|
||||||
|
]
|
||||||
|
)
|
||||||
Loading…
Reference in New Issue