We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c822c commit 44b593dCopy full SHA for 44b593d
setup.py
@@ -1,11 +1,21 @@
1
+import pathlib
2
import setuptools
3
4
+# The directory containing this file
5
+HERE = pathlib.Path(__file__).parent
6
+
7
+# The text of the README file
8
+README = (HERE / "README.md").read_text()
9
setuptools.setup(
10
name="pyppeteer_ghost_cursor",
- version="0.1",
11
+ version="0.2.0",
12
description="Pyppeteer implementation of Xetera/ghost-cursor",
13
+ long_description=README,
14
+ long_description_content_type="text/markdown",
15
url="https://github.com/mcolella14/pyppeteer_ghost_cursor",
16
author="mcolella14",
17
+ author_email="[email protected]",
18
+ license="MIT",
19
packages=setuptools.find_packages(),
20
package_data={"pyppeteer_ghost_cursor": ["js/*.js"]},
21
install_requires=["bezier"],
0 commit comments