-
Notifications
You must be signed in to change notification settings - Fork 7
/
release.py
50 lines (42 loc) · 1.64 KB
/
release.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
49
50
from __future__ import print_function, unicode_literals, absolute_import
name = 'appopener'
branch = ''
version = '1.7'
description = "Open/Close any application by it's name."
a = open("AppOpener/README.md",encoding="utf8")
read = a.read()
long_description = read
license = 'MIT'
authors = {'Athrv' : ('Athrv Chaulkar','[email protected]'),
'athrvvvv' : ('athrvvvv', '[email protected]')}
url = 'https://github.com/athrvvvv/AppOpener/tree/module'
download_url = 'https://pypi.python.org/pypi/AppOpener'
Documentation = 'https://appopener.readthedocs.io/en/latest/'
Source = 'https://github.com/athrvvvv/AppOpener/tree/module'
Tracker = 'https://github.com/athrvvvv/AppOpener/issues'
platforms = ['Windows 10',
'Windows 8.1',
'Windows 11']
keywords = ['appopener',
'open apps',
'App Ids',
'automation',
'close apps']
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
install_requires=[
"wheel",
"psutil",
"pywin32",
"regex"
]