-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 loc) · 929 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
24
25
26
27
28
29
30
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "winontop",
version = "0.3",
author = "Jithu R Jacob",
author_email = "[email protected]",
description = ("An easy tool to keep windows on top of others."),
license = "BSD",
keywords = "python windows top winontop windowsontop",
url = "https://github.com/jithurjacob/winontop",
download_url = 'https://github.com/jithurjacob/winontop/tarball/0.3',
packages=['winontop'],
entry_points = {
"console_scripts": ['winontop = winontop.winontop:main']
},
long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
'Operating System :: Microsoft',
'Environment :: Win32 (MS Windows)',
"License :: OSI Approved :: BSD License",
],
)