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 #33 from quintindunn/setup-fix
Browse files Browse the repository at this point in the history
Fixed setup.py for PyPi
  • Loading branch information
quintindunn authored Oct 28, 2023
2 parents 24fdba4 + 0599159 commit 319d8bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![LapsePy](./icon.png)
![LapsePy](https://github.com/quintindunn/lapsepy/blob/main/icon.png?raw=true)
<div align = "center">
<img src = "https://img.shields.io/pypi/v/lapsepy?label=PYPI%20Version">
<img src = "https://img.shields.io/pypi/l/lapsepy">
Expand Down
2 changes: 1 addition & 1 deletion lapsepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Date: 10/22/23
"""

__version__ = '0.2.0'
__version__ = '0.2.1'

from .journal import Journal
from .auth.refresher import refresh
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.2.0"
VERSION = "0.2.1"
DESCRIPTION = "A Python API wrapper for the social media app Lapse."

with open("README.md", 'r') as f:
Expand All @@ -9,8 +9,7 @@
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()
LICENSE = "MIT"

setup(name='lapsepy',
version=VERSION,
Expand Down

0 comments on commit 319d8bf

Please sign in to comment.