diff options
author | Leonard Kugis <leonard@kug.is> | 2020-08-21 22:30:37 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2020-08-21 22:30:37 +0200 |
commit | 10df6080647e5904a6c03b497586a554b1985a99 (patch) | |
tree | 44533fc8de9c28c5ef693a4b5ec263ea1db1d12f /setup.py | |
parent | 1932a860f78830bbff6d9c477409b5e0d5b32b9f (diff) |
Curves
Added Linear and Bezier Curves.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..e942c1f --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +import setuptools
+
+with open("README.md", "r") as fh:
+ long_description = fh.read()
+
+setuptools.setup(
+ name="autopy-extended",
+ version="1.0.0",
+ author="Leonard Kugis",
+ author_email="leonard@kug.is",
+ description="Few extensions to autopy, such as advanced mouse movement patterns.",
+ long_description=long_description,
+ long_description_content_type="text/markdown",
+ url="",
+ packages=setuptools.find_packages(),
+ classifiers=[
+ "Programming Language :: Python :: 3",
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: OS Independent",
+ ],
+ python_requires = '>=3.6',
+ install_requires = [
+ "autopy"
+ ],
+ py_modules = [
+ "AutopyExtended/"
+ ],
+ scripts = []
+)
|