forked from mirrors/gecko-dev
		
	 74845297db
			
		
	
	
		74845297db
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D8624 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import re
 | |
| from setuptools import setup, find_packages
 | |
| 
 | |
| 
 | |
| project_dir = os.path.abspath(os.path.dirname(__file__))
 | |
| 
 | |
| with open(os.path.join(project_dir, 'version.txt')) as f:
 | |
|     version = f.read().rstrip()
 | |
| 
 | |
| # We use the .in file because a library shouldn't pin versions, it breaks consumers' updates.
 | |
| # We allow commented lines in this file
 | |
| with open(os.path.join(project_dir, 'requirements.txt.in')) as f:
 | |
|     requirements_raw = f.readlines()
 | |
| 
 | |
| requirements_without_comments = [
 | |
|     line for line in requirements_raw if line and not line.startswith('#')
 | |
| ]
 | |
| 
 | |
| setup(
 | |
|     name='mozilla-version',
 | |
|     version=version,
 | |
|     description="""Process Firefox versions numbers. Tells whether they are valid or not, whether \
 | |
| they are nightlies or regular releases, whether this version precedes that other.
 | |
|     """,
 | |
|     author='Mozilla Release Engineering',
 | |
|     author_email='release+python@mozilla.com',
 | |
|     url='https://github.com/mozilla-releng/mozilla-version',
 | |
|     packages=find_packages(),
 | |
|     include_package_data=True,
 | |
|     zip_safe=False,
 | |
|     license='MPL2',
 | |
|     install_requires=requirements_without_comments,
 | |
|     classifiers=(
 | |
|         'Programming Language :: Python :: 2.7',
 | |
|         'Programming Language :: Python :: 3',
 | |
|     ),
 | |
| )
 |