Skip to content

Commit

Permalink
Increment version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdelorenzo committed Dec 12, 2020
1 parent 284af95 commit 559a93f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,32 @@
from setuptools import setup
from pathlib import Path

requirements = \

REQS = \
Path('requirements.txt') \
.read_text() \
.split('\n')
readme = Path('README.md').read_text()

REQS = [
req
for req in REQS
if not req.strip().startswith('#')
]

README = Path('README.md').read_text()


setup(
name="mpris_server",
version="0.2.14",
description="Publish a MediaPlayer2 MPRIS device to D-BUS.",
long_description=readme,
version="0.2.16",
description="Publish a MediaPlayer2 MPRIS device to D-Bus.",
long_description=README,
long_description_content_type="text/markdown",
url="https://alexdelorenzo.dev",
author="Alex DeLorenzo",
license="AGPL-3.0",
packages=['mpris_server'],
zip_safe=True,
install_requires=requirements,
install_requires=REQS,
python_requires='>=3.6',
)

0 comments on commit 559a93f

Please sign in to comment.