mirror of
https://github.com/cooperhammond/irs.git
synced 2025-04-30 15:46:17 +00:00
Fixed bug with installing the package from pip
This commit is contained in:
parent
f154f8b9e4
commit
7453a28ff8
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -1,10 +1,8 @@
|
||||||
# Compiled python modules.
|
# General stuff to ignore.
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
# Setuptools distribution folder.
|
|
||||||
/dist/
|
/dist/
|
||||||
|
|
||||||
# Python egg metadata, regenerated from source files by setuptools.
|
|
||||||
/*.egg-info/
|
/*.egg-info/
|
||||||
|
|
||||||
/build/
|
/build/
|
||||||
|
|
||||||
|
# For easy updating of stuff.
|
||||||
|
update_pypi_and_github.py
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Ingenious Redistribution System
|
# Ingenious Redistribution System
|
||||||
[](http://www.gnu.org/licenses/gpl.html)
|
[](http://www.gnu.org/licenses/gpl.html)
|
||||||
[](https://pypi.python.org/pypi/irs)
|
[](https://pypi.python.org/pypi/irs)
|
||||||
|
|
||||||
<em>Now with working album art!</em>
|
<em>Now with working album art!</em>
|
||||||
|
|
||||||
|
|
5
setup.cfg
Normal file
5
setup.cfg
Normal 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
|
20
setup.py
20
setup.py
|
@ -2,22 +2,20 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='irs',
|
name='irs',
|
||||||
version='0.1',
|
version='1.0.2',
|
||||||
description='A music downloader that just gets metadata.',
|
description='A music downloader that just gets metadata.',
|
||||||
url='http://github.com/kepoorhampond/irs',
|
url='https://github.com/kepoorhampond/irs',
|
||||||
author='Kepoor Hampond',
|
author='Kepoor Hampond',
|
||||||
author_email='kepoorh@gmail.com',
|
author_email='kepoorh@gmail.com',
|
||||||
license='GNU',
|
license='GNU',
|
||||||
packages=['irs'],
|
packages =['irs'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'youtube-dl',
|
'bs4',
|
||||||
'bs4',
|
'mutagen',
|
||||||
'mutagen',
|
'youtube-dl',
|
||||||
'requests',
|
'requests',
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': ['irs = irs.__main__:main'],
|
||||||
'irs = irs.__main__:main'
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue