Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
added requirements.txt and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
firelilith committed Jul 8, 2021
1 parent 4f8b12a commit 7680015
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
requests~=2.25.1
tenacity~=7.0.0
setuptools~=49.2.1
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup

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

setup(
name="pykanka",
version="0.1.0",
description="A wrapper for the kanka.io API, currently providing basic get/patch/post functionality for most entity classes",
author="Spectre",
packages=["pykanka"],
install_requires=["requests", "tenacity", "json", "typing"]
)

0 comments on commit 7680015

Please sign in to comment.