-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from spyoungtech/console-scripts
Pyperclip3 -> PyClip; Console scripts
- Loading branch information
Showing
11 changed files
with
38 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,16 @@ | |
|
||
|
||
setup( | ||
name='pyperclip3', | ||
version='0.4.0', | ||
name='pyclip', | ||
version='0.5.0', | ||
license='Apache', | ||
url='https://github.com/spyoungtech/pyperclip3', | ||
url='https://github.com/spyoungtech/pyclip', | ||
description='Cross-platform clipboard utilities supporting both binary and text data.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author_email='[email protected]', | ||
author='Spencer Young', | ||
packages=['pyperclip3'], | ||
packages=['pyclip'], | ||
install_requires=[ | ||
'pywin32 >= 1.0 ; platform_system=="Windows"', | ||
'pasteboard == 0.3.3 ; platform_system=="Darwin"', | ||
|
@@ -33,6 +33,9 @@ | |
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
entry_points={ | ||
'console_scripts': ['pyclip = pyclip.cli:main'] | ||
}, | ||
tests_require=test_requirements, | ||
keywords='pyperclip clipboard cross-platform binary bytes files' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters