Fixed bug with installing the package from pip

This commit is contained in:
Kepoor Hampond 2016-12-10 22:56:50 -08:00
parent f154f8b9e4
commit 7453a28ff8
4 changed files with 19 additions and 18 deletions

10
.gitignore vendored
View file

@ -1,10 +1,8 @@
# Compiled python modules.
# General stuff to ignore.
*.pyc
# Setuptools distribution folder.
/dist/
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info/
/build/
# For easy updating of stuff.
update_pypi_and_github.py

View file

@ -1,6 +1,6 @@
# Ingenious Redistribution System
[![License: GNU](https://img.shields.io/badge/License-GNU-yellow.svg)](http://www.gnu.org/licenses/gpl.html)
[![PyPI](https://img.shields.io/badge/Python-3.5-blue.svg)](https://pypi.python.org/pypi/irs)
[![PyPI](https://img.shields.io/badge/PyPi-Python_3.5-blue.svg)](https://pypi.python.org/pypi/irs)
<em>Now with working album art!</em>

5
setup.cfg Normal file
View file

@ -0,0 +1,5 @@
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1

View file

@ -2,22 +2,20 @@ from setuptools import setup
setup(
name='irs',
version='0.1',
version='1.0.2',
description='A music downloader that just gets metadata.',
url='http://github.com/kepoorhampond/irs',
url='https://github.com/kepoorhampond/irs',
author='Kepoor Hampond',
author_email='kepoorh@gmail.com',
license='GNU',
packages=['irs'],
packages =['irs'],
install_requires=[
'youtube-dl',
'bs4',
'mutagen',
'requests',
'bs4',
'mutagen',
'youtube-dl',
'requests',
],
entry_points={
'console_scripts': [
'irs = irs.__main__:main'
]
entry_points = {
'console_scripts': ['irs = irs.__main__:main'],
},
)