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
d794f5bc74dd59f7cd6c009a1479102b64b57646
Add pycodestyle to setup.py
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'Scoring Engine for Red/White/Blue Team Competitions', 'author': ['Brandon Myers', 'Rusty Bower'], 'url': 'https://github.com/pwnbus/scoring_engine', 'download_url': 'https://github....
Python
0
@@ -920,16 +920,57 @@ alchemy' +,%0A 'pycodestyle', %0A
6ee5c40fcf429563a7a05dd1e97412e60d0c9798
Version 0.5.0
setup.py
setup.py
"""setup.py file.""" import uuid from setuptools import setup, find_packages from pip.req import parse_requirements __author__ = 'David Barroso <dbarrosop@dravetech.com>' install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1()) reqs = [str(ir.req) for ir in install_reqs] setup( name="napalm-...
Python
0.000001
@@ -340,11 +340,11 @@ =%220. -4.8 +5.0 %22,%0A
7d475a44f2584396890360d1545abfa585dfdda8
Simplify description and MANIFEST.in suits me fine.
setup.py
setup.py
from setuptools import setup, find_packages setup(name='django-forge', version=__import__('forge').__version__, author='Justin Bronn', author_email='jbronn@gmail.com', description='A Django implementation of the Puppet Forge web API.', url='https://github.com/jbronn/django-forge', ...
Python
0
@@ -248,12 +248,8 @@ rge -web API. @@ -518,111 +518,8 @@ (),%0A - package_data=%7B'apache': %5B'forge/apache'%5D,%0A 'templates': %5B'forge/templates'%5D%7D,%0A
47c3dd5b70a10ccfc9dc2cbcb0ca9f715fc62757
Make `flake8-spellcheck` a dev-only requirement.
setup.py
setup.py
import sys from io import open try: from setuptools import setup, find_packages except ImportError: print(''' Error: pyinfra needs setuptools in order to install: using pip: pip install setuptools using a package manager (apt, yum, etc), normally named: python-setuptools '''.strip()) sys.exit(1) ...
Python
0
@@ -981,65 +981,8 @@ 1',%0A - 'flake8-spellcheck==0.12.1 ; python_version %3E= %223%22',%0A )%0A%0AD @@ -1339,16 +1339,125 @@ =1.4.5', +%0A%0A # Lint spellchecking, dev only (don't fail CI)%0A 'flake8-spellcheck==0.12.1 ; python_version %3E= %223%22', %0A)%0A%0A%0A# E
16a3ed9e2e5cd14a3d139bd43fcfb4bedb8a97d5
Bump version number.
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__)) f = open(os.path.join(thisdir, 'README.txt')) kwds['long_description'] = f.read() f.close() setup( name = 'grin', version = '1.0', author = 'Robert Kern',...
Python
0.000292
@@ -282,17 +282,17 @@ on = '1. -0 +1 ',%0A a
82e1c9bb9abe0c2aad1a34278f503ee12ce817c7
Bumping the version to 0.1.25
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup setup( name="threat_intel", version='0.1.24', provides=['threat_intel'], author="Yelp Security", url='https://github.com/Yelp/threat_intel', setup_requires='setuptools', license='Copyright 2016 Yelp',...
Python
0.999187
@@ -139,9 +139,9 @@ .1.2 -4 +5 ',%0A
793e9e728970f374efc2d3008c2e70db88b89b07
remove import from setup.py
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from codecs import open import os.path as osp import re from setuptools import setup, find_packages import strumenti with open('strumenti/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re...
Python
0
@@ -147,26 +147,8 @@ es%0A%0A -import strumenti%0A%0A %0Awit
f598559d9bb21b684a89c6b6a8795c45335b9334
Version 0.0.4.
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='benchmarking', version='0.0.3', author='Alexey Palazhchenko', author_email='alexey.palazhchenko@gmail.com', packages=['benchmarking', 'benchmarking/reporters'], url='https://github.com/AlekSi/benchmarking-py', license='MIT...
Python
0
@@ -99,17 +99,17 @@ on='0.0. -3 +4 ',%0A a
c7e788e843f415b64ba8ae756af2db3f0fde300a
Patch version checking
Yank/__init__.py
Yank/__init__.py
#!/usr/local/bin/env python """ YANK """ # Define global version. from . import version # Needed for yank 3.X. # Self module imports from . import utils from . import restraints from . import pipeline from . import experiment from .yank import Topography, AlchemicalPhase __version__ = version.version
Python
0
@@ -62,16 +62,25 @@ ersion.%0A +try:%0A from . i @@ -116,16 +116,99 @@ ank 3.X. +%0A __version__ = version.version%0Aexcept ImportError:%0A __version__ = %220.0.0dev%22 %0A%0A# Self @@ -366,35 +366,4 @@ ase%0A -%0A__version__ = version.version%0A
cafb76d131a9c1de4238a6df6b5ae0551065662e
fix typo in setup.py, thanks to Christoph Deil
setup.py
setup.py
from distutils.core import setup from glob import glob import os, sys import warnings # To create a distribution, use # # python setup.py sdist # # Register on PyPI # # python setup.py register # # Upload the distribution to PyPI # # python setup.py register sdist upload def get_data_names(root): """...
Python
0
@@ -1087,16 +1087,20 @@ ('README +.rst ') as fh
d02b88f681b5d467219b56e14b1e2ecc78e49177
Bump to version 3.0.5-01
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup # Our version ALWAYS matches the version of Django we support # If Django has a new release, we branch, tag, then update this setting after the tag. version = "3.0.5" if sys.argv...
Python
0
@@ -299,16 +299,19 @@ = %223.0.5 +-01 %22%0A%0Aif sy
f3325ebb237f6a169d5b41ef0866e95f9a0b4028
Bump version number
setup.py
setup.py
import os from setuptools import setup, find_packages def read(filename): return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name='gears-less', version='0.3', url='https://github.com/gears/gears-less', license='ISC', author='Mike Yumatov', author_email='mike@yum...
Python
0.000002
@@ -191,16 +191,18 @@ ion='0.3 +.1 ',%0A u
2a79ce7a32b6f6510561415c33c8f8047cef60c8
update classifiers in setup
setup.py
setup.py
__author__ = 'manu' import os from setuptools import setup, find_packages from oct import __version__ BASE_DIR = os.path.abspath(os.path.dirname(__file__)) setup( name='oct', version=__version__, author='Emmanuel Valette', author_email='manu.valette@gmail.com', packages=['oct', 'oct.core', 'oct.m...
Python
0
@@ -1000,24 +1000,121 @@ T License',%0A + 'Programming Language :: Python :: 2.7',%0A 'Programming Language :: Python :: 3.4'%0A %5D,%0A i
c772bad4533afeec3aeb7d51f2ad5c3663c33ba2
Bump version
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-timeline-logger', version='0.3.1', description='Generic event logger for Django models.', author='Maykin Media', author_email='support@maykinmedia.nl', url='https://github.com/maykinmedia/django-timeline-log...
Python
0
@@ -123,11 +123,9 @@ ='0. -3.1 +4 ',%0A
09b7bd11eb8d746c0ec4641aaa1d42358a1dd468
Update setup.py
setup.py
setup.py
from setuptools import setup, Extension from glob import glob library = ('primesieve', dict( sources=glob("lib/primesieve/src/primesieve/*.cpp"), include_dirs=["lib/primesieve/include"], language="c++", )) if glob("primesieve/*.pyx"): from Cython.Build import cythonize else: # fallback to comp...
Python
0
@@ -738,16 +738,110 @@ ython%22,%0A + description=%22Fast prime number generator. Python bindings around C++ library primesieve%22,%0A lice
fc30c5764280a171f09cdea5b4573a8809588fbf
Fix download_url in setup()
setup.py
setup.py
from setuptools import setup setup( name='tangled.session', version='0.1a3.dev0', description='Tangled session integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', download_url='https://github.com/TangledWeb/tangled.session', author='Wyatt Baldwin',...
Python
0.000001
@@ -279,24 +279,29 @@ gled.session +/tags ',%0A autho
a522c3cbc0c155ad7e2d3b0dcd1c74166bc96808
bump version
setup.py
setup.py
__version__ = '0.1.12.dev7' import os from setuptools import find_packages from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.txt')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() install_require...
Python
0
@@ -18,17 +18,17 @@ 1.12.dev -7 +8 '%0A%0Aimpor
2d12d33cf3b1bca91e87d60b49cd5132948149be
Add cgpm.factor to setup.
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (c) 2015-2016 MIT Probabilistic Computing Project # 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 # Unles...
Python
0
@@ -2426,24 +2426,47 @@ onentials',%0A + 'cgpm.factor',%0A 'cgp
6547b8cd81c09783f628ce540ea36ec0dcc4a0d2
increment version
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup #from setuptools import setup, find_packages setup ( name = "autonetkit", version = "0.2.12", description = 'Automatic configuration generation for emulated networks', long_description = 'Automatic configuration generation for emulated networks', ...
Python
0.000004
@@ -146,17 +146,17 @@ = %220.2.1 -2 +7 %22,%0A
4ba6fb9f4f0142960f52412f0b333f8163fc2155
Bump to 0.0.6
setup.py
setup.py
from setuptools import find_packages, setup setup( name='django-migration-testcase', version='0.0.5', author='Andrew Plummer', author_email='plummer574@gmail.com', url='https://github.com/plumdog/django_migration_testcase', packages=find_packages(), install_requires=['Django>=1.4'])
Python
0.000076
@@ -101,17 +101,17 @@ on='0.0. -5 +6 ',%0A a
a735021adac432a3040e5f80046d9a71c574e137
Fix version pinning
setup.py
setup.py
#!/usr/bin/env python import codecs import os.path from setuptools import setup from versiontag import get_version, cache_git_tag packages = [ 'wellsfargo', 'wellsfargo.api', 'wellsfargo.connector', 'wellsfargo.core', 'wellsfargo.dashboard', 'wellsfargo.management', 'wellsfargo.management....
Python
0
@@ -620,17 +620,17 @@ checkout -= +%3E =0.1.4', @@ -657,17 +657,17 @@ luelight -= +%3E =0.3.0',
7aa57fa51d1d673c792811c19057f2bc338e2530
Fix in setup.py
setup.py
setup.py
from distutils.core import setup with open('README.md') as readme: __doc__ = readme.read() setup( name='django-template-previewer', version='0.1', py_modules=['template_previewer'], description=u'A Django app to allow developers preview templates', long_description=__doc__, author=u'Daniel...
Python
0.000001
@@ -158,47 +158,8 @@ 1',%0A - py_modules=%5B'template_previewer'%5D,%0A
8bdf3e4e75aec4ee1e54bfd83987a0c9475ac1f2
Version increment
setup.py
setup.py
from distutils.core import setup setup( name='scrAPI Utils', version='0.4.9', author='Chris Seto', author_email='Chris@seto.xyz', packages=['scrapi.linter'], package_data={'scrapi.linter': ['../__init__.py']}, url='http://www.github.com/chrisseto/scrapi', license='LICENSE.txt', desc...
Python
0.000001
@@ -78,11 +78,11 @@ ='0. -4.9 +5.0 ',%0A
5bdb36da6f5ede72efa04e47e97f063582a748cb
change information submitted to pypi
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup import os.path with open(os.path.join('rf', '_version.py')) as f: VERSION = f.read().split('=')[1].strip().strip("'") with open('README.rst') as f: README = f.read() if not 'dev' in VERSION: # get image for correct version from travis-ci RE...
Python
0
@@ -375,16 +375,105 @@ VERSION) +%0ADESCRIPTION = README.split('%5Cn')%5B2%5D%0ALONG_DESCRIPTION = '%5Cn'.join(README.split('%5Cn')%5B5:%5D) %0A%0AENTRY_ @@ -650,37 +650,27 @@ ription= -README.split('%5Cn')%5B2%5D +DESCRIPTION ,%0A @@ -686,22 +686,32 @@ ription= -README +LONG_DESCRIPTION ,%0A
2b9875d8836a9acb7fa1779c58ae15d598bc4b80
Remove install_requires for now
setup.py
setup.py
#!/usr/bin/env python import setuptools from distutils.core import setup execfile('clowncar/version.py') with open('requirements.txt') as requirements: required = requirements.read().splitlines() kwargs = { "name": "clowncar", "version": str(__version__), "packages": ["clowncar"], "description":...
Python
0
@@ -105,104 +105,8 @@ ')%0A%0A -with open('requirements.txt') as requirements:%0A required = requirements.read().splitlines()%0A%0A kwar @@ -609,42 +609,8 @@ T%22,%0A - %22install_requires%22: required,%0A
088a55d47232fe0e75b67cb8272e1942a8da54b1
Fix version path
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ rack-ddnsm ~~~~~ Dynamic DNS metadata for Rackspace Cloud DNS, manages TXT records containing metadata in the format of title,desc,data. :copyright: (c) 2015 by Alex Edwards. :license: MIT, see LICENSE for more details. :repo: <https://gi...
Python
0.000002
@@ -471,25 +471,24 @@ h open(%22rack -- ddnsm/versio
8431338b1a692aa321e06caf0d7e898c7f66dae2
Change version to 0.0.2
setup.py
setup.py
#!/usr/bin/env python3 # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file #with open(path.join(here, 'README.rst'),...
Python
0.000357
@@ -610,9 +610,9 @@ 0.0. -1 +2 ',%0A%0A
5db8dcf04fcb72478eadf62cbb3ba247aab9402e
Remove Cython dependency from setup.py
setup.py
setup.py
#!/usr/bin/env python2.7 import os from setuptools import setup if os.path.exists('README.rst'): description_long=open('README.rst').read() else: description_long=""" spreads is a tool that aims to streamline your book scanning workflow. It takes care of every step=Setting up your capturing devices, handling ...
Python
0
@@ -3937,26 +3937,8 @@ %22: %5B -%22Cython %3E= 0.15%22, %22hid
64ed2ec9e09c62237e51c36fff8e04212d4ce81c
Remove unused setup import
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import dist, setup, find_packages # Ensure we have numpy before we start as it is needed before we call setup() # If not installed system-wide it will be downloaded into the local .eggs dir dist.Distribution(dict(setup_requires='numpy')) from numpy.distutils.core impo...
Python
0
@@ -59,15 +59,8 @@ ist, - setup, fin
73d358176bcb6fb31b81be2f68e4c378675da8f7
Install replication script.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2007-2009 Christopher Lenz # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. from distutils.cmd import Command import doctest from glob import glob import ...
Python
0
@@ -4671,32 +4671,96 @@ ols.load:main',%0A + 'couchdb-replicate = couchdb.tools.replicate:main',%0A %5D,%0A %7D
7cb1d3569fbd92b5697bc10e8a5bd95049679ccc
fix #7: removed 'distribute' dependency
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2013-2016, OVH SAS. # 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 copy...
Python
0.000011
@@ -1712,17 +1712,17 @@ = '0.1. -3 +4 '%0A%0Asetup @@ -2447,22 +2447,8 @@ - 'distribute', 'lt
c975ac8a00ebba3e836256d70120913a9d288f08
version bump
setup.py
setup.py
"""Mailmerge build and install configuration.""" import os try: from setuptools import setup except ImportError: from distutils.core import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme_file: README = readme_file.read() setup( name="mailmerge", description="A sim...
Python
0.000001
@@ -397,11 +397,9 @@ =%221. -7.9 +8 %22,%0A
64fd9720d1f14b7f7b3ce35da323aec2093b7687
update scout version - add HPO features! 🌟
setup.py
setup.py
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def parse_reqs(req_path='./requirements.txt'): """Recursively parse requirements from nested pip files.""" install_requires = [] with codecs.open(req_path, 'r') as handle: # remove comments and empty lines li...
Python
0
@@ -844,17 +844,17 @@ on='2.1. -1 +2 ',%0A u
a5f8a2a7ea2669b1bb31e35c21a04631746970b0
version bump
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- """ Created on Fri May 22 18:29:26 2015 @author: ddboline """ from __future__ import (absolute_import, division, print_function, unicode_literals) import sys from setuptools import setup console_scripts = (('make-queue', 'movie_collection_app.make_queue:make_queue_parse'), ...
Python
0.000001
@@ -1221,17 +1221,17 @@ ='0.0.4. -2 +3 ',%0A a
f0ba6e1e8ac634d6dfd1213390e68529e826c5de
Normalize all setup.py files (#4909)
setup.py
setup.py
# Copyright 2017 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, ...
Python
0
@@ -8,17 +8,17 @@ ight 201 -7 +8 Google @@ -210,17 +210,16 @@ http -s ://www.a @@ -571,476 +571,620 @@ se.%0A -%22%22%22A setup module for the GAPIC Google Cloud Dataproc API library.%0A%0ASee:%0Ahttps://packaging.python.org/en/latest/distributing.html%0Ahttps://github.com/pypa/sampleproject%0A%22%22%22%0A%0...
61145b95de38c56ac14528441ab1d279515c43c1
Mark as a release
setup.py
setup.py
import os import subprocess # BEFORE importing distutils, remove MANIFEST. distutils doesn't # properly update it when the contents of directories change. if os.path.exists('MANIFEST'): os.remove('MANIFEST') from distutils.core import setup MAJOR = 0 MINOR = 2 MICRO = 0 ISRE...
Python
0
@@ -335,12 +335,11 @@ = -Fals +Tru e%0AVE
e117478af6c6d96851283cd267f67efb9a98c93d
Include migrations package
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).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-loaderio', version='0.2.0', packages=['loaderio'],...
Python
0
@@ -283,17 +283,17 @@ on='0.2. -0 +1 ',%0A p @@ -311,16 +311,39 @@ oaderio' +, 'loaderio.migrations' %5D,%0A i
98b71d99c491ed9247d5cdde0ab44d4936d70639
Bump version to 0.3.1
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-sniplates', version='0.3.0', description='Efficient template macro sets for Django', author='Curtis Maloney', author_email='curtis@tinbrain.net', url='http://github.com/funkybob/django-sniplates', keywords=['django', 'templates...
Python
0.000001
@@ -91,17 +91,17 @@ on='0.3. -0 +1 ',%0A d
5540c376a691be211f2ca2cb7db6f191157ce938
Bump version to 0.2.0
setup.py
setup.py
from setuptools import setup setup( name="rotterdam", version="0.1.2", description=( "Simple distributed job queue via redis." ), author="William Glass", author_email="william.glass@gmail.com", url="http://github.com/wglass/rotterdam", packages=["rotterdam"], include_package...
Python
0.000001
@@ -71,11 +71,11 @@ =%220. -1.2 +2.0 %22,%0A
dcfc8f29035a44759c1ba8414c332ca1c74d7729
Bump version to 1.0.1
setup.py
setup.py
#!/usr/bin/env python import os import subprocess import tarfile import shutil import sysconfig import requests from setuptools import setup from setuptools.command.build_ext import build_ext from setuptools.extension import Extension def urlretrieve(source_url, destination_path): response = requests.get(source...
Python
0
@@ -3843,10 +3843,8 @@ .0.1 -a1 ',%0A
8b17c38e18c650362822e985f0da7f00de0c2e1c
fix installation under Python 3
setup.py
setup.py
# -*- coding: utf-8 -*- # Bootstrap installation of Distribute import distribute_setup distribute_setup.use_setuptools() from setuptools import setup, find_packages try: long_desc = open('README.rst', 'r').read() except IOError: long_desc = '' requires = ['Sphinx>=0.6', 'docutils>=0.6', ...
Python
0
@@ -61,49 +61,107 @@ ute%0A -import distribute_setup%0Adistribute_setup. +try:%0A import setuptools%0Aexcept ImportError:%0A from distribute_setup import use_setuptools%0A use_
5622c9889cf221282855c794a671617f880a14e3
Update setup.py
setup.py
setup.py
from distutils.core import setup from distutils.command.build_py import build_py as _build_py import subprocess import os import logging log=logging.getLogger("setup_py") logging.basicConfig(level=logging.INFO) log.info("Now building") try: #If we are in a git-repo, get git-describe version. path = os.path.abspath(...
Python
0.000001
@@ -2450,16 +2450,49 @@ eptions%22 +,%0A %22commandline_parsable%22 %0A %5D
a7f848d63d8eaa8f8c3b1165be71eb4c6c5ed07e
Bump version to 5.5.0
setup.py
setup.py
import os from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name="recipe_scrapers", url="https://github.com/hhursev/recipe-scrapers/", version="5.4.1...
Python
0.000001
@@ -314,11 +314,11 @@ =%225. -4.1 +5.0 %22,%0A
f4357a4f2585aab3683bdfbf6a234f7fc3d3a211
Support for CuReSim
setup.py
setup.py
import sys from setuptools import setup , find_packages if sys.version_info < (3,2): print("At least Python 3.2 is required.\n", file=sys.stderr) exit(1) setup( name = 'MIShmash', packages = ['mishmash'], package_dir = {"mishmash" : "mishmash"}, package_data = {"mishmash" : ["*.snake"] }, version = '0.0.4', d...
Python
0
@@ -311,9 +311,9 @@ 0.0. -4 +5 ',%0A%09
60a28fbd68b50f6ba28cced38066f5ad916b1575
Make the setup.py Python 3 compatible
setup.py
setup.py
# Yith Library web client # Copyright (C) 2012 Yaco Sistemas S.L. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later versio...
Python
0.004079
@@ -724,16 +724,58 @@ mport os +%0Aimport sys%0APY3 = sys.version_info%5B0%5D == 3 %0A%0Afrom s @@ -863,16 +863,152 @@ ile__))%0A +%0Aif PY3:%0A def open_file(path):%0A return open(path, encoding='utf-8')%0Aelse:%0A def open_file(path):%0A return open(path)%0A%0A README = @@ -1008,24 +1008,29 @@...
e5c09b35ac0b28faf03248298333cc2d8e8d163c
Add elfesteem.macho to setup.py
setup.py
setup.py
#! /usr/bin/env python from distutils.core import setup setup( name = 'ELF-Esteem', version = '0.1', packages = ['elfesteem'], requires = ['python (>= 2.3)'], scripts = ['examples/readelf.py','examples/otool.py','examples/readpe.py'], # Metadata author = 'Philippe BIONDI', author_e...
Python
0.000001
@@ -135,16 +135,35 @@ festeem' +, 'elfesteem.macho' %5D,%0A r
f24b751e9abf5707d84b5750d94f9b8f59024b83
Add metadata information about python versions
setup.py
setup.py
# Fix for older setuptools import re import os 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.md') # grep flasgger/__init__.py since python 3.x cannot...
Python
0.000001
@@ -1314,16 +1314,276 @@ 1.10.0'%0A + %5D,%0A classifiers=%5B%0A 'Intended Audience :: Developers',%0A 'Programming Language :: Python :: 2',%0A 'Programming Language :: Python :: 2.7',%0A 'Programming Language :: Python :: 3',%0A 'Programming Language :: Python :: 3.6',%0A ...
5250e1c9455d48165ae5ca62019d4d80fbc62e3e
Use absolute path to docs dir. Fixes issue #279.
setup.py
setup.py
import sys import os from setuptools import setup # If you change this version, change it also in docs/conf.py version = "1.0.1" doc_dir = os.path.join(os.path.dirname(__file__), "docs") index_filename = os.path.join(doc_dir, "index.txt") news_filename = os.path.join(doc_dir, "news.txt") long_description = """ The m...
Python
0
@@ -155,16 +155,32 @@ os.path. +abspath(os.path. dirname( @@ -188,16 +188,17 @@ _file__) +) , %22docs%22
adf5ffdb97092e91f7a8136083cebe8e3cb57c13
Fix setup.py
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "energenie", version = "0.1.3", author = "Ben Nuttall", author_email = "ben@raspberrypi.org", description = "Python module to control the Energenie add-on bo...
Python
0.000001
@@ -629,16 +629,17 @@ %22,%0A %5D +, %0A lon
98577385c58e127cc1264667f72068af0ede6776
Update setup.py to import version in a more correct way.
setup.py
setup.py
from setuptools import setup, find_packages import os import cms CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS ...
Python
0
@@ -50,19 +50,8 @@ t os -%0Aimport cms %0A%0A @@ -633,19 +633,33 @@ version= +__import__(' cms +') .__versi
2e850a22d0fcf8441d47928f5d758e3cb6b6bbaa
Fix homepage url to point to the correct repo
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup setup( name='Flask-uWSGI-WebSocket', version='0.6.1', url='https://github.com/zeekay/flask_uwsgi_websocket', license='MIT', author='Zach Kelling', author_email='zk@monoid.io', description='High-performance WebSockets for your...
Python
0.000001
@@ -158,31 +158,31 @@ zeekay/flask -_ +- uwsgi -_ +- websocket',%0A
74852c6fa58fa23c96d40a4fbc819ed12e128a25
upgrade version
setup.py
setup.py
from setuptools import setup, find_packages with open('README.rst', 'r') as fh: long_desc = fh.read() setup( name='pybbn', version='0.1.2', author='Jee Vang', author_email='vangjee@gmail.com', packages=find_packages(), description='Learning and Inference in Bayesian Belief Networks', l...
Python
0.000001
@@ -143,17 +143,17 @@ on='0.1. -2 +3 ',%0A a
97f421f2e728cceb35e0515dcd8c1db5ac214996
add 'import re' in setup.py
setup.py
setup.py
from setuptools import setup import os def read(*names): values = dict() for name in names: filename = name + '.rst' if os.path.isfile(filename): fd = open(filename) value = fd.read() fd.close() else: value = '' values[name] = valu...
Python
0.000001
@@ -31,16 +31,26 @@ mport os +%0Aimport re %0A%0Adef re
45c2a5c2e1d2eb76fe7eaa599cb2269f25bdf553
Update version for PyPi
setup.py
setup.py
#! /usr/bin/env python #! -*- coding: utf-8 -*- import sys from setuptools import setup if __name__ == "__main__": setup( name = 'keep', version = 0.1, author = 'Himanshu Mishra', author_email = 'himanshumishra@iitkgp.ac.in', description = 'Personal shell command keeper', ...
Python
0
@@ -166,11 +166,11 @@ n = -0.1 +1.2 ,%0A
780c1fe3b2f537463a46e335186b7741add88a1e
fix license info within classifiers
setup.py
setup.py
import os import multiprocessing from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = ['appdirs', ] tests_requires = ['nose', ] setup(nam...
Python
0
@@ -604,19 +604,43 @@ ense :: -BSD +OSI Approved :: BSD License %22,%0A
e07a39398417c29549b91c404ec588d72e364070
version bump
setup.py
setup.py
import setuptools setuptools.setup( name='pytsv', version='0.1.19', description='pytsv is a module to help with all things TSV', long_description='pytsv is a module to help with all things TSV', url='https://github.com/veltzer/pytsv', download_url='https://github.com/veltzer/pytsv', author=...
Python
0.000001
@@ -69,10 +69,10 @@ 0.1. -19 +20 ',%0A
0af00a7f4cab009fe5c00674a0775a4854577444
Tweak some stuff in setup()
setup.py
setup.py
from setuptools import setup, PEP420PackageFinder setup( name='tangled', version='1.0a13.dev0', description='Tangled namespace and utilities', long_description=open('README.rst').read(), url='http://tangledframework.org/', download_url='https://github.com/TangledWeb/tangled/tags', author='...
Python
0
@@ -211,16 +211,17 @@ rl='http +s ://tangl @@ -469,17 +469,17 @@ 'dev': -( +%5B %0A @@ -607,17 +607,18 @@ -) +%5D, %0A %7D,%0A
7a5fc22287fcda6497065032967496afea3e49ce
fix travis CI
setup.py
setup.py
#! /usr/bin/env python if __name__ == "__main__": from setuptools import setup setup(name="mousestyles", packages=["mousestyles", "mousestyles.data", "mousestyles.data.tests"])
Python
0.000001
@@ -187,11 +187,80 @@ .tests%22%5D +,%0A package_data=%7B'mousestyles.data': %5B'*.npy', '*/*/*.npy'%5D%7D )%0A%0A
ed8581b4466e9ce93d6cf3ecfbdde5369932a80b
version 0.25.0
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup __version__ = '0.24.1' setup( name='pyramid_zipkin', version=__version__, provides=["pyramid_zipkin"], author='Yelp, Inc.', author_email='opensource+pyramid-zipkin@yelp.com', license='Co...
Python
0.000001
@@ -124,11 +124,11 @@ '0.2 -4.1 +5.0 '%0A%0As
0cf9bc33f5feb2565ffb2a07a57f76a92b7df764
Remove classifier
setup.py
setup.py
import codecs import os import sys from distutils.util import convert_path from fnmatch import fnmatchcase from setuptools import setup, find_packages def read(fname): return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read() # Provided as an attribute, so you can append to these instead # of r...
Python
0.000174
@@ -4699,44 +4699,8 @@ o%22,%0A - %22Private :: Do Not Upload%22,%0A
dbbbc3f3b0d80e5f990dee631006e261fa6d09a7
Bump version
setup.py
setup.py
# coding=utf-8 import multiprocessing # avoid crash on teardown from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() setup( name='devpi-plumber', version='0.2.0.dev', packages=find_packages(exclude=['tests']), author='Stephan Erb', author_email='stephan....
Python
0
@@ -211,12 +211,8 @@ .2.0 -.dev ',%0A
2a643d79824e0c303b2a1f112c225012f6e54e06
Fix pkgname in setup.py
setup.py
setup.py
import os from setuptools import setup # Allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup( name='Constellation-Forms', version='0.1.0', packages=['constell...
Python
0.000001
@@ -629,17 +629,17 @@ ' -c +C onstella @@ -646,10 +646,10 @@ tion -_b +-B ase%3E
08bad8b5cefd896520334200a6a8713a60c9a334
Bump version
setup.py
setup.py
# coding=utf-8 plugin_identifier = "touchui" plugin_package = "octoprint_touchui" plugin_name = "TouchUI" plugin_version = "0.3.16" plugin_description = """A touch friendly interface for a small TFT modules and or phones""" plugin_author = "Paul de Vries" plugin_author_email = "pablo+octoprint+touch+ui@aerosol.me" plu...
Python
0
@@ -127,9 +127,9 @@ .3.1 -6 +7 %22%0Apl
9c41b92ce5036064e0e2490056f15583cbe9bfe6
Add python version classifiers
setup.py
setup.py
# -*- coding: utf-8 -*- """ GRequests allows you to use Requests with Gevent to make asynchronous HTTP Requests easily. Usage ----- Usage is simple:: import grequests urls = [ 'http://www.heroku.com', 'http://tablib.org', 'http://httpbin.org', 'http://python-requests.org', ...
Python
0.000365
@@ -1357,16 +1357,112 @@ ython',%0A + 'Programming Language :: Python :: 2.7',%0A 'Programming Language :: Python :: 3',%0A
676f33c1a8a2c4b35079468f14785aee8e625026
Bump to v0.2
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).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-appmail", versi...
Python
0
@@ -319,17 +319,17 @@ sion=%220. -1 +2 %22,%0A p
e738d5cb4bc4a1302ffe252e8fb2adb42c59c8b9
Bump version: 0.1.6 -> 0.1.7
setup.py
setup.py
# /setup.py # # Installation and setup script for travis-bump-version # # See /LICENCE.md for Copyright information """Installation and setup script for travis-bump-version.""" from setuptools import find_packages from setuptools import setup setup(name="travis-bump-version", version="0.1.6", description=...
Python
0
@@ -295,9 +295,9 @@ 0.1. -6 +7 %22,%0A
6e5a65f0d8f7cd15375d720d962a1ea624ea9c18
Update setup.py
setup.py
setup.py
from setuptools import setup setup( name = 'missingno', packages = ['missingno'], # this must be the same as the name above install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'], py_modules=['missingno'], version = '0.2.0', description = 'Missing data visualization module for Python.', author = 'Al...
Python
0.000001
@@ -226,25 +226,25 @@ sion = '0.2. -0 +1 ',%0A descrip @@ -502,17 +502,17 @@ all/0.2. -0 +1 ',%0A key
2b931429833ddfcb26c89feb87dce860a5d6cbac
increment hm version
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2014 hm authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. import codecs from setuptools import setup, find_packages from rpaas import __version__ README = codecs.open('README.rst', encoding='utf-8')...
Python
0.000005
@@ -820,9 +820,9 @@ 0.1. -5 +6 %22,%0A
480274f3307e2135c6b6f4ebb4013794aa03669c
version bumbed to 0.3.0 - pyparsing
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import os import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import relpath from os.path import splitext from setuptools import f...
Python
0
@@ -555,17 +555,17 @@ sion='0. -2 +3 .0',%0A
9cfc9d25bc1faae082b12fd7d35cd98a35289b27
tweak description
setup.py
setup.py
from ast import literal_eval from distutils.core import setup def get_version(source='src/petl/__init__.py'): with open(source) as f: for line in f: if line.startswith('__version__'): return literal_eval(line.split('=')[-1].lstrip()) raise ValueError("__version__ not found"...
Python
0.000001
@@ -615,18 +615,8 @@ ='A -tentative Pyth @@ -994,8 +994,9 @@ %5D%0A) +%0A
ea640001d0ad6e56369102e02b949c865c48726f
Support click-log 0.4.0
setup.py
setup.py
""" Vdirsyncer synchronizes calendars and contacts. Please refer to https://vdirsyncer.pimutils.org/en/stable/packaging.html for how to package vdirsyncer. """ from setuptools import Command from setuptools import find_packages from setuptools import setup requirements = [ # https://github.com/mitsuhiko/click/iss...
Python
0.000001
@@ -370,17 +370,17 @@ 3.0, %3C0. -4 +5 .0%22,%0A
3340a2841449e8f51bfccba353f7dc45a8c2d9aa
Add pytest-mock to tests_require
setup.py
setup.py
import sys from setuptools import setup, find_packages import versioneer # Please see conda/meta.yaml for other binary dependencies install_requires = ['numpy>=1.14', 'scipy>=1.0', 'matplotlib>=3.0', 'pillow>=4.0'] if sys.version_info.major == 2: insta...
Python
0.000002
@@ -723,16 +723,36 @@ t%3E=5.0', + 'pytest-mock%3E=1.0', 'mock%3E=
f38b6126f931012889707f411d1d89581a12fba6
bump up package to 0.0.2
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('LICENSE') as f: license = f.read() setup( name='graphmap', version='0.0.1', description='Images on a quad graph', author='Abhishek Rao', author_email='abhishek.rao.comm@gmail.com', url='https://github.com/abhi...
Python
0.000035
@@ -160,17 +160,17 @@ on='0.0. -1 +2 ',%0A d
937b8c26f6fd05dbac571fb300880053558ed904
fix up deps
setup.py
setup.py
from setuptools import setup, find_packages setup( name='extractors', version='0.2.0', description="Wrapper script for data extractors.", long_description="", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT...
Python
0.000012
@@ -1067,10 +1067,13 @@ 'P -IL +illow ',%0A
fd32c9a95c895b2a05dbecb68ca466a123c276e4
Update Beta classifiers to Alpha for specified services.
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
Python
0
@@ -1272,15 +1272,16 @@ :: -4 - Bet +3 - Alph a',%0A
e62a8df4e61a1a3b5850df9b336f68596816e909
Update setup.py
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='rabaDB', v...
Python
0
@@ -325,17 +325,17 @@ on='1.0. -3 +4 ',%0A%0A
439ea916662a5ab215a9b0ee5b2a2f664dba7281
Update dependencies to baseline on Ubuntu 18.04
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='signxml', version="2.5.2", url='https://github.com/kislyuk/signxml', license='Apache Software License', author='Andrey Kislyuk', author_email='kislyuk@gmail.com', description='Python XML Signature library', ...
Python
0
@@ -401,13 +401,13 @@ %3E= -3.5.0 +4.2.1 , %3C @@ -439,11 +439,11 @@ = 0. -4.1 +5.0 , %3C @@ -470,11 +470,11 @@ = 0. -3.0 +4.2 , %3C @@ -506,11 +506,13 @@ %3E= +2. 1. -8 +4 , %3C @@ -541,17 +541,17 @@ o %3E= 0.2 -1 +4 .0',%0A @@ -573,20 +573,20 @@ %3E= -0.15.1 +17.5.0 , %3C 1 -8 +9 ',%0A @@ ...
c2ea0f05bf4d2f0cd73c020b40edd2d9af8d5a7e
update to 0.2.9
setup.py
setup.py
import setuptools setuptools.setup( name="Schemer", version="0.2.8", author="Tom Leach", author_email="tom@gc.io", description="Powerful schema-based validation of Python dicts", license="BSD", keywords="validation schema dict list", url="http://github.com/gamechanger/schemer", pac...
Python
0.000001
@@ -72,9 +72,9 @@ 0.2. -8 +9 %22,%0A
4ef4e9e3ea781fddba28454faf2984cf4df77341
fix cms version requiredment
setup.py
setup.py
from setuptools import setup, find_packages setup( name='zeit.content.portraitbox', version = '1.22.4dev', author='gocept', author_email='mail@gocept.com', url='https://svn.gocept.com/repos/gocept-int/zeit.cms', description="ZEIT portraitbox", packages=find_packages('src'), package_dir ...
Python
0
@@ -556,15 +556,14 @@ cms%3E -= 1.40. -4 +3 ',%0A
d82bcc2a0c2a93cae8e710354778c82572d60fc3
Add `jax[_ci]` option to account for the new release process.
setup.py
setup.py
# Copyright 2018 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, ...
Python
0.000001
@@ -614,16 +614,51 @@ ckages%0A%0A +_current_jaxlib_version = '0.1.76'%0A # The fo @@ -714,22 +714,21 @@ lease.%0A_ -curren +lates t_jaxlib @@ -727,32 +727,40 @@ t_jaxlib_version +_on_pypi = '0.1.76'%0A_ava @@ -1800,32 +1800,164 @@ ib_version%7D'%5D,%0A%0A + # Used only for CI builds that install JAX fro...
e3b8b2f0127d4c18e9396f0d0b3164c87b01bd48
Add homepage to setup.py
setup.py
setup.py
from setuptools import setup, find_packages setup(name='rnaseq_pipeline', version='2.1.1', description='RNA-Seq pipeline for the Pavlidis Lab', license='Public Domain', long_description='file: README.md', author='Guillaume Poirier-Morency', author_email='poirigui@msl.ubc.ca', ...
Python
0
@@ -223,16 +223,76 @@ ME.md',%0A + url='https://github.com/pavlidisLab/rnaseq-pipeline',%0A au
a3d1a266cea46e7a839483c0ae57371a3702dfee
create fixed pip package
setup.py
setup.py
#!/usr/bin/env python # -*- mode: Python; coding: utf-8 -*- import sys try: from setuptools import setup, Extension except ImportError: from distutils.core import setup from distutils.extension import Extension from numpy.distutils.misc_util import get_numpy_include_dirs arc_ext = Extension( ...
Python
0
@@ -571,9 +571,9 @@ 1.4. -2 +3 %22,%0A
de31c6fc4cad949a137e4c293b784fc71daa025b
Fix get_natural_key invalid caching
setup.py
setup.py
from setuptools import setup, find_packages from io import open setup( name='ScholrRoles', version='0.0.27', author='Jorge Alpedrinha Ramos', author_email='jalpedrinharamos@gmail.com', packages=find_packages(), package_data = { '': ['*.yml']}, #scripts=['bin/stowe-towels.py','bin/wash-towel...
Python
0.000003
@@ -108,12 +108,12 @@ ='0. -0.27 +1.01 ',%0A
116a1277e67a1bb9bc4472b6174e15d9003d9a0d
Replace icx with icpx (#16)
setup.py
setup.py
# Copyright (C) 2016, 2018 Intel Corporation # # SPDX-License-Identifier: MIT from __future__ import print_function from setuptools import setup def build_native(): '''Return cythonized extensions for native benchmarks''' try: # use icx if it is available icx = subprocess.check_output('which ...
Python
0.998676
@@ -274,24 +274,25 @@ e%0A ic +p x = subproce @@ -316,16 +316,17 @@ which ic +p x',shell @@ -370,16 +370,17 @@ ic +p x = None @@ -437,16 +437,17 @@ Using ic +p x: %25s' %25 @@ -449,16 +449,17 @@ %25s' %25 ic +p x)%0A @@ -482,16 +482,17 @@ C'%5D = ic +p x%0A @@ -611,16 +611,17 @@ rin...
55b7e76b82b08e047b3e0fd0f9847680fd4ef530
Update Django dependency to 1.4.1+
setup.py
setup.py
#!/usr/bin/env python """ Installation script: To release a new version to PyPi: - Ensure the version is correctly set in oscar.__init__.py - Run: python setup.py sdist upload """ from setuptools import setup, find_packages from oscar import get_version setup(name='django-oscar', version=get_version().replac...
Python
0
@@ -838,17 +838,17 @@ 'django -= +%3E =1.4',%0A
ffe56acf77c3c94670fb1e5654fcfb7377c655a7
prepare release
setup.py
setup.py
# coding: utf-8 """ A simple yet powerful CloudStack API client for Python and the command-line. """ from __future__ import unicode_literals import sys from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', encoding='utf-8') as f: long_description = f.read() install_req...
Python
0
@@ -681,17 +681,17 @@ on='2.5. -5 +6 ',%0A u
be34ce7cfea735e9dbcca3c641cbe46fd637c2ba
Add Throve classifier for Python 3.7
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs try: from setuptools import setup except ImportError: from distutils.core import setup version = '1.1.0' readme = codecs.open('README.rst', 'r', 'utf-8').read() history = codecs.open('HISTORY.rst', 'r', 'utf-8').read().replace('.. :changelog:', '') ...
Python
0.000007
@@ -1399,16 +1399,65 @@ : 3.6',%0A + 'Programming Language :: Python :: 3.7',%0A %5D,%0A)
828f07e0d102afe7dfa5f4aec957bbf2a9849909
Bump release number
setup.py
setup.py
from setuptools import setup setup( name='tablo', description='A PostGIS table to feature service app for Django', keywords='feature service, map server, postgis, django', version='0.1.4.3', packages=['tablo', 'tablo.migrations', 'tablo.interfaces', 'tablo.interfaces.arcgis'], install_requires=...
Python
0.000001
@@ -195,15 +195,11 @@ on=' -0.1.4.3 +1.0 ',%0A
fbb0708aebf437de8a5d2e8faf6334fc46d89b45
Add 'Python :: 3 :: Only' classifier
setup.py
setup.py
from setuptools import setup from rohrpost import __version__ def read(filepath): with open(filepath, "r", encoding="utf-8") as f: return f.read() setup( name="rohrpost", version=__version__, description="rohrpost WebSocket protocol for ASGI", long_description=read("README.rst"), ur...
Python
0.999999
@@ -971,16 +971,71 @@ : 3.7%22,%0A + %22Programming Language :: Python :: 3 :: Only%22,%0A
622dbaff38c480b4fbe9525d41af47ab2ad00b6a
Update setup.py
setup.py
setup.py
from distutils.core import setup setup( name='pos', version='1.0', packages=['pos'], url='', license='MIT', author='Stefan van Wouw', author_email='stefanvanwouw@gmail.com', description='Example how to use Luigi + Hive for processing transaction log data.', requires=['luigi', 'mysql...
Python
0.000001
@@ -100,16 +100,81 @@ url=' +https://github.com/stefanvanwouw/point-of-sales-proof-of-concept/ ',%0A l
528796cb2ebb83723f8b12bd4b60bedec4f12678
Upgrade docker-compose version
setup.py
setup.py
from setuptools import setup import codecs import os import re def read(*parts): path = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(path, encoding='utf-8') as fobj: return fobj.read() def find_version(): version_match = re.search( r"^__version__ = ['\"]([^'\"]*)['\"...
Python
0.000001
@@ -585,11 +585,12 @@ = 1. -8.1 +11.2 ',%0A
7bb9ce2b430686518cab9338c072dc9afa205c94
Bump version
setup.py
setup.py
import os from setuptools import setup license = "" if os.path.isfile("LICENSE"): with open('LICENSE') as f: license = f.read() readme = "" if os.path.isfile("README.rst"): with open("README.rst") as f: readme = f.read() setup( zip_safe=False, name='django-debug-toolbar-template-ti...
Python
0
@@ -342,9 +342,9 @@ 0.6. -5 +6 ',%0A
eba89cd4d52cbe4c7683ce64987ce08e9456de99
Fix sphinx version for travis
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup import sys import cupy_setup_build if sys.version_info[:3] == (3, 5, 0): if not int(os.getenv('CUPY_PYTHON_350_FORCE', '0')): msg = """ CuPy does not work with Python 3.5.0. We strongly recommend to use another version of Python. If you want ...
Python
0.000001
@@ -1008,16 +1008,23 @@ 'sphinx +==3.0.4 ',%0A
8ec364d123bf36cfa7f6aa7ed61d101641b9353b
bump version
setup.py
setup.py
import sys from setuptools import setup, find_packages setup( name = "django-erroneous", package_data = { 'erroneous': [ 'README.rst', 'LICENSE.txt', 'erroneous.templates', ], }, author = "Mridang Agarwalla", author_email = "mridang.agarwalla@gmai...
Python
0
@@ -1052,15 +1052,15 @@ on = '0. -2 +3 .0',%0A)
675c7984fb53b894c8688132205f058a438d0c59
move to the new FormEncode 1.2.1 for the formencode.national bug and to fix the lame unrelated PendingDeprecationWarnings showing up due to 1.2
setup.py
setup.py
import sys try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages version = '0.9.7' tests_require = ['nose'] if not sys.platform.startswith('java'): tests_require.extend(['Genshi', 'Jinj...
Python
0
@@ -2522,16 +2522,18 @@ ode%3E=1.2 +.1 %22, %22simp
c0c2a3b2af5fa97fd2d4978d7dd81818b0514d1f
Bump version for 5th 1.0 alpha
setup.py
setup.py
import sys from setuptools import find_packages, setup with open('README.md') as fp: long_description = fp.read() install_requires = [ 'six', ] if sys.version_info[:2] < (2, 7): install_requires += [ 'argparse', 'configparser', ] setup( name='django-local-settings', versio...
Python
0
@@ -320,17 +320,17 @@ on='1.0a -4 +5 ',%0A a
b7c8542e5c85ee9d094e50fb9e3150186da8e8c5
Update version to like the main expected
setup.py
setup.py
# Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: ...
Python
0
@@ -390,11 +390,11 @@ ='1. -0.4 +1.1 ',%0A
11f56182449415f2e147f5019cbfd649077d6d4e
Fix flake8
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute...
Python
0
@@ -2298,16 +2298,17 @@ # + 'python-
6dbb1e087d5246b5d5f2e43103433d0c1ea25989
bump version
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='hopsutil', version='0.3.0', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hi...
Python
0
@@ -168,17 +168,17 @@ on='0.3. -0 +1 ',%0A a @@ -584,17 +584,17 @@ ive/0.3. -0 +1 .tar.gz'
1eaa58b7ef9405ff1162ef321d47d1a748c11225
Fix flake8 warnings
setup.py
setup.py
from setuptools import setup, find_packages import os import sys import versioneer # https://github.com/warner/python-versioneer setup(name="addie", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), description="Need a description", author="Dan, Wenduo, Jean", author_...
Python
0
@@ -41,29 +41,8 @@ ges%0A -import os%0Aimport sys%0A impo @@ -751,10 +751,16 @@ res=%5B%5D,%0A + )%0A