-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 769 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 769 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
28
from setuptools import setup
setup(
name="snapper",
version="1.0.0",
packages=[
"snapper",
"snapper.data",
"snapper.models",
"snapper.widgets",
],
author="Lucas Sousa",
description="App to take screenshots and add a color background.",
long_description=open("README.md").read(),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: POSIX",
"Programming Language :: Python",
],
install_requires=["pystray==0.19.4", "python-dotenv==1.0.0"],
python_requires=">=3.10.0",
entry_points={
"console_scripts": [
"snapper = snapper.__main__:main",
]
}
)