-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 845 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
import setuptools
__author__ = "Aashish Sharma"
__license__ = "GPL-3.0"
__email__ = "[email protected]"
with open("README.md", "r") as rmd:
long_description = rmd.read()
setuptools.setup(name="notifylinux",
version="0.0.8",
author="Aashish Sharma",
author_email="[email protected]",
description="A python package to send desktop notification in linux",
long_description=long_description,
url="https://github.com/aasis2520c/notifylinux",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: GPL-3.0 license",
"Operating System :: Linux"
]
)