Skip to content

Commit

Permalink
added setup file for installation
Browse files Browse the repository at this point in the history
  • Loading branch information
adisakshya authored Mar 8, 2019
1 parent bc1671d commit ef8347f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions bin/install_able-python-logger-scripts/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="keylogger",
version="1.0.0",
author="Adisakshya Chauhan",
author_email="adisakshya98@gmail.com",
description="An opensource, key stroke logging application for windows, also capable of capturing mouse window clicks.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adisakshya/keylogger",
packages=setuptools.find_packages(),
scripts=['bin/keylogger-windows.py','bin/mouselogger-windows.py'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit ef8347f

Please sign in to comment.