-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (39 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·42 lines (39 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
if os.path.exists('readme.md'):
long_description = open('readme.md', 'r', encoding='utf8').read()
else:
long_description = """
作者:
tanshicheng
包括:
用于win,macos局域网内共享剪切板, 适用于moonlight等不支持剪切板的工具
"""
setup(
name='natclip',
version='0.6',
description="tanshicheng's tools",
long_description=long_description,
author='tanshicheng',
license='GPLv3',
url='https://github.com/aitsc/natclip',
keywords='tools',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'pyperclip>=1.7.0',
],
python_requires='>=3.5',
entry_points={ # 打包到bin
'console_scripts': [
'natclip=natclip.main:main', # 包不能有-符号
],
},
)