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
c0c5f3adaef0b43a9eab94599f9a4ce6456ed4ac
update plugin interface
pyexcel/pyexcel-text,pyexcel/pyexcel-text
pyexcel_text/__init__.py
pyexcel_text/__init__.py
""" pyexcel_text ~~~~~~~~~~~~~~~~~~~ Provide text output :copyright: (c) 2014-2016 by C. W. :license: New BSD """ from pyexcel.plugins import PyexcelPluginChain PyexcelPluginChain(__name__).add_a_renderer( relative_plugin_class_path='_text.Tabulater', file_types=[ 'html', ...
""" pyexcel_text ~~~~~~~~~~~~~~~~~~~ Provide text output :copyright: (c) 2014-2016 by C. W. :license: New BSD """ from pyexcel.internal.common import PyexcelPluginChain PyexcelPluginChain(__name__).add_a_renderer( relative_plugin_class_path='_text.Tabulater', file_types=[ 'html',...
bsd-3-clause
Python
0d5578f73da584dce30711b02c85e30509e8f9b2
Make minus url back to min.us from debug server.
Miners/MinusAPI,Miners/MinusAPI,minus-development/MinusAPI,Miners/MinusAPI,minus-development/MinusAPI,minus-development/MinusAPI,Miners/MinusAPI
python/create_gallery.py
python/create_gallery.py
import sys, subprocess, urllib, urllib2, os from time import strftime import json import unicodedata ########## REPLACE FOLLOWING WITH VALID EDITOR AND VIEWER URLS #################### MINUS_URL = 'http://min.us/' # MINUS_URL = 'http://192.168.0.190:8001/' READER_ID = "veTYOJ" EDITOR_ID = "cXLjZ5CjJr5J" ##############...
import sys, subprocess, urllib, urllib2, os from time import strftime import json import unicodedata ########## REPLACE FOLLOWING WITH VALID EDITOR AND VIEWER URLS #################### # MINUS_URL = 'http://min.us/' MINUS_URL = 'http://192.168.0.190:8001/' READER_ID = "veTYOJ" EDITOR_ID = "cXLjZ5CjJr5J" ##############...
apache-2.0
Python
bd17b7f2202d42a4cfb2f047154bf8a28f420769
print out stats and --repeat as argument
maartenbreddels/vaex,maartenbreddels/vaex,maartenbreddels/vaex,maartenbreddels/vaex,maartenbreddels/vaex,maartenbreddels/vaex
python/vaex/benchmark.py
python/vaex/benchmark.py
import vaex as vx import sys import timeit import numpy as np import argparse subspace, dataset, limits = None, None, None def main(argv): global subspace, dataset, limits parser = argparse.ArgumentParser(argv[0]) parser.add_argument("-N", help="run each batch N times (default: %(default)s)", type=int, default=5) ...
import vaex as vx import sys import timeit import numpy as np import argparse subspace, dataset, limits = None, None, None def main(argv): global subspace, dataset, limits parser = argparse.ArgumentParser(argv[0]) parser.add_argument("-N", help="run each batch N times (default: %(default)s)", type=int, default=5) ...
mit
Python
9c0e65ac0a81f321cee547da6695cdaffb4ea319
add deleted field to answer admin
alpsayin/django-qanda,alpsayin/django-qanda,alpsayin/django-qanda,alpsayin/django-qanda
qanda/qanda_app/admin.py
qanda/qanda_app/admin.py
from django.contrib import admin from models import QandaUser, Question, Answer, Reply, Category, QuestionSubscription, AnswerSubscription from models import UserRelations, QuestionRelatedUsers, AnswerRelatedUsers class QandaUserAdmin(admin.ModelAdmin): fields = ['djangoUser', 'tags','deleted'] list_display = ...
from django.contrib import admin from models import QandaUser, Question, Answer, Reply, Category, QuestionSubscription, AnswerSubscription from models import UserRelations, QuestionRelatedUsers, AnswerRelatedUsers class QandaUserAdmin(admin.ModelAdmin): fields = ['djangoUser', 'tags','deleted'] list_display = ...
mit
Python
b3fe97004493270a7f8e464da5073ed0d9874f2b
remove redundant snitch function
openprocurement/openprocurement.tender.esco
openprocurement/tender/esco/views/tender.py
openprocurement/tender/esco/views/tender.py
# -*- coding: utf-8 -*- from openprocurement.tender.openeu.views.tender import TenderEUResource from openprocurement.tender.core.utils import optendersresource # TODO: remove these import section after adding auction from openprocurement.api.utils import json_view, error_handler from openprocurement.tender.core.vali...
# -*- coding: utf-8 -*- from openprocurement.tender.openeu.views.tender import TenderEUResource from openprocurement.tender.core.utils import optendersresource # TODO: remove these import section after adding auction from openprocurement.api.tests.base import snitch from openprocurement.api.utils import json_view, ...
apache-2.0
Python
acf01551477c4c76ee83d7208000e56fb747f27c
rename variable
osspeak/osspeak,osspeak/osspeak,osspeak/osspeak
osspeak/recognition/actions/library/flow.py
osspeak/recognition/actions/library/flow.py
def repeat(*args): from recognition.actions import perform count = args[-1]() try: count = int(count) except (TypeError, ValueError): count = 1 lambda_args = args[:-1] for i in range(count): for lambda_arg in lambda_args: perform.perform_io(lambda_arg()) def ...
def repeat(*args): from recognition.actions import perform count = args[-1]() try: count = int(count) except (TypeError, ValueError): count = 1 largs = args[:-1] for i in range(count): for larg in largs: perform.perform_io(larg()) def osspeak_if(*args): a...
mit
Python
af91b7c2612fab598ba50c0c0256f7e552098d92
Allow for use in daily.py
makinacorpus/reportlab-ecomobile,makinacorpus/reportlab-ecomobile,makinacorpus/reportlab-ecomobile,makinacorpus/reportlab-ecomobile,makinacorpus/reportlab-ecomobile
reportlab/docs/genAll.py
reportlab/docs/genAll.py
#!/bin/env python import os def _genAll(d=None,quiet=''): if not d: d = '.' if not os.path.isabs(d): d = os.path.normpath(os.path.join(os.getcwd(),d)) for p in ('reference/genreference.py', 'userguide/genuserguide.py', 'graphguide/gengraphguide.py', '../tools/docco/graphdocpy.py'): os.chdir(d) o...
#!/bin/env python """Runs the three manual-building scripts""" if __name__=='__main__': import os, sys d = os.path.dirname(sys.argv[0]) #need a quiet mode for the test suite if '-s' in sys.argv: # 'silent quiet = '-s' else: quiet = '' if not d: d = '.' if not os...
bsd-3-clause
Python
ba6cda4b78b282121d2b48ddf0a4a1150a47d3b8
Add playerData Command
mobiusdblreacharound/SBLUH-py
sbluh.py
sbluh.py
import json import bloodCalc import init import sweepCalc print "SBLUH CONSOLE" print "Python Edition" print init.main(True) print "run 'help' for commands." def unfin(): print "I need to code this!" print "github.com/Nutzchannel/SBLUH-py/issues" def console(): while True: enterSpam = 0 s...
import json import bloodCalc import init import sweepCalc print "SBLUH CONSOLE" print "Python Edition" print init.main(True) print "run 'help' for commands." def unfin(): print "I need to code this!" print "github.com/Nutzchannel/SBLUH-py/issues" def console(): while True: enterSpam = 0 s...
mit
Python
f0e92d075621431e3b1f7004fdb9ec9afc35c1f6
Make requirements compile disable pip's require-virtualenv flag always
adamchainz/flake8-tidy-imports
requirements/compile.py
requirements/compile.py
#!/usr/bin/env python from __future__ import annotations import os import subprocess import sys from pathlib import Path if __name__ == "__main__": os.chdir(Path(__file__).parent) os.environ["CUSTOM_COMPILE_COMMAND"] = "requirements/compile.py" os.environ["PIP_REQUIRE_VIRTUALENV"] = "0" common_args = ...
#!/usr/bin/env python from __future__ import annotations import os import subprocess import sys from pathlib import Path if __name__ == "__main__": os.chdir(Path(__file__).parent) os.environ["CUSTOM_COMPILE_COMMAND"] = "requirements/compile.py" os.environ.pop("PIP_REQUIRE_VIRTUALENV", None) common_arg...
mit
Python
83b045e4c50d9885fe420200d93d236452b4c6da
Return new data in watches. Fixes #3
tipsi/aiozk,tipsi/aiozk
aiozk/recipes/base_watcher.py
aiozk/recipes/base_watcher.py
import asyncio import collections import logging from aiozk import exc from .recipe import Recipe log = logging.getLogger(__name__) class BaseWatcher(Recipe): watched_event = None def __init__(self, *args, **kwargs): super(BaseWatcher, self).__init__(*args, **kwargs) self.callbacks = col...
import asyncio import collections import logging from aiozk import exc from .recipe import Recipe log = logging.getLogger(__name__) class BaseWatcher(Recipe): watched_event = None def __init__(self, *args, **kwargs): super(BaseWatcher, self).__init__(*args, **kwargs) self.callbacks = col...
mit
Python
06896930b88fc8d04ed8af94b2548e4eaea8ceed
Fix response for getting configuration from shared storage
oVirt/ovirt-hosted-engine-setup,oVirt/ovirt-hosted-engine-setup
src/ovirt_hosted_engine_setup/get_shared_config.py
src/ovirt_hosted_engine_setup/get_shared_config.py
# # ovirt-hosted-engine-setup -- ovirt hosted engine setup # Copyright (C) 2013-2015 Red Hat, Inc. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, o...
# # ovirt-hosted-engine-setup -- ovirt hosted engine setup # Copyright (C) 2013-2015 Red Hat, Inc. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, o...
lgpl-2.1
Python
e409a7ca032945e87fed90cfc03dad6b34afffa8
add more info in
FrodoTheTrue/safeurl
setup.py
setup.py
from setuptools import setup, find_packages from os.path import join, dirname setup( name='safeurl', version='0.0.3', packages=find_packages(), # long_description=open(join(dirname(__file__), 'README.md')).read(), install_requires=[ 'requests==2.7.0' ], test_suite='tests', autho...
from setuptools import setup, find_packages from os.path import join, dirname setup( name='SafeUrl', version='0.0.3', packages=find_packages(), # long_description=open(join(dirname(__file__), 'README.md')).read(), install_requires=[ 'requests==2.7.0' ], test_suite='tests', )
mit
Python
c2e768d6e287c14502b9c27762c33f264b249992
Update author name
jgilchrist/pybib
setup.py
setup.py
from setuptools import setup from pybib import __version__ with open('README.rst') as f: readme = f.read() setup(name='pybib', version=__version__, description='Fetch citation information, given a Digital Object Identifier', long_description=readme, url='https://github.com/jgilchrist/pybi...
from setuptools import setup from pybib import __version__ with open('README.rst') as f: readme = f.read() setup(name='pybib', version=__version__, description='Fetch citation information, given a Digital Object Identifier', long_description=readme, url='https://github.com/jgilchrist/pybi...
bsd-3-clause
Python
9557b17c79a81939ee6700aad4e6e03769da632b
Fix description
totem/yoda-py
setup.py
setup.py
from setuptools import setup with open('./requirements.txt') as reqs_txt: requirements = [line for line in reqs_txt] setup( name="yoda-py", version="0.1.0", description="Python client for Yoda.", author='Sukrit Khera', packages=['yoda'], install_requires=requirements, zip_safe=True, ...
from setuptools import setup with open('./requirements.txt') as reqs_txt: requirements = [line for line in reqs_txt] setup( name="yoda-py", version="0.1.0", description="Python client for Docker.", author='Sukrit Khera', packages=['yoda'], install_requires=requirements, zip_safe=True, ...
mit
Python
d88ffe34dd33ba5c7386cb7089fff52f031f52a9
更新setup.py license
WALL-E/dubbo-telnet-py,WALL-E/dubbo-telnet-py
setup.py
setup.py
import os from setuptools import setup THISDIR = os.path.dirname(os.path.abspath(__file__)) os.chdir(THISDIR) VERSION = open("version.txt").readline().strip() HOMEPAGE = 'https://github.com/WALL-E/dubbo-telnet-py' DOWNLOAD_BASEURL = "https://github.com/WALL-E/dubbo-telnet-py/raw/master/dist/" DOWNLOAD_URL = DOWNLOAD_...
import os from setuptools import setup THISDIR = os.path.dirname(os.path.abspath(__file__)) os.chdir(THISDIR) VERSION = open("version.txt").readline().strip() HOMEPAGE = 'https://github.com/WALL-E/dubbo-telnet-py' DOWNLOAD_BASEURL = "https://github.com/WALL-E/dubbo-telnet-py/raw/master/dist/" DOWNLOAD_URL = DOWNLOAD_...
mit
Python
58e0d7d7b72cc86c538e94fd27827180da4ab6e0
Declare dependency on psycopg2
ddsc/ddsc-socket
setup.py
setup.py
from setuptools import setup version = '0.1dev' long_description = '\n\n'.join([ open('README.rst').read(), open('CREDITS.rst').read(), open('CHANGES.rst').read(), ]) install_requires = [ 'celery', 'psycopg2', 'setuptools', ], tests_require = [ 'coverage', 'nose', ] setu...
from setuptools import setup version = '0.1dev' long_description = '\n\n'.join([ open('README.rst').read(), open('CREDITS.rst').read(), open('CHANGES.rst').read(), ]) install_requires = [ 'celery', 'setuptools', ], tests_require = [ 'coverage', 'nose', ] setup(name='ddsc-soc...
mit
Python
169f7ec7ae9fa654224216a9866fad4e632d0591
Update Setup file
HPE-Haven-OnDemand/havenondemand-python-v2.0
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '2.0.1' setup(name='havenondemand', version=version, description="Haven OnDemand Python client library", long_description="""\ This Python client library helps you easily access over 70 APIs from HPE Haven OnDemand platform. """...
from setuptools import setup, find_packages import sys, os version = '2.0.0' setup(name='havenondemand', version=version, description="Haven OnDemand Python client library", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers ...
mit
Python
074796735b112ce11fc8472f98b853e43d38ca56
Fix the classifier
Lnaden/pymbar,Lnaden/pymbar,choderalab/pymbar,Lnaden/pymbar,choderalab/pymbar,choderalab/pymbar
setup.py
setup.py
from setuptools import setup, find_packages import versioneer long_description = """ Pymbar (https://simtk.org/home/pymbar) is a library that provides tools for optimally combining simulations from multiple thermodynamic states using maximum likelihood methods to compute free energies (normalization constants) and ex...
from setuptools import setup, find_packages import versioneer long_description = """ Pymbar (https://simtk.org/home/pymbar) is a library that provides tools for optimally combining simulations from multiple thermodynamic states using maximum likelihood methods to compute free energies (normalization constants) and ex...
mit
Python
a9e39389d1e7222c100e46c7a975a52ac00eeb8e
Fix formatting
bmwcarit/spdx-tools-python,spdx/tools-python
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import from __future__ import print_function from setuptools import setup setup( name='spdx-tools', version='0.2', description='SPDX parser and tools.', packages=['spdx', 'spdx.parsers', 'spdx.writers', 'spdx.parsers.lexe...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import from __future__ import print_function from setuptools import setup setup( name='spdx-tools', version='0.2', description='SPDX parser and tools.', packages=['spdx', 'spdx.parsers', 'spdx.writers', 'spdx.parsers.lexe...
apache-2.0
Python
e2b0a1927f23c363511fcb6a1c2898c3538889dd
add uincodecsv to setup.py requirements for auto-install
emory-libraries-ecds/namedropper-py
setup.py
setup.py
#!/usr/bin/env python # file namedropper-py/setup.py # # Copyright 2012 Emory University Library # # 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/licen...
#!/usr/bin/env python # file namedropper-py/setup.py # # Copyright 2012 Emory University Library # # 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/licen...
apache-2.0
Python
a881655dea63531c909742baf39a18df45f05c3d
Install requirements
Lukasa/testifi
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'testifi', 'testifi.resources', ] setup( name='testifi', version='1.0.0', description='Web-app for testing websites against certifi', author...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'testifi', 'testifi.resources', ] setup( name='testifi', version='1.0.0', description='Web-app for testing websites against certifi', author...
mit
Python
6ae70c59a5d1e4f4ef78ddc7257c4d3369655761
Bump version.
markstory/lint-review,adrianmoisey/lint-review,adrianmoisey/lint-review,markstory/lint-review,zoidbergwill/lint-review,markstory/lint-review,zoidbergwill/lint-review,zoidbergwill/lint-review
setup.py
setup.py
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "0.5.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 AP...
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "0.5.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 AP...
mit
Python
141d1059762bb81aa10713f6a65d3703f79fc83d
fix #22 -- put string version into the setup.py
namlook/mongokit,goanpeca/mongokit,aquavitae/mongokit-py3,wshcdr/mongokit
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2009-2010, Nicolas Clairon # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the abov...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2009-2010, Nicolas Clairon # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the abov...
bsd-3-clause
Python
85dbe9333eb7aca78cde665193f15f60ef2565f0
remove unused import
aio-libs/aiozmq
setup.py
setup.py
import os import re from setuptools import setup, find_packages install_requires = ['pyzmq>=13.1'] tests_require = install_requires + ['msgpack>=0.5.0'] extras_require = {'rpc': ['msgpack>=0.5.0']} def read(f): return open(os.path.join(os.path.dirname(__file__), f)).read().strip() def read_version(): re...
import os import re import sys from setuptools import setup, find_packages install_requires = ['pyzmq>=13.1'] tests_require = install_requires + ['msgpack>=0.5.0'] extras_require = {'rpc': ['msgpack>=0.5.0']} def read(f): return open(os.path.join(os.path.dirname(__file__), f)).read().strip() def read_versio...
bsd-2-clause
Python
457115ed434f670915a03aea099ecb4ca58396da
Add python-daemon dependency
Yubico/python-pyhsm
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from distutils import versionpredicate import sys sys.path.append('Tests'); requires = [ 'pyserial >= 2.3', 'pycrypto >= 2.1', 'python-daemon >= 1.5' ] setup(name = 'pyhsm', version = '1.0.4h', description = 'Python code for...
#!/usr/bin/env python from setuptools import setup, find_packages from distutils import versionpredicate import sys sys.path.append('Tests'); requires = [ 'pyserial >= 2.3', 'pycrypto >= 2.1', ] setup(name = 'pyhsm', version = '1.0.4h', description = 'Python code for talking to a YubiHSM', ...
bsd-2-clause
Python
18ea0239ea8bfe56a03b58aa9fb7ea1ae8ebe9d9
remove install_requires from setup.py
ktdreyer/teuthology,michaelsevilla/teuthology,caibo2014/teuthology,dreamhost/teuthology,ceph/teuthology,zhouyuan/teuthology,michaelsevilla/teuthology,t-miyamae/teuthology,tchaikov/teuthology,ktdreyer/teuthology,caibo2014/teuthology,t-miyamae/teuthology,dmick/teuthology,tchaikov/teuthology,yghannam/teuthology,dmick/teut...
setup.py
setup.py
from setuptools import setup, find_packages setup( name='teuthology', version='0.0.1', packages=find_packages(), author='Tommi Virtanen', author_email='tommi.virtanen@dreamhost.com', description='Ceph test runner', license='MIT', keywords='ceph testing ssh cluster', # to find the ...
#!/usr/bin/python from setuptools import setup, find_packages setup( name='teuthology', version='0.0.1', packages=find_packages(), author='Tommi Virtanen', author_email='tommi.virtanen@dreamhost.com', description='Ceph test runner', license='MIT', keywords='ceph testing ssh cluster', ...
mit
Python
002030a8e56f3c3c0135c58aee62d357bd050ef9
Bump version to v2.0.11
olivierdalang/django-nested-admin,olivierdalang/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin,sbussetti/django-nested-admin,sbussetti/django-nested-admin
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='django-nested-admin', version="2.0.11", install_requires=[ 'six>=1.7.0', ], ...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='django-nested-admin', version="2.0.10", install_requires=[ 'six>=1.7.0', ], ...
bsd-2-clause
Python
d9959cb90da2da52da31726bfb68de2acea29455
Add a missing dependency, xattr
syndicate-storage/syndicate-fs-driver
setup.py
setup.py
#!/usr/bin/env python """ Copyright 2016 The Trustees of University of Arizona 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 Unl...
#!/usr/bin/env python """ Copyright 2016 The Trustees of University of Arizona 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 Unl...
apache-2.0
Python
e4e9f529b8cdc51cafa42bc3af9bb197636b29f4
Add description to setup.py
CygnusNetworks/nagios-plugin-elasticsearch,anchor/nagios-plugin-elasticsearch,abokth/nagios-plugin-elasticsearch
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from pip.req import parse_requirements setup( name="nagios-plugin-elasticsearch", description="An ElasticSearch availability and performance monitoring plugin for Nagios.", version="1.0.1", packages=find_packages(), url="https://git...
#!/usr/bin/env python from setuptools import setup, find_packages from pip.req import parse_requirements setup( name="nagios-plugin-elasticsearch", version="1.0.1", packages=find_packages(), url="https://github.com/anchor/nagios-plugin-elasticsearch", maintainer="Sharif Olorin", maintainer_ema...
mit
Python
e165fd3fda486d3ae5c52fef264459fb570e6e9f
bump version
lukassup/route-ctl
setup.py
setup.py
# -*- coding: utf-8 -*- """route-ctl package setup script.""" from setuptools import setup, find_packages setup( author='Lukas Šupienis <lukassup@yahoo.com>', license='MIT', url='https://github.com/lukassup/route-ctl.git', version='0.1.8', name='route-ctl', packages=find_packages(exclude=['tes...
# -*- coding: utf-8 -*- """route-ctl package setup script.""" from setuptools import setup, find_packages setup( author='Lukas Šupienis <lukassup@yahoo.com>', license='MIT', url='https://github.com/lukassup/route-ctl.git', version='0.1.7', name='route-ctl', packages=find_packages(exclude=['tes...
mit
Python
99e76a16b82f3b39f7bd85f42bc71c4774fd9adf
Enable "testing" setuptools extra.
jvanasco/formencode,formencode/formencode,jvanasco/formencode,formencode/formencode,systemctl/formencode,systemctl/formencode,systemctl/formencode,genixpro/formencode,formencode/formencode,genixpro/formencode,jvanasco/formencode,genixpro/formencode
setup.py
setup.py
"""FormEncode validates and converts nested structures. It allows for a declarative form of defining the validation, and decoupled processes for filling and generating forms. The official repo is at GitHub: https://github.com/formencode/formencode """ import sys from setuptools import setup, find_packages version =...
"""FormEncode validates and converts nested structures. It allows for a declarative form of defining the validation, and decoupled processes for filling and generating forms. The official repo is at GitHub: https://github.com/formencode/formencode """ import sys from setuptools import setup, find_packages version =...
mit
Python
e41c5f107b57372230b27c14fe5496e56214a670
prepare 2.3.54
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', 'li...
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', 'li...
apache-2.0
Python
102321911819981a0497376a0da2f9dd8528e8c6
change in readme filename
OMS-NetZero/FAIR
setup.py
setup.py
# -*- coding: utf-8 -*- # @Author: Zebedee Nicholls # @Date: 2017-04-10 13:42:11 # @Last Modified by: Chris Smith # @Last Modified time: 2018-01-11 19:17:00 from setuptools import setup from setuptools import find_packages import versioneer # README # def readme(): with open('README.rst') as f: return...
# -*- coding: utf-8 -*- # @Author: Zebedee Nicholls # @Date: 2017-04-10 13:42:11 # @Last Modified by: Chris Smith # @Last Modified time: 2018-01-11 19:17:00 from setuptools import setup from setuptools import find_packages import versioneer # README # def readme(): with open('README.md') as f: return ...
apache-2.0
Python
6b2a323bf446bf55bd44af986a2c3c5a99e5b1e8
Support non-static use of tagging in PyCRFSuite
Rostlab/nalaf
setup.py
setup.py
from setuptools import setup from setuptools import find_packages def readme(): with open('README.md', encoding='utf-8') as file: return file.read() def license(): with open('LICENSE.txt', encoding='utf-8') as file: return file.read() setup( name='nalaf', version='0.3.4', descr...
from setuptools import setup from setuptools import find_packages def readme(): with open('README.md', encoding='utf-8') as file: return file.read() def license(): with open('LICENSE.txt', encoding='utf-8') as file: return file.read() setup( name='nalaf', version='0.3.3', descr...
apache-2.0
Python
281550685836feafa0dd56b1fcd68067edb8d094
bump version to 1.2.1
singer-io/tap-mysql
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='tap-mysql', version='1.2.1', description='Singer.io tap for extracting data from MySQL', author='Stitch', url='https://singer.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_mysql'], ...
#!/usr/bin/env python from setuptools import setup setup(name='tap-mysql', version='1.2.0', description='Singer.io tap for extracting data from MySQL', author='Stitch', url='https://singer.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_mysql'], ...
agpl-3.0
Python
c83927a7797d15eeebb54178cee5db00d87ae028
Bump version to 0.0.5 (#24)
googleapis/protoc-java-resource-names-plugin,googleapis/protoc-java-resource-names-plugin
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2015, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyrig...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2015, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyrig...
bsd-3-clause
Python
b0554b0fc1acb4b1e0916e533017dc28cb5172a9
update pyannote.algorithms dependency
pyannote/pyannote-video
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2015-2016 CNRS # 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 limita...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2015-2016 CNRS # 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 limita...
mit
Python
d3df11233ca469a85a8ec424cc5e767ef7ad9d1a
Update trove classifiers
Stranger6667/Flask-Postmark
setup.py
setup.py
# coding: utf-8 import os import re from setuptools import find_packages, setup ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) def get_version(): with open(os.path.join(ROOT_DIR, "src", "flask_postmark", "__init__.py")) as fd: content = fd.read() return re.findall(r"__version__ = \"(.+)\...
# coding: utf-8 import os import re from setuptools import find_packages, setup ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) def get_version(): with open(os.path.join(ROOT_DIR, "src", "flask_postmark", "__init__.py")) as fd: content = fd.read() return re.findall(r"__version__ = \"(.+)\...
mit
Python
a1a9ea7c5d3b193a78d1d2c16fc821134d318a56
Fix requirements
plugaai/pytrthree
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup from setuptools.command.install import install if sys.version_info.major != 3: sys.exit('Support Python 3 only') class Installer(install): pass with open('README.md', 'r') as f: long_description = f.read() setup(name='pytrthree', vers...
#!/usr/bin/env python import sys from setuptools import setup from setuptools.command.install import install if sys.version_info.major != 3: sys.exit('Support Python 3 only') class Installer(install): pass with open('README.md', 'r') as f: long_description = f.read() setup(name='pytrthree', vers...
mit
Python
6763570674b27830957befaee08cb83278a65567
Bump flake8-isort to 2.6.0
nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz
setup.py
setup.py
# coding=utf-8 # # 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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import setup EXTRAS = { "test": [ "codec...
# coding=utf-8 # # 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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import setup EXTRAS = { "test": [ "codec...
mpl-2.0
Python
7c2a640d2c3ab9218d8334f4939d7c1af919c318
Update outdated link to repository, per @cknv
devinmcgloin/advent,devinmcgloin/advent
setup.py
setup.py
import os import sys from distutils.core import setup if sys.version_info < (3,): print('\nSorry, but Adventure can only be installed under Python 3.\n') sys.exit(1) README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt') with open(README_PATH, encoding="utf-8") as f: README_TEXT ...
import os import sys from distutils.core import setup if sys.version_info < (3,): print('\nSorry, but Adventure can only be installed under Python 3.\n') sys.exit(1) README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt') with open(README_PATH, encoding="utf-8") as f: README_TEXT ...
apache-2.0
Python
daee6660d11a7a188530f6b2b4f775b07678d412
Set version to 0.2.0
pyembed/pyembed,tino/pyembed,pyembed/pyembed
setup.py
setup.py
from setuptools import setup from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['rembed'] self.test_suite = True def run_tests(self): #import here, cause o...
from setuptools import setup from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['rembed'] self.test_suite = True def run_tests(self): #import here, cause o...
mit
Python
5c2a2070681ba985fdcbcd7c004edf297a864563
add description to setup.py
daler/metaseq,daler/metaseq,agrimaldi/metaseq,agrimaldi/metaseq,daler/metaseq,mrGeen/metaseq,agrimaldi/metaseq,mrGeen/metaseq,mrGeen/metaseq
setup.py
setup.py
import ez_setup ez_setup.use_setuptools() from setuptools import setup from distutils.extension import Extension from Cython.Distutils import build_ext import sys import os import numpy if 'setuptools.extension' in sys.modules: m = sys.modules['setuptools.extension'] m.Extension.__dict__ = m._Extension.__dict_...
import ez_setup ez_setup.use_setuptools() from setuptools import setup from distutils.extension import Extension from Cython.Distutils import build_ext import sys import os import numpy if 'setuptools.extension' in sys.modules: m = sys.modules['setuptools.extension'] m.Extension.__dict__ = m._Extension.__dict_...
mit
Python
0408609c928b88d2f5076101694385a64f7fc6ee
Add long_description to setup.py
thusoy/python-crypt
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup import sys install_requires = [] if sys.version_info < (2, 7, 0): install_requires.append('argparse') # Create a long description for PyPI, but don't fail if run under tox # and the files are not found long_description = [] try: fo...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup import sys install_requires = [] if sys.version_info < (2, 7, 0): install_requires.append('argparse') setup( name='pcrypt', version='1.0.3', author='Tarjei Husøy', author_email='git@thusoy.com', url='https://github....
mit
Python
8ccb3a886a30bac3a75aaeb2f799f96f2f804fc1
bump mapbox version
mapbox/mapbox-cli-py
setup.py
setup.py
from setuptools import setup, find_packages # Parse the version from the mapbox module. with open('mapboxcli/__init__.py') as f: for line in f: if line.find("__version__") >= 0: version = line.split("=")[1].strip() version = version.strip('"') version = version.strip("'...
from setuptools import setup, find_packages # Parse the version from the mapbox module. with open('mapboxcli/__init__.py') as f: for line in f: if line.find("__version__") >= 0: version = line.split("=")[1].strip() version = version.strip('"') version = version.strip("'...
mit
Python
0feb380bc18947dd062174b60a4eb713318dbde2
Simplify the 'setup.py' file.
jeremiedecock/pyax12,jeremiedecock/pyax12
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # PyAX-12 # The MIT License # # Copyright (c) 2010,2015 Jeremie DECOCK (http://www.jdhp.org) # # 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...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # PyAX-12 # The MIT License # # Copyright (c) 2010,2015 Jeremie DECOCK (http://www.jdhp.org) # # 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...
mit
Python
890a6b45bab0876d132a2bad6da154c96c7c772c
Fix the 'requires' in setup.py
chili-epfl/minimalkb,severin-lemaignan/minimalkb
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from distutils.core import setup #import __version__ execfile('src/minimalkb/__init__.py') def readme(): with open('README.rst') as f: return f.read() setup(name='minimalKB', version=__version__, license='BSD', description='A SQ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from distutils.core import setup #import __version__ execfile('src/minimalkb/__init__.py') def readme(): with open('README.md') as f: return f.read() setup(name='minimalKB', version=__version__, license='BSD', description='A SQL...
bsd-3-clause
Python
2a47b2df641e584d8e84e4be9aa06e6e2b064617
put license in setup.py
cosmolab/cosmogenic
setup.py
setup.py
import numpy import os from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize current_dir = os.path.dirname(os.path.abspath(__file__)) src_dir = os.path.join(current_dir, 'cosmogenic') setup( name="cosmogenic", packages=["cosmogenic"], version="0.1.0",...
import numpy import os from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize current_dir = os.path.dirname(os.path.abspath(__file__)) src_dir = os.path.join(current_dir, 'cosmogenic') setup( name="cosmogenic", packages=["cosmogenic"], version="0.1.0",...
bsd-2-clause
Python
0427a799086d25f25ec8440ca8aa0ac25f2bcc41
Bump version to 1.1.0
gds-attic/backdrop-collector-plugins
setup.py
setup.py
from setuptools import setup, find_packages setup( name='backdrop-collector-plugins', version="1.1.0", packages=["backdrop.collector.plugins"], namespace_packages=['backdrop', 'backdrop.collector'], # metadata for upload to PyPI author='Government Digital Service', author_email='', mai...
from setuptools import setup, find_packages setup( name='backdrop-collector-plugins', version="1.0.0", packages=["backdrop.collector.plugins"], namespace_packages=['backdrop', 'backdrop.collector'], # metadata for upload to PyPI author='Government Digital Service', author_email='', mai...
mit
Python
1cb70424be4d2e631afed2cbf4485265d1dc3cca
Use CHANGELOG directly
ZuluPro/django-blog-zinnia,marctc/django-blog-zinnia,dapeng0802/django-blog-zinnia,ghachey/django-blog-zinnia,extertioner/django-blog-zinnia,Fantomas42/django-blog-zinnia,dapeng0802/django-blog-zinnia,ZuluPro/django-blog-zinnia,aorzh/django-blog-zinnia,petecummings/django-blog-zinnia,dapeng0802/django-blog-zinnia,Zopie...
setup.py
setup.py
"""Setup script of django-blog-zinnia""" import os from setuptools import setup from setuptools import find_packages import zinnia setup( name='django-blog-zinnia', version=zinnia.__version__, description='A clear and powerfull weblog application powered with Django', long_description='\n'.join([open...
"""Setup script of django-blog-zinnia""" import os from setuptools import setup from setuptools import find_packages import zinnia setup( name='django-blog-zinnia', version=zinnia.__version__, description='A clear and powerfull weblog application powered with Django', long_description='\n'.join([open...
bsd-3-clause
Python
783af40959887112757ff8d52d68cc62d864a043
bump the version number
hermantai/sorno-py-scripts,hermantai/sorno-py-scripts
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup import os dependency_libs = [ "beautifulsoup4", "dropbox", "feedparser", "gitpython", "google_api_python_client", "humanfriendly", "humanize", "ipython", "lxml", ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup import os dependency_libs = [ "beautifulsoup4", "dropbox", "feedparser", "gitpython", "google_api_python_client", "humanfriendly", "humanize", "ipython", "lxml", ...
apache-2.0
Python
3e4e44968412acb2ada2279b6fb4108eb66b02b2
Remove dev indentifier; crank Development Status; updated URL to point to project page
problemshift/kf5py
setup.py
setup.py
from setuptools import setup setup( name='kf5py', py_modules = ['kf5py'], version='0.1.0', author='Chris Teplovs', author_email='dr.chris@problemshift.com', url='http://problemshift.github.io/kf5py/', license='LICENSE.txt', description='Python-based utilities for KF5.', install_requ...
from setuptools import setup setup( name='kf5py', py_modules = ['kf5py'], version='0.1.dev5', author='Chris Teplovs', author_email='dr.chris@problemshift.com', url='https://github.com/problemshift/kf5py', license='LICENSE.txt', description='Python-based utilities for KF5.', install_...
mit
Python
bc1d78199102f994570b5519449e466a5bf147e3
Fix package_data in setup.py
glue-viz/glue-exp
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function from setuptools import setup, find_packages entry_points = """ [glue.plugins] webcam_importer=glue_exp.importers.webcam:setup vizier_importer=glue_exp.importers.vizier:setup contour_selection=glue_exp.tools.contour_selection:setup """ setup(name='glue_exp'...
#!/usr/bin/env python from __future__ import print_function from setuptools import setup, find_packages entry_points = """ [glue.plugins] webcam_importer=glue_exp.importers.webcam:setup vizier_importer=glue_exp.importers.vizier:setup contour_selection=glue_exp.tools.contour_selection:setup """ setup(name='glue_exp'...
bsd-3-clause
Python
0b4fce8097e1a8ced6064f404a2d83520fbb7201
update version number
trbs/django-constance-trbs,trbs/django-constance-trbs
setup.py
setup.py
import os from setuptools import setup, find_packages # work around to prevent http://bugs.python.org/issue15881 from showing up try: import multiprocessing # NOQA except ImportError: pass try: f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) long_description = f.read().strip() f.c...
import os from setuptools import setup, find_packages # work around to prevent http://bugs.python.org/issue15881 from showing up try: import multiprocessing # NOQA except ImportError: pass try: f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) long_description = f.read().strip() f.c...
bsd-3-clause
Python
32d789f4bd8bcb4d79497489de7edc5dfab51c50
Fix deps for pip (#169)
jacobtomlinson/opsdroid,FabioRosado/opsdroid,opsdroid/opsdroid
setup.py
setup.py
#!/usr/bin/env python3 import os from setuptools import setup, find_packages from opsdroid.const import __version__ PACKAGE_NAME = 'opsdroid' HERE = os.path.abspath(os.path.dirname(__file__)) PACKAGES = find_packages(exclude=['tests', 'tests.*', 'modules', 'modules.*', 'docs', 'docs....
#!/usr/bin/env python3 import os from setuptools import setup, find_packages from opsdroid.const import __version__ PACKAGE_NAME = 'opsdroid' HERE = os.path.abspath(os.path.dirname(__file__)) PACKAGES = find_packages(exclude=['tests', 'tests.*', 'modules', 'modules.*', 'docs', 'docs....
apache-2.0
Python
510c9617cb6897d55784ef6ad22ce8b1434c701a
Remove aenum dependency
google/neural-tangents
setup.py
setup.py
# Copyright 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
apache-2.0
Python
c05bf2a3f47f127b1952826d76c8d31e047e63e1
Bump version number.
twaddington/django-gravatar
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst') setup( name='django-gravatar2', version='1.0.5', description='Essential Gravatar support for Django. Features helper methods, templatetags and a full test suite!', long_descriptio...
try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst') setup( name='django-gravatar2', version='1.0.4', description='Essential Gravatar support for Django. Features helper methods, templatetags and a full test suite!', long_descriptio...
mit
Python
426ab1d23dc7d07b91904fe89b3c6afba73c3d45
Update author to ESSS and set status to Beta
ESSS/conda-devenv
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pyyaml', 'jinja2', ] test_requirements = [ 'pytest', 'pyte...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pyyaml', 'jinja2', ] test_requirements = [ 'pytest', 'pyte...
mit
Python
49e0f2b6bc938a98ae6f38f0d33296b0693d0f50
Bump version to 0.1.4
thusoy/poff,thusoy/poff,thusoy/poff
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup, find_packages import sys install_requires = [ 'flask', 'flask-sqlalchemy', 'flask-wtf', 'pyyaml', 'wtforms-alchemy', ] if sys.version_info < (2, 7, 0): install_requires.append('argparse') setup( name='poff', ...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup, find_packages import sys install_requires = [ 'flask', 'flask-sqlalchemy', 'flask-wtf', 'pyyaml', 'wtforms-alchemy', ] if sys.version_info < (2, 7, 0): install_requires.append('argparse') setup( name='poff', ...
mit
Python
913a102332e5d2caeab265f8a9980e2303f58550
Fix wrong path in readme
PyO3/setuptools-rust,PyO3/setuptools-rust
setup.py
setup.py
from setuptools import setup version = "0.10.2" setup( name="setuptools-rust", version=version, author="Nikolay Kim", author_email="fafhrd91@gmail.com", url="https://github.com/PyO3/setuptools-rust", keywords="distutils setuptools rust", description="Setuptools rust extension plugin", ...
from setuptools import setup version = "0.10.2" setup( name="setuptools-rust", version=version, author="Nikolay Kim", author_email="fafhrd91@gmail.com", url="https://github.com/PyO3/setuptools-rust", keywords="distutils setuptools rust", description="Setuptools rust extension plugin", ...
mit
Python
67aa52d8d2798345e5e638d2d5c88515fae74309
fix setup.py
r-m-n/click-help-colors
setup.py
setup.py
# -*- coding: utf-8 -*- import io import re from setuptools import setup with io.open("click_help_colors/__init__.py", "rt", encoding="utf8") as f: version = re.search(r"__version__ = '(.*?)'", f.read()).group(1) setup( name='click-help-colors', version=version, packages=['click_help_colors'], d...
# -*- coding: utf-8 -*- import io import re from setuptools import setup with io.open("click_help_colors/__init__.py", "rt", encoding="utf8") as f: version = re.search(r"__version__ = '(.*?)'", f.read()).group(1) setup( name='click-help-colors', version=version, packages=['click_help_colors'], d...
mit
Python
782370b8fc57d35b0f4a2f5a6f6d39a4f55ce09d
Bump werkzeug from 0.12.2 to 0.14.1
sedders123/phial
setup.py
setup.py
from setuptools import setup from setuptools.command.install import install import os import sys VERSION = '0.2.1' class VerifyVersionCommand(install): """Custom command to verify that the git tag matches our version""" description = 'Verify that the git tag matches our version' def run(self): t...
from setuptools import setup from setuptools.command.install import install import os import sys VERSION = '0.2.1' class VerifyVersionCommand(install): """Custom command to verify that the git tag matches our version""" description = 'Verify that the git tag matches our version' def run(self): t...
mit
Python
b45955d08f1c9eea5eefc0f374aa28bab117b12f
Add long_description_content_type to setup.py
hadim/pygraphml
setup.py
setup.py
import os import io import re from setuptools import setup from setuptools import find_packages def read(*names, **kwargs): with io.open( os.path.join(os.path.dirname(__file__), *names), encoding=kwargs.get("encoding", "utf8") ) as fp: return fp.read() def find_version(*file_paths):...
import os import io import re from setuptools import setup from setuptools import find_packages def read(*names, **kwargs): with io.open( os.path.join(os.path.dirname(__file__), *names), encoding=kwargs.get("encoding", "utf8") ) as fp: return fp.read() def find_version(*file_paths):...
bsd-3-clause
Python
5ad47a21ed3c2702d606a22615367cda59928da4
Update setup.py
alexkolar/Wooey,hottwaj/Wooey,hottwaj/Wooey,wooey/Wooey,wooey/Wooey,alexkolar/Wooey,waytai/Wooey,waytai/Wooey,wooey/django-djangui,alexkolar/Wooey,waytai/Wooey,wooey/Wooey,hottwaj/Wooey,wooey/django-djangui,wooey/Wooey
setup.py
setup.py
import os from setuptools import setup, find_packages with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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='wooey', version='0.2...
import os from setuptools import setup, find_packages with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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='wooey', version='0.2...
bsd-3-clause
Python
d4d410859bff52da112fc70d2cc0675aba4be107
Revise to var visited_pq
bowen0701/algorithms_data_structures
alg_dijkstra_shortest_path.py
alg_dijkstra_shortest_path.py
from __future__ import absolute_import from __future__ import division from __future__ import print_function # import numpy as np from ds_min_heap_attribute import MinHeapAttribute def dijkstra_shortest_path(w_graph_d, v_start): """Dijkstra algorithm for singel-source shortest path problem in a "weighted" ...
from __future__ import absolute_import from __future__ import division from __future__ import print_function # import numpy as np from ds_min_heap_attribute import MinHeapAttribute def dijkstra_shortest_path(w_graph_d, v_start): """Dijkstra algorithm for singel-source shortest path problem in a "weighted" ...
bsd-2-clause
Python
b34e5fd5f53b75e0fcb881eb7d7aa6fe665f78ff
Update setup.py
genkosta/django-editor-ymaps,genkosta/django-editor-ymaps,genkosta/django-editor-ymaps
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Convenient use of the Yandex map service for web development on # the popular and free Django framework. # # Copyright (c) 2014 genkosta # # django-editor-ymaps is free software under terms of the MIT License. # from os import path from setuptools import find_pac...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Convenient use of the Yandex map service for web development on # the popular and free Django framework. # # Copyright (c) 2014-2019 genkosta # # django-editor-ymaps is free software under terms of the MIT License. # from os import path from setuptools import fin...
mit
Python
243fd3b0292b4f26bdc9737e4b8baf08e2df879c
Read version in setup.py from VERSION file
mapzen/vector-datasource,mapzen/vector-datasource,mapzen/vector-datasource
setup.py
setup.py
import os.path from setuptools import find_packages from setuptools import setup version_path = os.path.join(os.path.dirname(__file__), 'VERSION') with open(version_path) as fh: version = fh.read().strip() setup(name='vector-datasource', version=version, description="", long_description="""\ """...
from setuptools import find_packages from setuptools import setup version = 'v1.0.0.dev0' setup(name='vector-datasource', version=version, description="", long_description="""\ """, classifiers=[], keywords='', author='', author_email='', url='', license='MIT', ...
mit
Python
89bd813bc4e1abecb1d8e705b3f8471c59d86cea
Fix release fail
mission-liao/pyswagger
setup.py
setup.py
from setuptools import setup, find_packages version = open('pyswagger/__init__.py', 'r').readline().split()[2].strip("'") print version setup( name = 'pyswagger', packages = find_packages(exclude=['*.tests.*']), version = version, description = 'A type-safe, dynamic, spec-compliant swagger client & co...
from setuptools import setup, find_packages version = open('pyswagger/__init__', 'r').readline().split()[2] setup( name = 'pyswagger', packages = find_packages(exclude=['*.tests.*']), version = version, description = 'A type-safe, dynamic, spec-compliant swagger client & converter for python', aut...
mit
Python
b8d01c503a26556214135ba2f1d79fde31655e11
Include migrations.
gotlium/django-feedme,dstegelman/django-feedme,dstegelman/django-feedme,dstegelman/django-feedme,gotlium/django-feedme
setup.py
setup.py
from setuptools import setup setup( name='django-feedme', version='0.1', packages=['feedme', 'feedme.migrations'], zip_safe = False, include_package_data=True, url='http://github.com/dstegelman/django-feedme', license='MIT', author='Derek Stegelman', author_email='email@stegelman.co...
from setuptools import setup setup( name='django-feedme', version='0.1', packages=['feedme'], zip_safe = False, include_package_data=True, url='http://github.com/dstegelman/django-feedme', license='MIT', author='Derek Stegelman', author_email='email@stegelman.com', description='...
mit
Python
59cc3170ae72b041658c4d2f3ab3f774aa288cb6
Document why 0.8.10 is important
Clarify/clarify_python
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.rst').read() history = open('HISTORY.rst...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.rst').read() history = open('HISTORY.rst...
mit
Python
bf9d3b5aeff069afe0db34b20e950b0dd09b7606
remove find_packages
arviz-devs/arviz,arviz-devs/arviz,arviz-devs/arviz,arviz-devs/arviz
setup.py
setup.py
from setuptools import setup setup( name="mcmcplotlib", version="0.1.0", packages=['mcmcplotlib'], include_package_data=True, install_requires=[ 'matplotlib', 'numpy', 'scipy' ], )
from setuptools import setup, find_packages setup( name="mcmcplotlib", version="0.1.0", packages=['mcmcplotlib'], include_package_data=True, install_requires=[ 'matplotlib', 'numpy', 'scipy' ], )
apache-2.0
Python
03970bb9dba7aa100f475e2a7bf1c2fa87a48306
Update setup.py with new development status.
ctxis/django-admin-view-permission
setup.py
setup.py
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-admin-view-permission', ver...
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-admin-view-permission', ver...
bsd-2-clause
Python
151b3fb4ba12aba2768728d65c70d43a778bff0a
Remove zbox from setup.py
synthicity/orca,synthicity/orca,UDST/orca,synthicity/orca,synthicity/orca
setup.py
setup.py
from __future__ import print_function import subprocess # Install setuptools if not installed. try: import setuptools except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.sdist import sdist # these make sure the js ...
from __future__ import print_function import subprocess # Install setuptools if not installed. try: import setuptools except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.sdist import sdist # these make sure the js ...
bsd-3-clause
Python
3bc49620e25d1d7784fb09b1bb8ac355380bc334
bump xy version
mindw/grin
setup.py
setup.py
import os from setuptools import setup kwds = {} # Read the long description from the README.txt thisdir = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(thisdir, 'README.rst')) as f: kwds['long_description'] = f.read() setup( name='grin', version='1.2.1+xy2', author='Robert Kern'...
import os from setuptools import setup kwds = {} # Read the long description from the README.txt thisdir = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(thisdir, 'README.rst')) as f: kwds['long_description'] = f.read() setup( name='grin', version='1.2.1+xy1', author='Robert Kern'...
bsd-3-clause
Python
457823e15ff5f14dc4fa6f2a4f7cc2f1669b7757
Fix Classifiers
linuxlewis/tripy
setup.py
setup.py
from setuptools import find_packages, setup setup( name='tripy', version='0.0.1', url='https://github.com/linuxlewis/tripy', author='Sam Bolgert', author_email='sbolgert@gmail.com', description='Simple polygon triangulation', license='MIT', packages=find_packages(exclude=["tests.*"]), ...
from setuptools import find_packages, setup setup( name='tripy', version='0.0.1', url='https://github.com/linuxlewis/tripy', author='Sam Bolgert', author_email='sbolgert@gmail.com', description='Simple polygon triangulation', license='MIT', packages=find_packages(exclude=["tests.*"]), ...
mit
Python
1b90485babf9afb82ba4b1ad61a715cd4786cc9c
Bump version
borntyping/watch-fs
setup.py
setup.py
import setuptools setuptools.setup( name='watch-fs', version='1.4.1', author="Sam Clements", author_email="sam@borntyping.co.uk", url="https://github.com/borntyping/watch-fs", description="Run commands when files change", long_description=open('README.rst').read(), license='MIT', ...
import setuptools setuptools.setup( name='watch-fs', version='1.3.1', author="Sam Clements", author_email="sam@borntyping.co.uk", url="https://github.com/borntyping/watch-fs", description="Run commands when files change", long_description=open('README.rst').read(), license='MIT', ...
mit
Python
24495447305781abc07b3a294117329a8613d2db
Bump version: 0.0.4
data-tsunami/django-mercadopago,data-tsunami/django-mercadopago
setup.py
setup.py
# -*- coding: utf-8 -*- # from __future__ import unicode_literals 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__), o...
# -*- coding: utf-8 -*- # from __future__ import unicode_literals 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__), o...
bsd-3-clause
Python
e3b89f026de7707ddc9d199612a72740fafe4f53
Update setup.py
noxdafox/clipspy,noxdafox/clipspy
setup.py
setup.py
# Copyright (c) 2016-2017, Matteo Cafasso # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and ...
# Copyright (c) 2016-2017, Matteo Cafasso # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and ...
bsd-3-clause
Python
e32c6c8ccd0c9c532cbc6809f92cc66950466e56
Add json file to package
ydaniv/django-currencies,pathakamit88/django-currencies,racitup/django-currencies,marcosalcazar/django-currencies,ydaniv/django-currencies,bashu/django-simple-currencies,panosl/django-currencies,racitup/django-currencies,panosl/django-currencies,marcosalcazar/django-currencies,bashu/django-simple-currencies,pathakamit8...
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import os from currencies import __version__ # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, di...
#!/usr/bin/env python from distutils.core import setup import os from currencies import __version__ # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, di...
bsd-3-clause
Python
f3f74bf1699dbd2f328a22637beb4ed79d9fe17a
Bump version.
severb/flowy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='flowy', version='0.1.8', description="Python library for Amazon Simple Workflow Service", long_description=open('README.rst').read(), keywords='amazon swf simple workflow', author='Sever Banesiu', author_email='...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='flowy', version='0.1.7', description="Python library for Amazon Simple Workflow Service", long_description=open('README.rst').read(), keywords='amazon swf simple workflow', author='Sever Banesiu', author_email='...
mit
Python
344321c2bdcdee5fe300242e1e822eec9fe9b016
increment version: 1.5.4, library now deprecated
adafruit/Adafruit_Python_MCP9808
setup.py
setup.py
try: # Try using ez_setup to install setuptools if not already installed. from ez_setup import use_setuptools use_setuptools() except ImportError: # Ignore import error and assume Python 3 which already has setuptools. pass from setuptools import setup, find_packages classifiers = ['Development St...
try: # Try using ez_setup to install setuptools if not already installed. from ez_setup import use_setuptools use_setuptools() except ImportError: # Ignore import error and assume Python 3 which already has setuptools. pass from setuptools import setup, find_packages classifiers = ['Development St...
mit
Python
f89de1bfa616655d6b5fa0e0d5836113357ed986
Bump version
getsentry/responses,getsentry/responses
setup.py
setup.py
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys import logging from setuptools import setup from setuptools.command.test import test as TestCommand import pkg_resources setup_require...
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys import logging from setuptools import setup from setuptools.command.test import test as TestCommand import pkg_resources setup_require...
apache-2.0
Python
885593051e676a8264b9bb22e82189e3fd535309
Bump version to 0.1.3
Vassius/ttrss-python
setup.py
setup.py
from setuptools import setup with open('README.rst') as f: long_desc = f.read() setup( name='ttrss-python', version='0.1.3', description='A client library for the Tiny Tiny RSS web API', long_description=long_desc, url='https://github.com/Vassius/ttrss-python', auth...
from setuptools import setup with open('README.rst') as f: long_desc = f.read() setup( name='ttrss-python', version='0.1.2', description='A client library for the Tiny Tiny RSS web API', long_description=long_desc, url='https://github.com/Vassius/ttrss-python', auth...
mit
Python
454a60c0aa3c06f0df09060937d682b30ae46b36
Fix Syntax issue
banesullivan/ParaViewGeophysics,banesullivan/ParaViewGeophysics,banesullivan/ParaViewGeophysics
setup.py
setup.py
"""PVGeo: an open-source python package for geoscientific visualization in VTK and ParaView. """ import setuptools import warnings import platform import sys __version__ = '1.1.42' with open("README.md", "r") as f: long_description = f.read() # Remove the icon from the README (assumes it is on the first line...
"""PVGeo: an open-source python package for geoscientific visualization in VTK and ParaView. """ import setuptools import warnings import platform import sys __version__ = '1.1.42' with open("README.md", "r") as f: long_description = f.read() # Remove the icon from the README (assumes it is on the first line...
bsd-3-clause
Python
67bc75e23d5cc6faf635b5dd38a0f33d1a60c91a
remove django from dependencies
jonsimington/pybbm,artfinder/pybbm,webu/pybbm,hovel/pybbm,skolsuper/pybbm,artfinder/pybbm,just-work/pybbm,NEERAJIITKGP/pybbm,springmerchant/pybbm,zekone/dj_pybb,springmerchant/pybbm,katsko/pybbm,wengole/pybbm,just-work/pybbm,just-work/pybbm,hovel/pybbm,jonsimington/pybbm,onecue/pybbm,NEERAJIITKGP/pybbm,skolsuper/pybbm,...
setup.py
setup.py
from setuptools import setup, find_packages setup( version = '0.12.4', description = 'PyBB Modified. Django forum application', long_description = open('README.rst').read(), author = 'Pavel Zhukov', author_email = 'gelios@gmail.com', name = 'pybbm', url = 'http://www.pybbm.org/', packag...
from setuptools import setup, find_packages setup( version = '0.12.4', description = 'PyBB Modified. Django forum application', long_description = open('README.rst').read(), author = 'Pavel Zhukov', author_email = 'gelios@gmail.com', name = 'pybbm', url = 'http://www.pybbm.org/', packag...
bsd-2-clause
Python
25a6605b21eeb664e9ce2883574fbcb1c9ee3a4b
add magnetic scattering files '*mf' to project
dschick/udkm1Dsim,dschick/udkm1Dsim
setup.py
setup.py
from setuptools import setup, find_packages setup( name='udkm1Dsim', version='0.1.3', packages=find_packages(), package_data={ '': ['*.txt', '*.dat', '*.nff', '*.mf'], }, url='https://github.com/dschick/udkm1Dsim', install_requires=['tqdm', 'numpy', ...
from setuptools import setup, find_packages setup( name='udkm1Dsim', version='0.1.3', packages=find_packages(), package_data={ '': ['*.txt', '*.dat', '*.nff'], }, url='https://github.com/dschick/udkm1Dsim', install_requires=['tqdm', 'numpy', ...
mit
Python
b9361f179923accc46be6dcd9dbd577681b00b8a
Read long_description from README
pfig/CmdrKeen
setup.py
setup.py
from setuptools import setup, find_packages def long_description_from_readme(): with open('README.rst') as readme: return readme.read() setup( name="CommanderKeen", version="0.1", packages=find_packages(), scripts=['scripts/keen.py'], author="Pedro Figueiredo", author_email="pfig@...
from setuptools import setup, find_packages setup( name = "CommanderKeen", version = "0.1", packages = find_packages(), scripts = ['scripts/keen.py'], author = "Pedro Figueiredo", author_email = "pfig@me.com", description = "Commander Keen is a Slack bot with long term memory", long_desc...
mit
Python
df82e00f175b2f4e34e1c053e92cd864866b2847
Fix typo in url
ByteInternet/python-byterestclient,ByteInternet/python-byterestclient
setup.py
setup.py
from setuptools import setup, find_packages setup( name='byterestclient', version='0.1', packages=find_packages(exclude=['test*']), url='https:/github.com/ByteInternet/python-byterestclient', author='Allard Hoeve', author_email='allard@byte.nl', description='A generic REST client', inst...
from setuptools import setup, find_packages setup( name='byterestclient', version='0.1', packages=find_packages(exclude=['test*']), url='https:/github.com/ByteInternet/pythono-byterestclient', author='Allard Hoeve', author_email='allard@byte.nl', description='A generic REST client', ins...
mit
Python
b3eaa06ff66f6ff97811d456d04b4acfdc5195b5
Add Texas State University (0.13.0)
texastribune/tx_salaries,texastribune/tx_salaries
setup.py
setup.py
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
apache-2.0
Python
45484dbefb9fc3d3b5bdf2a8fbd08ad6783de4b3
update version
BennettLandman/pyPheWAS
setup.py
setup.py
from distutils.core import setup setup( name = 'pyPheWAS', packages = ['pyPheWAS'], # this must be the same as the name above version = '0.2.13', description = 'MASI Lab Port of PheWAS into Python', author = 'MASI Lab', author_email = 'bennett.landman@vanderbilt.edu', url = 'https://github.com/bennettland...
from distutils.core import setup setup( name = 'pyPheWAS', packages = ['pyPheWAS'], # this must be the same as the name above version = '0.2.12', description = 'MASI Lab Port of PheWAS into Python', author = 'MASI Lab', author_email = 'bennett.landman@vanderbilt.edu', url = 'https://github.com/bennettland...
mit
Python
9dac77b46eeac4dd3da74a41d9e5a432337c3ba6
fix setup.py
cihai/cihai,cihai/cihai,cihai/cihai-python
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 - *- """cihai lives at <https://cihai.git-pull.com>.""" import sys from setuptools import setup from setuptools.command.test import test as TestCommand about = {} with open("cihai/__about__.py") as fp: exec(fp.read(), about) with open('requirements/base.txt') as f: i...
#!/usr/bin/env python # -*- coding: utf8 - *- """cihai lives at <https://cihai.git-pull.com>.""" from setuptools import setup from setuptools.command.test import test as TestCommand about = {} with open("tmuxp/__about__.py") as fp: exec(fp.read(), about) with open('requirements/base.txt') as f: install_reqs ...
mit
Python
33bd6cc0daa16f394a4685e483cf63929e7ad3e8
Bump to v0.2.0
hyperoslo/django-mobile
setup.py
setup.py
# -*- coding: utf8 -*- import os from setuptools import setup # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(...
# -*- coding: utf8 -*- import os from setuptools import setup # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(...
mit
Python
2748407368918af2aee17b29794bcdded9c0bb42
Remove extraneous whitespace around kwarg
samueldg/clippings
setup.py
setup.py
import re from setuptools import setup with open('clippings/__init__.py') as f: # Not importing the file in setup.py! VERSION = re.search(r"__version__ = '(?P<version>.*?)'", f.read()).group('version') REQUIREMENTS = [ 'python-dateutil~=2.7', ] setup( name='clippings', version=VERSION, des...
import re from setuptools import setup with open('clippings/__init__.py') as f: # Not importing the file in setup.py! VERSION = re.search(r"__version__ = '(?P<version>.*?)'", f.read()).group('version') REQUIREMENTS = [ 'python-dateutil~=2.7', ] setup( name='clippings', version=VERSION, des...
mit
Python
c3abff87991757ab5616297512e9e2ce6a9c90cd
Add treq as requirement
praekelt/vumi-twilio-api
setup.py
setup.py
from setuptools import setup, find_packages setup( name="vxtwinio", version="0.0.1a", url="https://github.com/praekelt/vumi-twilio-api", license="BSD", description="Provides a REST API to Vumi that emulates the Twilio API", long_description=open("README.rst", "r").read(), author="Praekelt F...
from setuptools import setup, find_packages setup( name="vxtwinio", version="0.0.1a", url="https://github.com/praekelt/vumi-twilio-api", license="BSD", description="Provides a REST API to Vumi that emulates the Twilio API", long_description=open("README.rst", "r").read(), author="Praekelt F...
bsd-3-clause
Python
7b73e53ee5544a4464e855407475b4f70fa1661f
bump version and release
eugene-eeo/scell
setup.py
setup.py
from distutils.core import setup setup( name='scell', version='0.0.2', description='simple wrapper atop select', license='MIT', author='Eugene Eeo', author_email='packwolf58@gmail.com', url='https://github.com/eugene-eeo/scell', packages=['scell'], platforms='any', classifiers=...
from distutils.core import setup setup( name='scell', version='0.0.1', description='simple wrapper atop select', license='MIT', author='Eugene Eeo', author_email='packwolf58@gmail.com', url='https://github.com/eugene-eeo/scell', packages=['scell'], platforms='any', classifiers=...
mit
Python
bb6b12b44873bcc5afc2d651f9b4da1b50c948ee
add proso_questions_client to the distribution
adaptive-learning/proso-apps,adaptive-learning/proso-apps,adaptive-learning/proso-apps
setup.py
setup.py
from setuptools import setup, find_packages import os version = '0.9.0' setup( name='proso-apps', version=version, description='General library for applications in PROSO projects', author='Jan Papousek, Vit Stanislav', author_email='jan.papousek@gmail.com, slaweet@seznam.cz', namespace_package...
from setuptools import setup, find_packages import os version = '0.9.0' setup( name='proso-apps', version=version, description='General library for applications in PROSO projects', author='Jan Papousek, Vit Stanislav', author_email='jan.papousek@gmail.com, slaweet@seznam.cz', namespace_package...
mit
Python
4fefc7b92b92eab10fdc8908b6ec31449c66646e
Bump up six version to the latest in setup.py.
ptthiem/nose2,ojengwa/nose2,ptthiem/nose2,little-dude/nose2,ezigman/nose2,little-dude/nose2,ojengwa/nose2,ezigman/nose2
setup.py
setup.py
import os import sys NAME = 'nose2' VERSION = '0.4.7' PACKAGES = ['nose2', 'nose2.plugins', 'nose2.plugins.loader', 'nose2.tests', 'nose2.tests.functional', 'nose2.tests.unit', 'nose2.tools', 'nose2.backports'] SCRIPTS = ['bin/nose2'] DESCRIPTION = 'nose2 is the next generation of nicer testing...
import os import sys NAME = 'nose2' VERSION = '0.4.7' PACKAGES = ['nose2', 'nose2.plugins', 'nose2.plugins.loader', 'nose2.tests', 'nose2.tests.functional', 'nose2.tests.unit', 'nose2.tools', 'nose2.backports'] SCRIPTS = ['bin/nose2'] DESCRIPTION = 'nose2 is the next generation of nicer testing...
bsd-2-clause
Python
bfbb96ee26b234c19209b25f2099f99b577537cf
Fix release
idxp/pyidxp
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pyidxp', version='0.3.1', author='Artur Rodrigues, Denis Lins', author_email='arturhoo@gmail.com, denis.lins@outlook.com', description='pyidxp - simple libs for our everyday needs', url='https://github.com/idxp/pyidxp', download_url='...
from setuptools import setup, find_packages setup( name='pyidxp', version='0.3.0', author='Artur Rodrigues, Denis Lins', author_email='arturhoo@gmail.com, denis.lins@outlook.com', description='pyidxp - simple libs for our everyday needs', url='https://github.com/idxp/pyidxp', download_url='...
mit
Python
aba2ccc48fdae23c1e04eab705402e319c97e76a
Change version number to 0.1
apoorvemohan/haas,SahilTikale/switchHaaS,kylehogan/haas,henn/hil_sahil,henn/hil,kylehogan/hil,henn/hil,SahilTikale/haas,kylehogan/hil,meng-sun/hil,apoorvemohan/haas,CCI-MOC/haas,henn/hil_sahil,henn/haas,meng-sun/hil
setup.py
setup.py
# Copyright 2013-2014 Massachusetts Open Cloud Contributors # # 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 applicab...
# Copyright 2013-2014 Massachusetts Open Cloud Contributors # # 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 applicab...
apache-2.0
Python
0a6d940e634610b33aecf7938e6373efa2239f4d
Update project description.
cardmagic/PyAMF,cardmagic/PyAMF,cardmagic/PyAMF
setup.py
setup.py
# Copyright (c) 2007-2008 The PyAMF Project. # See LICENSE for details. from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command import test class TestCommand(test.test): def run_twisted(self): from twisted.trial import runner from ...
# Copyright (c) 2007-2008 The PyAMF Project. # See LICENSE for details. from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command import test class TestCommand(test.test): def run_twisted(self): from twisted.trial import runner from ...
mit
Python