00001 """
00002
00003 Deploy into pythons sys.path in "develop" mode with :
00004 python setup.py develop
00005 (NB setuptools must be present in the target python)
00006
00007 This has advantages :
00008 1) no installation step
00009 2) no need to "use DybPython" in the cmt/requirements ,
00010 python scripts can just directly "import DybPython"
00011
00012
00013 """
00014
00015 from setuptools import setup
00016
00017 setup(
00018 name='DybPython',
00019 version='0.0.1',
00020 author='Simon C Blyth',
00021 author_email = 'blyth@hep1.phys.ntu.edu.tw',
00022 description = 'DybPython utilities ',
00023 license = 'None',
00024 packages = ['DybPython'],
00025 )