src/r/e/reporter-lib-HEAD/packages/django-celery/setup.py reporter-lib(Download)
import platform
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
import djcelery as distmeta
class RunTests(Command):
src/p/y/PyTAPS-1.0rc2/setup.py PyTAPS(Download)
import ez_setup ez_setup.use_setuptools() from setuptools import setup, Command, Extension, Feature from setuptools import Distribution as _Distribution from distutils.errors import DistutilsOptionError from distutils.command.build_ext import build_ext import re import os class ITAPSCommand(Command):
class TestCommand(Command):
description = 'run unit tests'
user_options = [
('test-suites=','S',"Test suite to run (e.g. 'test.imesh')"),
]
@staticmethod
class DocCommand(Command):
description = 'build documentation'
user_options = [
('builder=', 'b', 'documentation builder'),
('target=', 't', 'target directory'),
]
class PerfCommand(Command):
description = 'build/execute performance tests'
user_options = [
('file=', 'F', 'file or directory containing test file(s)'),
('count=', 'c', 'number of times to test'),
]
class PerfRunCommand(Command):
description = 'execute performance tests'
user_options = [
('file=', 'F', 'file or directory containing test file(s)'),
('count=', 'c', 'number of times to test'),
]
src/r/e/reporter-lib-HEAD/packages/celery/setup.py reporter-lib(Download)
import platform
try:
from setuptools import setup, find_packages, Command
from setuptools.command.test import test as TestCommand
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
src/s/m/smisk-HEAD/setup.py smisk(Download)
import sys, os, time, platform, re, subprocess from setuptools import Extension as _Extension, Distribution, Command from pkg_resources import parse_version from distutils import log from subprocess import Popen, PIPE
class sphinx_build(Command):
description = 'build documentation using Sphinx if available'
user_options = [
('builder=', 'b', 'builder to use; default is html'),
('all', 'a', 'write all files; default is to only write new and changed files'),
('reload-env', 'E', "don't use a saved environment, always read all files"),
('source-dir=', 's', 'path where sources are read from (default: docs/source)'),
class debian(Command):
description = 'build debian packages'
user_options = [
('upload', 'u', 'upload resulting package using dupload'),
('binary-only', 'b', 'indicates that no source files are to be built and/or distributed'),
('source-only', 'S', 'specifies that only the source should be uploaded and no binary '\
'packages need to be made'),
src/p/y/pyes-HEAD/setup.py pyes(Download)
import platform
try:
from setuptools import setup, find_packages, Command
from setuptools.command.test import test as TestCommand
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
src/d/u/durian-0.1.0/setup.py durian(Download)
import os
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
import durian
class RunTests(Command):
src/d/j/django-celery-email-0.1.1/setup.py django-celery-email(Download)
import platform
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
import djcelery_email as distmeta
class RunTests(Command):
src/d/j/django-celery-2.0.3/setup.py django-celery(Download)
import platform
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
import djcelery as distmeta
class RunTests(Command):
src/s/m/smisk-1.1.6/setup.py smisk(Download)
import sys, os, time, platform, re, subprocess from setuptools import Extension as _Extension, Distribution, Command from pkg_resources import parse_version from distutils import log from subprocess import Popen, PIPE
class sphinx_build(Command):
description = 'build documentation using Sphinx if available'
user_options = [
('builder=', 'b', 'builder to use; default is html'),
('all', 'a', 'write all files; default is to only write new and changed files'),
('reload-env', 'E', "don't use a saved environment, always read all files"),
('source-dir=', 's', 'path where sources are read from (default: docs/source)'),
class debian(Command):
description = 'build debian packages'
user_options = [
('upload', 'u', 'upload resulting package using dupload'),
('binary-only', 'b', 'indicates that no source files are to be built and/or distributed'),
('source-only', 'S', 'specifies that only the source should be uploaded and no binary '\
'packages need to be made'),
src/p/y/pypol-HEAD/setup.py pypol(Download)
from setuptools import find_packages, setup, Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next