29 lines
798 B
Python
29 lines
798 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="sscp",
|
|
version="0.1.0",
|
|
description="从L3向L0传输文件的简化工具",
|
|
author="Your Name",
|
|
author_email="your.email@example.com",
|
|
packages=find_packages(),
|
|
py_modules=["sscp"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"sscp=sscp:main",
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
],
|
|
python_requires=">=3.6",
|
|
) |