Skip to content

Commit 44b593d

Browse files
committed
publish
1 parent 76c822c commit 44b593d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

setup.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1+
import pathlib
12
import setuptools
23

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()
39
setuptools.setup(
410
name="pyppeteer_ghost_cursor",
5-
version="0.1",
11+
version="0.2.0",
612
description="Pyppeteer implementation of Xetera/ghost-cursor",
13+
long_description=README,
14+
long_description_content_type="text/markdown",
715
url="https://github.com/mcolella14/pyppeteer_ghost_cursor",
816
author="mcolella14",
17+
author_email="[email protected]",
18+
license="MIT",
919
packages=setuptools.find_packages(),
1020
package_data={"pyppeteer_ghost_cursor": ["js/*.js"]},
1121
install_requires=["bezier"],

0 commit comments

Comments
 (0)