You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
312 B

  1. build:
  2. make -C libarchive
  3. test:
  4. python tests.py
  5. verify:
  6. pyflakes libarchive
  7. pep8 --exclude=migrations --ignore=E501,E225 libarchive
  8. install:
  9. python setup.py install
  10. wheel:
  11. pip wheel --wheel-dir dist/ .
  12. publish:
  13. python setup.py register
  14. python setup.py sdist upload
  15. clean:
  16. make -C libarchive clean