commit
stringlengths
40
40
subject
stringlengths
1
3.25k
old_file
stringlengths
4
311
new_file
stringlengths
4
311
old_contents
stringlengths
0
26.3k
lang
stringclasses
3 values
proba
float64
0
1
diff
stringlengths
0
7.82k
50d2b9cf2640c7788cb890ad945a64ac2f5613f3
Update version for packaging.
setup.py
setup.py
from setuptools import setup, find_packages with open('README.md') as fhandle: long_description = fhandle.read() setup( name='pyansible', version='1.0.2', description='A module for interfacing with Ansible Runner and Inventory.', long_description=long_description, url="https://github.com/bdas...
Python
0
@@ -159,17 +159,17 @@ on='1.0. -2 +3 ',%0A d
1f7decd74c8e4bd5e8d2f9ee387e4fcd3f860f58
update statistics
async_crawler.py
async_crawler.py
#!/usr/bin/env python3 # python dictionary object to html5 json form generator. # https://github.com/mehmetkose/python3-async-crawler # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2016 Mehmet Kose mehmet@linux.com import aiohttp import asyncio from html.parser i...
Python
0.000001
@@ -428,84 +428,28 @@ %5B%5D%0A -will_be_crawl_urls = %5Broot_url, root_url.replace('http:','https:'), %0A +url_hub = %5Broot_url, %22%25s @@ -1160,34 +1160,23 @@ rawl in -will_be_crawl_urls +url_hub :%0A @@ -1316,39 +1316,124 @@ link -:%0A will_be_crawl + and not link in crawled_url...
7a7dd4ed8285d4963d05612870206db7b07b2452
Add jmespath as a dependency
setup.py
setup.py
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import sys import botocore try: from setuptools import setup setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() packages = [ ...
Python
0.000001
@@ -379,32 +379,63 @@ 'six%3E=1.1.0',%0A + 'jmespath==0.0.1',%0A 'pyt
522c7d13cb491998f8feba99f3657e77310f275b
add sparc.testing dependency
setup.py
setup.py
from setuptools import setup, find_packages import os version = '0.0.3' setup(name='sparc.common', version=version, description="Common utilities used within SPARC platform", long_description=open("README.md").read() + "\n" + open("HISTORY.txt").read(), # Get more string...
Python
0.000001
@@ -1320,24 +1320,81 @@ *-%0A %5D,%0A + tests_require=%5B%0A 'sparc.testing'%0A %5D,%0A entry_
89aa7258c47856dcb37b81d84143dc2af03321bd
Version bump
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup try: import setuptools except ImportError: pass # No 'develop' command, oh well. version = '1.6' setup(name='unstdlib', version=version, description='Unstandard Python library of useful and highly-reusable functions', author='Andrey Petrov',...
Python
0.000001
@@ -154,16 +154,18 @@ n = '1.6 +.1 '%0A%0Asetup
18191319f244ea9f1ab7a874467e944d051724e8
Add credentials, description, etc.
setup.py
setup.py
from setuptools import setup setup( name='boxer', version='0.1', py_modules=['boxer'], include_package_data=True, url='https://github.com/bradleygolden/boxer', download_url='https://github.com/bgolden/boxer/archive/0.1.tar.gz.', keywords=['tox', 'pyenv', 'docker'], install_requires=[ ...
Python
0
@@ -30,16 +30,131 @@ %0Asetup(%0A + author='Bradley Golden',%0A author_email='golden.bradley@gmail.com',%0A description='Tox wrapped in docker',%0A name
4bfaf45ed2f27dca0105975243da093cf518ef4b
Bump version
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...
Python
0
@@ -723,16 +723,18 @@ ion='4.0 +.1 ',%0A a
b9b8a65234ba36c34a10db2b0f9fe0ee526dea70
Bump version in setup.py
setup.py
setup.py
''' Setup File ''' from setuptools import setup import multiprocessing setup(name='cmd_utils', version='0.3.0', description='Wrapper for subprocess.Popen and paramiko', long_description=('Wrapper for subprocess.Popen and paramiko ' 'to allow easy running of commands locally an...
Python
0
@@ -106,17 +106,17 @@ sion='0. -3 +4 .0',%0A @@ -431,16 +431,15 @@ :: -3 - Alph +4 - Bet a',%0A
4a0574329003f5cdbfc66dac948b2f6a6f10ea05
long_description should be read from README, not README.md
setup.py
setup.py
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='blah', version='0.1.2', description='Thin wrapper around source control systems', long_description=read("README.md"), author='Micha...
Python
0.999815
@@ -293,11 +293,8 @@ ADME -.md %22),%0A
dc6df0448d9a7f921c7dc078eecbb6d65fc29320
Bump version to 0.0.6
setup.py
setup.py
from setuptools import setup version = '0.0.5' try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): long_description = open('README.md').read() setup(name='falcon-autocrud', version=version, description='Makes RESTful CRUD easier', ...
Python
0.000001
@@ -42,9 +42,9 @@ 0.0. -5 +6 '%0A%0At
0691678ba97930ab3073c166e4c4fd9c33bc94a4
Update requirements
setup.py
setup.py
""" WTForms-Alchemy --------------- Generates WTForms forms from SQLAlchemy models. """ from setuptools import setup, Command import subprocess import sys class PyTest(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): ...
Python
0
@@ -861,24 +861,63 @@ 6b1'%0A %5D,%0A + 'intervals': %5B'intervals%3E=0.2.0'%5D,%0A 'passwor @@ -1810,11 +1810,11 @@ %3E=0. -8.1 +9.0 ',%0A @@ -1845,12 +1845,12 @@ %3E=0. -19.0 +23.1 ',%0A
db35f8b1fb5404bd7855ebcaed06d088607a8df3
Fix architectures missing target resolution
pwndbg/disasm/__init__.py
pwndbg/disasm/__init__.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Functionality for disassmebling code at an address, or at an address +/- a few instructions. """ import collections import gdb import pwndbg.arch import pwndbg.disasm.mips import pwndbg.disasm.arm import pwndbg.disasm.ppc import pwndbg.disasm.x86 import pwndbg.disasm.j...
Python
0.002634
@@ -2278,20 +2278,27 @@ bda *a: +( None +,None) )(instru
c19e1c4e0597203283ae7c9d706389a12b1d15cf
Generate the long description of the project for pypi.
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import distutils.sysconfig, os # from distutils.core import Extension from setuptools import Extension, setup # Work around the problem with the warning about '-Wstrict-prototypes'. # https://bugs.python.org/issue1222585 config_vars = distutils.sysconfig.get_config_vars(...
Python
0.999988
@@ -67,17 +67,38 @@ ysconfig -, +%0Aimport inspect%0Aimport os%0A# fr @@ -173,16 +173,189 @@ setup%0A%0A +%0Ahere = os.path.abspath(os.path.dirname(inspect.getsource(lambda: 0)))%0A%0Awith open(os.path.join(here, 'README.md'), encoding='utf-8') as f:%0A long_description = f.read()%0A%0A%0A # Work a @@ -987,24 ...
ff0f963fc1003406db1ef761698b8eedc576d64e
Update entrio link
ui/ctx.py
ui/ctx.py
from random import shuffle from django.contrib.staticfiles.templatetags.staticfiles import static from django.urls import reverse from config.utils import get_active_event from sponsors.choices import SPONSOR_TYPES from sponsors.models import Sponsor from usergroups.models import UserGroup def navigation(request): ...
Python
0
@@ -2280,14 +2280,14 @@ -201 -6-3213 +7-4261 %22,%0A
2e25125904c94fa7250f6a8a0f4de4e2c463644b
Update Chapter04/reverseCipher.py added docstring and wrapped in main() function
books/CrackingCodesWithPython/Chapter04/reverseCipher.py
books/CrackingCodesWithPython/Chapter04/reverseCipher.py
# Reverse Cipher # https://www.nostarch.com/crackingcodes/ (BSD Licensed) # Note: pretty much the same, except I use double quotes, # expand variable names for readability, simplify the while loop, # and use fancier operators message = "Three can keep a secret, if two of them are dead." #message = input("Enter message...
Python
0
@@ -1,10 +1,11 @@ -# +%22%22%22 Reverse @@ -11,18 +11,17 @@ Cipher%0A -# +%0A https:// @@ -71,17 +71,20 @@ ed)%0A -# +%0A Note: - p +%0A P rett @@ -128,17 +128,19 @@ quotes,%0A -# + expand @@ -195,18 +195,16 @@ le loop, -%0A# and use @@ -222,17 +222,38 @@ erators%0A -%0A +%22%22%22%0A%0A%0Adef ...
c24bab2ac07dcbcaf214fe396db7a154a0d3baec
Bump version
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 import os from setuptools import setup def read_file(name): filepath = os.path.join( os.path.dirname(os.path.realpath(__file__)), name ) data = open(filepath) try: return data.read() except IOError: print "could not read %r"...
Python
0
@@ -382,17 +382,17 @@ = '0.2. -0 +1 '%0AURL =
d699cc1d34436c5bb53f008f7abf1f3325d2efa7
Bump flake8-bugbear from 20.11.1 to 21.3.1
setup.py
setup.py
from setuptools import setup EXTRAS_REQUIRE = { "tests": ["pytest", "mock"], "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "pre-commit~=2.7"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] def read(fname): with open(fname) as fp: content = fp.read() ...
Python
0.000002
@@ -127,12 +127,11 @@ r==2 -0.11 +1.3 .1%22,
1b1ad61f2637acefa8b70a926e078f2e567cfd06
add a version check here too
setup.py
setup.py
#!/usr/bin/env python # Setup file for Kiwi # Code by Async Open Source <http://www.async.com.br> # setup.py written by Christian Reis <kiko@async.com.br> # re-written various times by Johan Dahlin <jdahlin@async.com.br> """ kiwi offers a set of enhanced widgets for Python based on PyGTK. It also includes a framework...
Python
0
@@ -438,16 +438,134 @@ setup%0A%0A +try:%0A import gobject%0A import gtk%0Aexcept ImportError:%0A raise SystemExit(%22Kiwi requires PyGTK 2.8 or higher%22)%0A%0A from kiw
2b06bfa93a476aa140539e6ad86fcc10bcd495e3
Bump version to 0.9a5
setup.py
setup.py
from setuptools import setup, find_packages setup( name='reobject', version='0.9a5', description='Python without ifs and buts', url='https://github.com/onyb/reobject', author='Anirudha Bose', author_email='ani07nov@gmail.com', license='Apache-2.0', classifiers=[ 'Development Sta...
Python
0
@@ -83,17 +83,17 @@ on='0.9a -5 +6 ',%0A d
3cac863dfbd4261a0429f2562bf1d8a1bc854d91
Bump version
setup.py
setup.py
# coding=utf-8 import sys from setuptools import setup, find_packages NAME = 'django-permission' VERSION = '0.8.2' def read(filename): import os BASE_DIR = os.path.dirname(__file__) filename = os.path.join(BASE_DIR, filename) with open(filename, 'r') as fi: return fi.read() def readlist(fil...
Python
0
@@ -106,17 +106,17 @@ = '0.8. -2 +3 '%0A%0A%0Adef
b384c4e78b4549d99721b9eaf03ce16d8caba0d7
Build GPU extensions whenever CUDA_HOME is available (#911)
setup.py
setup.py
from __future__ import print_function import os import io import re import sys from setuptools import setup, find_packages from pkg_resources import get_distribution, DistributionNotFound import subprocess import distutils.command.clean import glob import shutil import torch from torch.utils.cpp_extension import CppEx...
Python
0.000014
@@ -2428,38 +2428,8 @@ if -torch.cuda.is_available() and CUDA
8a080e6d6bd7833fa25bffc520fae5f093b206a8
Add the glclient-build script to the scripts installed by setup.py
setup.py
setup.py
#!/usr/bin/env python #-*- coding: utf-8 -*- import os import re import sys import shutil import hashlib import urllib2 from zipfile import ZipFile from distutils.core import setup from globaleaks import __version__ def pip_to_requirements(s): """ Change a PIP-style requirements.txt string into one suitable f...
Python
0
@@ -3529,16 +3529,42 @@ baleaks%22 +, %22scripts/glclient-build%22 %5D,%0A r
4f2761011f170cf978fd77b9b25c754d158f88b9
bump version
setup.py
setup.py
# Copyright (c) 2009, Rotem Yaari <vmalloc@gmail.com> # 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 copyright # notice, this li...
Python
0
@@ -1728,17 +1728,17 @@ on=%221.0. -1 +2 %22,%0A
f968629f36516df4134a06d0a439bc57e4457cd6
remove platform dependence
setup.py
setup.py
import os from distutils.util import get_platform import numpy as np from Cython.Distutils import build_ext from setuptools import Extension, find_packages, setup platform = get_platform() if platform.startswith("win"): extra_compile_args = [] extra_link_args = [] else: extra_compile_args = [ "-fP...
Python
0
@@ -6,48 +6,8 @@ t os -%0Afrom distutils.util import get_platform %0A%0Aim @@ -122,353 +122,8 @@ up%0A%0A -platform = get_platform()%0Aif platform.startswith(%22win%22):%0A extra_compile_args = %5B%5D%0A extra_link_args = %5B%5D%0Aelse:%0A extra_compile_args = %5B%0A %22-fPIC%22,%0A %22-m64%22...
d4ad94d1e78de00bb047359f5056a5a5cf41df49
remove analysis package from install script
setup.py
setup.py
__author__ = 'lobocv' import os from setuptools import setup from anonymoususage import __version__ setup( name='anonymoususage', packages=['anonymoususage', 'anonymoususage.tables', 'anonymoususage.analysis'], # this must be the same as the name above version=__version__, description='Anonymously t...
Python
0
@@ -189,35 +189,8 @@ les' -, 'anonymoususage.analysis' %5D,
9e7ce48bfb2d9b6f7bfb881b8b587d2ae730f8e2
Bump version to 0.4.1
setup.py
setup.py
import sys import os.path import setuptools MISC_DIR = "misc" 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(MISC_...
Python
0.000001
@@ -1,13 +1,126 @@ -import sy +# encoding: utf-8%0A%0A%22%22%22%0A.. codeauthor:: Tsuyoshi Hombashi %3Cgogogo.vm@gmail.com%3E%0A%22%22%22%0A%0Afrom __future__ import unicode_literal s%0Aim @@ -132,16 +132,28 @@ os.path%0A +import sys%0A%0A import s @@ -822,17 +822,17 @@ on=%220.4. -0 +1 %22,%0A a @@ -1383,24 +1...
5743d23a7d49b121c44e9001772067d0f636e31d
Version bump to 0.4.0
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='impermium', version='0.3.1', author='David Cramer', author_email='dcramer@gmail.com', url='http://github.com/disqus/impermium-python', description = 'Impermium API bindings for Python', packages=find_packages(),...
Python
0
@@ -109,11 +109,11 @@ ='0. -3.1 +4.0 ',%0A
93c866cc0c815bf7c4f4eabd50274a474bd98ad4
Tweak setup.py so that it may run even when fired from different locations, as suggested by Maarten Damen.
setup.py
setup.py
#!/usr/bin/python from os.path import isfile, join import glob import os import re from setuptools import setup if isfile("MANIFEST"): os.unlink("MANIFEST") VERSION = re.search('__version__ = "([^"]+)"', open("dateutil/__init__.py").read()).group(1) setup(name="python-dateutil", ver...
Python
0
@@ -159,16 +159,58 @@ EST%22)%0A%0A%0A +TOPDIR = os.path.dirname(__file__) or %22.%22%0A VERSION @@ -273,17 +273,27 @@ open( -%22 +TOPDIR + %22/ dateutil
a9bdeadeefee0e107a6d86fb055d3a4c10f08d2f
更新setup.py
setup.py
setup.py
# encoding: UTF-8 ''' vn.py - By Traders, For Traders. The vn.py project is an open-source quantitative trading framework that is developed by traders, for traders. The project is mainly written in Python and uses C++ for low-layer and performance sensitive infrastructure. Using the vn.py project, institutional ...
Python
0.000001
@@ -1189,17 +1189,17 @@ eloping -q +Q uantitat @@ -1198,25 +1198,25 @@ uantitative -t +T rading progr @@ -1398,42 +1398,61 @@ ' -Environment :: Quantiative Trading +Operating System :: Microsoft :: Windows :: Windows 7 ',%0A @@ -1484,33 +1484,57 @@ g System :: -Windows 7 +Microsoft :: Windows :: Windows 8...
dd1bb5d8d00c676fef91ce7d3f58cd7af44f854f
Bump version to 2.0.0
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
Python
0
@@ -495,11 +495,11 @@ on=' -1.1 +2.0 .0',
a8d1e8daf397f81d5692f9022859576973f48ae7
Bump version to 0.1.2
setup.py
setup.py
#!/usr/bin/env python import os import platform import subprocess import tarfile import shutil try: import sysconfig except ImportError: # Python 2.6 from distutils import sysconfig from setuptools import setup from distutils.extension import Extension from distutils.command.build_ext import build_ext t...
Python
0.000001
@@ -2578,17 +2578,17 @@ on='0.1. -1 +2 ',%0A d
972a4088a11c03e514ff9f75636166951561fe6d
Add copyright header to setup.py
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 """ Parse D-Bus introspection XML and process it in various ways """ from setuptools import setup, find_packages import os __version__ = '0.1.0' README = open('README').read() NEWS = open('NEWS').read() setup( name='dbus-deviation', ve...
Python
0
@@ -63,16 +63,1113 @@ et sw=4 +%0A#%0A# Copyright %C2%A9 2015 Collabora Ltd.%0A#%0A# Permission is hereby granted, free of charge, to any person%0A# obtaining a copy of this software and associated documentation files%0A# (the %22Software%22), to deal in the Software without restriction,%0A# including without limitat...
b2640f0b9f9b36ab06066873bc8179842ae3bc24
Prepare openprocurement.api 2.3.36.
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...
Python
0
@@ -933,17 +933,17 @@ n='2.3.3 -3 +6 ',%0A
fe34a52f7aab7119c2aa8f69b0db914f33902d97
bump version before release (no refs)
setup.py
setup.py
from setuptools import find_packages, setup setup( name='opentopic-falcon-api', version='0.3.5', author='Tomasz Roszko', author_email='tom@opentopic.com', description='Base Library for services api endpoints', url='http://git.opentopic.com/backend/falcon-api', license='GNU GENERAL PUBLIC L...
Python
0
@@ -100,9 +100,9 @@ 0.3. -5 +6 ',%0A
d3f7fa915d1b140633877c0881b33040bd5f6eb0
version bump
setup.py
setup.py
from setuptools import setup, find_packages setup( name='volta', version='0.0.42', description='yandex package for mobile energy consumption measurements', longer_description=''' yandex package for mobile energy consumption measurements ''', maintainer='Alexey Lavrenuke (load testing)', maintai...
Python
0.000001
@@ -81,17 +81,17 @@ n='0.0.4 -2 +3 ',%0A d
6dfaa5c97fe9342a26610f53aea533a39af5d8c5
Use setuptools instead of distutils
setup.py
setup.py
import os import errno from distutils.core import setup from distutils.dir_util import remove_tree from distutils.util import convert_path from distutils.command.build import build as _build from distutils.command.install import install as _install from idiokit import __version__ def rmtree(path): try: r...
Python
0
@@ -1,1444 +1,328 @@ -import os%0Aimport errno%0Afrom distutils.core import setup%0Afrom distutils.dir_util import remove_tree%0Afrom distutils.util import convert_path%0Afrom distutils.command.build import build as _build%0Afrom distutils.command.install import install as _install%0A%0Afrom idiokit import __version__%...
f8c049e1b6a6309d494771e4038aa10b40bfbf76
Move 'nose' dependency to 'tests_require'
setup.py
setup.py
from setuptools import setup VERSION = '1.2.2' setup( name='pkgconfig', version=VERSION, author='Matthias Vogelgesang', author_email='matthias.vogelgesang@gmail.com', url='http://github.com/matze/pkgconfig', license='MIT', packages=['pkgconfig'], description="Interface Python with pkg-...
Python
0
@@ -378,21 +378,21 @@ -setup +tests _require s=%5B' @@ -387,17 +387,16 @@ _require -s =%5B'nose%3E
35b6a835bd93bed97e85e216fa81011220851081
Bump version
setup.py
setup.py
import setuptools setuptools.setup( name="djver", version="2.0.0", url="https://github.com/sesh/djver", author="Brenton Cleeland", author_email="brenton@brntn.me", description="Ever wanted to know what version of Django someone else is running?", packages=setuptools.find_packages(), ...
Python
0
@@ -63,17 +63,17 @@ sion=%222. -0 +1 .0%22,%0A
add607e2920148572c9fc421b6cdeaa1f17d9c38
Bump version to 0.8.2
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ import io 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 io.open("RE...
Python
0
@@ -953,9 +953,9 @@ 0.8. -1 +2 %22,%0A
839dbc8a22d505578b17adae41e5ce1f3cae9672
update license
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import sys with open("README.rst", 'r') as readme: README_txt = readme.read() dependencies = [ 'openpyxl', 'pyexcel-io' ] i...
Python
0
@@ -887,16 +887,65 @@ nose'%5D,%0A + license='General Publice License version 3',%0A clas
7530eed51b39d4d02b91a5dd1a382b6a1b43f9cc
update metadata
setup.py
setup.py
""" Flask-Sencha ------------- This is the description for that library """ from setuptools import setup setup( name='Flask-Sencha', version='0.1', url='http://github.com/rch/flask-extdirect', license='BSD', author='Ryan C. Hill', author_email='@zndx.org', description='Very short descript...
Python
0.000001
@@ -124,22 +124,25 @@ ='Flask- -Sencha +ExtDirect ',%0A v @@ -217,19 +217,19 @@ icense=' -BSD +MIT ',%0A a @@ -301,30 +301,45 @@ on=' -Very short description +Sencha Ext.Direct connector for Flask ',%0A @@ -855,17 +855,17 @@ ' -c +C elery',%0A @@ -1014,11 +1014,11 @@ :: -BSD +MIT Lic @@ -1253...
66bead3fce8ba5ecfc5c0213ece41c4c16a65dd0
Version bump to 0.0.18
setup.py
setup.py
from setuptools import setup with open('README.md', 'r') as f: long_description = f.read() setup( name='pybotvac', version='0.0.17', description='Python package for controlling Neato pybotvac Connected vacuum robot', long_description=long_description, long_description_content_type='text/markdo...
Python
0
@@ -140,9 +140,9 @@ .0.1 -7 +8 ',%0A
f80a033223ca2847af476cdb129ffb9327a1dbf7
version bump
setup.py
setup.py
# coding=utf-8 import os from setuptools import find_packages from setuptools import setup with open('README.rst') as readme: long_description = readme.read() setup( name = "hawkweed", version = "0.1.0", description = "Extending Python builtin types", long_description = long_description, auth...
Python
0.000001
@@ -208,17 +208,17 @@ = %220.1. -0 +1 %22,%0A d @@ -524,11 +524,11 @@ l/0. -0.7 +1.1 ',%0A
6fa473ee554c71812fb102d76973410e059031b2
Add long_description field in setup.
setup.py
setup.py
# Copyright (c) 2016, Imperial College London # Copyright (c) 2016, Ghislain Antony Vaillant # All rights reserved. # # Distributed under the terms of the new BSD license. # See the accompanying LICENSE file or read the terms at # https://opensource.org/licenses/BSD-3-Clause. from setuptools import find_packages, setu...
Python
0
@@ -635,16 +635,195 @@ m34')%0A%0A%0A +# Utility function to read the README file for the long_description field.%0Adef read(fname):%0A import os%0A return open(os.path.join(os.path.dirname(__file__), fname)).read()%0A%0A%0A setup(%0A @@ -924,16 +924,57 @@ brary',%0A + long_description=read('README.rst'),%...
e3514b73bcbffbab2597a4eb068d3c03cf8d942b
bump 0.5.6
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.5.6-SNAPSHOT', ...
Python
0.000011
@@ -305,17 +305,8 @@ .5.6 --SNAPSHOT ',%0A
8c3c15aca9bf78051b684ac46b72aff79f6640d3
fix README path
setup.py
setup.py
from setuptools import setup import django_elastipymemcache setup( name='django-elastipymemcache', version=django_elastipymemcache.__version__, description='Django cache backend for Amazon ElastiCache (memcached)', long_description=open('README.rst').read(), author='Danil Gusev', platforms='a...
Python
0.000015
@@ -261,11 +261,10 @@ DME. -rst +md ').r
8b8a3731002d3d0434e20b4231b2554008e90f0f
add the supported versions of awscli to extras require
setup.py
setup.py
import os import re import sys from setuptools import setup, find_packages # aiohttp requirement is pegged as we need to manually ensure that # https://github.com/aio-libs/aiobotocore/pull/248 will continue working install_requires = ['botocore>=1.5.71, <=1.5.78', 'aiohttp>=2.0.4, <=2.3.0', 'multi...
Python
0.000251
@@ -608,16 +608,58 @@ uire = %7B +'awscli': %5B'awscli%3E=1.11.108, %3C=1.11.115'%5D %7D%0A%0A%0Adef
5961c5bddf89ea7c048aafc16bbabe9630f632f4
Make setup.py executable
setup.py
setup.py
from setuptools import setup, find_packages setup( name='typogrify', version='2.0.0', packages=find_packages(), author='Christian Metts', author_email='xian@mintchaos.com', license='BSD', description='Typography related template filters for Django & Jinja2 applications', url='https://g...
Python
0.000008
@@ -1,8 +1,31 @@ +#!/usr/bin/env python%0A%0A from set
4a321b060a0e41d15f872e3f080e446657a98ea2
Add pycldf dependency
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup from beastling import __version__ as version requires = [ 'six', 'newick>=0.6.0', 'appdirs', 'clldutils', ] setup( name='beastling', version=version, description='Command...
Python
0.000001
@@ -236,16 +236,30 @@ utils',%0A + 'pycldf',%0A %5D%0A%0Asetup
70be93343a985b4aa81944649c42c4138fece388
Use regex for finding version in __init__.py
setup.py
setup.py
from __future__ import print_function import codecs import os from setuptools import setup, find_packages import piazza_api def read(filename): """Read and return `filename` in root dir of project and return string""" here = os.path.abspath(os.path.dirname(__file__)) return codecs.open(os.path.join(here...
Python
0.000177
@@ -56,16 +56,26 @@ port os%0A +import re%0A from set @@ -98,42 +98,8 @@ etup -, find_packages%0A%0Aimport piazza_api %0A%0A%0Ad @@ -316,16 +316,257 @@ ead()%0A%0A%0A +# https://github.com/kennethreitz/requests/blob/master/setup.py#L32%0Awith open('piazza_api/__init__.py', 'r') as fd:%0A version = re.search(r'%...
691e9df7cf5434a1296c0643bc9c62edde72b1c6
Bump version number.
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_logger', version='0.2.1', description='Logging backend for PPP user interfaces.', url='https://github.com/ProjetPP/PPP-Core', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', lic...
Python
0
@@ -109,17 +109,17 @@ on='0.2. -1 +2 ',%0A d
b4bc0dc0c4bd53c8af0cf6f878708a8b22a5f832
set version to 1.0.0
setup.py
setup.py
from setuptools import setup setup(name='linkedlist', version='0.0.1', description='General purpose linked list', url='https://github.com/teroqim/linkedlist', author='Peter Andersson', author_email='teroqim@gmail.com', packages=['linkedlist'], zip_safe=False)
Python
0.000318
@@ -66,13 +66,13 @@ on=' +1. 0.0 -.1 ',%0A
4e32c1597891c67daf03d71e35bc499cfba3e596
Bump version number.
setup.py
setup.py
from distutils.core import setup, Extension from Cython.Distutils import build_ext import numpy def cext(name): return Extension('lulu.%s' % name, ['lulu/%s.pyx' % name], include_dirs=[numpy.get_include()]) setup(name='lulu', version='0.9.2', description='Fast and efficient implem...
Python
0
@@ -265,17 +265,17 @@ on='0.9. -2 +3 ',%0A
26daa433b28b886ad6aa68bd5e40736e7d892c3a
Update version.
setup.py
setup.py
import os from setuptools import setup, find_packages __version__ = "0.1.4" def file_read(filename): filepath = os.path.join(os.path.dirname(__file__), filename) with open(filepath) as flo: return flo.read() setup( name="staticmodel", version=__version__, packages=find_packages(exclude...
Python
0
@@ -68,17 +68,17 @@ = %220.1. -4 +5 %22%0A%0A%0Adef
1ded6a3f75629695f477f69881d125c2b9221447
increment version to 2.0.4
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '2.0.3', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', author_email = 'pytvmaze@gmail.com', license='MIT', cl...
Python
0.00121
@@ -87,17 +87,17 @@ = '2.0. -3 +4 ',%0A d
aa9e7f322882ab2d94c5426aef8c0490601f278c
Remove six from list.
setup.py
setup.py
from setuptools import find_packages from setuptools import setup setup( name='skytap', packages=find_packages(), version='1.0.2', description='Skytap REST API access modules', author='Fulcrum Technologies', author_email='mknowles@fulcrum.net', install_requires=['requests', 'six'], url=...
Python
0.000024
@@ -299,15 +299,8 @@ sts' -, 'six' %5D,%0A
505446d8c45429242889230ae60df9f4d297304d
bump version number
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pymediainfo', version = '1.3.2', author='Patrick Altman', author_email='paltman@gmail.com', url='git@github.com/paltman/pymediainfo.git', description="""A Python wrapper for the mediainfo command line tool.""", packages=find_packages(...
Python
0.000004
@@ -92,9 +92,9 @@ 1.3. -2 +3 ',%0A
0d50e39803db371c9352bfc5f1c0c853ce647006
fix pypi build
setup.py
setup.py
from setuptools import find_packages from distutils.core import setup VERSION = '0.1' setup( name='django-herald', version=VERSION, author='Worthwhile', author_email='devs@worthwhile.com', install_requires=['django>=1.8', 'six'], packages=find_packages(), include_package_data=True, # dec...
Python
0
@@ -33,35 +33,9 @@ ages -%0Afrom distutils.core import +, set @@ -53,16 +53,18 @@ N = '0.1 +.1 '%0A%0Asetup @@ -331,15 +331,11 @@ se=' -LICENSE +MIT ',%0A @@ -666,10 +666,441 @@ ging'%5D,%0A + classifiers=%5B%0A 'Framework :: Django',%0A 'Intended Audience :: Developers',%0A 'Programmin...
d3fec7f0eb48813e4f9895cc5900188cd3a33176
Add pytest to tests_require
setup.py
setup.py
from distutils.core import setup setup( name = 'cleverbot', version = '0.2.0', packages = ['cleverbot'], install_requires = ['future', 'requests'], author = 'Rodney Folz', author_email = 'folz@rodneyfolz.com', url = 'https://github.com/folz/cleverbot.py', description = 'An API for Cleve...
Python
0.000001
@@ -154,24 +154,56 @@ requests'%5D,%0A + tests_require = %5B'pytest'%5D,%0A author =
2aef7511f63a525cd54f22c132e652760ccb64dc
Change version
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup LONG_DESCRIPTION = """ Django confirmaction is a battery for confirm actions via email, sms etc. """ def long_description(): try: return open( os.path.join(os.path.dirname(__file__), "README.md") ).read() except IOErro...
Python
0
@@ -410,17 +410,17 @@ = %220.0. -2 +3 %22,%0A a
f27c0541bcbaffdb1b9189ab18d955c7d10d484b
make scrapyd package zip unsafe because the scrapyd command requires the txapp.py unpacked to run. fixes #49
setup.py
setup.py
from os.path import join, dirname with open(join(dirname(__file__), 'scrapyd/VERSION')) as f: version = f.read().strip() setup_args = { 'name': 'scrapyd', 'version': version, 'url': 'https://github.com/scrapy/scrapyd', 'description': 'A service for running Scrapy spiders, with an HTTP API', 'l...
Python
0.000001
@@ -614,16 +614,39 @@ : True,%0A + 'zip_safe': False,%0A 'cla
99d0a21bc0ceca486e8f7f4590a2c75d1df89ec9
Update to version 0.6.16
setup.py
setup.py
# -*-coding:utf-8-*- from setuptools import setup setup( name='rocketchat_API', version='0.6.15', packages=['rocketchat_API', 'rocketchat_API.APIExceptions'], url='https://github.com/jadolg/rocketchat_API', license='MIT', author='Jorge Alberto Díaz Orozco', author_email='diazorozcoj@gmail....
Python
0
@@ -101,9 +101,9 @@ .6.1 -5 +6 ',%0A
fdcc2365904d988d9a52db51c9a8a0d30cda9538
Bump flask-caching from 1.7.0 to 1.7.2
setup.py
setup.py
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='ogn-python', versio...
Python
0.00004
@@ -1387,17 +1387,17 @@ ng==1.7. -0 +2 ',%0A
b484361fc9008e77f94799a138f0625ed7da4647
Bump version number in setup.py
setup.py
setup.py
#!/usr/bin/env python3 import io from setuptools import setup with io.open('README.rst', encoding='utf-8') as f: README = f.read() with io.open('HISTORY.rst', encoding='utf-8') as f: HISTORY = f.read() desc='MultiThreaded and MultiServers Redis Extension for Flask Applications' setup( name='Flask-Multi-...
Python
0
@@ -338,17 +338,17 @@ on='0.0. -1 +2 ',%0A u
89b7ea1a756f7e5ae6d128be43b8b5f7f326f491
Improve C++ compiler detection
setup.py
setup.py
"""Setup file for primesieve Python bindings.""" import distutils.ccompiler from distutils.command.build_ext import build_ext # type: ignore from glob import glob import os import platform import shutil import subprocess import sys import tempfile from setuptools import Extension, setup # The primesieve package (ht...
Python
0.000006
@@ -1460,27 +1460,46 @@ lush()%0A%0A -try +if %22CXX%22 in os.environ :%0A cx @@ -1521,38 +1521,27 @@ 'CXX'%5D%0A e -xcept KeyError +lse :%0A cx
d1ffbda1eebaaf4a9d91881c1d82cfe214bc1df1
update pyjwt dependency
setup.py
setup.py
# Copyright 2014 ARM Limited # # Licensed under the Apache License, Version 2.0 # See LICENSE file for details. import os from setuptools import setup, find_packages # Utility function to cat in a file (used for the README) def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # we ...
Python
0
@@ -1502,24 +1502,24 @@ 'PyJWT%3E= -0.3,%3C0.4 +1.0,%3C2.0 ',%0A
0f6115e33bbfd3fb989ae5bec743374ef70ab574
Bump support Django versions
setup.py
setup.py
import os import sys from shutil import rmtree from setuptools import setup, find_packages exclude = ["forms_builder/example_project/dev.db", "forms_builder/example_project/local_settings.py"] exclude = dict([(e, None) for e in exclude]) for e in exclude: if e.endswith(".py"): try: ...
Python
0
@@ -1649,20 +1649,17 @@ = 1. -6.10 +8 , %3C 1.1 -0 +1 %22,%0A
44bb2d27aa4d0651e79ed57be733c08a61d195c0
Add conflict with newer pyparsing versions
setup.py
setup.py
#!/usr/bin/env python """ This script uses Setuptools (http://pythonhosted.org/setuptools/), a collection of enhancements to the standard Python distutils. """ import sys import os import shutil from setuptools import setup, Command, find_packages from setuptools.command.test import test as TestCommand # Make sure I...
Python
0
@@ -3747,16 +3747,36 @@ plot': %5B +%22pyparsing!=2.1.2%22, %22matplot
c5f297001f12a6bea42c6460d480fdd63285c2bc
bump version to 0.18
setup.py
setup.py
from setuptools import setup setup( name = 'schiene', packages = ['schiene'], version = '0.17', license = 'MIT', description = 'schiene is a Python library for interacting with Bahn.de', author = 'Kevin Kennell', author_email = 'kevin@kennell.de', install_requires=[ 'requests>=2.10.0', '...
Python
0
@@ -95,9 +95,9 @@ '0.1 -7 +8 ',%0A
c101310d7e8d90c3d9d0ac412964c62617a2aa4e
Update test_requires in setup.py
setup.py
setup.py
""" Flask-Slacker -------------- Adds Slack support to your Flask application using Slacker. """ import ast import re from setuptools import setup def get_version(): _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('flask_slacker/__init__.py', 'rb') as f: version = str(ast.literal_eval...
Python
0
@@ -536,14 +536,54 @@ est- -flake8 +runner %3E= 2.12.1',%0A 'pytest-flake8 %3E= 0.8.1 ',%0A @@ -598,16 +598,25 @@ st-isort + %3E= 0.1.0 '%0A%5D%0A%0A%0Ase
69994e4b7bac8ba10bbf412060e42ce71832c2cb
add py3.5 classifier
setup.py
setup.py
from setuptools import setup import imp _version = imp.load_source("pynmea2._version", "pynmea2/_version.py") setup( name='pynmea2', version=_version.__version__, author='Tom Flanagan', author_email='tom@zkpq.ca', license='MIT', url='https://github.com/Knio/pynmea2', descript...
Python
0.007939
@@ -942,24 +942,74 @@ n :: 3.4',%0D%0A + 'Programming Language :: Python :: 3.5',%0D%0A 'Pro
e1cc4d49f37abbda308968b1bf4f49298a1c904e
Change version to prevent unleash from choking.
setup.py
setup.py
#!/usr/bin/env python # coding=utf8 import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='legitfs', version='0.3dev', description='A read-only FUSE-based filesystem allowing you to browse ' ...
Python
0
@@ -221,11 +221,13 @@ '0.3 +. dev +1 ',%0A
7ccc29455aca3ad453d7d62cd1c1fa874a22dcc2
add setup file
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup, find_packages import labyrinth with open('requirements.txt') as f: requires = f.read().split('\n') setup( name='oc-labyrinth', version=3.2, packages=find_packages(), install_requires=requires, author='Nico Zh...
Python
0.000001
@@ -41,18 +41,16 @@ -8 -*-%0A%0A -%0A%0A from set @@ -177,18 +177,16 @@ ('%5Cn')%0A%0A -%0A%0A setup(%0A%0A
387dcda6fff3fac0d8506e047919ffe3c48591af
Bump django-entity to version 1.1.2
setup.py
setup.py
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'entity_emailer/v...
Python
0
@@ -1282,17 +1282,19 @@ tity%3E=1. -0 +1.2 ',%0A
77ce7d52840da7ff98ae863f08fd46569325c05b
fix stup with description
setup.py
setup.py
import os from distutils.command.build import build from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) tests_require = [ 'freezegun', 'factory_boy', 'coverage', ] here = os.path.abspath(os.path.dirname(__file__)) class BuildCommand(build): def run(self):...
Python
0.000264
@@ -999,87 +999,8 @@ ad() - + '%5Cn%5Cn' +%0A open(os.path.join(here, 'CHANGES.md')).read() ),%0A
998ce4a9425f7ab612321e6040bc276594ea8069
Bump release number to 0.10
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name = 'pybis', version = '0.9', description = 'Python IBIS parser', author = 'Russ Dill', requires = [ 'pyparsing', 'numpy' ], author_email = 'Russ.Dill@gmail.com', url = 'https://github.com/russdill/pybis/wiki', download_url = ...
Python
0.000031
@@ -93,9 +93,10 @@ '0. -9 +10 ',%0A
60ff392b985d8efd8d67eff61bac712320a758f9
Version bump to 0.0.6 since there was a version mismatch with PyPi.
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import setuptools as st from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(pat...
Python
0
@@ -658,17 +658,17 @@ on='0.0. -4 +6 ',%0A%0A
8297fd9f1dfd221cb1dd22187bcf410b5c8475cc
add long description to setup.py (#292)
setup.py
setup.py
import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <= (2, 4): error = 'Requires Python Version 2.5 or above... exiting.' print >> sys.stderr, error sys.exit(1) requirements = [ 'requests>=2.20.0,<3.0', ] setup(name='googlemaps', ...
Python
0
@@ -8,87 +8,33 @@ sys%0A -%0A%0Atry:%0A from setuptools import setup%0Aexcept ImportError:%0A from distutils.core +import io%0Afrom setuptools imp @@ -76,16 +76,18 @@ (2, 4):%0A + error @@ -88,17 +88,17 @@ error = -' +%22 Requires @@ -141,10 +141,12 @@ ing. -'%0A +%22%0A pr @@ -151,17 +151,16 @@ p...
985dc5fe85b02d597098a1dd0a361871149e8089
update to 3.0.1
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages version = '3.0.0' setup( name='tensorgraph', version=version, author='Wu Zhen Zhou', author_email='hyciswu@gmail.com', install_requires=['numpy>=1.7.1', 'six>=1.9.0', 'scikit-learn>=0.1...
Python
0
@@ -585,16 +585,27 @@ tion='A +high level tensorfl @@ -632,21 +632,8 @@ ing -all kinds of mode
f372f5d577687aea0e5a70b41ebd1475125c1fd7
Bump version to 1.4.3
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='django-gravatar2', version='1.4.2', description='Essential Gravatar support for Django. Features helper' ' methods, templatetags and a full test suite!', long_description=open('RE...
Python
0
@@ -142,17 +142,17 @@ on='1.4. -2 +3 ',%0A d
7b16884e0081b8ade9382483acd22b54629d3c6a
update version
setup.py
setup.py
from setuptools import setup with open('LICENSE') as f: license = f.read() setup( name='pymyq', version='0.0.13', description='Python package for controlling MyQ-Enabled Garage Door', author='Chris Campbell', author_email='chris@arraylabs.com', url='https://github.com/arraylabs/pymyq', ...
Python
0
@@ -122,9 +122,9 @@ .0.1 -3 +6 ',%0A
c82e056ec41792b4a8aa2087817eb72637e02cb8
Bump to v0.2.2
setup.py
setup.py
import sys from setuptools import setup, find_packages if sys.version_info.major < 3: sys.exit("Error: Please upgrade to Python3") def get_long_description(): with open("README.rst") as fp: return fp.read() setup(name="tsrc", version="0.2.1", description="Manage multiple repositories", ...
Python
0.000001
@@ -263,9 +263,9 @@ 0.2. -1 +2 %22,%0A
5adb1ccfa30021bcac68364a032196bfc57098a2
Rewrite show-stack-params-and-outputs.sh in python to get around problems that script has with older jq versions
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 ...
Python
0
@@ -713,25 +713,25 @@ ersion='0.11 -4 +5 ',%0A des @@ -941,9 +941,9 @@ 0.11 -4 +5 ',%0A
4ddde13eae99912559fc2fc6434ff16b9dfcf6a3
fix build
setup.py
setup.py
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext setup(name='python-pcl', description='pcl wrapper', url='http://github.com/strawlab/python-pcl', version='0.1', author='John Stowers', author_email='john.stowers@gmail.com', ...
Python
0.000001
@@ -822,24 +822,8 @@ pp%22, - %22flann_cpp-gd%22, %22pc
b1bb13b56f3eb64f33ce39a153a69d4f0edd05a9
Update django-gcloud-connectors
setup.py
setup.py
import os from setuptools import setup, find_packages NAME = 'djangae' PACKAGES = find_packages() DESCRIPTION = 'Django integration with Google App Engine' URL = "https://github.com/potatolondon/djangae" LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() AUTHOR = 'Potato London Ltd.'...
Python
0.000001
@@ -1249,11 +1249,11 @@ = 0. -1.0 +2.1 ',%0A
cf4caa6abd7756e76ab3e613b183f163fd8d88cc
increment version [ci skip]
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='pysrcds', version='0.1.5', description='Python library for interacting with Source engine dedicated' ' servers', author='Peter Rowlands', author_email='peter@pmrowla.com', url='https://github.com/pmrowla/pysrcds', ...
Python
0
@@ -90,17 +90,21 @@ on='0.1. -5 +6.dev ',%0A d
138865c79782875076c91de4252aaf2dd8567101
fix package issue
setup.py
setup.py
from distutils.core import setup import os base_dir = os.path.dirname(__file__) setup( name='Django-Bootstrap3-Validator', version='0.3', author='Xu Yuan', author_email='ankh2008@gmail.com', packages=['bootstrap_validator', 'bootstrap_validator.templatetags','bootstrap_validator.migrations'], u...
Python
0.000001
@@ -35,16 +35,53 @@ mport os +%0Afrom setuptools import find_packages %0A%0Abase_d @@ -174,16 +174,18 @@ ion='0.3 +.3 ',%0A a @@ -257,100 +257,23 @@ ges= -%5B'bootstrap_validator', 'bootstrap_validator.templatetags','bootstrap_validator.migrations'%5D +find_packages() ,%0A
548893b224bf7addbb56dd19455f0df5c24f7b51
Fix setup.py
setup.py
setup.py
import os.path import sys from autotweet import __version__ as version try: from setuptools import find_packages, setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import find_packages, setup def readme(): try: with open(os.path.join(os.path.di...
Python
0.000001
@@ -1317,16 +1317,17 @@ /Stable' +, %0A
4aa1f797e8c4e94572c6bc12819abd4501b0d1e4
remove python-memcached from install_requires
setup.py
setup.py
import os from setuptools import setup version = '0.1.0' # taken 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, f...
Python
0.000001
@@ -1409,36 +1409,8 @@ r',%0A - 'python-memcached',%0A
8cce0f9789673c9b4033fa2685b6da24d8d53147
Bump vers for OE POS taggers
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=[ 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MI...
Python
0
@@ -1461,17 +1461,17 @@ n='0.1.9 -3 +4 ',%0A z
b8fb03a8945f1a895c8f5e55f01a6d4219aa745a
Add metadata
setup.py
setup.py
#! /usr/bin/env python # pylint: disable=invalid-name,missing-docstring from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize extensions = [ Extension( name='pyglsl_parser.parser', sources=['pyglsl_parser/parser.pyx', 'glsl-par...
Python
0.000044
@@ -563,16 +563,156 @@ 'test',%0A + url='https://github.com/nicholasbishop/pyglsl_parser',%0A author='Nicholas Bishop',%0A author_email='nicholasbishop@gmail.com',%0A ex
14ec7154a7fe10ddd73c4aac49e6ccc1a3d11c17
Bump sphinx from 4.0.1 to 4.0.2
setup.py
setup.py
import re from setuptools import setup, find_packages FRAMEWORKS = [ "Flask>=0.12.5", "Django>=2.2.0", "bottle>=0.12.13", "tornado>=4.5.2", "pyramid>=1.9.1", "falcon>=2.0.0", "aiohttp>=3.0.8", ] EXTRAS_REQUIRE = { "frameworks": FRAMEWORKS, "tests": [ "pytest", "webte...
Python
0.000037
@@ -582,17 +582,17 @@ nx==4.0. -1 +2 %22,%0A
caf4d2184a92c52f4f8a5d1f9cc96058d0f0f1fe
Add "plotting" extra to setup.py which requires matplotlib
setup.py
setup.py
# -*- coding: utf-8 -*- # vim: tabstop=4 shiftwidth=4 softtabstop=4 # # Copyright (C) 2013-2017 GEM Foundation # # OpenQuake 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 Licen...
Python
0
@@ -2213,16 +2213,55 @@ %3C4.0%22%5D,%0A + 'plotting': %5B%22matplotlib %3E=1.5%22%5D,%0A %7D%0A%0Asetup
8cbfbdf0591f6f9e08158350f6b937ac2e04ff49
update utilities
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_INCLU...
Python
0.000001
@@ -2042,17 +2042,17 @@ v2012.9. -7 +8 #egg=uti @@ -2065,17 +2065,17 @@ -2012.9. -7 +8 '%0A @@ -2208,17 +2208,17 @@ =2012.9. -7 +8 ',%0A
a3a51b905ec92b5f11c5dec5d9eed455c992fb86
Update version of cluster package pulled in.
setup.py
setup.py
import sys import os from setuptools import setup long_description = open('README.rst').read() classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Pytho...
Python
0
@@ -1214,17 +1214,17 @@ er%3E=1.1. -1 +5 '%5D,%0A @@ -1275,17 +1275,17 @@ er%3E=1.1. -1 +5 '%5D%7D,%0A)%0A%0A
f58de97d5cb51ecb6e397f936f5b6dd2b207d8c0
Use autopep8 1.5.5
setup.py
setup.py
#!/usr/bin/env python import glob import os from setuptools import setup, find_packages import sys import cupy_setup_build for submodule in ('cupy/core/include/cupy/cub/', 'cupy/core/include/cupy/jitify'): if len(os.listdir(submodule)) == 0: msg = ''' The folder %s is a git sub...
Python
0.000034
@@ -808,11 +808,11 @@ ==1. -4.4 +5.5 ',%0A
27e2b252db2e2372d98996b3768683cfcd5b8bc2
bump version number
setup.py
setup.py
from setuptools import setup, find_packages from os import path here = path.abspath(path.dirname(__file__)) # convert .md to .rst; from here: http://stackoverflow.com/questions/10718767/have-the-same-readme-both-in-markdown-and-restructuredtext try: from pypandoc import convert long_description = convert(path...
Python
0.000004
@@ -686,17 +686,17 @@ '0.1.dev -2 +3 ',%0A a
5550b2feb24ee4f8f527182c115018b170f0d2cc
update version in setup file
setup.py
setup.py
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(os.path.join(...
Python
0
@@ -410,17 +410,17 @@ = %220.0. -4 +5 %22,%0D%0A @@ -796,17 +796,17 @@ ive/0.0. -4 +5 .tar.gz%22
f8babfd27fdc8c618fe8827d8a2cc4cf3153a1ad
support form Flask-WTF bigger then 0.8, aim for python 3
setup.py
setup.py
import os import sys from setuptools import setup, find_packages def fpath(name): return os.path.join(os.path.dirname(__file__), name) def read(fname): return open(fpath(fname)).read() def desc(): return read('README.rst') setup( name='Flask-AppBuilder', version='0.8.1', url='https://github....
Python
0
@@ -983,10 +983,10 @@ -WTF -= %3E += 0.9.
b0ec026a6f75f03073de6de3fb2f7bfaff7b6d70
Update version number to 0.11
setup.py
setup.py
# Copyright 2019 The Empirical Calibration Authors. # # 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 o...
Python
0.000004
@@ -844,16 +844,17 @@ ion='0.1 +1 ',%0A d