Skip to content

Commit

Permalink
Update for github.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgasaway committed Mar 13, 2021
1 parent 87c8746 commit a86b289
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .hgignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ syntax: regexp
\.pyc$
^build$
^dist$
^copypl.egg-info$
\.egg-info$
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
2019-01-13, copypl v1.0.0
* Initial release.

2021-03-13, copypl v1.0.1
* Move to github and repackage.
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ folder will get copied repeatedly.
Installation
============

.. warning::
Warning
-------

Some Linux distributions discourage installation of system-level python
packages using ``pip`` or ``setup.py install``, due to collisions with the
Expand All @@ -87,14 +88,14 @@ Installing from source
----------------------

Either download a release tarball from the
`Downloads <https://bitbucket.org/dgasaway/copypl/downloads/>`_ page, and
`Releases <https://github.com/dgasaway/copypl/releases>`_ page, and
unpack::

$ tar zxvf copypl-1.0.0.tar.gz

Or get the latest source from the Mercurial repository::
Or get the latest source from the git repository::

$ hg clone https://bitbucket.org/dgasaway/copypl
$ git clone https://bitbucket.org/dgasaway/copypl

If you have access to install software in the system packages, then it can be
installed as administrator::
Expand Down
2 changes: 1 addition & 1 deletion copypl/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (1, 0, 0)
__version_info__ = (1, 0, 1)
__version__ = '.'.join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion copypl/copypl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# copypl - Copies files referenced by an m3u/m3u8/pls playlist.
# Copyright (C) 2019 David Gasaway
# https://bitbucket.org/dgasaway/copypl
# https://github.com/dgasaway/copypl

# This program is free software; you can redistribute it and/or modify it under the terms of the GNU
# General Public License as published by the Free Software Foundation; either version 2 of the
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
long_description_content_type='text/x-rst',
author='David Gasaway',
author_email='dave@gasaway.org',
url='https://bitbucket.org/dgasaway/copypl',
download_url='https://bitbucket.org/dgasaway/copypl/downloads/',
url='https://github.com/dgasaway/copypl',
download_url='https://github.com/dgasaway/copypl/releases',
license='GNU GPL v2',
py_modules=['copypl/copypl', 'copypl/_version'],
entry_points={
Expand Down

0 comments on commit a86b289

Please sign in to comment.