forked from mirrors/gecko-dev
		
	 75f57cf70e
			
		
	
	
		75f57cf70e
		
	
	
	
	
		
			
			Published a new tidy after config file fixes landed, as requested in https://github.com/servo/servo/issues/10636#issuecomment-210658297. This commit makes the repo match what I published, is all. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because **I changed one character in a string. If this breaks stuff, we're !#@$#@!$'d.** <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: c4f34e9019e8324440d46a51e3df3bd150507199
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright 2013 The Servo Project Developers. See the COPYRIGHT
 | |
| # file at the top-level directory of this distribution.
 | |
| #
 | |
| # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
 | |
| # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
 | |
| # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 | |
| # option. This file may not be copied, modified, or distributed
 | |
| # except according to those terms.
 | |
| 
 | |
| import os
 | |
| from setuptools import setup, find_packages
 | |
| 
 | |
| 
 | |
| VERSION = '0.2.0'
 | |
| 
 | |
| install_requires = [
 | |
|     "flake8==2.4.1",
 | |
|     "toml==0.9.1",
 | |
|     "colorama==0.3.7",
 | |
| ]
 | |
| 
 | |
| here = os.path.dirname(os.path.abspath(__file__))
 | |
| # get documentation from the README and HISTORY
 | |
| try:
 | |
|     with open(os.path.join(here, 'README.rst')) as doc:
 | |
|         readme = doc.read()
 | |
| except:
 | |
|     readme = ''
 | |
| 
 | |
| try:
 | |
|     with open(os.path.join(here, 'HISTORY.rst')) as doc:
 | |
|         history = doc.read()
 | |
| except:
 | |
|     history = ''
 | |
| 
 | |
| long_description = readme + '\n\n' + history
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     setup(
 | |
|         name='servo_tidy',
 | |
|         version=VERSION,
 | |
|         description='The servo-tidy is used to check licenses, '
 | |
|                     'line lengths, whitespace, flake8 on Python files, lock file versions, and more.',
 | |
|         long_description=long_description,
 | |
|         keywords='mozilla servo tidy ',
 | |
|         author='The Servo Project Developers',
 | |
|         author_email='dev-servo@lists.mozilla.org',
 | |
|         url='https://github.com/servo/servo',
 | |
|         packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
 | |
|         package_data={},
 | |
|         install_requires=install_requires,
 | |
|         zip_safe=False,
 | |
|         entry_points={
 | |
|             'console_scripts': [
 | |
|                 'servo-tidy=servo_tidy.tidy:scan',
 | |
|             ],
 | |
|         },
 | |
|     )
 |