forked from suurjaak/InputScope
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (52 loc) · 1.97 KB
/
setup.py
File metadata and controls
62 lines (52 loc) · 1.97 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
"""
Setup.py for InputScope.
@author Erki Suurjaak
@created 29.04.2015
@modified 29.04.2015
------------------------------------------------------------------------------
"""
import glob
import os
import setuptools
from inputscope import conf
setuptools.setup(
name=conf.Title,
version=conf.Version,
description="Mouse and keyboard input heatmap visualizer and statistics",
url="https://github.com/suurjaak/InputScope",
author="Erki Suurjaak",
author_email="erki@lap.ee",
license="MIT",
platforms=["any"],
keywords="mouse keyboard logging heatmap",
install_requires=["bottle", "PyUserInput"],
entry_points={"gui_scripts": ["inputscope = inputscope.main:main"],
"console_scripts": ["inputscope-listener = inputscope.listener:main",
"inputscope-webui = inputscope.webui:main"]},
packages=setuptools.find_packages(),
include_package_data=True, # Use MANIFEST.in for data files
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Desktop Environment",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
long_description=
"""Mouse and keyboard input heatmap visualizer and statistics.
Three components:
- main - wxPython desktop tray program, runs listener and webui
- listener - logs mouse and keyboard input
- webui - web frontend for statistics and heatmaps
Listener and web-UI components can be run separately, or launched from main.
Data is kept in an SQLite database.
""",
)