forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			688 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			688 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
import ast
 | 
						|
import re
 | 
						|
 | 
						|
from setuptools import find_packages, setup
 | 
						|
 | 
						|
 | 
						|
_version_re = re.compile(r'__version__\s+=\s+(.*)')
 | 
						|
 | 
						|
 | 
						|
with open('atomicwrites/__init__.py', 'rb') as f:
 | 
						|
    version = str(ast.literal_eval(_version_re.search(
 | 
						|
        f.read().decode('utf-8')).group(1)))
 | 
						|
 | 
						|
setup(
 | 
						|
    name='atomicwrites',
 | 
						|
    version=version,
 | 
						|
    author='Markus Unterwaditzer',
 | 
						|
    author_email='markus@unterwaditzer.net',
 | 
						|
    url='https://github.com/untitaker/python-atomicwrites',
 | 
						|
    description='Atomic file writes.',
 | 
						|
    license='MIT',
 | 
						|
    long_description=open('README.rst').read(),
 | 
						|
    packages=find_packages(exclude=['tests.*', 'tests']),
 | 
						|
    include_package_data=True,
 | 
						|
)
 |