-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd3ed34
commit 58becd6
Showing
3 changed files
with
30 additions
and
28 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
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
from setuptools import find_packages, setup | ||
|
||
VERSION = 0.4 | ||
VERSION = "0.5" | ||
with open("README.md") as f: | ||
README = f.read() | ||
|
||
setup( | ||
name = "pyscreenrec", | ||
version = VERSION, | ||
description = "A small and cross-platform python library for recording screen.", | ||
long_description_content_type = "text/markdown", | ||
long_description = README, | ||
name="pyscreenrec", | ||
version=VERSION, | ||
description="A small and cross-platform python library for recording screen.", | ||
long_description_content_type="text/markdown", | ||
long_description=README, | ||
url="https://github.com/shravanasati/pyscreenrec", | ||
author = "Shravan Asati", | ||
author_email = "[email protected]", | ||
packages = find_packages(), | ||
install_requires = ["pyscreeze", "opencv-python", "natsort"], | ||
license = 'MIT', | ||
keywords = ["python", "screen recording", "screen", "recording", "screenshots"], | ||
classifiers = [ | ||
author="Shravan Asati", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
install_requires=["pyscreeze", "opencv-python", "natsort"], | ||
license="MIT", | ||
keywords=["python", "screen recording", "screen", "recording", "screenshots"], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -28,6 +28,6 @@ | |
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Topic :: Software Development :: Libraries" | ||
] | ||
) | ||
"Topic :: Software Development :: Libraries", | ||
], | ||
) |