-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 980 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 980 Bytes
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
from pathlib import Path
from setuptools import setup
# Read the long description from README.md
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="Notesh",
version="0.9.0",
description="NoteSH: A fully functional sticky notes App in your Terminal!",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/Cvaniak/Notesh",
author="Cvaniak",
author_email="igna.cwaniak@gmail.com",
packages=["notesh", "notesh.drawables", "notesh.widgets"],
python_requires=">=3.8, <4",
install_requires=["textual==5.0.1", "tomli==2.0.1", "hoptex==0.2.0"],
entry_points={"console_scripts": ["notesh=notesh.command_line:run"]},
package_data={
"notesh": ["*.css", "notesh/*.css", "default_bindings.toml"]
},
data_files=[("share/applications", ["Notesh.desktop"])],
include_package_data=True,
zip_safe=False,
)