mirror of
				https://github.com/jtesta/ssh-audit.git
				synced 2025-11-04 11:12:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			363 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			363 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all:
 | 
						|
	cp ../ssh-audit.py sshaudit/sshaudit.py
 | 
						|
	cp ../LICENSE sshaudit/LICENSE
 | 
						|
	cp ../README.md sshaudit/README.md
 | 
						|
	python3 setup.py sdist bdist_wheel
 | 
						|
 | 
						|
uploadtest:
 | 
						|
	twine upload --repository-url https://test.pypi.org/legacy/ dist/*
 | 
						|
 | 
						|
uploadprod:
 | 
						|
	twine upload dist/*
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf build/ dist/ *.egg-info/ sshaudit/sshaudit.py sshaudit/LICENSE sshaudit/README.md
 |