mirror of
				https://github.com/cooperhammond/irs.git
				synced 2025-11-03 18:14:51 +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
 | 
			
		||||
 | 
			
		||||
# 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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
# Ingenious Redistribution System
 | 
			
		||||
[](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>
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										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(
 | 
			
		||||
    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'],
 | 
			
		||||
    },
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue