~dooferlad/offspring/offspring_add_bzr_ssh

1 by Cody A.W. Somerville
Initial commit to open source branch.
1
from setuptools import setup, find_packages
2
3
setup(
4
    name="offspring",
5
    version="0.0.1",
6
    url='https://launchpad.net/offspring',
7
    license='AGPLv3',
8
    description="Offspring Image Build System",
9
    author='Cody A.W. Somerville',
10
    package_dir={'': 'lib'},
11
    packages=find_packages('lib'),
12
    scripts = [
13
        'lib/offspring/slave/bin/offspring-slave',
14
        'lib/offspring/master/bin/offspring-master',
15
        'lib/offspring/web/bin/offspring-web',
16
    ],
17
    entry_points = {
18
        'console_scripts': [
11 by Cody A.W. Somerville
Actually update setup.py to have cron scripts sinstalled to scripts/cron/ instead of cron/; also removed .py suffix from script names.
19
            '../scripts/cron/build-active-projects = offspring.master:build_active_projects',
20
            '../scripts/cron/process-pending-build-orders = offspring.master:process_pending_build_orders',
21
            '../scripts/cron/publish-pending-releases = offspring.master.scripts.publish_pending_releases:run',
22
            '../scripts/cron/sync-launchpad-project-milestones = offspring.master.scripts.sync_launchpad_project_milestones:run',
1 by Cody A.W. Somerville
Initial commit to open source branch.
23
        ],
24
    },
25
)