-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
27 lines (25 loc) · 981 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
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.8.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.7, <4",
install_requires=["textual==0.37.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,
)