33# Copyright 2009-2011 Ram Rachum.
44# This program is distributed under the LGPL2.1 license.
55
6- '''Setuptools setup file for garlicsim .'''
6+ '''Setuptools setup file for `python_toolbox` .'''
77
88import os
99import setuptools
2222### Finished ensuring correct Python version. #################################
2323
2424
25- def get_garlicsim_packages ():
25+ def get_python_toolbox_packages ():
2626 '''
27- Get all the packages in `garlicsim `.
27+ Get all the packages in `python_toolbox `.
2828
2929 Returns something like:
3030
31- ['garlicsim ', 'garlicsim.misc ',
31+ ['python_toolbox ', 'python_toolbox.caching ',
3232 'python_toolbox.nifty_collections', ... ]
3333
3434 '''
35- return ['garlicsim .' + p for p in
36- setuptools .find_packages ('./garlicsim ' )] + \
37- ['garlicsim ' ]
35+ return ['python_toolbox .' + p for p in
36+ setuptools .find_packages ('./python_toolbox ' )] + \
37+ ['python_toolbox ' ]
3838
3939
40- def get_test_garlicsim_packages ():
40+ def get_test_python_toolbox_packages ():
4141 '''
42- Get all the packages in `test_garlicsim `.
42+ Get all the packages in `test_python_toolbox `.
4343
4444 Returns something like:
4545
46- ['test_garlicsim ', 'test_garlicsim.test_misc ',
47- 'test_garlicsim.test_general_misc .test_nifty_collections', ... ]
46+ ['test_python_toolbox ', 'test_python_toolbox.test_caching ',
47+ 'test_python_toolbox .test_nifty_collections', ... ]
4848
4949 '''
50- return ['test_garlicsim .' + p for p in
51- setuptools .find_packages ('./test_garlicsim ' )] + \
52- ['test_garlicsim ' ]
50+ return ['test_python_toolbox .' + p for p in
51+ setuptools .find_packages ('./test_python_toolbox ' )] + \
52+ ['test_python_toolbox ' ]
5353
5454
5555def get_packages ():
5656 '''
57- Get all the packages in `garlicsim ` and `test_garlicsim `.
57+ Get all the packages in `python_toolbox ` and `test_python_toolbox `.
5858
5959 Returns something like:
6060
61- ['test_garlicsim ', 'garlicsim ', 'garlicsim.misc ',
62- 'test_garlicsim.test_general_misc .test_nifty_collections', ... ]
61+ ['test_python_toolbox ', 'python_toolbox ', 'python_toolbox.caching ',
62+ 'test_python_toolbox .test_nifty_collections', ... ]
6363
6464 '''
65- return get_garlicsim_packages () + get_test_garlicsim_packages ()
65+ return get_python_toolbox_packages () + get_test_python_toolbox_packages ()
6666
6767
6868my_long_description = \
6969'''\
70+ blocktododoc
7071GarlicSim is a platform for writing, running and analyzing simulations.
7172
7273It can handle any kind of simulation: Physics, game theory, epidemic spread,
@@ -89,19 +90,18 @@ def get_packages():
8990
9091
9192setuptools .setup (
92- name = 'garlicsim ' ,
93- version = '0.6.3 ' ,
93+ name = 'python_toolbox ' ,
94+ version = '0.0.1 ' ,
9495 requires = ['distribute' ],
9596 test_suite = 'nose.collector' ,
9697 install_requires = ['distribute' ],
9798 tests_require = ['nose>=1.0.0' ],
9899 description = 'Pythonic framework for working with simulations' ,
99100 author = 'Ram Rachum' ,
100101 author_email = 'ram@rachum.com' ,
101- url = 'http://garlicsim .org' ,
102+ url = 'http://python_toolbox .org' ,
102103 packages = get_packages (),
103- scripts = ['garlicsim/scripts/start_simpack.py' ,
104- 'test_garlicsim/scripts/_test_garlicsim.py' ],
104+ scripts = ['test_python_toolbox/scripts/_test_python_toolbox.py' ],
105105 license = 'LGPL v2.1' ,
106106 long_description = my_long_description ,
107107 classifiers = my_classifiers ,
0 commit comments