This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from quintindunn/setup-formatting
Refactored setup.py
- Loading branch information
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
) |