forked from jithurjacob/Windows-10-Toast-Notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (40 loc) · 1.29 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
48
from operator import attrgetter
from os import path
from pip.req import parse_requirements
from setuptools import setup
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
def from_here(relative_path):
return path.join(path.dirname(__file__), relative_path)
requirements_txt = list(map(str, map(
attrgetter("req"),
parse_requirements(from_here("requirements.txt"), session="")
)))
setup(
name="win10toast",
version="0.9",
install_requires=requirements_txt,
packages=["win10toast"],
license="BSD",
url="https://github.com/jithurjacob/Windows-10-Toast-Notifications",
download_url = 'https://github.com/jithurjacob/Windows-10-Toast-Notifications/tarball/0.9',
description=(
"An easy-to-use Python library for displaying "
"Windows 10 Toast Notifications"
),
include_package_data=True,
package_data={
'': ['*.txt'],
'win10toast': ['data/*.ico'],
},
long_description=read('README.md'),
author="Jithu R Jacob",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
'Operating System :: Microsoft',
'Environment :: Win32 (MS Windows)',
"License :: OSI Approved :: MIT License",
],
)