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

Commit

Permalink
Merge pull request #25 from quintindunn/setup-formatting
Browse files Browse the repository at this point in the history
Refactored setup.py
  • Loading branch information
quintindunn authored Oct 27, 2023
2 parents e261f61 + c8838fb commit 88bb1b3
Showing 1 changed file with 10 additions and 4 deletions.
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
)

0 comments on commit 88bb1b3

Please sign in to comment.