commit
stringlengths
40
40
subject
stringlengths
4
1.73k
repos
stringlengths
5
127k
old_file
stringlengths
2
751
new_file
stringlengths
2
751
new_contents
stringlengths
1
8.98k
old_contents
stringlengths
0
6.59k
license
stringclasses
13 values
lang
stringclasses
23 values
f6ba532144d94c4345bb18a9faef1c4d8b9c5376
update tagline
LBenzahia/cltk,kylepjohnson/cltk,diyclassics/cltk,TylerKirby/cltk,eamonnbell/cltk,cltk/cltk,D-K-E/cltk,TylerKirby/cltk,coderbhupendra/cltk,mbevila/cltk,marpozzi/cltk,LBenzahia/cltk
setup.py
setup.py
"""Config for PyPI.""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: Chinese (Traditional)', 'Natural Language :: English', 'Natural Language :: Greek', 'Natural Language :: Latin', 'Operating System :: OS Independent', 'Operating System :: POSIX', 'Programming Language :: Python :: 3.4', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Text Processing', 'Topic :: Text Processing :: General', 'Topic :: Text Processing :: Linguistic', 'Topic :: Utilities', ], description='NLP for the ancient world.', install_requires=['nltk', 'gitpython'], keywords=['nlp', 'nltk', 'greek', 'latin'], license='MIT', long_description="The Classical Language Toolkit (CLTK) is a framework for natural language processing for Classical languages.", # pylint: disable=C0301 name='cltk', packages=find_packages(), url='https://github.com/kylepjohnson/cltk', version='0.0.1.21', zip_safe=True, test_suite='cltk.tests.test_cltk', )
"""Config for PyPI.""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: Chinese (Traditional)', 'Natural Language :: English', 'Natural Language :: Greek', 'Natural Language :: Latin', 'Operating System :: OS Independent', 'Operating System :: POSIX', 'Programming Language :: Python :: 3.4', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Text Processing', 'Topic :: Text Processing :: General', 'Topic :: Text Processing :: Linguistic', 'Topic :: Utilities', ], description='NLP support for Classical languages.', install_requires=['nltk', 'gitpython'], keywords=['nlp', 'nltk', 'greek', 'latin'], license='MIT', long_description="The Classical Language Toolkit (CLTK) is a framework for natural language processing for Classical languages.", # pylint: disable=C0301 name='cltk', packages=find_packages(), url='https://github.com/kylepjohnson/cltk', version='0.0.1.21', zip_safe=True, test_suite='cltk.tests.test_cltk', )
mit
Python
2e32cee866cfb77c268a6b2e4a8365c43ade9d8b
Update setup.py
KirovVerst/qgeneration
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='qgeneration', version='0.1a2', description='Data generation project', long_description=long_description, url='https://github.com/KirovVerst/qgeneration', author='KirovVerst', author_email='kirov.verst@gmail.com', license='MIT', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Software Development :: Testing', 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6' ], keywords=['data', 'generator', 'fixtures', 'test'], packages=find_packages(exclude=["docs", "tests"]), )
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='qgeneration', version='0.1a2', description='Data generation project', long_description=long_description, url='https://github.com/KirovVerst/qgeneration', author='KirovVerst', author_email='kirov.verst@gmail.com', license='MIT', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Software Development :: Testing', 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.6', ], keywords=['data', 'generator', 'fixtures', 'test'], packages=find_packages(exclude=["docs", "tests"]), )
mit
Python
ae7e1f9daf5fd7cc0f5fd11e830a5e2363855033
Слияние с version1
rosix-ru/django-reportapi,rosix-ru/django-reportapi,rosix-ru/django-reportapi,rosix-ru/django-reportapi
setup.py
setup.py
from setuptools import setup, find_packages import os import reportapi def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except: return '' setup( name='django-reportapi', version=reportapi.__version__, description='Easy mechanism building reports in Django projects.', author='Grigoriy Kramarenko', author_email='root@rosix.ru', url='https://bitbucket.org/rosix/django-reportapi/', license='GNU General Public License v3 or later (GPLv3+)', platforms='any', zip_safe=False, packages=find_packages(), include_package_data = True, install_requires=['django-quickapi', 'jsonfield'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Natural Language :: Russian', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )
from setuptools import setup, find_packages import os import reportapi def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except: return '' setup( name='django-reportapi', version=reportapi.__version__, description='Easy mechanism building reports in Django projects.', author='Grigoriy Kramarenko', author_email='root@rosix.ru', url='https://bitbucket.org/rosix/django-reportapi/', license='GNU General Public License v3 or later (GPLv3+)', platforms='any', zip_safe=False, packages=find_packages(), include_package_data = True, install_requires=['django-quickapi', 'jsonfield'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Natural Language :: Russian', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )
agpl-3.0
Python
6c46f86aafc015c060029a8e454a808d36469e6d
Add explicit pip dependency
gamechanger/carbonite
setup.py
setup.py
from setuptools import setup setup(name='carbonite', version='0.0.1', description='Freeze your Python package dependencies', author='GameChanger', author_email='kiril@gc.io', license='MIT', packages=['carbonite'], install_requires=['pip'], tests_require=['nose'], test_suite='nose.collector', entry_points={'console_scripts': ['carbonite = carbonite.freeze:main']}, zip_safe=False)
from setuptools import setup setup(name='carbonite', version='0.0.1', description='Freeze your Python package dependencies', author='GameChanger', author_email='kiril@gc.io', license='MIT', packages=['carbonite'], tests_require=['nose'], test_suite='nose.collector', entry_points={'console_scripts': ['carbonite = carbonite.freeze:main']}, zip_safe=False)
mit
Python
1c3622c435576a48cad2022a86aaa9bf4ea28cb7
bump version
hopshadoop/hops-util-py,hopshadoop/hops-util-py
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='hopsutil', version='0.9.5', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hiding the complexity of discovering services and setting up security.', license='Apache License 2.0', keywords='HOPS, Hadoop', url='https://github.com/hopshadoop/hops-util-python', download_url = 'https://github.com/hopshadoop/hops-util-python/archive/0.9.5.tar.gz', packages=['hopsutil'], long_description=read('README.rst'), classifiers=[ 'Development Status :: 3 - Alpha', 'Topic :: Utilities', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', ], install_requires=[] )
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='hopsutil', version='0.9.4', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hiding the complexity of discovering services and setting up security.', license='Apache License 2.0', keywords='HOPS, Hadoop', url='https://github.com/hopshadoop/hops-util-python', download_url = 'https://github.com/hopshadoop/hops-util-python/archive/0.9.4.tar.gz', packages=['hopsutil'], long_description=read('README.rst'), classifiers=[ 'Development Status :: 3 - Alpha', 'Topic :: Utilities', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', ], install_requires=[] )
apache-2.0
Python
247a034a548f6f0255f666114bdb7e2a2da3ef0e
Add missing lib
praekelt/sow-generator
setup.py
setup.py
import multiprocessing from setuptools import setup, find_packages setup( name='sow-generator', version='0.1', description='Create a scope of work from templates and version controlled documentation.', long_description = open('README.rst', 'r').read() + open('CHANGELOG.rst', 'r').read() + open('AUTHORS.rst', 'r').read(), author='Hedley Roos', author_email='hedley@praekelt.com', license='BSD', url='http://github.com/praekelt/sow-generator', packages = find_packages(), install_requires = [ 'Django<1.7', 'South', 'celery', 'django-celery', 'raven', 'PyYAML', 'requests', 'github3.py', 'pyandoc', 'django-object-tools', 'django-adminplus' ], include_package_data=True, tests_require=[ 'django-setuptest>=0.1.4', ], test_suite="setuptest.setuptest.SetupTestSuite", classifiers=[ "Programming Language :: Python", "License :: OSI Approved :: BSD License", "Development Status :: 4 - Beta", "Operating System :: OS Independent", "Framework :: Django", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", ], zip_safe=False, )
import multiprocessing from setuptools import setup, find_packages setup( name='sow-generator', version='0.1', description='Create a scope of work from templates and version controlled documentation.', long_description = open('README.rst', 'r').read() + open('CHANGELOG.rst', 'r').read() + open('AUTHORS.rst', 'r').read(), author='Hedley Roos', author_email='hedley@praekelt.com', license='BSD', url='http://github.com/praekelt/sow-generator', packages = find_packages(), install_requires = [ 'Django<1.7', 'South', 'celery', 'django-celery', 'raven', 'PyYAML', 'requests', 'github3.py', 'pyandoc', 'django-object-tools', ], include_package_data=True, tests_require=[ 'django-setuptest>=0.1.4', ], test_suite="setuptest.setuptest.SetupTestSuite", classifiers=[ "Programming Language :: Python", "License :: OSI Approved :: BSD License", "Development Status :: 4 - Beta", "Operating System :: OS Independent", "Framework :: Django", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", ], zip_safe=False, )
bsd-3-clause
Python
c24e4a48d109e95f86d06769b6cac0c62cefd371
Update version to 0.3.7 after `at_hash` fix
juanifioren/django-oidc-provider,juanifioren/django-oidc-provider,ByteInternet/django-oidc-provider,bunnyinc/django-oidc-provider,wojtek-fliposports/django-oidc-provider,torreco/django-oidc-provider,torreco/django-oidc-provider,wojtek-fliposports/django-oidc-provider,ByteInternet/django-oidc-provider,bunnyinc/django-oidc-provider
setup.py
setup.py
import os from setuptools import setup # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', version='0.3.7', packages=[ 'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints', 'oidc_provider/lib/utils', 'oidc_provider/tests', 'oidc_provider/tests/app', 'oidc_provider/migrations', 'oidc_provider/management', 'oidc_provider/management/commands', ], include_package_data=True, license='MIT License', description='OpenID Connect Provider implementation for Django.', long_description='http://github.com/juanifioren/django-oidc-provider', url='http://github.com/juanifioren/django-oidc-provider', author='Juan Ignacio Fiorentino', author_email='juanifioren@gmail.com', classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], test_suite="runtests.runtests", tests_require=[ 'pyjwkest==1.1.0', 'mock==2.0.0', ], install_requires=[ 'pyjwkest==1.1.0', ], )
import os from setuptools import setup # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', version='0.3.6', packages=[ 'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints', 'oidc_provider/lib/utils', 'oidc_provider/tests', 'oidc_provider/tests/app', 'oidc_provider/migrations', 'oidc_provider/management', 'oidc_provider/management/commands', ], include_package_data=True, license='MIT License', description='OpenID Connect Provider implementation for Django.', long_description='http://github.com/juanifioren/django-oidc-provider', url='http://github.com/juanifioren/django-oidc-provider', author='Juan Ignacio Fiorentino', author_email='juanifioren@gmail.com', classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], test_suite="runtests.runtests", tests_require=[ 'pyjwkest==1.1.0', 'mock==2.0.0', ], install_requires=[ 'pyjwkest==1.1.0', ], )
mit
Python
db6769bdd4cc0c7e346b5603c530bfb555e3fa26
Remove pypi datacite requirement because it doesn't work
NaturalHistoryMuseum/ckanext-doi,NaturalHistoryMuseum/ckanext-doi,NaturalHistoryMuseum/ckanext-doi
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # # This file is part of ckanext-doi # Created by the Natural History Museum in London, UK from setuptools import find_packages, setup __version__ = u'2.0.0-alpha' with open(u'README.md', u'r') as f: __long_description__ = f.read() setup( name=u'ckanext-doi', version=__version__, description=u'A CKAN extension for assigning a digital object identifier (DOI) to datasets, using the DataCite DOI service.', long_description=__long_description__, classifiers=[ u'Development Status :: 3 - Alpha', u'Framework :: Flask', u'Programming Language :: Python :: 2.7' ], keywords=u'CKAN data doi', author=u'Natural History Museum', author_email=u'data@nhm.ac.uk', url=u'https://github.com/NaturalHistoryMuseum/ckanext-doi', license=u'GNU GPLv3', packages=find_packages(exclude=[u'tests']), namespace_packages=[u'ckanext', u'ckanext.doi'], include_package_data=True, zip_safe=False, install_requires=[ 'requests', 'xmltodict==0.9.0', 'jsonschema==3.0.0' ], entry_points= \ u''' [ckan.plugins] doi=ckanext.doi.plugin:DOIPlugin [paste.paster_command] doi=ckanext.doi.commands.doi:DOICommand ''', )
#!/usr/bin/env python # encoding: utf-8 # # This file is part of ckanext-doi # Created by the Natural History Museum in London, UK from setuptools import find_packages, setup __version__ = u'2.0.0-alpha' with open(u'README.md', u'r') as f: __long_description__ = f.read() setup( name=u'ckanext-doi', version=__version__, description=u'A CKAN extension for assigning a digital object identifier (DOI) to datasets, using the DataCite DOI service.', long_description=__long_description__, classifiers=[ u'Development Status :: 3 - Alpha', u'Framework :: Flask', u'Programming Language :: Python :: 2.7' ], keywords=u'CKAN data doi', author=u'Natural History Museum', author_email=u'data@nhm.ac.uk', url=u'https://github.com/NaturalHistoryMuseum/ckanext-doi', license=u'GNU GPLv3', packages=find_packages(exclude=[u'tests']), namespace_packages=[u'ckanext', u'ckanext.doi'], include_package_data=True, zip_safe=False, install_requires=[ 'requests', 'xmltodict==0.9.0', 'jsonschema==3.0.0', 'datacite==1.0.1' ], entry_points= \ u''' [ckan.plugins] doi=ckanext.doi.plugin:DOIPlugin [paste.paster_command] doi=ckanext.doi.commands.doi:DOICommand ''', )
mit
Python
e2b5e85f36160e5b9bc78a2d5f6377f03cf09692
Bump version.
markstory/lint-review,markstory/lint-review,markstory/lint-review
setup.py
setup.py
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.28.2" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the github API " "& a variety of code checking tools.", author="Mark story", author_email="mark@mark-story.com", packages=find_packages(exclude=['tests*']), entry_points={ 'console_scripts': [ 'lintreview = lintreview.cli:main', ], }, install_requires=requirements.readlines(), )
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.28.1" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the github API " "& a variety of code checking tools.", author="Mark story", author_email="mark@mark-story.com", packages=find_packages(exclude=['tests*']), entry_points={ 'console_scripts': [ 'lintreview = lintreview.cli:main', ], }, install_requires=requirements.readlines(), )
mit
Python
34ed7247cb2f4236adad53f2e7950d05d68c320e
Remove setup.py from installed package
kivy/pyobjus,kivy/pyobjus,kivy/pyobjus
setup.py
setup.py
from distutils.core import setup, Extension from os import environ from os.path import dirname, join, exists import sys import subprocess import platform from setup_sdist import SETUP_KWARGS dev_platform = sys.platform kivy_ios_root = environ.get('KIVYIOSROOT', None) arch = environ.get('ARCH', platform.machine()) if kivy_ios_root is not None: dev_platform = 'ios' print("Pyobjus platform is {}".format(dev_platform)) # OSX if dev_platform == 'darwin': try: from Cython.Distutils import build_ext except ImportError: raise files = ['pyobjus.pyx'] # iOS elif dev_platform == 'ios': from distutils.command.build_ext import build_ext files = ['pyobjus.c'] # create a configuration file for pyobjus (export the platform) config_pxi_fn = join(dirname(__file__), 'pyobjus', 'config.pxi') config_pxi_need_update = True config_pxi = 'DEF PLATFORM = "{}"\n'.format(dev_platform) config_pxi += 'DEF ARCH = "{}"'.format(arch) if exists(config_pxi_fn): with open(config_pxi_fn) as fd: config_pxi_need_update = fd.read() != config_pxi if config_pxi_need_update: with open(config_pxi_fn, 'w') as fd: fd.write(config_pxi) # if dev_platform` == 'ios': # subprocess.`call(['find', '.', '-name', '*.pyx', '-exec', 'cython', '{}', ';']) libraries = ['ffi'] library_dirs = [] extra_compile_args = [] extra_link_args = [] include_dirs = [] depends = [join('pyobjus', x) for x in ( 'common.pxi', 'config.pxi', 'debug.pxi', 'pyobjus_conversions.pxi', 'pyobjus_types.pxi', 'type_enc.pxi', 'pyobjus.pyx')] # pop setup.py from included files in the installed package SETUP_KWARGS['py_modules'].remove('setup') # create the extension setup( cmdclass={'build_ext': build_ext}, ext_modules=[ Extension( 'pyobjus', [join('pyobjus', x) for x in files], depends=depends, libraries=libraries, library_dirs=library_dirs, include_dirs=include_dirs, extra_link_args=extra_link_args ) ], **SETUP_KWARGS )
from distutils.core import setup, Extension from os import environ from os.path import dirname, join, exists import sys import subprocess import platform from setup_sdist import SETUP_KWARGS dev_platform = sys.platform kivy_ios_root = environ.get('KIVYIOSROOT', None) arch = environ.get('ARCH', platform.machine()) if kivy_ios_root is not None: dev_platform = 'ios' print("Pyobjus platform is {}".format(dev_platform)) # OSX if dev_platform == 'darwin': try: from Cython.Distutils import build_ext except ImportError: raise files = ['pyobjus.pyx'] # iOS elif dev_platform == 'ios': from distutils.command.build_ext import build_ext files = ['pyobjus.c'] # create a configuration file for pyobjus (export the platform) config_pxi_fn = join(dirname(__file__), 'pyobjus', 'config.pxi') config_pxi_need_update = True config_pxi = 'DEF PLATFORM = "{}"\n'.format(dev_platform) config_pxi += 'DEF ARCH = "{}"'.format(arch) if exists(config_pxi_fn): with open(config_pxi_fn) as fd: config_pxi_need_update = fd.read() != config_pxi if config_pxi_need_update: with open(config_pxi_fn, 'w') as fd: fd.write(config_pxi) # if dev_platform` == 'ios': # subprocess.`call(['find', '.', '-name', '*.pyx', '-exec', 'cython', '{}', ';']) libraries = ['ffi'] library_dirs = [] extra_compile_args = [] extra_link_args = [] include_dirs = [] depends = [join('pyobjus', x) for x in ( 'common.pxi', 'config.pxi', 'debug.pxi', 'pyobjus_conversions.pxi', 'pyobjus_types.pxi', 'type_enc.pxi', 'pyobjus.pyx')] # create the extension setup( cmdclass={'build_ext': build_ext}, ext_modules=[ Extension( 'pyobjus', [join('pyobjus', x) for x in files], depends=depends, libraries=libraries, library_dirs=library_dirs, include_dirs=include_dirs, extra_link_args=extra_link_args ) ], **SETUP_KWARGS )
mit
Python
72f4a0abadd09a88fc6ad46318bc3fc8017c950d
Update setup.py
sgmap/openfisca-france,antoinearnoud/openfisca-france,adrienpacifico/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,benjello/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,antoinearnoud/openfisca-france,SophieIPP/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # OpenFisca is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """ -- a versatile microsimulation free software""" from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '0.5.dev0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Information Analysis", ], description = u'France specific model for OpenFisca', keywords = 'benefit france microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', url = 'https://github.com/openfisca/openfisca-france', data_files = [ ('share/locale/fr/LC_MESSAGES', ['openfisca_france/i18n/fr/LC_MESSAGES/openfisca-france.mo']), ], install_requires = [ 'Babel >= 0.9.4', 'Biryani >= 0.10.4', 'numpy', 'OpenFisca-Core >= 0.5dev', 'PyYAML', 'scipy >= 0.12', # 'pandas >= 0.13', # Only for taxipp_utils.py which is ignored in Makefile ], message_extractors = {'openfisca_france': [ ('**.py', 'python', None), ]}, packages = find_packages(), test_suite = 'nose.collector', )
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # OpenFisca is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """France specific model for OpenFisca -- a versatile microsimulation free software""" from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System :: POSIX Programming Language :: Python Topic :: Scientific/Engineering :: Information Analysis """ doc_lines = __doc__.split('\n') setup( name = 'OpenFisca-France', version = '0.5.dev0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier], description = doc_lines[0], keywords = 'benefit france microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', long_description = '\n'.join(doc_lines[2:]), url = 'https://github.com/openfisca/openfisca-france', data_files = [ ('share/locale/fr/LC_MESSAGES', ['openfisca_france/i18n/fr/LC_MESSAGES/openfisca-france.mo']), ], install_requires = [ 'Babel >= 0.9.4', 'Biryani >= 0.10.4', 'numpy', 'OpenFisca-Core >= 0.5dev', 'PyYAML', 'scipy >= 0.12', # 'pandas >= 0.13', # Only for taxipp_utils.py which is ignored in Makefile ], message_extractors = {'openfisca_france': [ ('**.py', 'python', None), ]}, packages = find_packages(), test_suite = 'nose.collector', zip_safe = False, )
agpl-3.0
Python
3445c81eddfeb4e886c28a939288f7f7fa4b9c6d
fix for rtfd
kidaa/crystal-1,kidaa/crystal-1,kidaa/crystal-1,brentp/crystal,brentp/crystal,brentp/crystal
setup.py
setup.py
try: from ez_setup import use_setuptools use_setuptools() except ImportError: pass from setuptools import setup, find_packages # from mpld3 def get_version(f): """Get the version info from the mpld3 package without importing it""" import ast with open(f) as init_file: module = ast.parse(init_file.read()) version = (ast.literal_eval(node.value) for node in ast.walk(module) if isinstance(node, ast.Assign) and node.targets[0].id == "__version__") try: return next(version) except StopIteration: raise ValueError("version could not be located") setup(name='crystal', version=get_version("crystal/__init__.py"), description="statistical models on clusters of correlated genomic data", packages=find_packages(), url="https://github.com/brentp/crystal/", long_description=open('README.md').read(), platforms='any', classifiers=[ 'Topic :: Scientific/Engineering :: Bio-Informatics', 'Programming Language :: Python :: 2.7', ], keywords='bioinformatics methylation correlation', author='brentp', author_email='bpederse@gmail.com', license='MIT License', include_package_data=True, tests_require=['nose'], test_suite='nose.collector', zip_safe=False, install_requires=['numpy', 'pandas', 'aclust', 'toolshed', 'statsmodels' 'seaborn', 'scipy', 'patsy', 'numpydoc'], #scripts=[], entry_points={ }, )
from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages # from mpld3 def get_version(f): """Get the version info from the mpld3 package without importing it""" import ast with open(f) as init_file: module = ast.parse(init_file.read()) version = (ast.literal_eval(node.value) for node in ast.walk(module) if isinstance(node, ast.Assign) and node.targets[0].id == "__version__") try: return next(version) except StopIteration: raise ValueError("version could not be located") setup(name='crystal', version=get_version("crystal/__init__.py"), description="statistical models on clusters of correlated genomic data", packages=find_packages(), url="https://github.com/brentp/crystal/", long_description=open('README.md').read(), platforms='any', classifiers=[ 'Topic :: Scientific/Engineering :: Bio-Informatics', 'Programming Language :: Python :: 2.7', ], keywords='bioinformatics methylation correlation', author='brentp', author_email='bpederse@gmail.com', license='MIT License', include_package_data=True, tests_require=['nose'], test_suite='nose.collector', zip_safe=False, install_requires=['numpy', 'pandas', 'aclust', 'toolshed', 'statsmodels' 'seaborn', 'scipy', 'patsy', 'numpydoc'], #scripts=[], entry_points={ }, )
mit
Python
17956eb2b8089432ff2a0fcec5ce56884f904db1
Add south as a dependency.
sorenh/python-django-cloudslave
setup.py
setup.py
# # Copyright 2013 Cisco Systems # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from setuptools import setup, find_packages setup( name='django-cloudslave', version='0.2.0', description='Create, use and destroy temporary slaves in the cloud', author='Soren Hansen', author_email='sorhanse@cisco.com', url='http://github.com/sorenh/python-django-cloudslave', packages=find_packages(), include_package_data=True, license='Apache 2.0', keywords='django openstack cloud', install_requires=[ 'django', 'python-novaclient', 'south' ], test_suite='tests.main', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Topic :: Software Development', ] )
# # Copyright 2013 Cisco Systems # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from setuptools import setup, find_packages setup( name='django-cloudslave', version='0.2.0', description='Create, use and destroy temporary slaves in the cloud', author='Soren Hansen', author_email='sorhanse@cisco.com', url='http://github.com/sorenh/python-django-cloudslave', packages=find_packages(), include_package_data=True, license='Apache 2.0', keywords='django openstack cloud', install_requires=[ 'django', 'python-novaclient' ], test_suite='tests.main', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Topic :: Software Development', ] )
apache-2.0
Python
fa6e95c034e4b015e8408a9f6f4939c01fd6c99b
Tweak coding style in setup.py
wbolster/aaargh
setup.py
setup.py
from os.path import join, dirname from setuptools import setup setup( name='aaargh', version='0.4', # XXX: Keep version number in sync with module code description='An astonishingly awesome application argument helper', long_description=open(join(dirname(__file__), 'README.rst')).read(), author='Wouter Bolsterlee', author_email='uws@xs4all.nl', url='https://github.com/wbolster/aaargh', py_modules=['aaargh'], install_requires=['argparse'], license='BSD', classifiers=( 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: User Interfaces', ) )
from os.path import join, dirname from setuptools import setup setup(name='aaargh', version='0.4', # XXX: Keep version number in sync with setup.py description='An astonishingly awesome application argument helper', long_description=open(join(dirname(__file__), 'README.rst')).read(), author='Wouter Bolsterlee', author_email='uws@xs4all.nl', url='https://github.com/wbolster/aaargh', py_modules=['aaargh'], install_requires=['argparse'], license='BSD', classifiers=( 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: User Interfaces', ) )
bsd-3-clause
Python
625102621bed1cc032b629e39ac50b52c2dd5f79
use package's __version__. PEP-0396
sphinx-doc/sphinx-intl
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup, find_packages import os import sys from sphinx_intl import __version__ install_requires = [ 'distribute', 'six', 'polib', ] if sys.version_info < (2, 7): install_requires.append('ordereddict') extras_require = { 'transifex': [ 'transifex_client', ], 'test': [ 'nose', 'flake8', ], } here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() description = \ 'Sphinx utility that make it easy to translate and to apply translation.' setup( name='sphinx-intl', version=__version__, description=description, long_description=README, classifiers=[ "Development Status :: 4 - Beta", "Environment :: Other Environment", "License :: OSI Approved :: BSD License", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: General", "Topic :: Utilities", "Programming Language :: Python", "Programming Language :: Python :: 2", "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.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", ], author="Takayuki SHIMIZUKAWA", author_email="shimizukawa@gmail.com", url="https://bitbucket.org/shimizukawa/sphinx-intl", namespace_packages=[], packages=find_packages(), include_package_data=True, zip_safe=False, install_requires=install_requires, extras_require=extras_require, py_modules=['sphinx_intl'], entry_points="""\ [console_scripts] sphinx-intl = sphinx_intl.commands:main """, )
# -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup, find_packages import os import sys install_requires = [ 'distribute', 'six', 'polib', ] if sys.version_info < (2, 7): install_requires.append('ordereddict') extras_require = { 'transifex': [ 'transifex_client', ], 'test': [ 'nose', 'flake8', ], } here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() description = \ 'Sphinx utility that make it easy to translate and to apply translation.' setup( name='sphinx-intl', version='0.9.1b1', description=description, long_description=README, classifiers=[ "Development Status :: 4 - Beta", "Environment :: Other Environment", "License :: OSI Approved :: BSD License", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: General", "Topic :: Utilities", "Programming Language :: Python", "Programming Language :: Python :: 2", "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.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", ], author="Takayuki SHIMIZUKAWA", author_email="shimizukawa@gmail.com", url="https://bitbucket.org/shimizukawa/sphinx-intl", namespace_packages=[], packages=find_packages(), include_package_data=True, zip_safe=False, install_requires=install_requires, extras_require=extras_require, py_modules=['sphinx_intl'], entry_points="""\ [console_scripts] sphinx-intl = sphinx_intl.commands:main """, )
bsd-2-clause
Python
404015143cbc53cd6cdb794fdfc7008f8474ea00
Update version to 0.4.1
City-of-Helsinki/django-helusers,City-of-Helsinki/django-helusers
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-helusers', version='0.4.1', packages=['helusers'], include_package_data=True, license='BSD License', description='Django app for the user infrastructure of the City of Helsinki', long_description=README, url='https://github.com/City-of-Helsinki/django-helusers', author='Juha Yrjölä', author_email='juha.yrjola@iki.fi', install_requires=[ 'Django', 'drf-oidc-auth>=0.9', 'requests', ], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )
# -*- coding: utf-8 -*- import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-helusers', version='0.4.0', packages=['helusers'], include_package_data=True, license='BSD License', description='Django app for the user infrastructure of the City of Helsinki', long_description=README, url='https://github.com/City-of-Helsinki/django-helusers', author='Juha Yrjölä', author_email='juha.yrjola@iki.fi', install_requires=[ 'Django', 'drf-oidc-auth>=0.9', 'requests', ], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )
bsd-2-clause
Python
a9e54418040a046ad13c3ac8e1907a08450aa02d
update metadata
garethr/docker-label-inspector
setup.py
setup.py
from setuptools import setup setup( name='docker-label-inspector', author='Gareth Rushgrove', author_email='gareth@morethanseven.net', url='http://github.com/garethr/dli', version='0.1', py_modules=['dli'], install_requires=[ 'click', 'jsonschema', 'colorama', 'dockerfile-parse', ], entry_points=''' [console_scripts] dli=dli:cli ''', description='A tool for linting and validating labels ' 'in Dockerfiles.', classifiers=[ 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', ], )
from setuptools import setup setup( name='dli', author='Gareth Rushgrove', author_email='gareth@morethanseven.net', url='http://github.com/garethr/dli', version='0.1', py_modules=['dli'], install_requires=[ 'click', 'jsonschema', 'colorama', 'dockerfile-parse', ], entry_points=''' [console_scripts] dli=dli:cli ''', )
apache-2.0
Python
7850d00aeb4c69aaaa1af1af40940985d2bb7efb
Bump version to 0.5.0
thombashi/subprocrunner,thombashi/subprocrunner
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" MODULE_NAME = "subprocrunner" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install_requires = [line.strip() for line in f if line.strip()] with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f: tests_require = [line.strip() for line in f if line.strip()] setuptools.setup( name=MODULE_NAME, version="0.5.0", author="Tsuyoshi Hombashi", author_email="gogogo.vm@gmail.com", url="https://github.com/thombashi/{:s}".format(MODULE_NAME), license="MIT License", description="A python library of subprocess module wrapper.", include_package_data=True, install_requires=install_requires, keywords=[ "library", "subprocess", ], long_description=long_description, packages=setuptools.find_packages(exclude=['test*']), setup_requires=pytest_runner, tests_require=tests_require, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], )
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" MODULE_NAME = "subprocrunner" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install_requires = [line.strip() for line in f if line.strip()] with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f: tests_require = [line.strip() for line in f if line.strip()] setuptools.setup( name=MODULE_NAME, version="0.4.11", author="Tsuyoshi Hombashi", author_email="gogogo.vm@gmail.com", url="https://github.com/thombashi/{:s}".format(MODULE_NAME), license="MIT License", description="A python library of subprocess module wrapper.", include_package_data=True, install_requires=install_requires, keywords=[ "library", "subprocess", ], long_description=long_description, packages=setuptools.find_packages(exclude=['test*']), setup_requires=pytest_runner, tests_require=tests_require, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], )
mit
Python
66d734047edc1d3272117c0700005c7473599e22
bump version
neothemachine/crowfood,neothemachine/crowfood
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'crowfood', description = 'C/C++ dependency graphing using snakefood', long_description = open('README.rst').read(), version = '0.2.0', author = 'Maik Riechert', author_email = 'maik.riechert@arcor.de', url = 'https://github.com/neothemachine/crowfood', classifiers=[ 'Development Status :: 4 - Beta', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', ], packages = find_packages(exclude=['crowfood.test']), install_requires=['six'], entry_points = { 'console_scripts': [ 'cfood = crowfood.cli:main', ] } )
from setuptools import setup, find_packages setup( name = 'crowfood', description = 'C/C++ dependency graphing using snakefood', long_description = open('README.rst').read(), version = '0.1.0', author = 'Maik Riechert', author_email = 'maik.riechert@arcor.de', url = 'https://github.com/neothemachine/crowfood', classifiers=[ 'Development Status :: 4 - Beta', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', ], packages = find_packages(exclude=['crowfood.test']), install_requires=['six'], entry_points = { 'console_scripts': [ 'cfood = crowfood.cli:main', ] } )
mit
Python
6bbd28b9eca67769031dc4904715dcb23dd2351f
Install pymssql 2.0.1 on 64 bits systems and 1.0.2 on 32 bits systems.
bigbrozer/monitoring.nagios,bigbrozer/monitoring.nagios
setup.py
setup.py
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- #============================================================================== # Module : setup # Author : Vincent BESANCON <besancon.vincent@gmail.com> # Description : Setuptools install script. #------------------------------------------------------------------------------ # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. #============================================================================== import os from setuptools import setup, find_packages # Package dependencies dependencies = [ 'pysnmp==4.2.4', 'ssh==1.8.0', ] # OS dependent if 'x86_64' in os.uname()[-1]: # We are in 64 bits dependencies.append('pymssql==2.0.1') else: # We are in 32 bits dependencies.append('pymssql==1.0.2') # Init distribute setup(name='monitoring.nagios', version="1.2.5", description='Monitoring Python Package', author='Vincent BESANCON', author_email='besancon.vincent@gmail.com', license='GPL', namespace_packages=['monitoring'], packages=find_packages(), install_requires=dependencies, extras_require={'graph': ['pygraphviz>=1.0,<=1.1']})
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- #============================================================================== # Module : setup # Author : Vincent BESANCON <besancon.vincent@gmail.com> # Description : Setuptools install script. #------------------------------------------------------------------------------ # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. #============================================================================== import os from setuptools import setup, find_packages # Package dependencies dependencies = [ 'pysnmp==4.2.4', 'ssh==1.8.0', 'pymssql==1.0.2', ] # Init distribute setup(name='monitoring.nagios', version="1.2.4", description='Monitoring Python Package', author='Vincent BESANCON', author_email='besancon.vincent@gmail.com', license='GPL', namespace_packages=['monitoring'], packages=find_packages(), install_requires=dependencies, extras_require={'graph': ['pygraphviz>=1.0,<=1.1']})
mit
Python
67b1a563a08c3fc99c10a2bd3eccfde069db2081
Update classifiers
fitodic/centerline,fitodic/polygon-centerline,fitodic/centerline
setup.py
setup.py
from codecs import open from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='centerline', version='0.2.1', description='Calculate the centerline of a polygon', long_description=long_description, classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Intended Audience :: Science/Research', 'Intended Audience :: Developers', 'Topic :: Scientific/Engineering :: GIS', 'Topic :: Software Development :: Libraries :: Python Modules' ], url='https://github.com/fitodic/centerline.git', author='Filip Todic', author_email='todic.filip@gmail.com', license='MIT', packages=['centerline'], install_requires=[ 'GDAL>=2.0.1', 'Fiona>=1.7.0', 'Shapely>=1.5.13', 'numpy>=1.10.4', 'scipy>=0.16.1', ], extras_require={ 'dev': [ 'autopep8', 'flake8', 'ipdb', 'ipython[all]', 'notebook', 'jupyter', 'isort' ], 'test': [ 'coverage', 'pytest>=3.0.0', 'pytest-cov', 'pytest-sugar', 'pytest-runner' ], }, scripts=[ 'bin/create_centerlines', ], include_package_data=True, zip_safe=False, )
from codecs import open from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='centerline', version='0.2.1', description='Calculate the centerline of a polygon', long_description=long_description, classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: GIS' ], url='https://github.com/fitodic/centerline.git', author='Filip Todic', author_email='todic.filip@gmail.com', license='MIT', packages=['centerline'], install_requires=[ 'GDAL>=2.0.1', 'Fiona>=1.7.0', 'Shapely>=1.5.13', 'numpy>=1.10.4', 'scipy>=0.16.1', ], extras_require={ 'dev': [ 'autopep8', 'flake8', 'ipdb', 'ipython[all]', 'notebook', 'jupyter', 'isort' ], 'test': [ 'coverage', 'pytest>=3.0.0', 'pytest-cov', 'pytest-sugar', 'pytest-runner' ], }, scripts=[ 'bin/create_centerlines', ], include_package_data=True, zip_safe=False, )
mit
Python
8531a40b1d5aa867dbb341e0aa1641314227f103
use jsonfield instead of django-jsonfield, like pupa
opennorth/represent-reps
setup.py
setup.py
from setuptools import setup setup( name="represent-representatives", version="0.2", description="A web API for elected officials tied to electoral districts, packaged as a Django app.", url="https://github.com/rhymeswithcycle/represent-reps", license="MIT", packages=[ 'representatives', 'representatives.management', 'representatives.management.commands', ], install_requires=[ 'django-appconf', 'jsonfield==0.9.23', 'represent-boundaries', ], classifiers=[ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'License :: OSI Approved :: MIT License', 'Framework :: Django', ], )
from setuptools import setup setup( name="represent-representatives", version="0.2", description="A web API for elected officials tied to electoral districts, packaged as a Django app.", url="https://github.com/rhymeswithcycle/represent-reps", license="MIT", packages=[ 'representatives', 'representatives.management', 'representatives.management.commands', ], install_requires=[ 'django-appconf', 'django-jsonfield>=0.7.1', 'represent-boundaries', ], classifiers=[ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'License :: OSI Approved :: MIT License', 'Framework :: Django', ], )
mit
Python
f108fd5ccfe962a21668eaf205a4ee95a52cbec9
Bump botocore deps to 1.0.0
boto/boto3
setup.py
setup.py
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import re import sys from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore==1.0.0', 'jmespath>=0.6.2,<1.0.0', ] if sys.version_info[0] == 2: # concurrent.futures is only in python3, so for # python2 we need to install the backport. requires.append('futures==2.2.0') def get_version(): init = open(os.path.join(ROOT, 'boto3', '__init__.py')).read() return VERSION_RE.search(init).group(1) setup( name='boto3', version=get_version(), description='The AWS SDK for Python', long_description=open('README.rst').read(), author='Amazon Web Services', url='https://github.com/boto/boto3', scripts=[], packages=find_packages(exclude=['tests*']), package_data={ 'boto3': [ 'data/aws/resources/*.json', ] }, include_package_data=True, install_requires=requires, extras_require={ ':python_version=="2.6" or python_version=="2.7"': ['futures==2.2.0'] }, license="Apache License 2.0", classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], )
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import re import sys from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore==1.0.0rc1', 'jmespath>=0.6.2,<1.0.0', ] if sys.version_info[0] == 2: # concurrent.futures is only in python3, so for # python2 we need to install the backport. requires.append('futures==2.2.0') def get_version(): init = open(os.path.join(ROOT, 'boto3', '__init__.py')).read() return VERSION_RE.search(init).group(1) setup( name='boto3', version=get_version(), description='The AWS SDK for Python', long_description=open('README.rst').read(), author='Amazon Web Services', url='https://github.com/boto/boto3', scripts=[], packages=find_packages(exclude=['tests*']), package_data={ 'boto3': [ 'data/aws/resources/*.json', ] }, include_package_data=True, install_requires=requires, extras_require={ ':python_version=="2.6" or python_version=="2.7"': ['futures==2.2.0'] }, license="Apache License 2.0", classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], )
apache-2.0
Python
31a5a0a6db7eb9edd6c6e9ba2441d74cdc86dcd9
Bump to v19
Kane610/axis
setup.py
setup.py
"""Setup for Axis.""" # https://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/ # http://peterdowns.com/posts/first-time-with-pypi.html # pip install -e . # Upload to PyPI Live # python setup.py sdist bdist_wheel # twine upload dist/axis-* --skip-existing from setuptools import setup setup( name='axis', packages=['axis'], version='19', description='A python library for communicating with devices from Axis Communications', author='Robert Svensson', author_email='Kane610@users.noreply.github.com', license='MIT', url='https://github.com/Kane610/axis', download_url='https://github.com/Kane610/axis/archive/v19.tar.gz', install_requires=['requests'], keywords=['axis', 'vapix', 'onvif', 'event stream', 'homeassistant'], classifiers=[], )
"""Setup for Axis.""" # https://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/ # http://peterdowns.com/posts/first-time-with-pypi.html # pip install -e . # Upload to PyPI Live # python setup.py sdist bdist_wheel # twine upload dist/axis-* --skip-existing from setuptools import setup setup( name='axis', packages=['axis'], version='18', description='A python library for communicating with devices from Axis Communications', author='Robert Svensson', author_email='Kane610@users.noreply.github.com', license='MIT', url='https://github.com/Kane610/axis', download_url='https://github.com/Kane610/axis/archive/v18.tar.gz', install_requires=['requests'], keywords=['axis', 'vapix', 'onvif', 'event stream', 'homeassistant'], classifiers=[], )
mit
Python
242ec430ff390cf24051819802b9eec1e665d3b2
Remove LICENCE from install
mottosso/Qt.py,mottosso/Qt.py
setup.py
setup.py
import os from setuptools import setup os.environ["QT_PREFERRED_BINDING"] = "None" version = __import__("Qt").__version__ classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ] setup( name="Qt.py", version=version, description="Python 2 & 3 compatibility wrapper around all Qt bindings - " "PySide, PySide2, PyQt4 and PyQt5.", author="Marcus Ottosson", author_email="konstruktion@gmail.com", url="https://github.com/mottosso/Qt", license="MIT", zip_safe=False, py_modules=["Qt"], classifiers=classifiers )
import os from setuptools import setup os.environ["QT_PREFERRED_BINDING"] = "None" version = __import__("Qt").__version__ classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ] setup( name="Qt.py", version=version, description="Python 2 & 3 compatibility wrapper around all Qt bindings - " "PySide, PySide2, PyQt4 and PyQt5.", author="Marcus Ottosson", author_email="konstruktion@gmail.com", url="https://github.com/mottosso/Qt", license="MIT", zip_safe=False, data_files=["LICENSE"], py_modules=["Qt"], classifiers=classifiers )
mit
Python
929fab9a600e8d5ff10dfcc0f94eaf693415fc93
Bump version
kmike/fabtest
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup for cmd in ('egg_info', 'develop'): import sys if cmd in sys.argv: from setuptools import setup version='0.0.4' setup( name='fabtest', version=version, author='Mikhail Korobov', author_email='kmike84@gmail.com', packages=['fabtest'], scripts = ['bin/fabtest-preparevm'], url='https://bitbucket.org/kmike/fabtest/', download_url = 'https://bitbucket.org/kmike/fabtest/get/tip.zip', license = 'MIT license', description = """ Test Fabric scripts on VirtualBox VMs """, long_description = open('README.rst').read(), requires = ['Fabric'], classifiers=( 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Testing', ), )
#!/usr/bin/env python from distutils.core import setup for cmd in ('egg_info', 'develop'): import sys if cmd in sys.argv: from setuptools import setup version='0.0.3' setup( name='fabtest', version=version, author='Mikhail Korobov', author_email='kmike84@gmail.com', packages=['fabtest'], scripts = ['bin/fabtest-preparevm'], url='https://bitbucket.org/kmike/fabtest/', download_url = 'https://bitbucket.org/kmike/fabtest/get/tip.zip', license = 'MIT license', description = """ Test Fabric scripts on VirtualBox VMs """, long_description = open('README.rst').read(), requires = ['Fabric'], classifiers=( 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Testing', ), )
bsd-3-clause
Python
7736e8e34e0cd2015334ab598a635568207c809c
Add enviro_ipy_ext to setup.py
jwass/enviro
setup.py
setup.py
from __future__ import unicode_literals from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() setup(name='enviro', version='0.0.1', description='Simple configuration of OS environment variables', long_description=long_description, classifiers=[], keywords='', author='Jacob Wasserman', author_email='jwasserman@gmail.com', url='https://github.com/jwass/enviro', license='MIT', py_modules=['enviro', 'enviro_ipy_ext'], include_package_data=True, zip_safe=False, extras_require={ 'test': ['pytest'], }, )
from __future__ import unicode_literals from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() setup(name='enviro', version='0.0.1', description='Simple configuration of OS environment variables', long_description=long_description, classifiers=[], keywords='', author='Jacob Wasserman', author_email='jwasserman@gmail.com', url='https://github.com/jwass/enviro', license='MIT', py_modules=['enviro'], include_package_data=True, zip_safe=False, extras_require={ 'test': ['pytest'], }, )
mit
Python
1c02fcfa22dd7b75ac461fa755447a68ce5972f8
Bump version number
trilan/lemon-dashboard
setup.py
setup.py
import codecs import os from setuptools import setup, find_packages def read(filename): filepath = os.path.join(os.path.dirname(__file__), filename) return codecs.open(filepath, encoding='utf-8').read() setup( name='lemon-dashboard', version='0.1', license='ISC', description="Dashboard app for Lemon admin", long_description=read('README.rst'), url='https://github.com/trilan/lemon-dashboard', author='Mike Yumatov', author_email='mike@yumatov.org', packages=find_packages(exclude=['tests', 'tests.*']), include_package_data=True, install_requires=[ 'Lemon', ], classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: ISC License (ISCL)', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Topic :: Internet :: WWW/HTTP', ], )
import codecs import os from setuptools import setup, find_packages def read(filename): filepath = os.path.join(os.path.dirname(__file__), filename) return codecs.open(filepath, encoding='utf-8').read() setup( name='lemon-dashboard', version='0.1.dev', license='ISC', description="Dashboard app for Lemon admin", long_description=read('README.rst'), url='https://github.com/trilan/lemon-dashboard', author='Mike Yumatov', author_email='mike@yumatov.org', packages=find_packages(exclude=['tests', 'tests.*']), include_package_data=True, install_requires=[ 'Lemon', ], classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: ISC License (ISCL)', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Topic :: Internet :: WWW/HTTP', ], )
isc
Python
7fea498e22067bd14607a82eee51bb0fc0a3f0ae
fix pyusb requirement line
hbock/pyatk
setup.py
setup.py
from setuptools import setup setup( name='pyatk', version='0.1.0', description='Python implementation of the Freescale bootloader protocol for i.MX processors.', author='Harry Bock', author_email='bock.harryw@gmail.com', packages=[ 'pyatk', 'pyatk.channel', 'pyatk.tests', ], test_suite='pyatk.tests', scripts=['bin/flashtool.py'], install_requires=[ 'pyserial >= 2.6', 'pyusb >= 1.0.0a3', ], license='BSD', url='https://github.com/hbock/pyatk', long_description=""" ``pyATK`` (Python ATK) is an attempt at replacing the Advanced Toolkit (ATK) program distributed by Freescale Semiconductor for their i.MX series processors. """, )
from setuptools import setup setup( name='pyatk', version='0.1.0', description='Python implementation of the Freescale bootloader protocol for i.MX processors.', author='Harry Bock', author_email='bock.harryw@gmail.com', packages=[ 'pyatk', 'pyatk.channel', 'pyatk.tests', ], test_suite='pyatk.tests', scripts=['bin/flashtool.py'], install_requires=[ 'pyserial >= 2.6', 'pyusb >= 1.0.0', ], license='BSD', url='https://github.com/hbock/pyatk', long_description=""" ``pyATK`` (Python ATK) is an attempt at replacing the Advanced Toolkit (ATK) program distributed by Freescale Semiconductor for their i.MX series processors. """, )
bsd-2-clause
Python
41171851707ecd34e04d20ade2cce06a99fe4eb7
Bump version number
mostlygeek/tokenserver,mozilla-services/tokenserver,mozilla-services/tokenserver,mostlygeek/tokenserver
setup.py
setup.py
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup, find_packages requires = ['cornice', 'mozsvc>=0.8', 'PyBrowserID', 'testfixtures'] setup(name='tokenserver', version='1.2.6', packages=find_packages(), include_package_data=True, zip_safe=False, entry_points="""\ [paste.app_factory] main = tokenserver:main """, install_requires=requires, tests_require=requires, test_suite='tokenserver.tests')
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup, find_packages requires = ['cornice', 'mozsvc>=0.8', 'PyBrowserID', 'testfixtures'] setup(name='tokenserver', version='1.2.5', packages=find_packages(), include_package_data=True, zip_safe=False, entry_points="""\ [paste.app_factory] main = tokenserver:main """, install_requires=requires, tests_require=requires, test_suite='tokenserver.tests')
mpl-2.0
Python
7d56df0a15ec4411247c16684e7015bde581dbd0
fix package_data in setup.py
ashleygould/aws-orgs
setup.py
setup.py
"""aws-orgs setup""" from awsorgs import __version__ from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='aws-orgs', version=__version__, description='Tools to manage AWS Organizations', long_description=long_description, url='https://github.com/ashleygould/aws-orgs', author='Ashley Gould', author_email='agould@ucop.edu', license='MIT', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6', ], keywords='aws organizations', packages=find_packages(exclude=['scratch', 'notes']), install_requires=[ 'boto3', 'docopt', 'PyYAML==5.1', 'passwordgenerator', 'cerberus', ], package_data={ 'awsorgs': [ 'data/*', 'spec_init_data/*', 'spec_init_data/spec.d/*', ], }, entry_points={ 'console_scripts': [ 'awsorgs=awsorgs.orgs:main', 'awsaccounts=awsorgs.accounts:main', 'awsauth=awsorgs.auth:main', 'awsloginprofile=awsorgs.loginprofile:main', 'awsorgs-accessrole=awsorgs.tools.accessrole:main', 'awsorgs-spec-init=awsorgs.tools.spec_init:main', ], }, )
"""aws-orgs setup""" from awsorgs import __version__ from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='aws-orgs', version=__version__, description='Tools to manage AWS Organizations', long_description=long_description, url='https://github.com/ashleygould/aws-orgs', author='Ashley Gould', author_email='agould@ucop.edu', license='MIT', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6', ], keywords='aws organizations', packages=find_packages(exclude=['scratch', 'notes']), install_requires=[ 'boto3', 'docopt', 'PyYAML==5.1', 'passwordgenerator', 'cerberus', ], package_data={ 'awsorgs': [ 'spec_init_data/*', 'data/*', ], }, entry_points={ 'console_scripts': [ 'awsorgs=awsorgs.orgs:main', 'awsaccounts=awsorgs.accounts:main', 'awsauth=awsorgs.auth:main', 'awsloginprofile=awsorgs.loginprofile:main', 'awsorgs-accessrole=awsorgs.tools.accessrole:main', 'awsorgs-spec-init=awsorgs.tools.spec_init:main', ], }, )
mit
Python
b0f4c0c53e67649d9b531d0393ed9b77b9efe665
Bump dev version
infincia/pyairview
setup.py
setup.py
#!/usr/bin/env python import sys import os from os.path import join, abspath, basename, dirname try: from setuptools import setup except ImportError: from distutils.core import setup py = sys.version_info if py < (2,7) or py > (3,0): raise NotImplementedError("PyAirview requires at least Python 2.7, and Python 3.2+ compatibility is in the works") def read_file(name, *args): try: return open(join(dirname(__file__), name)).read(*args) except OSError: return '' setup(name='pyairview', version='0.1.dev1', description='PyAirview is a very simple Python library for the Ubiquiti Airview2 2.4GHz spectrum analyzer, which has an undocumented device API.', long_description=read_file('README.rst'), author='Stephen Oliver', author_email='steve@infincia.com', url='http://infincia.github.io/pyairview/', scripts=['pyairview_test.py'], py_modules=['pyairview'], license='MIT', keywords='airview ubiquiti airview2 spectrum analyzer', platforms = 'any', install_requires = ['PySerial'], classifiers=['Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Hardware :: Hardware Drivers', ], )
#!/usr/bin/env python import sys import os from os.path import join, abspath, basename, dirname try: from setuptools import setup except ImportError: from distutils.core import setup py = sys.version_info if py < (2,7) or py > (3,0): raise NotImplementedError("PyAirview requires at least Python 2.7, and Python 3.2+ compatibility is in the works") def read_file(name, *args): try: return open(join(dirname(__file__), name)).read(*args) except OSError: return '' setup(name='pyairview', version='0.1dev0', description='PyAirview is a very simple Python library for the Ubiquiti Airview2 2.4GHz spectrum analyzer, which has an undocumented device API.', long_description=read_file('README.rst'), author='Stephen Oliver', author_email='steve@infincia.com', url='http://infincia.github.io/pyairview/', scripts=['pyairview_test.py'], py_modules=['pyairview'], license='MIT', keywords='airview ubiquiti airview2 spectrum analyzer', platforms = 'any', install_requires = ['PySerial'], classifiers=['Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Hardware :: Hardware Drivers', ], )
mit
Python
6b329594cbe592554fd6963acb5f4ed50164825e
Revert "Remove pypandoc fallback"
ashleywaite/django-more
setup.py
setup.py
from setuptools import setup try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): long_description = open('README.md').read() test_deps = [ 'psycopg2', 'mysqlclient', ] extras = { 'test': test_deps, } setup( name='django-more', version='0.2.3', author='Ashley Waite', author_email='ashley.c.waite@gmail.com', description='Django with more', long_description=long_description, url='https://github.com/ashleywaite/django-more', packages=[ 'patchy', 'django_more', 'django_more.fields', 'django_more.storages', 'django_enum', 'django_types', ], install_requires=[ 'django', ], python_requires='>=3.4', test_suite='tests.runtests.runtests', tests_require=test_deps, extras_require=extras, license='BSD', classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django :: 1.11', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ] )
from setuptools import setup import pypandoc test_deps = [ 'psycopg2', 'mysqlclient', ] extras = { 'test': test_deps, } setup( name='django-more', version='0.2.3', author='Ashley Waite', author_email='ashley.c.waite@gmail.com', description='Django with more', long_description=pypandoc.convert('README.md', 'rst'), url='https://github.com/ashleywaite/django-more', packages=[ 'patchy', 'django_more', 'django_more.fields', 'django_more.storages', 'django_enum', 'django_types', ], install_requires=[ 'django', ], python_requires='>=3.4', test_suite='tests.runtests.runtests', tests_require=test_deps, extras_require=extras, license='BSD', classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django :: 1.11', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ] )
bsd-3-clause
Python
978c36f6abccde482d0c245354a53d4e642b345d
Update to 1.7.0
DLR-SC/prov-db-connector,DLR-SC/prov-db-connector
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages tests_require = [ 'coverage', 'coveralls' ] docs_require = [ 'Sphinx>=1.3.5', 'recommonmark>=0.4.0', 'sphinx-rtd-theme>=0.1.9', 'sphinxcontrib-napoleon>=0.4.4', 'sphinxcontrib-httpdomain>=1.5.0', 'mock', ] setup( name='prov-db-connector', version='0.3.1', description='PROV Database Connector', keywords=[ 'provenance', 'graph', 'model', 'PROV', 'PROV-DM', 'PROV-JSON', 'JSON', 'PROV-XML', 'PROV-N' ], author='DLR, Stefan Bieliauskas, Martin Stoffers', author_email='opensource@dlr.de, sb@conts.de, martin.stoffers@studserv.uni-leipzig.de', url='https://github.com/DLR-SC/prov-db-connector', classifiers=[ 'Development Status :: 1 - Planning', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5' ], license="Apache License 2.0", packages=find_packages(), package_dir={ 'provdbconnector': 'provdbconnector' }, include_package_data=True, zip_safe=False, install_requires=[ "prov==1.5.2", "neo4j-driver==1.7.0" ], extras_require={ 'test': tests_require, 'dev': tests_require + docs_require, 'docs': docs_require, }, test_suite='provdbconnector.tests', )
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages tests_require = [ 'coverage', 'coveralls' ] docs_require = [ 'Sphinx>=1.3.5', 'recommonmark>=0.4.0', 'sphinx-rtd-theme>=0.1.9', 'sphinxcontrib-napoleon>=0.4.4', 'sphinxcontrib-httpdomain>=1.5.0', 'mock', ] setup( name='prov-db-connector', version='0.3.1', description='PROV Database Connector', keywords=[ 'provenance', 'graph', 'model', 'PROV', 'PROV-DM', 'PROV-JSON', 'JSON', 'PROV-XML', 'PROV-N' ], author='DLR, Stefan Bieliauskas, Martin Stoffers', author_email='opensource@dlr.de, sb@conts.de, martin.stoffers@studserv.uni-leipzig.de', url='https://github.com/DLR-SC/prov-db-connector', classifiers=[ 'Development Status :: 1 - Planning', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5' ], license="Apache License 2.0", packages=find_packages(), package_dir={ 'provdbconnector': 'provdbconnector' }, include_package_data=True, zip_safe=False, install_requires=[ "prov==1.5.2", "neo4j-driver==1.6.2" ], extras_require={ 'test': tests_require, 'dev': tests_require + docs_require, 'docs': docs_require, }, test_suite='provdbconnector.tests', )
apache-2.0
Python
7337a9cdf9fe88ef0e32e10d3daa7882d5c04e77
prepare 2.3.20
openprocurement/openprocurement.tender.openeu
setup.py
setup.py
from setuptools import setup, find_packages import os version = '2.3.20' requires = [ 'setuptools', 'openprocurement.api>=2.3', 'openprocurement.tender.openua' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_points = { 'openprocurement.api.plugins': [ 'aboveThresholdEU = openprocurement.tender.openeu:includeme' ] } here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.txt')) as f: README = f.read() setup(name='openprocurement.tender.openeu', version=version, description="", long_description=README, # Get more strings from # http://pypi.python.org/pypi?:action=list_classifiers classifiers=[ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", ], keywords="web services", author='Quintagroup, Ltd.', author_email='info@quintagroup.com', url='https://github.com/openprocurement/openprocurement.tender.openeu', license='Apache License 2.0', packages=find_packages(exclude=['ez_setup']), namespace_packages=['openprocurement', 'openprocurement.tender'], include_package_data=True, zip_safe=False, install_requires=requires, extras_require={'test': test_requires, 'docs': docs_requires}, test_suite="openprocurement.tender.openeu.tests.main.suite", entry_points=entry_points)
from setuptools import setup, find_packages import os version = '2.3.19' requires = [ 'setuptools', 'openprocurement.api>=2.3', 'openprocurement.tender.openua' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_points = { 'openprocurement.api.plugins': [ 'aboveThresholdEU = openprocurement.tender.openeu:includeme' ] } here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.txt')) as f: README = f.read() setup(name='openprocurement.tender.openeu', version=version, description="", long_description=README, # Get more strings from # http://pypi.python.org/pypi?:action=list_classifiers classifiers=[ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", ], keywords="web services", author='Quintagroup, Ltd.', author_email='info@quintagroup.com', url='https://github.com/openprocurement/openprocurement.tender.openeu', license='Apache License 2.0', packages=find_packages(exclude=['ez_setup']), namespace_packages=['openprocurement', 'openprocurement.tender'], include_package_data=True, zip_safe=False, install_requires=requires, extras_require={'test': test_requires, 'docs': docs_requires}, test_suite="openprocurement.tender.openeu.tests.main.suite", entry_points=entry_points)
apache-2.0
Python
f76323c299da20cccac4e165f8978d5ddca389b7
Bump version to 1.5
SectorLabs/django-postgres-extra
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() setup( name='django-postgres-extra', version='1.5', packages=find_packages(), include_package_data=True, license='MIT License', description='Bringing all of PostgreSQL\'s awesomeness to Django.', long_description=README, url='https://github.com/SectorLabs/django-postgres-extra', author='Sector Labs', author_email='open-source@sectorlabs.ro', keywords=['django', 'postgres', 'extra', 'hstore', 'ltree'], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3.5', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ] )
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() setup( name='django-postgres-extra', version='1.4', packages=find_packages(), include_package_data=True, license='MIT License', description='Bringing all of PostgreSQL\'s awesomeness to Django.', long_description=README, url='https://github.com/SectorLabs/django-postgres-extra', author='Sector Labs', author_email='open-source@sectorlabs.ro', keywords=['django', 'postgres', 'extra', 'hstore', 'ltree'], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3.5', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ] )
mit
Python
511384f46fd566ef49c43cae912b6d637a4b9e97
Bump to 0.9.3
quru/flask-csrf
setup.py
setup.py
""" flask-csrf ---------- A small Flask extension for adding CSRF protection. Links ````` * `documentation <http://sjl.bitbucket.org/flask-csrf/>`_ * `development version <http://bitbucket.org/sjl/flask-csrf/get/tip.gz#egg=flask-csrf-dev`_ """ from setuptools import setup setup( name='flask-csrf', version='0.9.3', url='http://sjl.bitbucket.org/flask-csrf/', license='MIT', author='Steve Losh', author_email='steve@stevelosh.com', description='A small Flask extension for adding CSRF protection.', long_description=__doc__, packages=['flaskext'], namespace_packages=['flaskext'], zip_safe=False, platforms='any', install_requires=[ 'Flask>0.1' ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
""" flask-csrf ---------- A small Flask extension for adding CSRF protection. Links ````` * `documentation <http://sjl.bitbucket.org/flask-csrf/>`_ * `development version <http://bitbucket.org/sjl/flask-csrf/get/tip.gz#egg=flask-csrf-dev`_ """ from setuptools import setup setup( name='flask-csrf', version='0.9.2', url='http://sjl.bitbucket.org/flask-csrf/', license='MIT', author='Steve Losh', author_email='steve@stevelosh.com', description='A small Flask extension for adding CSRF protection.', long_description=__doc__, packages=['flaskext'], namespace_packages=['flaskext'], zip_safe=False, platforms='any', install_requires=[ 'Flask>0.1' ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
mit
Python
812b60d5fdb50faa5c507fd556048c0e6077debd
fix bug setup.py
PyThaiNLP/pythainlp
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup from setuptools import find_packages import codecs with codecs.open('README.rst','r',encoding='utf-8') as readme_file: readme = readme_file.read() requirements = [ 'pyicu>=1.9.2', 'nltk>=3.2.2', 'future>=0.16.0', 'dill', 'six' ] test_requirements = [ # TODO: put package test requirements here ] setup( name='pythainlp', version='1.2', description="Thai NLP in python package.", long_description=readme, author='Wannaphong Phatthiyaphaibun', author_email='wannaphong@yahoo.com', url='https://github.com/wannaphongcom/pythainlp', packages=find_packages(), test_suite='pythainlp.test', package_data={'pythainlp.corpus':['thaipos.json','thaiword.txt','LICENSE_THA_WN','tha-wn.db'],'pythainlp.sentiment':['vocabulary.data','sentiment.data']}, include_package_data=True, install_requires=requirements, license='Apache Software License 2.0', zip_safe=False, keywords='pythainlp', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: Thai', 'Topic :: Text Processing :: Linguistic', 'Programming Language :: Python :: Implementation' ], )
# -*- coding: utf-8 -*- import sys reload(sys) sys.setdefaultencoding('utf8') from setuptools import setup from setuptools import find_packages import codecs with codecs.open('README.rst','r',encoding='utf-8') as readme_file: readme = readme_file.read() requirements = [ 'pyicu>=1.9.2', 'nltk>=3.2.2', 'future>=0.16.0', 'dill', 'six' ] test_requirements = [ # TODO: put package test requirements here ] setup( name='pythainlp', version='1.2', description="Thai NLP in python package.", long_description=readme, author='Wannaphong Phatthiyaphaibun', author_email='wannaphong@yahoo.com', url='https://github.com/wannaphongcom/pythainlp', packages=find_packages(), test_suite='pythainlp.test', package_data={'pythainlp.corpus':['thaipos.json','thaiword.txt','LICENSE_THA_WN','tha-wn.db'],'pythainlp.sentiment':['vocabulary.data','sentiment.data']}, include_package_data=True, install_requires=requirements, license='Apache Software License 2.0', zip_safe=False, keywords='pythainlp', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: Thai', 'Topic :: Text Processing :: Linguistic', 'Programming Language :: Python :: Implementation' ], )
apache-2.0
Python
5f58d9f73b3b674d1d39ea7027a2e6de6dc8ff44
Add requests as installation dependency.
EmilStenstrom/python-nutshell
setup.py
setup.py
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='nutshell', packages=['nutshell'], version='0.1.1', description='A minimal python library to access Nutshell CRM:s JSON-RPC API.', author=u'Emil Stenström', author_email='em@kth.se', url='https://github.com/EmilStenstrom/python-nutshell', download_url='https://github.com/EmilStenstrom/python-nutshell/tarball/0.1.1', install_requires=["requests"], keywords=['nutshell', 'nutshell-crm', 'json-rpc'], classifiers=[], )
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='nutshell', packages=['nutshell'], version='0.1.1', description='A minimal python library to access Nutshell CRM:s JSON-RPC API.', author=u'Emil Stenström', author_email='em@kth.se', url='https://github.com/EmilStenstrom/python-nutshell', download_url='https://github.com/EmilStenstrom/python-nutshell/tarball/0.1.1', keywords=['nutshell', 'nutshell-crm', 'json-rpc'], classifiers=[], )
mit
Python
e6496f03da02a642953334e1d71f869b63cd153b
Bump version.
markstory/lint-review,markstory/lint-review,markstory/lint-review
setup.py
setup.py
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.29.0" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the github API " "& a variety of code checking tools.", author="Mark story", author_email="mark@mark-story.com", packages=find_packages(exclude=['tests*']), entry_points={ 'console_scripts': [ 'lintreview = lintreview.cli:main', ], }, install_requires=requirements.readlines(), )
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.28.4" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the github API " "& a variety of code checking tools.", author="Mark story", author_email="mark@mark-story.com", packages=find_packages(exclude=['tests*']), entry_points={ 'console_scripts': [ 'lintreview = lintreview.cli:main', ], }, install_requires=requirements.readlines(), )
mit
Python
eb6fc7f7e63ef53fd23ef927b1295e332fce2a0d
Install unittest2 for Python 2.6
frewsxcv/python-geojson
setup.py
setup.py
import sys import io from setuptools import setup readme_text = io.open("README.rst", "r").read() def test_suite(): import doctest try: import unittest2 as unittest except: import unittest suite = unittest.TestLoader().discover("tests") suite.addTest(doctest.DocFileSuite("README.rst")) return suite if sys.version_info[:2] not in [(2, 6), (2, 7)] and \ sys.version_info[:1] not in [(3, )]: sys.stderr.write("Sorry, only Python 2.6, 2.7, and 3.x are supported " "at this time.\n") exit(1) tests_require = [] if sys.version_info[:2] == (2, 6): tests_require.append("unittest2") # Get around this issue: http://bugs.python.org/issue15881 # Appears to be a problem in older versions of Python 2.6 and 2.7 import multiprocessing # NOQA setup( name="geojson", version="1.0.7", description="Python bindings and utilities for GeoJSON", license="BSD", keywords="gis geography json", author="Sean Gillies", author_email="sgillies@frii.com", maintainer="Corey Farwell", maintainer_email="coreyf@rwell.org", url="https://github.com/frewsxcv/python-geojson", long_description=readme_text, packages=["geojson"], package_dir={"geojson": "geojson"}, package_data={"geojson": ["*.rst"]}, install_requires=["setuptools"], test_suite="setup.test_suite", tests_require=tests_require, classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Topic :: Scientific/Engineering :: GIS", ] )
import doctest import sys import io import unittest from setuptools import setup readme_text = io.open("README.rst", "r").read() def test_suite(): suite = unittest.TestLoader().discover("tests") suite.addTest(doctest.DocFileSuite("README.rst")) return suite if sys.version_info[:2] not in [(2, 6), (2, 7)] and \ sys.version_info[:1] not in [(3, )]: sys.stderr.write("Sorry, only Python 2.6, 2.7, and 3.x are supported " "at this time.\n") exit(1) # Get around this issue: http://bugs.python.org/issue15881 # Appears to be a problem in older versions of Python 2.6 and 2.7 import multiprocessing # NOQA setup( name="geojson", version="1.0.7", description="Python bindings and utilities for GeoJSON", license="BSD", keywords="gis geography json", author="Sean Gillies", author_email="sgillies@frii.com", maintainer="Corey Farwell", maintainer_email="coreyf@rwell.org", url="https://github.com/frewsxcv/python-geojson", long_description=readme_text, packages=["geojson"], package_dir={"geojson": "geojson"}, package_data={"geojson": ["*.rst"]}, install_requires=["setuptools"], test_suite="setup.test_suite", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Topic :: Scientific/Engineering :: GIS", ] )
bsd-3-clause
Python
37f96e1adae32fcf668207c54074fdd52a10f014
Bump version to 3.4m1
cloudify-cosmo/cloudify-rest-client
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='3.4a1', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', ] )
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='3.3', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', ] )
apache-2.0
Python
3b33bbd2513c78a642139784995007560dd84070
fix of package data path
tudo-astroparticlephysics/starry_night
setup.py
setup.py
from distutils.core import setup setup( name='starry_night', version='1.1', description='A tool for detecting clouds in the night sky based on star detection.', url='https://bitbucket.org/solarer/starry_night', author='Jan Adam', author_email='jan.adam@tu-dortmund.de', license='MIT', packages=[ 'starry_night', ], install_requires=[ 'pandas', 'scipy', 'pyephem', 'requests', 'numpy', 'matplotlib>=1.4', 'docopt', 'setuptools', 'scikit-image', 'astropy', ], test_suite='nose.collector', tests_require=['nose'], scripts=['scripts/starry_night', 'scripts/configure'], package_data={ 'starry_night': [ 'data/catalogue_10vmag_1.0degFilter.csv', 'data/catalogue_10vmag_0.8degFilter.csv', 'data/CTA_cam.config', 'data/GTC_cam.config', 'data/IceCube_cam.config', 'data/Magic_cam1.config', 'data/Magic_cam2.config', 'data/example_sources.csv', ] }, zip_safe=False )
from distutils.core import setup setup( name='starry_night', version='1.1', description='A tool for detecting clouds in the night sky based on star detection.', url='https://bitbucket.org/solarer/starry_night', author='Jan Adam', author_email='jan.adam@tu-dortmund.de', license='MIT', packages=[ 'starry_night', ], install_requires=[ 'pandas', 'scipy', 'pyephem', 'requests', 'numpy', 'matplotlib>=1.4', 'docopt', 'setuptools', 'scikit-image', 'astropy', ], test_suite='nose.collector', tests_require=['nose'], scripts=['scripts/starry_night', 'scripts/configure'], package_data={ 'starry_night': [ 'data/catalogue_10vmag_1.0degFilter.csv', 'data/catalogue_10vmag_0.8degFilter.csv', 'data/CTA_cam.config', 'data/GTC_cam.config', 'data/IceCube_cam.config', 'data/Magic1_cam.config', 'data/Magic2_cam.config', 'data/example_sources.csv', ] }, zip_safe=False )
mit
Python
35043e302516ac9d826f30e9ee168f6f5877e57f
add url to setup
bendichter/brokenaxes
setup.py
setup.py
from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='brokenaxes', version='0.4.1', description='Create broken axes', long_description=long_description, long_description_content_type="text/markdown", author='Ben Dichter', url='https://github.com/bendichter/brokenaxes', author_email='ben.dichter@gmail.com', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], keywords='data visualization', #packages=find_packages(exclude=['docs']), py_modules=["brokenaxes"], # List run-time dependencies here. These will be installed by pip when # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=['matplotlib'], # List additional groups of dependencies here (e.g. development # dependencies). You can install these using the following syntax, # for example: # $ pip install -e .[dev,test] extras_require={ # 'dev': ['check-manifest'], 'test': ['pytest'], }, # To provide executable scripts, use entry points in preference to the # "scripts" keyword. Entry points provide cross-platform support and allow # pip to create the appropriate form of executable for the target platform. #entry_points={ # 'console_scripts': [ # 'sample=sample:main', # ], #}, )
from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='brokenaxes', version='0.4.1', description='Create broken axes', long_description=long_description, long_description_content_type="text/markdown", author='Ben Dichter', author_email='ben.dichter@gmail.com', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], keywords='data visualization', #packages=find_packages(exclude=['docs']), py_modules=["brokenaxes"], # List run-time dependencies here. These will be installed by pip when # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=['matplotlib'], # List additional groups of dependencies here (e.g. development # dependencies). You can install these using the following syntax, # for example: # $ pip install -e .[dev,test] extras_require={ # 'dev': ['check-manifest'], 'test': ['pytest'], }, # To provide executable scripts, use entry points in preference to the # "scripts" keyword. Entry points provide cross-platform support and allow # pip to create the appropriate form of executable for the target platform. #entry_points={ # 'console_scripts': [ # 'sample=sample:main', # ], #}, )
mit
Python
3549a9fd97876fcc1082a5aedad655c6f3e6bf8b
switch development status to "Beta"
carfi/robotframework-hub,carfi/robotframework-hub,boakley/robotframework-hub,boakley/robotframework-hub,boakley/robotframework-hub,carfi/robotframework-hub
setup.py
setup.py
# N.B. to push a new version to PyPi, update the version number # in rfhub/version.py and then run 'python setup.py sdist upload' from setuptools import setup execfile('rfhub/version.py') setup( name = 'robotframework-hub', version = __version__, author = 'Bryan Oakley', author_email = 'bryan.oakley@gmail.com', url = 'https://github.com/boakley/robotframework-hub/', keywords = 'robotframework', license = 'Apache License 2.0', description = 'Webserver for robot framework assets', long_description = open('README.md').read(), zip_safe = False, include_package_data = True, install_requires = ['Flask', 'watchdog', 'robotframework', 'tornado'], classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Quality Assurance", "Intended Audience :: Developers", ], packages =[ 'rfhub', 'rfhub.blueprints', 'rfhub.blueprints.api', 'rfhub.blueprints.doc', 'rfhub.blueprints.dashboard', ], scripts =[], )
# N.B. to push a new version to PyPi, update the version number # in rfhub/version.py and then run 'python setup.py sdist upload' from setuptools import setup execfile('rfhub/version.py') setup( name = 'robotframework-hub', version = __version__, author = 'Bryan Oakley', author_email = 'bryan.oakley@gmail.com', url = 'https://github.com/boakley/robotframework-hub/', keywords = 'robotframework', license = 'Apache License 2.0', description = 'Webserver for robot framework assets', long_description = open('README.md').read(), zip_safe = False, include_package_data = True, install_requires = ['Flask', 'watchdog', 'robotframework', 'tornado'], classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Quality Assurance", "Intended Audience :: Developers", ], packages =[ 'rfhub', 'rfhub.blueprints', 'rfhub.blueprints.api', 'rfhub.blueprints.doc', 'rfhub.blueprints.dashboard', ], scripts =[], )
apache-2.0
Python
65c83540e34fc23af8e07a0cb7555d60534726af
Change order of extra requirements.
sgmap/openfisca-core,benjello/openfisca-core,openfisca/openfisca-core,benjello/openfisca-core,adrienpacifico/openfisca-core,openfisca/openfisca-core
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # OpenFisca is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """OpenFisca -- a versatile microsimulation free software OpenFisca includes a framework to simulate any tax and social system. """ from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System :: POSIX Programming Language :: Python Topic :: Scientific/Engineering :: Information Analysis """ doc_lines = __doc__.split('\n') setup( name = 'OpenFisca-Core', version = '0.2dev', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier], description = doc_lines[0], keywords = 'benefit microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', long_description = '\n'.join(doc_lines[2:]), url = 'https://github.com/openfisca/openfisca-core', data_files = [ ('share/locale/fr/LC_MESSAGES', ['openfisca_core/i18n/fr/LC_MESSAGES/openfisca-core.mo']), ], install_requires = [ 'Babel >= 0.9.4', 'Biryani1 >= 0.9dev [datetimeconv]', 'numpy', 'pandas >= 0.13', ], message_extractors = { 'openfisca_core': [ ('**.py', 'python', None), ], }, # package_data = {'openfisca_core': ['i18n/*/LC_MESSAGES/*.mo']}, packages = find_packages(), zip_safe = False, )
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # OpenFisca is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """OpenFisca -- a versatile microsimulation free software OpenFisca includes a framework to simulate any tax and social system. """ from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System :: POSIX Programming Language :: Python Topic :: Scientific/Engineering :: Information Analysis """ doc_lines = __doc__.split('\n') setup( name = 'OpenFisca-Core', version = '0.2dev', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier], description = doc_lines[0], keywords = 'benefit microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', long_description = '\n'.join(doc_lines[2:]), url = 'https://github.com/openfisca/openfisca-core', data_files = [ ('share/locale/fr/LC_MESSAGES', ['openfisca_core/i18n/fr/LC_MESSAGES/openfisca-core.mo']), ], install_requires = [ 'Babel >= 0.9.4', 'Biryani1[datetimeconv] >= 0.9dev', 'numpy', 'pandas >= 0.13', ], message_extractors = { 'openfisca_core': [ ('**.py', 'python', None), ], }, # package_data = {'openfisca_core': ['i18n/*/LC_MESSAGES/*.mo']}, packages = find_packages(), zip_safe = False, )
agpl-3.0
Python
1a6418686fbf9d8ac87fc5d65fddba4d8c644e5c
update 0.4.10
chainer/chainercv,yuyu2172/chainercv,yuyu2172/chainercv,pfnet/chainercv,chainer/chainercv
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from setuptools import find_packages from Cython.Distutils import build_ext from distutils.extension import Extension import numpy as np description = """ Collection of Deep Learning Computer Vision Algorithms implemented in Chainer """ ext_modules = [ Extension('chainercv.utils.bbox._nms_gpu_post', ['chainercv/utils/bbox/_nms_gpu_post.pyx']), ] cmdclass = {'build_ext': build_ext} install_requires = [ 'chainer==1.24', 'Cython', 'Pillow' ] setup( name='chainercv', version='0.4.10', packages=find_packages(), author='Yusuke Niitani', author_email='yuyuniitani@gmail.com', license='MIT', description=description, install_requires=install_requires, include_package_data=True, # for Cython ext_modules=ext_modules, cmdclass=cmdclass, include_dirs=[np.get_include()], )
#!/usr/bin/env python from distutils.core import setup from setuptools import find_packages from Cython.Distutils import build_ext from distutils.extension import Extension import numpy as np description = """ Collection of Deep Learning Computer Vision Algorithms implemented in Chainer """ ext_modules = [ Extension('chainercv.utils.bbox._nms_gpu_post', ['chainercv/utils/bbox/_nms_gpu_post.pyx']), ] cmdclass = {'build_ext': build_ext} install_requires = [ 'chainer==1.24', 'Cython', 'Pillow' ] setup( name='chainercv', version='0.4.9', packages=find_packages(), author='Yusuke Niitani', author_email='yuyuniitani@gmail.com', license='MIT', description=description, install_requires=install_requires, include_package_data=True, # for Cython ext_modules=ext_modules, cmdclass=cmdclass, include_dirs=[np.get_include()], )
mit
Python
bd4259d335a0dd68d41e4a4a22ee6a12761a67c0
add number
PyThaiNLP/pythainlp
setup.py
setup.py
# ระบบติดตั้ง from distutils.core import setup setup(name='pythai-nlp', version='0.1', #description='Python Distribution Utilities', author='Wannaphong', author_email='wannaphong@yahoo.com', #url='https://www.python.org/sigs/distutils-sig/', packages=['romanization','number'], license='Apache License Version 2.0' classifiers=[ 'Development Status :: 1 - Planning', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: Thai', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy3' ], )
# ระบบติดตั้ง from distutils.core import setup setup(name='pythai-nlp', version='0.1', #description='Python Distribution Utilities', author='Wannaphong', author_email='wannaphong@yahoo.com', #url='https://www.python.org/sigs/distutils-sig/', packages=['romanization'], license='Apache License Version 2.0' classifiers=[ 'Development Status :: 1 - Planning', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: Thai', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy3' ], )
apache-2.0
Python
f8b5f939296414fc02baec948c4203755f6345b6
Fix url
ZeitOnline/zeit.content.link
setup.py
setup.py
from setuptools import setup, find_packages setup( name='zeit.content.link', version='2.0.0.dev0', author='gocept', author_email='mail@gocept.com', url='https://bitbucket.org/gocept/zeit.content.link', description="ZEIT Link", packages=find_packages('src'), package_dir={'': 'src'}, include_package_data=True, zip_safe=False, license='gocept proprietary', namespace_packages=['zeit', 'zeit.content'], install_requires=[ 'lxml', 'setuptools', 'zc.sourcefactory', 'zeit.cms>=2.15.0.dev0', 'zeit.content.image', 'zeit.connector', 'zope.cachedescriptors', 'zope.component', 'zope.formlib', 'zope.interface', 'zope.publisher', 'zope.schema', 'zope.testbrowser', ], )
from setuptools import setup, find_packages setup( name='zeit.content.link', version='2.0.0.dev0', author='gocept', author_email='mail@gocept.com', url='https://svn.gocept.com/repos/gocept-int/zeit.cms', description="ZEIT Link", packages=find_packages('src'), package_dir={'': 'src'}, include_package_data=True, zip_safe=False, license='gocept proprietary', namespace_packages=['zeit', 'zeit.content'], install_requires=[ 'lxml', 'setuptools', 'zc.sourcefactory', 'zeit.cms>=2.15.0.dev0', 'zeit.content.image', 'zeit.connector', 'zope.cachedescriptors', 'zope.component', 'zope.formlib', 'zope.interface', 'zope.publisher', 'zope.schema', 'zope.testbrowser', ], )
bsd-3-clause
Python
f7290953dc1295f7918949b06f03b638b691eac2
bump required sendgrid version
ApplauseAQI/sendgrid-django,CloudNcodeInc/sendgrid-django,elbuo8/sendgrid-django
setup.py
setup.py
from setuptools import setup, find_packages __version__ = None with open('sgbackend/version.py') as f: exec(f.read()) setup( name='sendgrid-django', version=str(__version__), author='Yamil Asusta', author_email='yamil@sendgrid.com', url='https://github.com/elbuo8/sendgrid-django', packages=find_packages(), license='MIT', description='SendGrid Backend for Django', long_description=open('./README.rst').read(), install_requires=["sendgrid==1.3.0"], )
from setuptools import setup, find_packages __version__ = None with open('sgbackend/version.py') as f: exec(f.read()) setup( name='sendgrid-django', version=str(__version__), author='Yamil Asusta', author_email='yamil@sendgrid.com', url='https://github.com/elbuo8/sendgrid-django', packages=find_packages(), license='MIT', description='SendGrid Backend for Django', long_description=open('./README.rst').read(), install_requires=["sendgrid==0.5.1"], )
mit
Python
bf9ce43ed2c284438447323eb25a91c2188da420
Fix version
SpectraLogic/ds3_python3_sdk,SpectraLogic/ds3_python3_sdk,SpectraLogic/ds3_python3_sdk
setup.py
setup.py
# Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. # Licensed under the Apache License, Version 2.0 (the "License"). You may not use # this file except in compliance with the License. A copy of the License is located at # # http://www.apache.org/licenses/LICENSE-2.0 # # or in the "license" file accompanying this file. # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR # CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. #!/usr/bin/env python from distutils.core import setup setup(name='DS3 SDK', version='4.1.0', description='Python3 SDK and CLI for Spectra S3', author_email='developer@spectralogic.com', packages=['ds3'])
# Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. # Licensed under the Apache License, Version 2.0 (the "License"). You may not use # this file except in compliance with the License. A copy of the License is located at # # http://www.apache.org/licenses/LICENSE-2.0 # # or in the "license" file accompanying this file. # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR # CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. #!/usr/bin/env python from distutils.core import setup setup(name='DS3 SDK', version='3.4.1', description='Python SDK and CLI for Spectra S3', author_email='developer@spectralogic.com', packages=['ds3'])
apache-2.0
Python
a307bb6d7b7867efd1725385b24fe09c2f5011b4
Revert "Force rlp=0.3.9 to attempt fix build"
karlfloersch/pyethereum,ethereum/pyethereum,shahankhatch/pyethereum,pipermerriam/pyethereum,ethereum/pyethereum,karlfloersch/pyethereum,shahankhatch/pyethereum,pipermerriam/pyethereum
setup.py
setup.py
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = [] def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): # import here, cause outside the eggs aren't loaded import pytest errno = pytest.main(self.pytest_args) sys.exit(errno) with open('README.rst') as readme_file: readme = readme_file.read() console_scripts = [] cmdclass = dict(test=PyTest) # requirements install_requires = set(x.strip() for x in open('requirements.txt')) install_requires_replacements = { 'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp>=0.3.9', 'https://github.com/ethereum/ethash/tarball/master': 'pyethash'} install_requires = [install_requires_replacements.get(r, r) for r in install_requires] # dev requirements tests_require = set(x.strip() for x in open('dev_requirements.txt')) tests_require_replacements = { 'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1'} tests_require = [tests_require_replacements.get(r, r) for r in tests_require] setup(name="ethereum", packages=find_packages("."), description='Next generation cryptocurrency network', long_description=readme, url='https://github.com/ethereum/pyethereum/', install_requires=install_requires, tests_require=tests_require, entry_points=dict(console_scripts=console_scripts), version='1.0.6', cmdclass=cmdclass )
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = [] def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): # import here, cause outside the eggs aren't loaded import pytest errno = pytest.main(self.pytest_args) sys.exit(errno) with open('README.rst') as readme_file: readme = readme_file.read() console_scripts = [] cmdclass = dict(test=PyTest) # requirements install_requires = set(x.strip() for x in open('requirements.txt')) install_requires_replacements = { 'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp==0.3.9', 'https://github.com/ethereum/ethash/tarball/master': 'pyethash'} install_requires = [install_requires_replacements.get(r, r) for r in install_requires] # dev requirements tests_require = set(x.strip() for x in open('dev_requirements.txt')) tests_require_replacements = { 'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1'} tests_require = [tests_require_replacements.get(r, r) for r in tests_require] setup(name="ethereum", packages=find_packages("."), description='Next generation cryptocurrency network', long_description=readme, url='https://github.com/ethereum/pyethereum/', install_requires=install_requires, tests_require=tests_require, entry_points=dict(console_scripts=console_scripts), version='1.0.6', cmdclass=cmdclass )
mit
Python
e9595846d98a148c16250f94ab82ff2f81bc3644
update package version.
gonsuke/python-luxio,gonsuke/python-luxio,gonsuke/python-luxio
setup.py
setup.py
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext classifiers = """ Development Status :: 1 - Beta Intended Audience :: Developers Operating System :: OS Independent Programming Language :: Python :: 2 Topic :: Software Development :: Libraries Topic :: Database """ with open('README.rst') as f: long_description = f.read() setup( name='python-luxio', version='0.0.3', license='New BSD', description='Python extension for Lux IO', author='Takashi Matsuno', author_email='g0n5uk3@gmail.com', url='https://github.com/gonsuke/python-luxio', long_description=long_description, packages = ['luxio'], ext_modules=[ Extension( "luxio._luxio", ["README.rst", "luxio/_luxio.pyx", "luxio/_luxio.pxd", "luxio/del.h"], language="c++", libraries=['luxio'] ) ], cmdclass={'build_ext': build_ext}, )
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext classifiers = """ Development Status :: 1 - Beta Intended Audience :: Developers Operating System :: OS Independent Programming Language :: Python :: 2 Topic :: Software Development :: Libraries Topic :: Database """ with open('README.rst') as f: long_description = f.read() setup( name='python-luxio', version='0.0.2', license='New BSD', description='Python extension for Lux IO', author='Takashi Matsuno', author_email='g0n5uk3@gmail.com', url='https://github.com/gonsuke/python-luxio', long_description=long_description, packages = ['luxio'], ext_modules=[ Extension( "luxio._luxio", ["README.rst", "luxio/_luxio.pyx", "luxio/_luxio.pxd", "luxio/del.h"], language="c++", libraries=['luxio'] ) ], cmdclass={'build_ext': build_ext}, )
bsd-3-clause
Python
444e88d840421336c0e253986d24d0f5ba758af4
Bump version to 0.12.6
thombashi/pytablereader,thombashi/pytablereader,thombashi/pytablereader
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "introduction", "summary.txt")) as f: summary = f.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install_requires = [line.strip() for line in f if line.strip()] if any([ sys.version_info.major < 3, sys.version_info.major == 3 and sys.version_info.minor < 4, ]): install_requires.append("enum34") with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f: tests_require = [line.strip() for line in f if line.strip()] setuptools.setup( name="pytablereader", version="0.12.6", url="https://github.com/thombashi/pytablereader", author="Tsuyoshi Hombashi", author_email="tsuyoshi.hombashi@gmail.com", description=summary, include_package_data=True, install_requires=install_requires, keywords=[ "table", "reader", "pandas", "CSV", "Excel", "HTML", "JSON", "LTSV", "Markdown", "MediaWiki", "TSV", "SQLite", ], long_description=long_description, license="MIT License", packages=setuptools.find_packages(exclude=["test*"]), setup_requires=pytest_runner, tests_require=tests_require, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Database", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], )
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "introduction", "summary.txt")) as f: summary = f.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install_requires = [line.strip() for line in f if line.strip()] if any([ sys.version_info.major < 3, sys.version_info.major == 3 and sys.version_info.minor < 4, ]): install_requires.append("enum34") with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f: tests_require = [line.strip() for line in f if line.strip()] setuptools.setup( name="pytablereader", version="0.12.5", url="https://github.com/thombashi/pytablereader", author="Tsuyoshi Hombashi", author_email="tsuyoshi.hombashi@gmail.com", description=summary, include_package_data=True, install_requires=install_requires, keywords=[ "table", "reader", "pandas", "CSV", "Excel", "HTML", "JSON", "LTSV", "Markdown", "MediaWiki", "TSV", "SQLite", ], long_description=long_description, license="MIT License", packages=setuptools.find_packages(exclude=["test*"]), setup_requires=pytest_runner, tests_require=tests_require, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Database", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], )
mit
Python
11c30bfa18270bdced8c3861e6fec874e52db550
Update setup.py (still in progress)
Linaro/lava-server,Linaro/lava-server,Linaro/lava-server,Linaro/lava-server,OSSystems/lava-server,OSSystems/lava-server,OSSystems/lava-server
setup.py
setup.py
#!/usr/bin/env python # # Copyright (C) 2010 Linaro Limited # # Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org> # # This file is part of Launch Control. # # Launch Control is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # as published by the Free Software Foundation # # Launch Control is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Launch Control. If not, see <http://www.gnu.org/licenses/>. from setuptools import setup, find_packages import dashboard_app import versiontools setup( name = 'lava-dashboard', version = versiontools.format_version(dashboard_app.__version__), author = "Zygmunt Krynicki", author_email = "zygmunt.krynicki@linaro.org", packages = find_packages(), license = "AGPL", description = "Validation Dashboard for LAVA Server", long_description = """ Validation Dashboard is a repository for test results. """, url='https://launchpad.net/lava-dashboard', #test_suite='launch_control.tests.test_suite', entry_points = """ [lava_server.extensions] dashboard=dashboard_app.extension:DashboardExtension """, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Topic :: Software Development :: Testing", ], install_requires = [ 'Django >= 1.2', 'django-pagination >= 1.0.7.1', 'django-restricted-resource >= 0.2.5', 'docutils >= 0.6', 'lava-server', 'linaro-dashboard-bundle >= 1.4', 'linaro-json >= 2.0', 'pygments >= 1.2', 'south >= 0.7', 'versiontools >= 1.1', ], setup_requires = [ 'versiontools >= 1.1', ], tests_require = [ 'django-testscenarios >= 0.6', ], zip_safe=False, include_package_data=True )
#!/usr/bin/env python # # Copyright (C) 2010 Linaro Limited # # Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org> # # This file is part of Launch Control. # # Launch Control is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # as published by the Free Software Foundation # # Launch Control is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Launch Control. If not, see <http://www.gnu.org/licenses/>. from setuptools import setup, find_packages import dashboard_app import versiontools setup( name = 'launch-control', version = versiontools.format_version(dashboard_app.__version__), author = "Zygmunt Krynicki", author_email = "zygmunt.krynicki@linaro.org", packages = find_packages(), license = "AGPL", description = "Dashboard for linaro LAVA stack", long_description = """ Launch control is a collection of tools for distribution wide QA management. It is implemented for the Linaro organization. """, url='https://launchpad.net/launch-control', #test_suite='launch_control.tests.test_suite', classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Topic :: Software Development :: Testing", ], install_requires = [ 'Django >= 1.2', 'django-openid-auth >= 0.2', 'django-pagination >= 1.0.7.1', 'django-restricted-resource >= 0.2.5', "django-staticfiles >= 0.3.4", 'docutils >= 0.6', 'linaro-dashboard-bundle >= 1.4', 'linaro-json >= 2.0', 'python-openid >= 2.2.4', # this should be a part of django-openid-auth deps 'versiontools >= 1.1', 'south >= 0.7', 'pygments >= 1.2', ], setup_requires = [ 'versiontools >= 1.1', ], tests_require = [ 'django-testscenarios >= 0.6', ], zip_safe=False, include_package_data=True ),
agpl-3.0
Python
8822be1ded3e558ba840a4dec74a43f63a9edad4
Test content type
michaelhelmick/lassie,michaelhelmick/lassie
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup __version__ = '0.11.10' packages = [ 'lassie', 'lassie.filters', 'lassie.filters.oembed' ] setup( name='lassie', version=__version__, install_requires=open("requirements.txt").read().split("\n"), author='Mike Helmick', license=open('LICENSE').read(), url='https://github.com/michaelhelmick/lassie/tree/master', keywords='lassie open graph web content scrape scraper', description='Lassie is a Python library for retrieving basic content from websites', long_description=open('README.rst').read(), long_description_content_type="text/x-rst", include_package_data=True, packages=packages, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', ] )
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup __version__ = '0.11.10' packages = [ 'lassie', 'lassie.filters', 'lassie.filters.oembed' ] setup( name='lassie', version=__version__, install_requires=open("requirements.txt").read().split("\n"), author='Mike Helmick', author_email='me@michaelhelmick.com', license=open('LICENSE').read(), url='https://github.com/michaelhelmick/lassie/tree/master', keywords='lassie open graph web content scrape scraper', description='Lassie is a Python library for retrieving basic content from websites', long_description=open('README.rst').read(), include_package_data=True, packages=packages, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', ] )
mit
Python
da22b1f76e2a2bc64c19632668d15ee048a6c0dd
update version number to 1.3.1
tomturner/django-tenants,tomturner/django-tenants,tomturner/django-tenants
setup.py
setup.py
#!/usr/bin/env python import io from os.path import exists try: from setuptools import setup except ImportError: from distutils.core import setup __version__ = "1.3.1" setup( name='django-tenants', version=__version__, author='Thomas Turner', author_email='tom@twt.me.uk', packages=[ 'django_tenants', 'django_tenants.postgresql_backend', 'django_tenants.management', 'django_tenants.management.commands', 'django_tenants.migration_executors', 'django_tenants.templatetags', 'django_tenants.test', 'django_tenants.tests', 'django_tenants.staticfiles', ], scripts=[], url='https://github.com/tomturner/django-tenants', license='MIT', description='Tenant support for Django using PostgreSQL schemas.', long_description=io.open('README.rst', encoding='utf-8').read() if exists("README.rst") else "", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'License :: OSI Approved :: MIT License', 'Framework :: Django', 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', 'Framework :: Django :: 1.10', 'Framework :: Django :: 1.11', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries :: Python Modules' ], install_requires=[ 'Django >= 1.8.0,<2.0.0', 'psycopg2', ], zip_safe=False, )
#!/usr/bin/env python import io from os.path import exists try: from setuptools import setup except ImportError: from distutils.core import setup __version__ = "1.3.0" setup( name='django-tenants', version=__version__, author='Thomas Turner', author_email='tom@twt.me.uk', packages=[ 'django_tenants', 'django_tenants.postgresql_backend', 'django_tenants.management', 'django_tenants.management.commands', 'django_tenants.migration_executors', 'django_tenants.templatetags', 'django_tenants.test', 'django_tenants.tests', 'django_tenants.staticfiles', ], scripts=[], url='https://github.com/tomturner/django-tenants', license='MIT', description='Tenant support for Django using PostgreSQL schemas.', long_description=io.open('README.rst', encoding='utf-8').read() if exists("README.rst") else "", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'License :: OSI Approved :: MIT License', 'Framework :: Django', 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', 'Framework :: Django :: 1.10', 'Framework :: Django :: 1.11', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries :: Python Modules' ], install_requires=[ 'Django >= 1.8.0,<2.0.0', 'psycopg2', ], zip_safe=False, )
mit
Python
134884ca5beb5768ba9778a88133f330250f4f94
Add pytest coverage analyser
AbeelLab/phasm,AbeelLab/phasm
setup.py
setup.py
import os from setuptools import setup, find_packages # Nice hack to retrieve docstring and version without importing the module __version__ = None __doc__ = '' read_doc = 0 # Not started, in progress, done init_file = os.path.join(os.path.dirname(__file__), 'phasm', '__init__.py') for line in open(init_file).readlines(): if line.startswith('version_info') or line.startswith('__version__'): exec(line.strip()) elif line.startswith('"""'): if read_doc == 0: read_doc = 1 line = line.lstrip('"') elif read_doc == 1: read_doc = 2 if read_doc == 1: __doc__ += line setup( name='phasm', version=__version__, packages=find_packages(), author='Lucas van Dijk', author_email='info@lucasvandijk.nl', url='https://bitbucket.org/tudelft-bioinformatics/phasm', description='Haplotype-aware de novo genome assembler for aneuploid ' 'organisms from long read data.', long_description=__doc__.strip(), license='MIT', # Dependencies install_requires=[ 'networkx>=1.9', ], setup_requires=['pytest-runner'], test_requires=['pytest', 'pytest-cov'] )
import os from setuptools import setup, find_packages # Nice hack to retrieve docstring and version without importing the module __version__ = None __doc__ = '' read_doc = 0 # Not started, in progress, done init_file = os.path.join(os.path.dirname(__file__), 'phasm', '__init__.py') for line in open(init_file).readlines(): if line.startswith('version_info') or line.startswith('__version__'): exec(line.strip()) elif line.startswith('"""'): if read_doc == 0: read_doc = 1 line = line.lstrip('"') elif read_doc == 1: read_doc = 2 if read_doc == 1: __doc__ += line setup( name='phasm', version=__version__, packages=find_packages(), author='Lucas van Dijk', author_email='info@lucasvandijk.nl', url='https://bitbucket.org/tudelft-bioinformatics/phasm', description='Haplotype-aware de novo genome assembler for aneuploid ' 'organisms from long read data.', long_description=__doc__.strip(), license='MIT', # Dependencies install_requires=[ 'networkx>=1.9', ], setup_requires=['pytest-runner'], test_requires=['pytest'] )
mit
Python
703ece22035fa92f71c14498283dc6211654f6c3
Bump version
jesolem/geo-tools
setup.py
setup.py
from setuptools import setup setup(name='geo-tools', version='0.11', description='Collection of geo tools', author='Jan Erik Solem', url='https://github.com/jesolem/geo-tools', packages=['gh_geojson', 'geo_exif', 'geocoding'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', ])
from setuptools import setup setup(name='geo-tools', version='0.1', description='Collection of geo tools', author='Jan Erik Solem', url='https://github.com/jesolem/geo-tools', packages=['gh_geojson', 'geo_exif', 'geocoding'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', ])
bsd-2-clause
Python
c04e740db80792076c5a7299da8e552dfa3603bf
Include Package Data was missing.
Kirembu/django-helpline-faq,Kirembu/django-helpline-faq
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'django-helpline-faq', version = '1.1', description = 'A simple FAQ application for Django sites.', long_description = read('README.rst'), license = "BSD", author ='Kevin Fricovsky', author_email = 'kfricovsky@gmail.com', url = 'http://django-fack.rtfd.org/', packages = find_packages(exclude=['example']), include_package_data=True, zip_safe = False, classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Framework :: Django', ], install_requires = ['Django >= 1.3'], test_suite = "faq._testrunner.runtests", tests_require = ["mock"], )
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'django-helpline-faq', version = '1.1', description = 'A simple FAQ application for Django sites.', long_description = read('README.rst'), license = "BSD", author ='Kevin Fricovsky', author_email = 'kfricovsky@gmail.com', url = 'http://django-fack.rtfd.org/', packages = find_packages(exclude=['example']), zip_safe = False, classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Framework :: Django', ], install_requires = ['Django >= 1.3'], test_suite = "faq._testrunner.runtests", tests_require = ["mock"], )
bsd-3-clause
Python
36ba7e4df64981ff50bf77d0d227a74e15620ec4
Update to 0.0.19
njoyard/django-representatives,political-memory/django-representatives
setup.py
setup.py
from setuptools import find_packages, setup setup( name='django-representatives', version='0.0.19', description='Base app for government representative', author='Laurent Peuch, Olivier Le Thanh Duong, Yohan Boniface, Arnaud Fabre, James Pic, Nicolas Joyard', author_email='webmaster@memopol.org', url='http://github.com/political-memory/django-representatives', packages=find_packages(), include_package_data=True, license='GPLv3', keywords='django government parliament', install_requires=[ 'ijson', ], extras_require={ 'celery': 'celery', 'api': [ 'django-filter', 'djangorestframework', ] }, entry_points={ 'console_scripts': [ 'parltrack_import_representatives = representatives.contrib.parltrack.import_representatives:main', 'francedata_import_representatives = representatives.contrib.francedata.import_representatives:main', ] }, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
from setuptools import find_packages, setup setup( name='django-representatives', version='0.0.18', description='Base app for government representative', author='Laurent Peuch, Olivier Le Thanh Duong, Yohan Boniface, Arnaud Fabre, James Pic, Nicolas Joyard', author_email='webmaster@memopol.org', url='http://github.com/political-memory/django-representatives', packages=find_packages(), include_package_data=True, license='GPLv3', keywords='django government parliament', install_requires=[ 'ijson', ], extras_require={ 'celery': 'celery', 'api': [ 'django-filter', 'djangorestframework', ] }, entry_points={ 'console_scripts': [ 'parltrack_import_representatives = representatives.contrib.parltrack.import_representatives:main', 'francedata_import_representatives = representatives.contrib.francedata.import_representatives:main', ] }, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
agpl-3.0
Python
fbdae9649131545d0150ab050f04b0766679c9ba
Bump version
cloudify-cosmo/cloudify-rest-client
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='4.0rc1', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', 'requests_toolbelt' ] )
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='4.0a15', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', 'requests_toolbelt' ] )
apache-2.0
Python
759957d7002e5ca2461b74575b0fb40811021a08
Update license classifier
mattandahalfew/Levenshtein_search,mattandahalfew/Levenshtein_search,mattandahalfew/Levenshtein_search
setup.py
setup.py
from setuptools import setup, Extension setup( name='Levenshtein_search', url='https://github.com/mattandahalfew/Levenshtein_search', version='1.4.5', author='Matt Anderson', author_email='manderson3606@gmail.com', description='Search through documents for approximately matching strings', packages=[], ext_modules=[Extension('Levenshtein_search',['Lev_search.c'])], install_requires=[], classifiers=[ 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Information Analysis', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'])
from setuptools import setup, Extension setup( name='Levenshtein_search', url='https://github.com/mattandahalfew/Levenshtein_search', version='1.4.5', author='Matt Anderson', author_email='manderson3606@gmail.com', description='Search through documents for approximately matching strings', packages=[], ext_modules=[Extension('Levenshtein_search',['Lev_search.c'])], install_requires=[], classifiers=[ 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Information Analysis', 'License :: GNU General Public License v3',])
mit
Python
d258b8c18de7b51b613a1464ecb3aec8b22ffabe
bump version to 3.4.2
llimllib/limbo,TetraEtc/limbo,llimllib/limbo,palachu/sdbot,rizaon/limbo,serverdensity/sdbot,TetraEtc/limbo
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Thanks to Kenneth Reitz, I stole the template for this import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup PYTHON3 = sys.version_info[0] > 2 required = ['requests>=2.5', 'websocket-client==0.32.0', 'beautifulsoup4==4.3.2', 'pyfiglet==0.7.4', 'slackrtm==0.2.1'] if not PYTHON3: required += ['importlib>=1.0.3'] packages = ['limbo', 'limbo.plugins'] try: longdesc = open("README.rs").read() except: longdesc = '' setup( name='limbo', version='3.4.2', description='Simple and Clean Slack Chatbot', long_description=longdesc, author='Bill Mill', author_email='bill@billmill.org', url='https://github.com/llimllib/limbo', packages=packages, scripts = ['bin/limbo'], package_data={'': ['LICENSE',], '': ['limbo/plugins/*.py']}, include_package_data=True, install_requires=required, license='MIT', classifiers=( 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', ), )
#!/usr/bin/env python # -*- coding: utf-8 -*- # Thanks to Kenneth Reitz, I stole the template for this import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup PYTHON3 = sys.version_info[0] > 2 required = ['requests>=2.5', 'websocket-client==0.32.0', 'beautifulsoup4==4.3.2', 'pyfiglet==0.7.4', 'slackrtm==0.2.1'] if not PYTHON3: required += ['importlib>=1.0.3'] packages = ['limbo', 'limbo.plugins'] try: longdesc = open("README.rs").read() except: longdesc = '' setup( name='limbo', version='3.4.1', description='Simple and Clean Slack Chatbot', long_description=longdesc, author='Bill Mill', author_email='bill@billmill.org', url='https://github.com/llimllib/limbo', packages=packages, scripts = ['bin/limbo'], package_data={'': ['LICENSE',], '': ['limbo/plugins/*.py']}, include_package_data=True, install_requires=required, license='MIT', classifiers=( 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', ), )
mit
Python
b554a75c14043dffe06a48ddeb019253ba745486
update setup.py
cenkalti/kuyruk,cenkalti/kuyruk
setup.py
setup.py
# coding=utf-8 import os import re from setuptools import setup, find_packages def read(*fname): with open(os.path.join(os.path.dirname(__file__), *fname)) as f: return f.read() def get_version(): for line in read('kuyruk', '__init__.py').splitlines(): m = re.match(r"__version__\s*=\s'(.*)'", line) if m: return m.groups()[0].strip() raise Exception('Cannot find version') setup( name='Kuyruk', version=get_version(), author=u'Cenk Altı', author_email='cenkalti@gmail.com', keywords='rabbitmq distributed task queue', url='https://github.com/cenkalti/kuyruk', packages=find_packages(), include_package_data=True, install_requires=[ 'Flask>=0.9', 'pika>=0.9.14', 'setproctitle>=1.1.7', 'blinker>=1.2', 'argparse>=1.2.1', 'rpyc>=3.2.3', ], description='A distributed task runner', long_description=read('README.rst'), zip_safe=True, entry_points={ 'console_scripts': [ 'kuyruk = kuyruk.__main__:main', ], }, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Object Brokering', 'Topic :: System :: Distributed Computing', ], )
# coding=utf-8 import os import re from setuptools import setup, find_packages def read(*fname): with open(os.path.join(os.path.dirname(__file__), *fname)) as f: return f.read() def get_version(): for line in read('kuyruk', '__init__.py').splitlines(): m = re.match(r"__version__\s*=\s'(.*)'", line) if m: return m.groups()[0].strip() raise Exception('Cannot find version') setup( name='Kuyruk', version=get_version(), author=u'Cenk Altı', author_email='cenkalti@gmail.com', keywords='rabbitmq distributed task queue', url='http://github.com/cenkalti/kuyruk', packages=find_packages(), include_package_data=True, install_requires=[ 'Flask>=0.9', 'pika>=0.9.12', 'setproctitle>=1.1.7', 'blinker>=1.2', 'argparse>=1.2.1', 'rpyc>=3.2.3', ], description='A distributed task runner', long_description=read('README.rst'), zip_safe=True, entry_points={ 'console_scripts': [ 'kuyruk = kuyruk.__main__:main', ], }, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Object Brokering', 'Topic :: System :: Distributed Computing', ], )
mit
Python
dc7d94edb2c3cf735a7a4716b2dbc5c4c877ade4
fix setup.py syntax error
coagulant/coveralls-python,coveralls-clients/coveralls-python
setup.py
setup.py
import os from setuptools import setup VERSION_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'coveralls', 'version.py') DESCRIPTION = open('README.rst').read() VERSION = None with open(VERSION_FILE, 'r') as f: VERSION = f.read().split()[2][1:-1] setup( name='coveralls', version=VERSION, packages=['coveralls'], url='http://github.com/coveralls-clients/coveralls-python', project_urls={ 'Changelog': ('https://github.com/coveralls-clients/coveralls-python/' 'blob/master/CHANGELOG.md'), 'Docs': 'https://coveralls-python.rtfd.io/', }, license='MIT', author='coveralls-clients contributors', description='Show coverage stats online via coveralls.io', long_description=DESCRIPTION, entry_points={ 'console_scripts': [ 'coveralls = coveralls.cli:main', ], }, install_requires=['docopt>=0.6.1', 'coverage>=3.6', 'requests>=1.0.0'], setup_requires=['pytest-runner'], tests_require=['mock', 'pytest', 'sh>=1.08'], extras_require={ 'yaml': ['PyYAML>=3.10'], ':python_version < "3"': ['urllib3[secure]'], }, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Topic :: Software Development :: Testing', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], )
import os from setuptools import setup VERSION_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'coveralls', 'version.py') DESCRIPTION = open('README.rst').read() VERSION = None with open(VERSION_FILE, 'r') as f: VERSION = f.read().split()[2][1:-1] setup( name='coveralls', version=VERSION, packages=['coveralls'], url='http://github.com/coveralls-clients/coveralls-python', project_urls={ 'Changelog': ('https://github.com/coveralls-clients/coveralls-python/' 'blob/master/CHANGELOG.md') 'Docs': 'https://coveralls-python.rtfd.io/', }, license='MIT', author='coveralls-clients contributors', description='Show coverage stats online via coveralls.io', long_description=DESCRIPTION, entry_points={ 'console_scripts': [ 'coveralls = coveralls.cli:main', ], }, install_requires=['docopt>=0.6.1', 'coverage>=3.6', 'requests>=1.0.0'], setup_requires=['pytest-runner'], tests_require=['mock', 'pytest', 'sh>=1.08'], extras_require={ 'yaml': ['PyYAML>=3.10'], ':python_version < "3"': ['urllib3[secure]'], }, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Topic :: Software Development :: Testing', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], )
mit
Python
906c135c3001f5838af0cc39497bfdecb30f32f5
remove upper bound on django requirement so this may be installed with newer pythons
counsyl/baya,counsyl/baya
setup.py
setup.py
from setuptools import find_packages from setuptools import setup def load_version(): """Open and parse out the version number from the _version.py module. Inspired by http://stackoverflow.com/a/7071358 """ import re version_file = "baya/_version.py" version_line = open(version_file).read().rstrip() vre = re.compile(r'__version__ = "([^"]+)"') matches = vre.findall(version_line) if matches and len(matches) > 0: return matches[0] else: raise RuntimeError( "Cannot find version string in {version_file}.".format( version_file=version_file)) version = load_version() setup( name='baya', version=version, description="Nested LDAP Groups authorization.", author='Steven Buss', author_email='steven.buss@gmail.com', maintainer='Counsyl Platform Team', maintainer_email='platform@counsyl.com', license='MIT', url='https://github.com/counsyl/baya', download_url=( 'https://github.com/counsyl/baya/tarball/v%s' % version), classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", ], install_requires=[ 'django-auth-ldap>=1.2.8', 'Django>=1.11', 'six>=1.3', ], packages=find_packages(exclude=[ 'tests', 'tests.*']), include_package_data=True, extras_require={ 'development': [ 'mockldap>=0.2.0', ], }, )
from setuptools import find_packages from setuptools import setup def load_version(): """Open and parse out the version number from the _version.py module. Inspired by http://stackoverflow.com/a/7071358 """ import re version_file = "baya/_version.py" version_line = open(version_file).read().rstrip() vre = re.compile(r'__version__ = "([^"]+)"') matches = vre.findall(version_line) if matches and len(matches) > 0: return matches[0] else: raise RuntimeError( "Cannot find version string in {version_file}.".format( version_file=version_file)) version = load_version() setup( name='baya', version=version, description="Nested LDAP Groups authorization.", author='Steven Buss', author_email='steven.buss@gmail.com', maintainer='Counsyl Platform Team', maintainer_email='platform@counsyl.com', license='MIT', url='https://github.com/counsyl/baya', download_url=( 'https://github.com/counsyl/baya/tarball/v%s' % version), classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", ], install_requires=[ 'django-auth-ldap>=1.2.8', 'Django>=1.11,<2.2', 'six>=1.3', ], packages=find_packages(exclude=[ 'tests', 'tests.*']), include_package_data=True, extras_require={ 'development': [ 'mockldap>=0.2.0', ], }, )
mit
Python
ffdd60ab838e299962991c2bebb3e09ae34ec657
Update version
zzzsochi/includer
setup.py
setup.py
from setuptools import setup setup(name='includer', version='1.0.1', description='Include and run callables', classifiers=[ "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Programming Language :: Python :: 3", "Development Status :: 5 - Production/Stable", ], author='Alexander Zelenyak', author_email='zzz.sochi@gmail.com', license='BSD', url='https://github.com/zzzsochi/includer', keywords=['include', 'configure', 'pyramid'], py_modules=['includer'], install_requires=['zope.dottedname'], tests_require=['pytest'], )
from setuptools import setup setup(name='includer', version='1.0.0', description='Include and run callables', classifiers=[ "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Programming Language :: Python :: 3", "Development Status :: 5 - Production/Stable", ], author='Alexander Zelenyak', author_email='zzz.sochi@gmail.com', license='BSD', url='https://github.com/zzzsochi/includer', keywords=['include', 'configure', 'pyramid'], py_modules=['includer'], install_requires=['zope.dottedname'], tests_require=['pytest'], )
bsd-3-clause
Python
7ea8ee9f73c013536342dab4a2fadf049a295029
reduce duplication of information
m45t3r/burgaur,vga-/burgaur,m45t3r/burgaur,vga-/burgaur
setup.py
setup.py
import os from setuptools import setup from imp import load_source burgaur = load_source("burgaur", "burgaur") def read(fname): filename = os.path.join(os.path.dirname(__file__), fname) return open(filename).read().replace('#', '') setup( name="burgaur", version=burgaur.__version__, author=burgaur.__author__, author_email=burgaur.__email__, maintainer=burgaur.__maintainer__, maintainer_email=burgaur.__email__, description=("A delicious AUR helper. Made from cower."), license=burgaur.__license__, url="https://github.com/m45t3r/burgaur", scripts=["burgaur"], platforms=["Linux"], long_description=read("README.rst"), )
from setuptools import setup setup( name="burgaur", version="0.1", author="Thiago Kenji Okada", author_email="thiago.mast3r@gmail.com", description=("A delicious AUR helper. Made from cower."), license="MIT", url="https://github.com/m45t3r/burgaur", scripts=["burgaur"], )
mit
Python
5b4bdebe7a894e2cb6e37728bfda2b3661a32461
clarify license as MIT
carbonblack/cb-isight-connector,carbonblack/cb-isight-connector
setup.py
setup.py
#!/usr/bin/env python import os import sys sys.path.insert(0, "src/") from cbisight.bridge import __version__ from distutils.core import setup def get_data_files(rootdir): # automatically build list of (dir, [file1, file2, ...],) # for all files under src/root/ (or provided rootdir) results = [] for root, dirs, files in os.walk(rootdir): if len(files) > 0: dirname = os.path.relpath(root, rootdir) flist = [os.path.join(root, f) for f in files] results.append(("/%s" % dirname, flist)) return results data_files = get_data_files("src/root") setup( name='python-cbisight-connector', version=__version__, url='http://www.bit9.com/', license='MIT', author='Carbon Black', author_email='support@bit9.com', description='Carbon Black iSIGHT Connector', long_description=__doc__, packages=['cbisight'], data_files=data_files, package_dir = {'cbisight': 'src/cbisight'}, package_data={'cbisight': ['content/*']}, options={'bdist_rpm': {'post_install': 'post_install', 'pre_uninstall': 'pre_uninstall'}}, platforms='any', classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: MIT', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
#!/usr/bin/env python import os import sys sys.path.insert(0, "src/") from cbisight.bridge import __version__ from distutils.core import setup def get_data_files(rootdir): # automatically build list of (dir, [file1, file2, ...],) # for all files under src/root/ (or provided rootdir) results = [] for root, dirs, files in os.walk(rootdir): if len(files) > 0: dirname = os.path.relpath(root, rootdir) flist = [os.path.join(root, f) for f in files] results.append(("/%s" % dirname, flist)) return results data_files = get_data_files("src/root") setup( name='python-cbisight-connector', version=__version__, url='http://www.bit9.com/', license='BSD', author='Carbon Black', author_email='support@bit9.com', description='Carbon Black iSIGHT Connector', long_description=__doc__, packages=['cbisight'], data_files=data_files, package_dir = {'cbisight': 'src/cbisight'}, package_data={'cbisight': ['content/*']}, options={'bdist_rpm': {'post_install': 'post_install', 'pre_uninstall': 'pre_uninstall'}}, platforms='any', classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: BSD', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
mit
Python
47dd521b53444f891bda0589bf8614f81a4d72f4
Bump Version to 2.0.53-dev
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLUDE_PATH'] = '/usr/local/include' version = '2.0.53-dev' setup( name = 'coi-services', version = version, description = 'OOI ION COI Services', url = 'https://github.com/ooici/coi-services', download_url = 'http://sddevrepo.oceanobservatories.org/releases/', license = 'Apache 2.0', author = 'Michael Meisinger', author_email = 'mmeisinger@ucsd.edu', keywords = ['ooici','ioncore', 'pyon', 'coi'], packages = find_packages(), dependency_links = [ 'http://sddevrepo.oceanobservatories.org/releases/', ], test_suite = 'pyon', install_requires = [ 'pyzmq==2.2.0', 'coverage-model', 'ion-functions', 'pyon', 'Flask==0.9', 'python-dateutil==1.5', 'WebTest==1.4.0', 'seawater==2.0.1', 'pygsw==0.0.10', 'matplotlib==1.1.1', 'Pydap==3.1.RC1', 'netCDF4>=1.0', 'elasticpy==0.12', 'pyparsing==1.5.6', 'ntplib', 'xlrd==0.8.0', 'apscheduler==2.1.0', 'pyproj==1.9.3', 'udunitspy==0.0.6', ], entry_points = """ [pydap.handler] coverage = ion.util.pydap.handlers.coverage:Handler """, )
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLUDE_PATH'] = '/usr/local/include' version = '2.0.52' setup( name = 'coi-services', version = version, description = 'OOI ION COI Services', url = 'https://github.com/ooici/coi-services', download_url = 'http://sddevrepo.oceanobservatories.org/releases/', license = 'Apache 2.0', author = 'Michael Meisinger', author_email = 'mmeisinger@ucsd.edu', keywords = ['ooici','ioncore', 'pyon', 'coi'], packages = find_packages(), dependency_links = [ 'http://sddevrepo.oceanobservatories.org/releases/', ], test_suite = 'pyon', install_requires = [ 'pyzmq==2.2.0', 'coverage-model', 'ion-functions', 'pyon', 'Flask==0.9', 'python-dateutil==1.5', 'WebTest==1.4.0', 'seawater==2.0.1', 'pygsw==0.0.10', 'matplotlib==1.1.1', 'Pydap==3.1.RC1', 'netCDF4>=1.0', 'elasticpy==0.12', 'pyparsing==1.5.6', 'ntplib', 'xlrd==0.8.0', 'apscheduler==2.1.0', 'pyproj==1.9.3', 'udunitspy==0.0.6', ], entry_points = """ [pydap.handler] coverage = ion.util.pydap.handlers.coverage:Handler """, )
bsd-2-clause
Python
35466fa98b9eb90797c3fbc233512225d3dd9b29
remove install_requires
bmcool/django-ezutils,bmcool/django-ezutils
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-ezutils', version=__import__('django_ezutils').__version__, description='Django easy to use utility.', long_description=open('README.rst').read(), author='bmcool', author_email='bloggerbm@gmail.com', url='https://github.com/bmcool/django-ezutils', download_url='http://pypi.python.org/pypi/django-ezutils', license='BSD', packages=find_packages(), include_package_data=True, zip_safe=True, install_requires=[ ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], )
from setuptools import setup, find_packages setup( name='django-ezutils', version=__import__('django_ezutils').__version__, description='Django easy to use utility.', long_description=open('README.rst').read(), author='bmcool', author_email='bloggerbm@gmail.com', url='https://github.com/bmcool/django-ezutils', download_url='http://pypi.python.org/pypi/django-ezutils', license='BSD', packages=find_packages(), include_package_data=True, zip_safe=True, install_requires=[ 'django-facebook-api>=0.1.4', ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], )
bsd-3-clause
Python
7a744d4a8d864a5fc148b220dfbd5418bd0f303b
Bump version for API changes
fastly/ftw,fastly/ftw
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='ftw', version='1.2.0', description='Framework for Testing WAFs', author='Chaim Sanders, Zack Allen', author_email='zma4580@gmail.com, chaim.sanders@gmail.com', url='https://www.github.com/fastly/ftw', download_url='https://github.com/fastly/ftw/tarball/1.2.0', entry_points = { 'pytest11': [ 'ftw = ftw.pytest_plugin' ] }, packages=['ftw'], keywords=['waf'], install_requires=[ 'IPy', 'pytest==2.9.1', 'PyYAML', 'python-dateutil==2.6.0' ], )
#!/usr/bin/env python from setuptools import setup setup(name='ftw', version='1.1.0', description='Framework for Testing WAFs', author='Chaim Sanders, Zack Allen', author_email='zma4580@gmail.com, chaim.sanders@gmail.com', url='https://www.github.com/fastly/ftw', download_url='https://github.com/fastly/ftw/tarball/1.1.0', entry_points = { 'pytest11': [ 'ftw = ftw.pytest_plugin' ] }, packages=['ftw'], keywords=['waf'], install_requires=[ 'IPy', 'pytest==2.9.1', 'PyYAML', 'python-dateutil==2.6.0' ], )
apache-2.0
Python
50326ab92d995a10ca7413dff4e642654e839691
Bump hotfix version
Outernet-Project/bottle-streamline
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): """ Return content of specified file """ return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='bottle-streamline', description='Python module writing class-based route handlers in bottle.', keywords='bottle route class', version='1.0.post2', author='Outernet Inc', author_email='apps@outernet.is', license='BSD', url='https://github.com/Outernet-Project/bottle-streamline', long_description=read('README.rst'), packages=find_packages(), install_requires=['bottle'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Topic :: Utilities', ], )
import os from setuptools import setup, find_packages def read(fname): """ Return content of specified file """ return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='bottle-streamline', description='Python module writing class-based route handlers in bottle.', keywords='bottle route class', version='1.0.post1', author='Outernet Inc', author_email='apps@outernet.is', license='BSD', url='https://github.com/Outernet-Project/bottle-streamline', long_description=read('README.rst'), packages=find_packages(), install_requires=['bottle'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Topic :: Utilities', ], )
bsd-2-clause
Python
cee57c54d9c02c4c0af4be9c9b5c8d2afb631c5e
Set install_requires file requirements.txt
williamroot/opps,YACOWS/opps,YACOWS/opps,jeanmask/opps,williamroot/opps,jeanmask/opps,opps/opps,opps/opps,opps/opps,opps/opps,YACOWS/opps,williamroot/opps,jeanmask/opps,williamroot/opps,jeanmask/opps,YACOWS/opps
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()] dependency_links = ['http://github.com/avelino/django-googl/tarball/master' '#egg=django-googl', 'http://github.com/avelino/django-taggit/tarball/master' '#egg=django-taggit'] classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Framework :: Django", 'Programming Language :: Python', "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.6", "Operating System :: OS Independent", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", 'Topic :: Software Development :: Libraries :: Python Modules'] try: long_description = open('README.rst').read() except: long_description = opps.__description__ setup(name='opps', version=opps.__version__, description=opps.__description__, long_description=long_description, classifiers=classifiers, keywords='opps cms django apps magazines websites', author=opps.__author__, author_email=opps.__email__, url='http://oppsproject.org', download_url="https://github.com/opps/opps/tarball/master", license=opps.__license__, packages=find_packages(exclude=('doc', 'docs',)), namespace_packages=['opps'], package_dir={'opps': 'opps'}, install_requires=REQUIREMENTS, dependency_links=dependency_links, scripts=['opps/bin/opps-admin.py'], include_package_data=True, test_suite='runtests')
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps install_requires = ["django", "south>=0.7", "Pillow==1.7.8", "thumbor", 'libthumbor', "django-googl==0.1.1", "django-taggit", "django-wysiwyg-redactor==0.3.1", "django-haystack>=2.0", "django-mptt", "django-appconf", "python-memcached"] dependency_links = ['http://github.com/avelino/django-googl/tarball/master' '#egg=django-googl', 'http://github.com/avelino/django-taggit/tarball/master' '#egg=django-taggit'] classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Framework :: Django", 'Programming Language :: Python', "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.6", "Operating System :: OS Independent", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", 'Topic :: Software Development :: Libraries :: Python Modules'] try: long_description = open('README.rst').read() except: long_description = opps.__description__ setup(name='opps', version=opps.__version__, description=opps.__description__, long_description=long_description, classifiers=classifiers, keywords='opps cms django apps magazines websites', author=opps.__author__, author_email=opps.__email__, url='http://oppsproject.org', download_url="https://github.com/opps/opps/tarball/master", license=opps.__license__, packages=find_packages(exclude=('doc', 'docs',)), namespace_packages=['opps'], package_dir={'opps': 'opps'}, install_requires=install_requires, dependency_links=dependency_links, scripts=['opps/bin/opps-admin.py'], include_package_data=True, test_suite='runtests')
mit
Python
cea760054ed1ca8c1f8e5a50cf1b26585718fe92
Sort REQUIRES
CTPUG/wafer,CTPUG/wafer,CTPUG/wafer,CTPUG/wafer
setup.py
setup.py
from glob import glob import subprocess import sys from setuptools import find_packages, setup REQUIRES = [ 'Django>=2.2,<3.1', 'diff-match-patch', 'django-bakery>=0.12.0', 'django-crispy-forms', 'django-markitup>=4.0.0', 'django-nose', 'django-registration-redux', 'django-reversion', 'django-select2', 'djangorestframework', 'drf-extensions>=0.5.0', 'icalendar>=4.0', 'jsonfield', 'markdown>=2.5', 'pillow', 'py3dns', 'pyLibravatar', 'pytz', 'requests', ] SOURCES = [] with open('README.rst', 'r') as f: long_description = f.read() def compile_translations(): try: subprocess.check_call(['./manage.py', 'compilemessages']) except subprocess.CalledProcessError: print("WARNING: cannot compile translations.") return glob('wafer/locale/*/LC_MESSAGES/django.mo') setup( name="wafer", version="0.10.1a", url='http://github.com/CTPUG/wafer', license='ISC', description="A wafer-thin Django library for running small conferences.", long_description=long_description, long_description_content_type="text/x-rst", author='CTPUG', author_email='ctpug@googlegroups.com', packages=find_packages(), include_package_data=True, install_requires=REQUIRES, dependency_links=SOURCES, data_files=compile_translations(), setup_requires=[ # Add setuptools-git, so we get correct behaviour for # include_package_data 'setuptools_git >= 1.0', ], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: ISC License (ISCL)', 'Operating System :: POSIX', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Framework :: Django', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: WWW/HTTP', ], )
from glob import glob import subprocess import sys from setuptools import find_packages, setup REQUIRES = [ 'Django>=2.2,<3.1', 'django-crispy-forms', 'django-nose', 'django-registration-redux', 'djangorestframework', 'drf-extensions>=0.5.0', 'jsonfield', 'pillow', 'diff-match-patch', 'pyLibravatar', 'pytz', 'requests', 'django-bakery>=0.12.0', 'django-select2', 'django-reversion', 'markdown>=2.5', 'icalendar>=4.0', 'py3dns', 'django-markitup>=4.0.0', ] SOURCES = [] with open('README.rst', 'r') as f: long_description = f.read() def compile_translations(): try: subprocess.check_call(['./manage.py', 'compilemessages']) except subprocess.CalledProcessError: print("WARNING: cannot compile translations.") return glob('wafer/locale/*/LC_MESSAGES/django.mo') setup( name="wafer", version="0.10.1a", url='http://github.com/CTPUG/wafer', license='ISC', description="A wafer-thin Django library for running small conferences.", long_description=long_description, long_description_content_type="text/x-rst", author='CTPUG', author_email='ctpug@googlegroups.com', packages=find_packages(), include_package_data=True, install_requires=REQUIRES, dependency_links=SOURCES, data_files=compile_translations(), setup_requires=[ # Add setuptools-git, so we get correct behaviour for # include_package_data 'setuptools_git >= 1.0', ], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: ISC License (ISCL)', 'Operating System :: POSIX', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Framework :: Django', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: WWW/HTTP', ], )
isc
Python
67a0f6c0aa8015f5dea7dcc8c7bc6cae809016f5
Add upper limit of pandas
wind-python/windpowerlib
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.1.2dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oemof developer group', author_email='windpowerlib@rl-institut.de', license=None, packages=['windpowerlib'], package_data={ 'windpowerlib': [os.path.join('data', '*.csv')]}, long_description=read('README.rst'), zip_safe=False, install_requires=['pandas >= 0.19.1, < 0.25.0', 'requests'], extras_require={ 'dev': ['pytest', 'jupyter', 'sphinx_rtd_theme', 'nbformat']})
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.1.2dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oemof developer group', author_email='windpowerlib@rl-institut.de', license=None, packages=['windpowerlib'], package_data={ 'windpowerlib': [os.path.join('data', '*.csv')]}, long_description=read('README.rst'), zip_safe=False, install_requires=['pandas >= 0.19.1', 'requests'], extras_require={ 'dev': ['pytest', 'jupyter', 'sphinx_rtd_theme', 'nbformat']})
mit
Python
d9ba1a23ff3305bb17d50f9066a294bbbb77e297
add find_packages in setup.py
cedric222/pycarwings2,jdhorne/pycarwings2
setup.py
setup.py
#!/usr/bin/env python from os.path import join from setuptools import setup, find_packages NAME = 'pycarwings2' PACKAGE = NAME.replace('-', '_') def get_version(): with open(join(PACKAGE, '__init__.py')) as fileobj: for line in fileobj: if line.startswith('__version__ ='): return line.split('=', 1)[1].strip()[1:-1] else: raise Exception( '__version__ is not defined in %s.__init__' % PACKAGE) setup( name=NAME, version=get_version(), author='haykinson', author_email='', description='Python library for interacting with the Nissan CARWINGS telematics service', install_requires= [ 'PyYAML' , 'iso8601', 'requests', 'pycrypto' ], include_package_data=True, packages=find_packages(), )
#!/usr/bin/env python from os.path import join from setuptools import setup, find_packages NAME = 'pycarwings2' PACKAGE = NAME.replace('-', '_') def get_version(): with open(join(PACKAGE, '__init__.py')) as fileobj: for line in fileobj: if line.startswith('__version__ ='): return line.split('=', 1)[1].strip()[1:-1] else: raise Exception( '__version__ is not defined in %s.__init__' % PACKAGE) setup( name=NAME, version=get_version(), author='haykinson', author_email='', description='Python library for interacting with the Nissan CARWINGS telematics service', install_requires= [ 'PyYAML' , 'iso8601', 'requests', 'pycrypto' ], include_package_data=True )
apache-2.0
Python
9f0d5ea213b8c34926e6c3e0d8e75f89c2181fab
remove useless dependency for Debian distribution packaging
SamyCookie/python-ant,SamyCookie/python-ant,mch/python-ant,mch/python-ant
setup.py
setup.py
# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2011, Martín Raúl Villalba # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ############################################################################## import os from setuptools import setup, find_packages baseDir = os.path.dirname(__file__) os.chdir(baseDir) def read(fname): return open(os.path.join(baseDir, fname)).read() setup( name='ant', version='0.1.1', url='http://www.github.com/mvillalba/python-ant', license='MIT', description='Python implementation of the ANT, ANT+, and ANT-FS ' \ 'protocols (http://www.thisisant.com/).', author=u'Mart\u00EDn Ra\u00FAl Villalba', author_email='martin@martinvillalba.com', long_description=read('README.md'), classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Communications", "Topic :: Communications :: File Sharing", "Topic :: Software Development :: Libraries :: Python Modules", ], packages=find_packages('src'), package_dir={'': 'src'}, install_requires=[ 'pyserial', 'pyusb', 'msgpack-python' ], )
# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2011, Martín Raúl Villalba # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ############################################################################## import os from setuptools import setup, find_packages baseDir = os.path.dirname(__file__) os.chdir(baseDir) def read(fname): return open(os.path.join(baseDir, fname)).read() setup( name='ant', version='0.1.1', url='http://www.github.com/mvillalba/python-ant', license='MIT', description='Python implementation of the ANT, ANT+, and ANT-FS ' \ 'protocols (http://www.thisisant.com/).', author=u'Mart\u00EDn Ra\u00FAl Villalba', author_email='martin@martinvillalba.com', long_description=read('README.md'), classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Communications", "Topic :: Communications :: File Sharing", "Topic :: Software Development :: Libraries :: Python Modules", ], packages=find_packages('src'), package_dir={'': 'src'}, install_requires=[ 'distribute', 'pyserial', 'pyusb', 'msgpack-python' ], )
mit
Python
6323c12fadf57fb9cef7870285285cfda7caaafd
Work on jenkins job generation
NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools
setup.py
setup.py
# Copyright 2016-2017 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import sys from setuptools import setup from n_utils import SCRIPTS, CONSOLESCRIPTS setup(name='nitor_deploy_tools', version='0.108', description='Utilities for deploying with Nitor aws-utils', url='http://github.com/NitorCreations/nitor-deploy-tools', download_url='https://github.com/NitorCreations/nitor-deploy-tools/tarball/0.108', author='Pasi Niemi', author_email='pasi@nitor.com', license='Apache 2.0', packages=['n_utils'], include_package_data=True, scripts=SCRIPTS, entry_points={ 'console_scripts': CONSOLESCRIPTS, }, install_requires=[ 'pyaml', 'boto3', 'awscli', 'pycrypto', 'requests', 'termcolor', 'ipaddr', 'argcomplete', 'nitor-vault', 'psutil', 'Pygments' ] + ([ 'win-unicode-console', 'wmi', 'pypiwin32' ] if sys.platform.startswith('win') else []), zip_safe=False)
# Copyright 2016-2017 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import sys from setuptools import setup from n_utils import SCRIPTS, CONSOLESCRIPTS setup(name='nitor_deploy_tools', version='0.107', description='Utilities for deploying with Nitor aws-utils', url='http://github.com/NitorCreations/nitor-deploy-tools', download_url='https://github.com/NitorCreations/nitor-deploy-tools/tarball/0.107', author='Pasi Niemi', author_email='pasi@nitor.com', license='Apache 2.0', packages=['n_utils'], include_package_data=True, scripts=SCRIPTS, entry_points={ 'console_scripts': CONSOLESCRIPTS, }, install_requires=[ 'pyaml', 'boto3', 'awscli', 'pycrypto', 'requests', 'termcolor', 'ipaddr', 'argcomplete', 'nitor-vault', 'psutil', 'Pygments' ] + ([ 'win-unicode-console', 'wmi', 'pypiwin32' ] if sys.platform.startswith('win') else []), zip_safe=False)
apache-2.0
Python
13cb309cdb71d24cc9dae958ab0a4c6e11adf504
change license in the classifiers meta
davejmac/django-easypost
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import easypost try: from setuptools import setup except ImportError: from distutils.core import setup version = easypost.__version__ readme = open('README.md').read() setup( name='django-easypost', version=version, description='A django wrapper for the python easypost library', long_description=readme, author='Dave McNamara', author_email='david.mcnamara@outlook.com', url='https://github.com/davejmac/django-easypost', packages=[ 'easypost', 'celery', 'flower', ], include_package_data=True, install_requires=[ ], license="MIT", zip_safe=False, keywords='', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', ], )
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import easypost try: from setuptools import setup except ImportError: from distutils.core import setup version = easypost.__version__ readme = open('README.md').read() setup( name='django-easypost', version=version, description='A django wrapper for the python easypost library', long_description=readme, author='Dave McNamara', author_email='david.mcnamara@outlook.com', url='https://github.com/davejmac/django-easypost', packages=[ 'easypost', 'celery', 'flower', ], include_package_data=True, install_requires=[ ], license="MIT", zip_safe=False, keywords='', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', ], )
mit
Python
197230f27221aa6e526f3aac09c2ec1bd177c808
add redbot.subrequest to setup.py
mnot/redbot,mnot/redbot,mnot/redbot
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='redbot', version='1.0', description='Resource Expert Droid', author='Mark Nottingham', author_email='mnot@mnot.net', url='http://redbot.org/project/', packages=['redbot', 'redbot.formatter', 'redbot.subrequest'], package_dir={'redbot': 'lib'}, scripts=['bin/redbot'], classifiers=[ 'Programming Language :: Python' 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', ], )
#!/usr/bin/env python from distutils.core import setup setup(name='redbot', version='1.0', description='Resource Expert Droid', author='Mark Nottingham', author_email='mnot@mnot.net', url='http://redbot.org/project/', packages=['redbot', 'redbot.formatter'], package_dir={'redbot': 'lib'}, scripts=['bin/redbot'], classifiers=[ 'Programming Language :: Python' 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', ], )
mit
Python
cd3fca7a82eb622b684eb0c7c0ea916f39d9b557
revert preventing normalization (#49)
googleapis/python-media-translation,googleapis/python-media-translation
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (C) 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import io import os import setuptools # type: ignore version = "0.3.0" package_root = os.path.abspath(os.path.dirname(__file__)) readme_filename = os.path.join(package_root, "README.rst") with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read() setuptools.setup( name="google-cloud-media-translation", version=version, long_description=readme, author="Google LLC", author_email="googleapis-packages@google.com", license="Apache 2.0", url="https://github.com/googleapis/python-media-translation", packages=setuptools.PEP420PackageFinder.find(), namespace_packages=("google", "google.cloud"), platforms="Posix; MacOS X; Windows", include_package_data=True, install_requires=( "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0", ), python_requires=">=3.6", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", ], zip_safe=False, )
# -*- coding: utf-8 -*- # Copyright (C) 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import io import os import setuptools # type: ignore # Disable version normalization performed by setuptools.setup() try: # Try the approach of using sic(), added in setuptools 46.1.0 from setuptools import sic except ImportError: # Try the approach of replacing packaging.version.Version sic = lambda v: v try: # setuptools >=39.0.0 uses packaging from setuptools.extern from setuptools.extern import packaging except ImportError: # setuptools <39.0.0 uses packaging from pkg_resources.extern from pkg_resources.extern import packaging packaging.version.Version = packaging.version.LegacyVersion version = "0.3.0" package_root = os.path.abspath(os.path.dirname(__file__)) readme_filename = os.path.join(package_root, "README.rst") with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read() setuptools.setup( name="google-cloud-media-translation", version=sic(version), long_description=readme, author="Google LLC", author_email="googleapis-packages@google.com", license="Apache 2.0", url="https://github.com/googleapis/python-media-translation", packages=setuptools.PEP420PackageFinder.find(), namespace_packages=("google", "google.cloud"), platforms="Posix; MacOS X; Windows", include_package_data=True, install_requires=( "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0", ), python_requires=">=3.6", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", ], zip_safe=False, )
apache-2.0
Python
62ade22b488bd256086c1a1e682cbb4ae9dd9230
Add missing PyYAML dependency
bulv1ne/django-utils,bulv1ne/django-utils
setup.py
setup.py
# !/usr/bin/env python from itertools import chain from setuptools import setup extras_require = { 'markdown': [ 'Markdown>=2.6,<3' ], 'pipeline': [ 'django-pipeline>=1.6,<1.7', 'libsass>=0.11,<0.13', 'csscompressor>=0.9,<1.0', ], 'raven': [ 'raven>=6.0,<6.1' ], 's3': [ 'boto3>=1.4,<1.5', ], 'frontmatter': [ 'PyYAML>=3,<4', ], } extras_require['all'] = list(chain(extras_require.values())) setup( name='bulv1ne-django-utils', packages=['utils'], version='0.0.5', description='Django utils for all kinds of situations', author='Niels Lemmens', license='MIT', author_email='draso.odin@gmail.com', url='https://github.com/bulv1ne/django-utils', keywords=['django', 'utils'], install_requires=[ 'django>=1.10,<2', ], extras_require=extras_require, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development', 'Topic :: Utilities', ], )
# !/usr/bin/env python from itertools import chain from setuptools import setup extras_require = { 'markdown': [ 'Markdown>=2.6,<3' ], 'pipeline': [ 'django-pipeline>=1.6,<1.7', 'libsass>=0.11,<0.13', 'csscompressor>=0.9,<1.0', ], 'raven': [ 'raven>=6.0,<6.1' ], 's3': [ 'boto3>=1.4,<1.5', ], } extras_require['all'] = list(chain(extras_require.values())) setup( name='bulv1ne-django-utils', packages=['utils'], version='0.0.5', description='Django utils for all kinds of situations', author='Niels Lemmens', license='MIT', author_email='draso.odin@gmail.com', url='https://github.com/bulv1ne/django-utils', keywords=['django', 'utils'], install_requires=[ 'django>=1.10,<2', ], extras_require=extras_require, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development', 'Topic :: Utilities', ], )
mit
Python
f4b4ea456dbc0196de86afb730139327e0bd2250
Update setup file
the-hypermedia-project/representor-python
setup.py
setup.py
from setuptools import setup, find_packages import hypermedia_resource setup(name='hypermedia_resource', version=hypermedia_resource.__version__, description='Generic interface for hypermedia messages', author='Stephen Mizell', author_email='smizell@gmail.com', url='https://github.com/the-hypermedia-project/hypermedia-resource-python/', packages=['hypermedia_resource'], license='MIT', test_suite="tests")
from setuptools import setup, find_packages import hypermedia_resource setup(name='HypermediaResource', version=hypermedia_resource.__version__, description='Generic interface for hypermedia messages', author='Stephen Mizell', author_email='smizell@gmail.com', url='https://github.com/the-hypermedia-project/hypermedia-resource-python/', packages=['hypermedia_resource'], license='MIT', test_suite="tests")
mit
Python
481fdf6aed9fba6189178aea313ccf523b0f93fa
Fix setup.py
evolvedlight/pydashie,leader716/pydashie,leader716/pydashie,xavpaice/cloud-pydashie,leader716/pydashie,edhiley/pydashie,evolvedlight/pydashie,xavpaice/cloud-pydashie,edhiley/pydashie,edhiley/pydashie,xavpaice/cloud-pydashie,edhiley/pydashie,evolvedlight/pydashie
setup.py
setup.py
from distutils.core import setup setup( name='PyDashie', version='0.1dev', packages=['pydashie',], license='MIT', long_description=open('README.rst').read(), )
from distutils.core import setup setup( name='PyDashie', version='0.1dev', packages=['pydashie',], license='MIT', long_description=open('README.txt').read(), )
mit
Python
262c8b7a9e1f69a4ec152c059d94a1db80d49c17
Add pandas dependency
slundberg/shap,slundberg/shap,slundberg/shap,slundberg/shap
setup.py
setup.py
from setuptools import setup # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc setup(name='shap', version='0.8.0', description='Explains the output of any machine learning model using expectations and Shapley values.', url='http://github.com/slundberg/shap', author='Scott Lundberg', author_email='slund1@cs.washington.edu', license='MIT', packages=['shap'], install_requires=['numpy', 'scipy', 'iml', 'scikit-learn', 'matplotlib', 'pandas'], test_suite='nose.collector', tests_require=['nose'], zip_safe=False)
from setuptools import setup # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc setup(name='shap', version='0.8.0', description='Explains the output of any machine learning model using expectations and Shapley values.', url='http://github.com/slundberg/shap', author='Scott Lundberg', author_email='slund1@cs.washington.edu', license='MIT', packages=['shap'], install_requires=['numpy', 'scipy', 'iml', 'scikit-learn', 'matplotlib'], test_suite='nose.collector', tests_require=['nose'], zip_safe=False)
mit
Python
b7445b6a45e5dcda32f2df543f6390d902de798e
add missing requirement
jantman/pypuppetdb-daily-report
setup.py
setup.py
from setuptools import setup from sys import version_info from pypuppetdb_daily_report import VERSION pyver_requires = ['pypuppetdb>=0.1.0, <=1.0.0', 'anyjson>=0.3.0, <=1.0.0', 'Jinja2>=2.7.0, <=2.8.0', 'pytz', 'tzlocal>=1.1., <=2.0.0', 'ago>=0.0.6, <=0.1.0', ] with open('README.rst') as file: long_description = file.read() classifiers = [ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: System Administrators', 'Intended Audience :: Information Technology', 'Natural Language :: English', 'Operating System :: POSIX', 'Programming Language :: Python', 'Programming Language :: Python :: 3', ] setup( name='pypuppetdb_daily_report', version=VERSION, author='Jason Antman', author_email='jason@jasonantman.com', packages=['pypuppetdb_daily_report', 'pypuppetdb_daily_report.tests'], package_data={'pypuppetdb_daily_report': ['templates/*.html']}, entry_points=""" [console_scripts] pypuppetdb_daily_report = pypuppetdb_daily_report.pypuppetdb_daily_report:console_entry_point """, url='http://github.com/jantman/pypuppetdb-daily-report/', license='Apache 2', description='Daily run summary report for PuppetDB, written in Python using nedap\'s pypuppetdb module.', long_description=long_description, install_requires=pyver_requires, keywords="puppet puppetdb report summary", classifiers=classifiers )
from setuptools import setup from sys import version_info from pypuppetdb_daily_report import VERSION pyver_requires = ['pypuppetdb>=0.1.0, <=1.0.0', 'anyjson>=0.3.0, <=1.0.0', 'Jinja2>=2.7.0, <=2.8.0', 'pytz', 'tzlocal>=1.1., <=2.0.0' ] with open('README.rst') as file: long_description = file.read() classifiers = [ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: System Administrators', 'Intended Audience :: Information Technology', 'Natural Language :: English', 'Operating System :: POSIX', 'Programming Language :: Python', 'Programming Language :: Python :: 3', ] setup( name='pypuppetdb_daily_report', version=VERSION, author='Jason Antman', author_email='jason@jasonantman.com', packages=['pypuppetdb_daily_report', 'pypuppetdb_daily_report.tests'], package_data={'pypuppetdb_daily_report': ['templates/*.html']}, entry_points=""" [console_scripts] pypuppetdb_daily_report = pypuppetdb_daily_report.pypuppetdb_daily_report:console_entry_point """, url='http://github.com/jantman/pypuppetdb-daily-report/', license='Apache 2', description='Daily run summary report for PuppetDB, written in Python using nedap\'s pypuppetdb module.', long_description=long_description, install_requires=pyver_requires, keywords="puppet puppetdb report summary", classifiers=classifiers )
apache-2.0
Python
5cc443939dcc028318dae3bc47e86ea0067d715f
add Python 3.7 and 3.8 PyPI classifiers
ivelum/djangoql,ivelum/djangoql,ivelum/djangoql
setup.py
setup.py
#!/usr/bin/env python import djangoql try: from setuptools import setup except ImportError: from distutils.core import setup packages = ['djangoql'] requires = ['ply>=3.8'] setup( name='djangoql', version=djangoql.__version__, description='DjangoQL: Advanced search language for Django', long_description=open('README.rst').read(), author='Denis Stebunov', author_email='support@ivelum.com', url='https://github.com/ivelum/djangoql/', packages=packages, include_package_data=True, install_requires=requires, license=open('LICENSE').read(), zip_safe=False, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], )
#!/usr/bin/env python import djangoql try: from setuptools import setup except ImportError: from distutils.core import setup packages = ['djangoql'] requires = ['ply>=3.8'] setup( name='djangoql', version=djangoql.__version__, description='DjangoQL: Advanced search language for Django', long_description=open('README.rst').read(), author='Denis Stebunov', author_email='support@ivelum.com', url='https://github.com/ivelum/djangoql/', packages=packages, include_package_data=True, install_requires=requires, license=open('LICENSE').read(), zip_safe=False, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], )
mit
Python
c210fcad13ed61c0271154e41e3d8f20e19092e1
Add publish command to setup.py
streeter/django-haystack-panel
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup, find_packages if sys.argv[-1] == 'publish': os.system('python setup.py register sdist bdist_wheel upload') sys.exit() setup( name='django-haystack-panel', version='0.2.0', description='A Django Debug Toolbar panel for Haystack', long_description=open('README.rst').read(), author='Chris Streeter', author_email='chris@chrisstreeter.com', url='http://github.com/streeter/django-haystack-panel', license='MIT', packages=find_packages(), install_requires=[ 'django-debug-toolbar>=1.0', ], include_package_data=True, zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', ], )
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-haystack-panel', version='0.2.0', description='A Django Debug Toolbar panel for Haystack', long_description=open('README.rst').read(), author='Chris Streeter', author_email='chris@chrisstreeter.com', url='http://github.com/streeter/django-haystack-panel', license='MIT', packages=find_packages(), install_requires=[ 'django-debug-toolbar>=1.0', ], include_package_data=True, zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', ], )
mit
Python
199c421742c054129bc07ecfdf8b255482c4ad28
Update dependencies and bump patch version
openspending/ckanext-budgets,openspending/ckanext-budgets
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.1.1' description = "CKAN extension for creating/distributing budget data packages" with open('README.rst') as readme: long_description = readme.read() setup( name='ckanext-budgets', version=version, description=description, long_description=long_description, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Other Audience', 'License :: OSI Approved :: GNU Affero General Public License v3', 'Programming Language :: Python :: 2.7', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], keywords='ckan', author='Tryggvi Bjorgvinsson', author_email='tryggvi.bjorgvinsson@okfn.org', url='https://github.com/tryggvib/ckanext-budgets', license='AGPLv3', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), namespace_packages=['ckanext', 'ckanext.budgets'], include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'unicodecsv', 'requests', 'six', 'py-dateutil', 'budgetdatapackage' ], entry_points=''' [ckan.plugins] budgets=ckanext.budgets.plugin:BudgetDataPackagePlugin ''', )
from setuptools import setup, find_packages import sys, os version = '0.1.0' description = "CKAN extension for creating/distributing budget data packages" with open('README.rst') as readme: long_description = readme.read() setup( name='ckanext-budgets', version=version, description=description, long_description=long_description, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Other Audience', 'License :: OSI Approved :: GNU Affero General Public License v3', 'Programming Language :: Python :: 2.7', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], keywords='ckan', author='Tryggvi Bjorgvinsson', author_email='tryggvi.bjorgvinsson@okfn.org', url='https://github.com/tryggvib/ckanext-budgets', license='AGPLv3', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), namespace_packages=['ckanext', 'ckanext.budgets'], include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'unicodecsv', 'requests', 'six', 'py-dateutil', ], entry_points=''' [ckan.plugins] budgets=ckanext.budgets.plugin:BudgetDataPackagePlugin ''', )
agpl-3.0
Python
be1d1635ceab86ba8b47c93767dcdb9698b5dcce
Update setup.py
iandees/esri-dump,openaddresses/pyesridump
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='esridump', version='0.1.0', description='Dump geodata from ESRI endpoints to GeoJSON', long_description=readme, author='Ian Dees', author_email='ian.dees@gmail.com', url='https://github.com/openaddresses/pyesridump', license=license, packages=find_packages(exclude=('tests', 'docs')), install_requires=[ 'requests', 'simplejson', ], entry_points={ 'console_scripts': ['esri2geojson=esridump.cli:main'], } )
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='esri-dump', version='0.1.0', description='Dump geodata from ESRI endpoints to GeoJSON', long_description=readme, author='Ian Dees', author_email='ian.dees@gmail.com', url='https://github.com/openaddresses/pyesridump', license=license, packages=find_packages(exclude=('tests', 'docs')), entry_points={ 'console_scripts': ['esri2geojson=esridump.cli:main'], } )
mit
Python
3c9dbc27a7e6b6f804398723f8e4e05d28a92654
use completion widget 0.3.1
ivelum/djangoql,ivelum/djangoql,ivelum/djangoql
setup.py
setup.py
#!/usr/bin/env python from subprocess import check_call from setuptools import setup from setuptools.command.develop import develop from setuptools.command.install import install import djangoql def download_completion_widget(): src_base = 'https://github.com/ivelum/djangoql-completion/raw/0.3.1/dist/' target_base = 'djangoql/static/djangoql/' files = { 'completion.js': target_base + 'js/', 'completion.js.map': target_base + 'js/', 'completion.css': target_base + 'css/', } # Not using urllib b/c Python won't have SSL certificates on all platforms for file, target_dir in files.items(): check_call(['curl', '-fL', src_base + file, '-o', target_dir + file]) class PreDevelopCommand(develop): def run(self): download_completion_widget() develop.run(self) class PreInstallCommand(install): def run(self): download_completion_widget() install.run(self) packages = ['djangoql'] requires = ['ply>=3.8'] setup( name='djangoql', version=djangoql.__version__, description='DjangoQL: Advanced search language for Django', long_description=open('README.rst').read(), long_description_content_type='text/x-rst', author='Denis Stebunov', author_email='support@ivelum.com', url='https://github.com/ivelum/djangoql/', packages=packages, include_package_data=True, install_requires=requires, license=open('LICENSE').readline().strip(), zip_safe=False, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ], cmdclass={ 'develop': PreDevelopCommand, 'install': PreInstallCommand, }, )
#!/usr/bin/env python from subprocess import check_call from setuptools import setup from setuptools.command.develop import develop from setuptools.command.install import install import djangoql def download_completion_widget(): src_base = 'https://github.com/ivelum/djangoql-completion/raw/0.3.0/dist/' target_base = 'djangoql/static/djangoql/' files = { 'completion.js': target_base + 'js/', 'completion.js.map': target_base + 'js/', 'completion.css': target_base + 'css/', } # Not using urllib b/c Python won't have SSL certificates on all platforms for file, target_dir in files.items(): check_call(['curl', '-fL', src_base + file, '-o', target_dir + file]) class PreDevelopCommand(develop): def run(self): download_completion_widget() develop.run(self) class PreInstallCommand(install): def run(self): download_completion_widget() install.run(self) packages = ['djangoql'] requires = ['ply>=3.8'] setup( name='djangoql', version=djangoql.__version__, description='DjangoQL: Advanced search language for Django', long_description=open('README.rst').read(), long_description_content_type='text/x-rst', author='Denis Stebunov', author_email='support@ivelum.com', url='https://github.com/ivelum/djangoql/', packages=packages, include_package_data=True, install_requires=requires, license=open('LICENSE').readline().strip(), zip_safe=False, classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ], cmdclass={ 'develop': PreDevelopCommand, 'install': PreInstallCommand, }, )
mit
Python
3c8004d5b5cb0b5e9d7dac1559da2fe7c32aecd2
Fix test requirements
brickgao/specchio
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup from specchio import __version__ tests_requirements = [ "mock >= 1.0.1, < 2.0.0", "testfixtures >= 4.1.2, < 5.0.0" ] setup( name="Specchio", version=__version__, url="https://github.com/brickgao/specchio", license="MIT", description="Specchio is a tool that can help you rsync your file," "it use `.gitignore` in git to discern which file is ignored.", long_description=open("README.md").read(), author="Xiongzhi Gao", author_email="brickgao@gmail.com", packages=find_packages(exclude=["tests"]), zip_safe=False, install_requires=[ "colorlog >= 2.6.0, < 3.0.0", "watchdog >= 0.8.3, < 1.0.0" ] + tests_requirements, tests_require=tests_requirements, test_suite="nose.collector", entry_points={ "console_scripts": [ "specchio = specchio.main:main" ], }, classifiers=[ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Libraries :: Python Modules", ], )
#!/usr/bin/env python # -*- coding: utf-8 -*- from specchio import __version__ from setuptools import find_packages, setup setup( name="Specchio", version=__version__, url="https://github.com/brickgao/specchio", license="MIT", description="Specchio is a tool that can help you rsync your file," "it use `.gitignore` in git to discern which file is ignored.", long_description=open("README.md").read(), author="Xiongzhi Gao", author_email="brickgao@gmail.com", packages=find_packages(exclude=["tests"]), zip_safe=False, install_requires=[ "colorlog >= 2.6.0, < 3.0.0", "watchdog >= 0.8.3, < 1.0.0" ], tests_require=[ "mock >= 1.0.1, < 2.0.0", "testfixtures >= 4.1.2, < 5.0.0" ], test_suite="nose.collector", entry_points={ "console_scripts": [ "specchio = specchio.main:main" ], }, classifiers=[ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Libraries :: Python Modules", ], )
mit
Python
56eee0e5affea7eaf15564b82db9974d51569470
Update peewee version requirement.
coleifer/flask-peewee,coleifer/flask-peewee,coleifer/flask-peewee
setup.py
setup.py
import sys from setuptools import setup, find_packages requirements = ['Flask', 'werkzeug', 'jinja2', 'peewee>=3.0.0', 'wtforms', 'wtf-peewee'] if sys.version_info[:2] < (2, 6): requirements.append('simplejson') setup( name='flask-peewee', version='3.0.0', url='http://github.com/coleifer/flask-peewee/', license='BSD', author='Charles Leifer', author_email='coleifer@gmail.com', description='Peewee integration for flask', packages=find_packages(), package_data = { 'flask_peewee': [ 'static/*/*.css', 'static/*/*.js', 'static/*/*.gif', 'static/*/*.png', 'templates/*.html', 'templates/*/*.html', 'templates/*/*/*.html', 'tests/*.html', 'tests/*/*.html', ], }, zip_safe=False, platforms='any', install_requires=requirements, classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ], test_suite='runtests.runtests', )
import sys from setuptools import setup, find_packages requirements = ['Flask', 'werkzeug', 'jinja2', 'peewee>=2.7.3', 'wtforms', 'wtf-peewee'] if sys.version_info[:2] < (2, 6): requirements.append('simplejson') setup( name='flask-peewee', version='3.0.0', url='http://github.com/coleifer/flask-peewee/', license='BSD', author='Charles Leifer', author_email='coleifer@gmail.com', description='Peewee integration for flask', packages=find_packages(), package_data = { 'flask_peewee': [ 'static/*/*.css', 'static/*/*.js', 'static/*/*.gif', 'static/*/*.png', 'templates/*.html', 'templates/*/*.html', 'templates/*/*/*.html', 'tests/*.html', 'tests/*/*.html', ], }, zip_safe=False, platforms='any', install_requires=requirements, classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ], test_suite='runtests.runtests', )
mit
Python
e978885605cb45d04950ed016063b48e17eda892
support the upcoming pytest 3.0
tarpas/pytest-testmon
setup.py
setup.py
from setuptools import setup setup( name='pytest-testmon', description='take TDD to a new level with py.test and testmon', long_description=''.join(open('README.rst').readlines()), version='0.8.2', license='MIT', platforms=['linux', 'osx', 'win32'], packages=['testmon'], url='https://github.com/tarpas/pytest-testmon/', author_email='tibor.arpas@infinit.sk', author='Tibor Arpas, Jozef Knaperek, Martin Riesz', entry_points={ 'pytest11': [ 'testmon = testmon.pytest_testmon', ] }, install_requires=['pytest>=2.7.0,<3.1', 'coverage>=4'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: POSIX', 'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities', 'Programming Language :: Python', ], )
from setuptools import setup setup( name='pytest-testmon', description='take TDD to a new level with py.test and testmon', long_description=''.join(open('README.rst').readlines()), version='0.8.2', license='MIT', platforms=['linux', 'osx', 'win32'], packages=['testmon'], url='https://github.com/tarpas/pytest-testmon/', author_email='tibor.arpas@infinit.sk', author='Tibor Arpas, Jozef Knaperek, Martin Riesz', entry_points={ 'pytest11': [ 'testmon = testmon.pytest_testmon', ] }, install_requires=['pytest>=2.7.0,<3', 'coverage>=4'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: POSIX', 'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities', 'Programming Language :: Python', ], )
agpl-3.0
Python
e4b26037cf6e8f941ffe259f1b6f2f9ef6473af5
Fix setup.py to not require pypandoc
stphivos/django-mock-queries
setup.py
setup.py
from distutils.core import setup from pip.req import parse_requirements install_req = parse_requirements('requirements/core.txt', session='skip') req = [str(ir.req) for ir in install_req] def read_md(filename): try: from pypandoc import convert_file return convert_file(filename, 'rst') except (ImportError, OSError): return open(filename).read() setup( name='django_mock_queries', packages=['django_mock_queries'], version='1.0.4', description='A django library for mocking queryset functions in memory for testing', long_description=read_md('README.md'), author='Phivos Stylianides', author_email='stphivos@gmail.com', url='https://github.com/stphivos/django-mock-queries', keywords='django orm mocking unit-testing tdd', classifiers=[], install_requires=req )
from distutils.core import setup from os import environ from pip.req import parse_requirements install_req = parse_requirements('requirements/core.txt', session='skip') req = [str(ir.req) for ir in install_req] def read_md(filename): try: from pypandoc import convert_file return convert_file(filename, 'rst') except (ImportError, OSError): if environ.get('CI', False): return open(filename).read() else: raise setup( name='django_mock_queries', packages=['django_mock_queries'], version='1.0.4', description='A django library for mocking queryset functions in memory for testing', long_description=read_md('README.md'), author='Phivos Stylianides', author_email='stphivos@gmail.com', url='https://github.com/stphivos/django-mock-queries', keywords='django orm mocking unit-testing tdd', classifiers=[], install_requires=req )
mit
Python
167928c355ce4ba90fe619796deab1807f993e94
bump version: 0.6.8
whitews/FlowUtils,whitews/FlowUtils
setup.py
setup.py
from setuptools import setup, Extension try: from numpy import get_include except ImportError: raise RuntimeError( "NumPy is required to build the C extension in FlowUtils") logicle_extension = Extension( 'flowutils.logicle_c', sources=[ 'flowutils/logicle_c_ext/_logicle.c', 'flowutils/logicle_c_ext/logicle.c' ], include_dirs=[get_include(), 'flowutils/logicle_c_ext'], extra_compile_args=['-std=c99'] ) setup( name='FlowUtils', version='0.6.8', packages=['flowutils'], package_data={'': []}, description='Flow Cytometry Standard Utilities', license='BSD', ext_modules=[logicle_extension], install_requires=['numpy>=1.7'] )
from setuptools import setup, Extension try: from numpy import get_include except ImportError: raise RuntimeError( "NumPy is required to build the C extension in FlowUtils") logicle_extension = Extension( 'flowutils.logicle_c', sources=[ 'flowutils/logicle_c_ext/_logicle.c', 'flowutils/logicle_c_ext/logicle.c' ], include_dirs=[get_include(), 'flowutils/logicle_c_ext'], extra_compile_args=['-std=c99'] ) setup( name='FlowUtils', version='0.6.7', packages=['flowutils'], package_data={'': []}, description='Flow Cytometry Standard Utilities', license='BSD', ext_modules=[logicle_extension], install_requires=['numpy>=1.7'] )
bsd-3-clause
Python
72d01a13761afbdcdfeb4fabb9095fa786403b18
Add tests requirements, fix console scripts definitions
shudmi/ngx-task
setup.py
setup.py
from setuptools import find_packages, setup setup( name='ngx-task', version='0.2', description='Testimonial for candidates to show up their code-foo', author='Dmitry Shulyak', author_email='dmitri.shulyak@gmail.com', url='https://github.com/shudmi/ngx-task', classifiers=[ 'License :: Apache License 2.0', 'Programming Language :: Python', 'Programming Language :: Python 3', 'Programming Language :: Python 3.4', ], packages=find_packages(exclude=['tests', 'tests.*']), install_requires=[], tests_require=[ "pytest==3.0.7", ], entry_points=""" [console_scripts] ngx_generate=ngx_task.cli:generate_data ngx_process=ngx_task.cli:process_data """ )
from setuptools import find_packages, setup setup( name='ngx-task', version='0.1', description='Testimonial for candidates to show up their code-foo', author='Dmitry Shulyak', author_email='dmitri.shulyak@gmail.com', url='https://github.com/shudmi/ngx-task', classifiers=[ 'License :: Apache License 2.0', 'Programming Language :: Python', 'Programming Language :: Python 3', 'Programming Language :: Python 3.4', ], packages=find_packages(exclude=['tests', 'tests.*']), install_requires=[], entry_points=""" [console_scripts] ngx_generate=ngx_task.cli.generate_data ngx_process=ngx_task.cli.process_data """ )
apache-2.0
Python
6f6da808e98413c84b7a201944e8ea5292a5e980
Prepare openprocurement.api 2.3.52.
openprocurement/openprocurement.api
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'libnacl', 'pbkdf2', 'pycrypto', 'pyramid_exclog', 'requests', 'rfc6266', 'setuptools', 'tzlocal', ] test_requires = requires + [ 'webtest', 'python-coveralls', 'mock', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_points = { 'paste.app_factory': [ 'main = openprocurement.api:main' ], 'openprocurement.api.plugins': [ 'belowThreshold = openprocurement.api:includeme' ], 'openprocurement.api.migrations': [ 'tenders = openprocurement.api.migration:migrate_data' ] } setup(name='openprocurement.api', version='2.3.52', description='openprocurement.api', long_description=README, classifiers=[ "Framework :: Pylons", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], keywords="web services", author='Quintagroup, Ltd.', author_email='info@quintagroup.com', license='Apache License 2.0', url='https://github.com/openprocurement/openprocurement.api', package_dir={'': 'src'}, py_modules=['cgi'], packages=find_packages('src'), namespace_packages=['openprocurement'], include_package_data=True, zip_safe=False, install_requires=requires, tests_require=test_requires, extras_require={'test': test_requires, 'docs': docs_requires}, test_suite="openprocurement.api.tests.main.suite", entry_points=entry_points)
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'libnacl', 'pbkdf2', 'pycrypto', 'pyramid_exclog', 'requests', 'rfc6266', 'setuptools', 'tzlocal', ] test_requires = requires + [ 'webtest', 'python-coveralls', 'mock', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_points = { 'paste.app_factory': [ 'main = openprocurement.api:main' ], 'openprocurement.api.plugins': [ 'belowThreshold = openprocurement.api:includeme' ], 'openprocurement.api.migrations': [ 'tenders = openprocurement.api.migration:migrate_data' ] } setup(name='openprocurement.api', version='2.3.47', description='openprocurement.api', long_description=README, classifiers=[ "Framework :: Pylons", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], keywords="web services", author='Quintagroup, Ltd.', author_email='info@quintagroup.com', license='Apache License 2.0', url='https://github.com/openprocurement/openprocurement.api', package_dir={'': 'src'}, py_modules=['cgi'], packages=find_packages('src'), namespace_packages=['openprocurement'], include_package_data=True, zip_safe=False, install_requires=requires, tests_require=test_requires, extras_require={'test': test_requires, 'docs': docs_requires}, test_suite="openprocurement.api.tests.main.suite", entry_points=entry_points)
apache-2.0
Python