-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (28 loc) · 887 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from pathlib import Path
from setuptools import setup
readme_file = Path(__file__).parent / "README.md"
with readme_file.open("r") as f:
text = f.read()
setup(
name="CursorCreate",
version="1.4.0",
packages=["CursorCreate", "CursorCreate.gui", "CursorCreate.lib"],
url="https://github.com/isaacrobinson2000/CursorCreate",
license="GPLv3",
author="Isaac Robinson",
download_url="https://github.com/isaacrobinson2000/CursorCreate/archive/v1.3.1.tar.gz",
author_email="[email protected]",
description="A Multi-platform Cursor Theme Building Program",
long_description=text,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"CursorCreate = CursorCreate.cursorcreate:main"
],
},
install_requires=[
"PySide6",
"Pillow",
"numpy"
]
)