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

Refactored setup.py #25

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,31 @@

VERSION = "0.1.1"
DESCRIPTION = "A Python API wrapper for the social media app Lapse."
LONG_DESCRIPTION = "An unofficial API wrapper for the social media app Lapse."

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

with open("requirements.txt", 'r', encoding="utf-16") as f:
requirements = [i.strip() for i in f.readlines()]

with open("LICENSE", 'r') as f:
LICENSE = f.read()

setup(name='lapsepy',
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
license=LICENSE,
author="Quintin Dunn",
author_email="[email protected]",
url="https://github.com/quintindunn/lapsepy",
packages=find_packages(),
keywords=['social media', 'lapsepy', 'api', 'api wrapper'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3',
],
install_requires=requirements
)