PageRenderTime 23ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/scripts/scramble/patches/GeneTrack/setup.py

https://bitbucket.org/cistrome/cistrome-harvard/
Python | 15 lines | 13 code | 2 blank | 0 comment | 3 complexity | 0a45af01116fe50246e6b6c9954d2fcf MD5 | raw file
  1. from os import walk
  2. from os.path import join
  3. from setuptools import setup, find_packages
  4. def walk_files( top ):
  5. for dir, dirs, files in walk( top ):
  6. yield( dir, [ join( dir, f ) for f in files ] )
  7. setup(
  8. name = "GeneTrack",
  9. version = "2.0.0-beta-1",
  10. packages = ['genetrack','genetrack.scripts'],
  11. data_files = [ f for f in walk_files('tests') ],
  12. zip_safe = False
  13. )