Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-at committed May 30, 2020
1 parent 5d374bb commit 870ad42
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import setuptools

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


def get_requirements():
with open("requirements.txt") as req_file:
requirements = [
l.strip() for l in req_file.readlines() if len(l.strip())
]
return requirements


setuptools.setup(
name="kyros",
version="0.0.2",
author="loncat",
author_email="[email protected]",
description="A Python wrapper for WhatsApp Web API",
long_description=long_description,
long_description_content_type="text/plain",
url="https://github.com/p4kl0nc4t/kyros",
packages=setuptools.find_packages(),
install_requires=get_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 870ad42

Please sign in to comment.