Esempio n. 1
0
from distutils2.core import setup

setup(name='CalCalc',
      version='1.0',
      summary='CalCalc Querier for AY250 HW2',
      author='Sean Lubner',
      author_email='*****@*****.**',
      home_page='https://github.com/Phononic/Sean_Lubner_250HWs',
      py_modules=['CalCalc'])
Esempio n. 2
0
from distutils2.core import setup, find_packages

setup(name='flask_auth',
	author='Benjamin Malley',
	license='BSD',
	packages=find_packages())
Esempio n. 3
0
MINIMUM_REQUESTS_VERSION = '2.0.0'

setup(name=PACKAGE,
      version=VERSION,
      description=OFFICIAL_NAME,
      author=AUTHOR,
      author_email=AUTHOR_EMAIL,
      url=GITHUB_SITE,
      download_url=DOWNLOADABLE_ZIP,
      long_description=open('README.rst').read(),
      packages=[PACKAGE],
      license='BSD',
      requires=["python (< 3.0)"],
      #install_requires=['requests>=%s' % MINIMUM_REQUESTS_VERSION],
      classifiers=[
            'Development Status :: 5 - Production/Stable',
            'Environment :: Web Environment',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: BSD License',
            'Operating System :: OS Independent',
            'Programming Language :: Python',
            'Programming Language :: Python :: 2.6',
            'Programming Language :: Python :: 2.7',
            'Topic :: Internet :: WWW/HTTP',
            'Topic :: Software Development :: Libraries',
        ],
      #documentation='http://readthedocs.org/docs/pyral'
    )
        
Esempio n. 4
0
DOWNLOADABLE_ZIP = '%s/%s-%s.zip' % (RALLY_DEVELOPER_DOWNLOAD_FILES, PACKAGE, VERSION)

MINIMUM_REQUESTS_VERSION = '0.8.2'

setup(name=PACKAGE,
      version=VERSION,
      description=OFFICIAL_NAME,
      author='Kip Lehman (Rally Software Development)',
      author_email='*****@*****.**',
      url='%s/help/%s' % (RALLY_DEVELOPER_SITE, PKG_URL_NAME),
      download_url=DOWNLOADABLE_ZIP,
      long_description=open('README.rst').read(),
      packages=[PACKAGE],
      license='BSD',
      requires=["python (< 3.0)"],
      #install_requires=['requests>=%s' % MINIMUM_REQUESTS_VERSION],
      classifiers=[
            'Development Status :: 4 - Beta',
            'Environment :: Web Environment',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: BSD License',
            'Operating System :: OS Independent',
            'Programming Language :: Python',
            'Programming Language :: Python :: 2.6',
            'Topic :: Internet :: WWW/HTTP',
            'Topic :: Software Development :: Libraries',
        ],
      #documentation='http://readthedocs.org/docs/pyral'
    )
        
Esempio n. 5
0
    setup(
        name="pytextseg",
        version='0.2.0',
        license="GNU General Public License (GPL) or Artistic License",
        description='Python module for text segmentation.',
        long_description=open('README', 'r').read(),
        author='Hatuka*nezumi - IKEDA Soji',
        author_email='*****@*****.**',
        url="http://pypi.python.org/pypi/pytextseg/",
        download_url = '',
        platforms=["any"],
        classifiers=[
            "Development Status :: 4 - Beta",
	    "Environment :: Other Environment",
	    "Intended Audience :: Developers",
	    "License :: OSI Approved :: GNU General Public License (GPL)",
	    "License :: OSI Approved :: Artistic License",
	    "Operating System :: OS Independent",
	    "Operating System :: POSIX",
	    "Operating System :: MacOS :: MacOS X",
	    "Operating System :: Microsoft :: Windows",
	    "Programming Language :: Python",
	    "Programming Language :: Python :: 2",
	    "Programming Language :: Python :: 2.3",
	    "Programming Language :: Python :: 2.4",
	    "Programming Language :: Python :: 2.5",
	    "Programming Language :: Python :: 2.6",
	    "Programming Language :: Python :: 2.7",
	    "Programming Language :: Python :: 3",
	    "Programming Language :: Python :: 3.0",
	    "Programming Language :: Python :: 3.1",
	    "Programming Language :: Python :: 3.2",
	    "Programming Language :: Python :: 3.3",
	    "Programming Language :: C",
	    "Topic :: Software Development :: Internationalization",
	    "Topic :: Software Development :: Libraries :: Python Modules",
	    "Topic :: Text Processing :: General",
	    "Topic :: Text Processing :: Linguistic"
	],
        scripts=[],
	packages=['textseg'],
	ext_modules=[
	    Extension(
		'_textseg',
		['textseg.c'],
		**ext_config
	    ),
	    Extension(
		'_textseg_Consts',
		['textseg_Consts.c'],
		**ext_config
	    ),
	],
        libraries=libraries,
        cmdclass={'build_clib': my_build_clib, },
    )
Esempio n. 6
0
from distutils2.core import setup

setup(name="helloworld", version="0.1", packages=["hello"])
Esempio n. 7
0
                                     VERSION)

MINIMUM_REQUESTS_VERSION = '0.8.2'

setup(
    name=PACKAGE,
    version=VERSION,
    description=OFFICIAL_NAME,
    author='Kip Lehman (Rally Software Development)',
    author_email='*****@*****.**',
    url='%s/help/%s' % (RALLY_DEVELOPER_SITE, PKG_URL_NAME),
    download_url=DOWNLOADABLE_ZIP,
    long_description=open('README.rst').read(),
    packages=[PACKAGE],
    license='BSD',
    requires=["python (< 3.0)"],
    #install_requires=['requests>=%s' % MINIMUM_REQUESTS_VERSION],
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.6',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Software Development :: Libraries',
    ],
    #documentation='http://readthedocs.org/docs/pyral'
)
Esempio n. 8
0
from distutils2.core import setup

from ballotbox import meta
from ballotbox.util import dist


setup(
    name=meta.display_name,
    version=meta.version,
    description=meta.description,
    author=meta.author,
    author_email=meta.author_email,
    url=meta.url,
    license=meta.license,
    packages=dist.findPackages(meta.library_name),
    long_description=dist.catReST(
        "docs/PRELUDE.txt",
        "README",
        "docs/INSTALL.txt",
        "docs/USAGE.txt",
        "TODO",
        "docs/HISTORY.txt",
        stop_on_errors=True,
        out=True),
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        ],
    )
Esempio n. 9
0
from distutils2.core import setup

if __name__ == '__main__':
    setup()
Esempio n. 10
0
# multiparthandler is licensed under the LGPL v3

try:
    from distutils2.core import setup
except ImportError:
    from distutils.core import setup

setup(
    name="multiparthandler",
    packages=['multiparthandler', ],
    version="0.1",
    description=("A handler for urllib2/urllib.request that allows "
        "multipart form uploading"),
    author="Kevin Murray",
    author_email="*****@*****.**",
    url="https://github.com/kdmurray91/multiparthandler",
    keywords=["http", "multipart", "post", "urllib2"],
    classifiers=[
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 3",
        "Development Status :: 4 - Beta",
        "Environment :: Other Environment",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Lesser General Public License v3 "
        "(LGPLv3)",
        "Operating System :: OS Independent",
        "Topic :: Software Development :: Libraries :: Python Modules",
    ],
    )
Esempio n. 11
0
from distutils2.core import setup, find_packages

setup(name='flask_auth',
      author='Benjamin Malley',
      license='BSD',
      packages=find_packages())
Esempio n. 12
0
        sdist.initialize_options(self)
        self.dev = 0

    def run(self):
        if self.dev:
            self.distribution.metadata.version += DEV_SUFFIX
        sdist.run(self)

setup_kwargs = {}
if sys.version < '2.6':
    kwargs['scripts'] = 'distutils2/mkpkg.py'

setup (name="Distutils2",
       version=VERSION,
       description="Python Distribution Utilities",
       author="Tarek Ziade",
       author_email="*****@*****.**",
       url="http://www.python.org/sigs/distutils-sig",
       license="PSF",
       long_description=README,
       packages=['distutils2',
                 'distutils2.command',
                 'distutils2.tests',
                 'distutils2._backport'],
       cmdclass={'sdist': sdist_hg, 'install': install_hg},
       package_data={'distutils2._backport': ['sysconfig.cfg']},
       **setup_kwargs
       )


Esempio n. 13
0
from distutils2.core import setup

setup(name='helloworld', version='0.1', packages=['hello'])