Setup changes, PyPI, manifest

New version up on PyPI had to make some changes to setup.
master
Anthony Forsberg 2016-12-19 11:41:10 -05:00
parent 587f270e96
commit 97d6817fb0
3 changed files with 4 additions and 12 deletions

View File

@ -1,10 +1,5 @@
include *.md
include *.rst
exclude *.mp3
exclude .gitignore
exclude yacctab.py
exclude lextab.py
include README.rst AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE *.txt
exclude *.mp3 .gitignore yacctab.py lextab.py
global-exclude *.pyc
global-exclude *.DS_STORE

View File

@ -11,7 +11,7 @@ Installation
From PyPI
---------
Coming Soon
pip install bandcamp-downloader
From Source
-----------

View File

@ -4,14 +4,11 @@ from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='bandcamp-downloader',
version='0.0.5',
description='bandcamp-dl downloads albums and tracks from Bandcamp for you',
long_description=long_description,
long_description=open('README.rst').read(),
url='https://github.com/iheanyi/bandcamp-dl',
author='Iheanyi Ekechukwu',
author_email='iekechukwu@gmail.com',