Skip to content

Commit

Permalink
Add setup script and requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrance committed Feb 27, 2016
1 parent 1d72d05 commit e9f7e26
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
beautifulsoup4
requests
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup
from os import path

setup(name="SkPy",
description="An unofficial Python library for interacting with the Skype HTTP API.",
long_description=open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r").read(),
url="https://github.com/OllieTerrance/SkPy",
author="Ollie Terrance",
packages=["skpy"],
install_requires=["beautifulsoup4", "requests"])

0 comments on commit e9f7e26

Please sign in to comment.