euscan: drop fixed version dependencies
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
This commit is contained in:
		@@ -11,16 +11,10 @@ import os
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
__author__ = "Corentin Chary (iksaif)"
 | 
					__author__ = "Corentin Chary (iksaif)"
 | 
				
			||||||
__email__ = "corentin.chary@gmail.com"
 | 
					__email__ = "corentin.chary@gmail.com"
 | 
				
			||||||
 | 
					__version__ = "git"
 | 
				
			||||||
__productname__ = "euscan"
 | 
					__productname__ = "euscan"
 | 
				
			||||||
__description__ = "A tool to detect new upstream releases."
 | 
					__description__ = "A tool to detect new upstream releases."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if os.path.exists(os.path.join(os.path.dirname(__file__), "..", ".git")):
 | 
					 | 
				
			||||||
    import git
 | 
					 | 
				
			||||||
    repo = git.Repo(os.path.join(os.path.dirname(__file__)))
 | 
					 | 
				
			||||||
    __version__ = "git-%s" % repo.head.commit
 | 
					 | 
				
			||||||
else:
 | 
					 | 
				
			||||||
    __version__ = "git"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Imports
 | 
					# Imports
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										13
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								setup.py
									
									
									
									
									
								
							@@ -70,7 +70,7 @@ packages = [
 | 
				
			|||||||
]
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
tests_require = [
 | 
					tests_require = [
 | 
				
			||||||
  'factory-boy==1.1.3',
 | 
					  'factory-boy>=1.1.3',
 | 
				
			||||||
]
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
setup(
 | 
					setup(
 | 
				
			||||||
@@ -88,10 +88,13 @@ setup(
 | 
				
			|||||||
        ('master' if __version__ == '9999' else ('euscan-%s' % __version__))
 | 
					        ('master' if __version__ == '9999' else ('euscan-%s' % __version__))
 | 
				
			||||||
    ),
 | 
					    ),
 | 
				
			||||||
    install_requires=[
 | 
					    install_requires=[
 | 
				
			||||||
        'Django==1.4', 'django-annoying==0.7.6', 'South==0.7.4',
 | 
					        # Command line utility
 | 
				
			||||||
        'django-piston==0.2.3', 'BeautifulSoup==3.2.1', 'matplotlib==1.1.0',
 | 
					        'BeautifulSoup>=3.2.1',
 | 
				
			||||||
        'django-celery==3.0.1', 'django-registration==0.8',
 | 
					        # Web interface
 | 
				
			||||||
        'python-ldap==2.4.10', 'django-auth-ldap==1.1',
 | 
					        'Django>=1.4', 'django-annoying>=0.7.6', 'South>=0.7',
 | 
				
			||||||
 | 
					        'django-piston>=0.2.3',  'matplotlib>=1.1.0',
 | 
				
			||||||
 | 
					        'django-celery>=3.0.1', 'django-registration>=0.8',
 | 
				
			||||||
 | 
					        'python-ldap>=2.4.10', 'django-auth-ldap>=1.1',
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    package_dir={'': 'pym'},
 | 
					    package_dir={'': 'pym'},
 | 
				
			||||||
    packages=packages,
 | 
					    packages=packages,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user