-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
47 lines (43 loc) · 1.22 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
from setuptools import find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="notify-send",
version="1.1.2",
description="notify-send notify.",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="alert inform informer notify notify-send",
platforms=["Linux", "Windows"],
author="Andre P. Santos",
author_email="[email protected]",
license="MIT",
packages=find_packages(exclude=["test*"]),
python_requires=">=3.6",
install_requires=[
"pypiwin32==223; sys_platform == 'win32'",
"pywin32==302; sys_platform == 'win32'",
"pycairo>=1.18.1; sys_platform == 'linux'",
"PyGObject>=3.34.0; sys_platform == 'linux'",
],
extras_require={
"dev": [
"pytest",
"flake8"
],
"build": [
"build",
"twine"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
],
project_urls={
"Source": "https://github.com/andreztz/notify-send/",
"Documentation": "https://andreztz.github.io/notify-send/",
},
)