PageRenderTime 31ms CodeModel.GetById 16ms app.highlight 9ms RepoModel.GetById 1ms app.codeStats 0ms

/setup.py

https://bitbucket.org/pshilavantar/rfp_madness
Python | 39 lines | 35 code | 0 blank | 4 comment | 0 complexity | 58103e8d81e0138a3855e82494e66f13 MD5 | raw file
 1"""
 2Either setuptools or distribute must be installed in order for
 3this module to run.
 4
 5For development work, run "python setup.py develop" from the
 6top level package directory where this setup.py module resides.
 7"""
 8
 9from setuptools import find_packages, setup
10
11
12setup(
13    name='rfp_madness',
14    version='0.1',
15    #packages=['rfp_madness', 'rfp_madness.kbase', 'rfp_madness.testing_support', 'tests'],
16    url='https://bitbucket.org/bradallen/rfp_madness',
17    license='Tentative...possibly LGPL.',
18    author='Brad Allen',
19    author_email='bradallen137@gmail.com',
20    description=('A Django-based web app (unreleased, still in development) for '
21                'teams who find themselves responding to a lot of incoming RFPs, '
22                'and need a better way to collaborate than taking turns editing '
23                'a bunch of Word and Excel documents.'),
24    packages=find_packages(exclude=["tests"]),
25    zip_safe = False,
26    include_package_data = True,
27    entry_points = {
28        'console_scripts': [
29            'populate_demo_data = rfp_madness.scripts.populate_demo_data:main',
30            ],
31        },
32    install_requires = ['django>=1.4.0',
33                        'pysistence',
34                        'unittest2', # for Python 2.5 and 2.6 compatibility
35                        'ordereddict', # for Python 2.5 and 2.6 compatibility
36                        'factory_boy'
37                        ],
38    tests_require = ['django-discover-runner',],
39)