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
8cedb458180f80304d073a27ed1f9a1560761f3d
Read file using proper encoding
setup.py
setup.py
# coding=utf8 try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension from setup_libuv import libuv_build_ext, libuv_sdist __version__ = "0.11.2" setup(name = "pyuv", version = __version__, author = "Saúl Ibarra ...
Python
0
@@ -8,16 +8,31 @@ g=utf8%0A%0A +import codecs%0A%0A try:%0A @@ -522,16 +522,23 @@ ption = +codecs. open(%22RE @@ -546,16 +546,34 @@ DME.rst%22 +, encoding=%22utf-8%22 ).read()
d85914cb2a0d15b58e05473db376290c7f4e7598
Version bump to 0.0.2
setup.py
setup.py
# -*- coding: utf-8 -*- """ drop-eyetribe-plugin. This plugin provides support for The Eye Tribe eyetrackers. This setup.py is based on: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_pack...
Python
0
@@ -675,9 +675,9 @@ 0.0. -1 +2 ',%0A
284e4268211d868d2940c504b46e421cac31dec4
Bump version
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "django-waitinglist", version = "1.0b3", author = "Brian Rosner", author_email = "brosner@gmail.com", description = "a Django waiting list app for running a private beta with cohorts support", long_description = open("README.rst").read(...
Python
0
@@ -102,9 +102,9 @@ 1.0b -3 +4 %22,%0A
5ea4bc2f30477266ab73d2ef625b650dd048f87c
patch from Diane Trout, ref https://github.com/python-caldav/caldav/issues/33, move nose dependency to test_requires
setup.py
setup.py
#!/usr/bin/python2 # -*- encoding: utf-8 -*- from setuptools import setup, find_packages version = '0.5.0' if __name__ == '__main__': setup( name='caldav', version=version, description="CalDAV (RFC4791) client library", classifiers=["Development Status :: 4 - Beta", ...
Python
0
@@ -1178,16 +1178,17 @@ test +s _require
654c93a3aa38c9344624f94922a4c1a928f201d7
Fix merge conflict with package_data.
setup.py
setup.py
#!/usr/bin/env python import re import ast from setuptools import setup, find_packages requires = [ 'awscli>=1.8.9,<2.0.0', 'prompt-toolkit==0.52', 'boto3>=1.2.1', 'configobj>=5.0.6', ] with open('awsshell/__init__.py', 'r') as f: version = str( ast.literal_eval( re.search( ...
Python
0
@@ -655,55 +655,8 @@ %5D),%0A - package_data=%7B'awsshell': %5B'awsshellrc'%5D%7D,%0A @@ -728,16 +728,61 @@ /*.json' +,%0A 'awsshellrc' %5D%7D,%0A
33a9159394bea336480b444830b48a81fd54fc9d
update url to github/idies link
setup.py
setup.py
#! /usr/bin/env python ######################################################################## # # Copyright 2014 Johns Hopkins University # # 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 # ...
Python
0
@@ -4287,21 +4287,13 @@ com/ -chichilalescu +idies /pyJ
573f1edc394e92209cd4b8c17aad2766e05f2fc1
bump pylib required
setup.py
setup.py
import os, sys if sys.version_info >= (3,0): from distribute_setup import use_setuptools use_setuptools() from setuptools import setup long_description = """ cross-project testing tool for Python. Platforms: Linux, Win32, OSX Interpreters: Python versions 2.4 through to 3.2, Jython 2.5.1 and PyPy Bugs and i...
Python
0
@@ -983,17 +983,17 @@ 'py%3E1.4. -1 +3 '%5D,%0A @@ -2465,12 +2465,13 @@ :%0A main() +%0A
f813467253be80ee9f3ac9d1d61bf39124932537
Add long_description
setup.py
setup.py
from setuptools import setup setup( name='msoffcrypto-tool', version='4.0.0', description='A Python tool and library for decrypting MS Office files with passwords or other secrets', url='https://github.com/nolze/msoffcrypto-tool', author='nolze', author_email='nolze@archlinux.us', license='...
Python
0.001235
@@ -184,24 +184,127 @@ r secrets',%0A + long_description=open(%22README.md%22, %22r%22).read(),%0A long_description_content_type='text/markdown',%0A url='htt
573e8137cddb9e70198de00ef17fa58b412e0697
add a warning when setup.py is unable to load setuptools
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (c) 2013, Vispy Development Team. # Distributed under the (new) BSD License. See LICENSE.txt for more info. """ Vispy setup script. Steps to do a new release: Preparations: * Test on Windows, Linux, Mac * Make release notes * Update API documentation and other docs that need...
Python
0
@@ -1138,16 +1138,118 @@ tError:%0A + from warnings import warn%0A warn(%22unable to load setuptools. 'setup.py develop' will not work%22)%0A pass
aaaf1657694f8aab0f5c58a74c72a340de08c1f6
change package specification
setup.py
setup.py
from setuptools import setup setup( name='python-tail', description='Python implementation of UNIX tail command', version='0.1', packages=find_packages(), install_requires=[ 'Click', ], )
Python
0
@@ -153,23 +153,16 @@ ges= -find_packages() +%5B'tail'%5D ,%0A
bcf8ffbf0119d9c2e3522895a6af6d47760dc6e9
Remove utilities as a direct dep
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
@@ -1175,91 +1175,8 @@ 0',%0A - 'https://github.com/ooici/utilities/tarball/master#egg=utilities-9999'%0A @@ -1272,33 +1272,8 @@ 0',%0A - 'utilities',%0A
d18abfddd3bec084af70467c54ed37633c774aed
Add missing deps
setup.py
setup.py
#!/usr/bin/env python3 from codecs import open from tickets import __version__ from setuptools import setup, find_packages def read(f): return open(f, encoding='utf-8').read() setup( name='tickets', version=__version__, description='Train tickets query via command line.', long_description=read(...
Python
0.00056
@@ -663,16 +663,36 @@ 'bs4' +,%0A 'colorama' %0A %5D,%0A
9fcb13f18c592dda3123f6036cd9d23552c8886b
Version 0.5.1
setup.py
setup.py
from setuptools import setup, find_packages def get_long_description(): with open('./README.rst', 'r') as readme: return readme.read() setup( name='django-email-tracker', version='0.5', description='Email Tracker for Django', author='Venelina Yanakieva', author_email='vili@magicsoluti...
Python
0.000001
@@ -199,16 +199,18 @@ ion='0.5 +.1 ',%0A d
901b608e9ea9e03ab3755fb746bfcd4b2bebf399
increment version
setup.py
setup.py
#from distutils.core import setup from setuptools import setup, Extension from os.path import exists from subprocess import call sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'], sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp', '...
Python
0.000004
@@ -1256,9 +1256,9 @@ =%220. -6 +7 %22,%0A
3ff6e9d30d53b32da0fe97e36c33a95e5fd2d034
Fix setup
setup.py
setup.py
# Copyright (c) 2016-2020 Renata Hodovan, Akos Kiss. # # Licensed under the BSD 3-Clause License # <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>. # This file may not be copied, modified, or distributed except # according to those terms. from setuptools import setup, find_packages def fuzzinator_versi...
Python
0
@@ -17,17 +17,17 @@ 2016-202 -0 +1 Renata @@ -1319,11 +1319,69 @@ _scm -'%5D, +%3C6.0.0'%5D, # FIXME: pinning setuptools_scm required for py3.5 %0A
ab99c1a57a7b87c2a920b33348bac228dbd632bd
update version
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() with open('requirements.txt', 'r') as f: install_requires = list() for line in f: re = line.strip() if re: install_requires.append(re) setuptools.setup( name="etk", version="2.2.5", a...
Python
0
@@ -308,9 +308,9 @@ 2.2. -5 +6 %22,%0A
b141e55b4b302348a599a3ea568e6409dcc27f5a
Improve setup.py
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name = "django-ldapdb", version = "0.1.0", #license = ldapdb.__license__, url = "http://opensource.bolloretelecom.eu/projects/django-ldapdb/", author = "Jeremy Laine", author_email = "jeremy.laine@bolloretelecom.eu", packages = ...
Python
0.000002
@@ -25,22 +25,18 @@ rom -distutils.core +setuptools imp @@ -61,19 +61,17 @@ name - = += %22django- @@ -90,19 +90,17 @@ version - = += %220.1.0%22, @@ -100,16 +100,119 @@ 0.1.0%22,%0A + description=u%22An LDAP database backend for Django%22,%0A long_description=open('README.md').read(),%0A #li...
a8d94e131bcc2ebcbf7d9a92f84c81de7e59d784
switch to setuptools
setup.py
setup.py
#!/usr/bin/env python # The contents of this file are subject to the MonetDB Public License # Version 1.1 (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.monetdb.org/Legal/MonetDBLicense # # Software distributed under the License ...
Python
0.000001
@@ -764,22 +764,18 @@ rom -distutils.core +setuptools imp
79421c1c0b1480da70c426f782585fa66416eed0
add setuptools_scm to setup_requires
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='rauc-hawkbit', description='hawkBit client for RAUC', author='Bastian Stender and Enrico Joerns', author_email='entwicklung@pengutronix.de', license='LGPL-2.1', use_scm_version=Tr...
Python
0
@@ -363,24 +363,65 @@ c-hawkbit',%0A + setup_requires=%5B'setuptools_scm'%5D,%0A instal
684603543f1e056693acf0288b71232395b3a8f5
Bump package version to 0.4.9
setup.py
setup.py
"""Set up for XBlock""" from setuptools import setup setup( name='XBlock', version='0.4.8', description='XBlock Core Library', packages=[ 'xblock', 'xblock.django', 'xblock.reference', 'xblock.test', 'xblock.test.django', ], install_requires=[ 'lx...
Python
0
@@ -94,9 +94,9 @@ 0.4. -8 +9 ',%0A
943c4976d0f48ec9d620d2b4580568ad7ce85e25
version 0.4.8
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import sys lxml_requirement = "lxml" if sys.platform == 'darwin': import platform mac_ver = platform.mac_ver()[0] if mac_ver < '10.9': print("Using lxml<2.4") lxml_requirement = "lxml<2.4" setup( name="wanish", version="0.4.7", ...
Python
0.000001
@@ -311,9 +311,9 @@ 0.4. -7 +8 %22,%0A
17adf1d0e0947637511f5babbed704ed77bec1cd
remove unneded dependency link
setup.py
setup.py
from setuptools import setup, find_packages setup( name='madmin', version='0.0.1', install_requires=['rueckenwind==0.2.0', 'motor==0.1.1', 'PyMongo==2.5.0'], packages=find_packages(), include_package_data=True, dependency_links=['git+ssh://git@git.dev.rook/lib/rueckenwind.git@master#egg=ruecken...
Python
0
@@ -229,105 +229,6 @@ ue,%0A - dependency_links=%5B'git+ssh://git@git.dev.rook/lib/rueckenwind.git@master#egg=rueckenwind-dev'%5D%0A )%0A
f9fa797ddf5d5539402d3aa07340c39e7bccc152
Create a pypi library
setup.py
setup.py
from distutils.core import setup __author__ = "Arthur Fortes" setup( name='CaseRecommender', packages=['CaseRecommender'], version='0.0.3', description='A recommender systems framework for python', author='Arthur Fortes da Costa', author_email='fortes.arthur@gmail.com', url='https://github...
Python
0.000001
@@ -107,31 +107,25 @@ kages=%5B' -CaseRecommender +framework '%5D,%0A
44694af0d60a1daee6bc1dea95b75ffe4be1d7f5
Bump version to 0.1.14
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='stickytape', version='0.1.13', description='Convert Python packages into a single script', long_description=read("README.rst"), author=...
Python
0
@@ -197,9 +197,9 @@ .1.1 -3 +4 ',%0A
bb1c07877249f4d0ccaeb06b96e7e1ae3e622473
Fix URL
setup.py
setup.py
import sys from setuptools import setup if sys.argv[-1] in ('sdist', 'bdist_wheel'): setup_requires = ['setuptools-markdown'] else: setup_requires = [] setup( name='tldr', version="0.1.3.1", author='Felix Yan', author_email='felixonmars@gmail.com', url='https://github.com/felixonmars/tldr-...
Python
0.00075
@@ -296,26 +296,25 @@ hub.com/ -felixonmar +tldr-page s/tldr-p
12aa50fd8b85c32e6f7935eb2d3bcf51a5c85449
Update classifiers
setup.py
setup.py
""" .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import io import os.path import sys import setuptools MODULE_NAME = "pathvalidate" REPOSITORY_URL = "https://github.com/thombashi/{:s}".format(MODULE_NAME) REQUIREMENT_DIR = "requirements" ENCODING = "utf8" pkg_info = {} def need_pytest(): ...
Python
0.000002
@@ -2986,16 +2986,87 @@ : 3.8%22,%0A + %22Programming Language :: Python :: Implementation :: CPython%22,%0A
b2099049484f66f4348ddd4448c676feecb0b46e
exclude docs and tests from package (#481)
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law o...
Python
0
@@ -1403,45 +1403,132 @@ ges= -setuptools.PEP420PackageFinder.find() +%5B%0A package%0A for package in setuptools.PEP420PackageFinder.find()%0A if package.startswith(%22google%22)%0A %5D ,%0A
d3537cf1ab18cf813c5bfd957e51ca6699e3e0a3
Update eth-utils version requirement
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import ( setup, find_packages, ) extras_require = { 'test': [ "pytest==3.3.2", "pytest-xdist", "tox>=2.9.1,<3", ], 'lint': [ "flake8==3.4.1", "isort>=4.2.15,<5", ], 'doc': [ "Sphinx...
Python
0
@@ -1103,20 +1103,12 @@ ls%3E= -0.7.4,%3C1.0.0 +1,%3C2 %22,%0A
fe46c864b625519f90f23502da520a7fcaada972
Bump version
setup.py
setup.py
from setuptools import setup, find_packages VERSION = '0.0.3' try: from pypandoc import convert read_md = lambda f: convert(f, 'rst') except ImportError: print("Warning: pypandoc module not found, could not convert Markdown to RST") read_md = lambda f: open(f, 'r').read() setup( name='django-webh...
Python
0
@@ -57,9 +57,9 @@ 0.0. -3 +4 '%0A%0At
2654334b0e3af937e2399268b552803687b90027
Revert ISRELEASED to False
setup.py
setup.py
""" YANK is a testbed for experimenting with algorithms for the efficient computation of small molecule binding free energies to biomolecular targets using alchemical methods. YANK is built on OpenMM, the API for molecular simulation, and uses its GPU-accelerated library implementation for hardware acceleration. """ fr...
Python
0.999727
@@ -667,11 +667,12 @@ D = -Tru +Fals e%0A__
6cdafe16dfd0e1998ebbe595509cc41222b1e750
Version 1.22.1
setup.py
setup.py
""" The setup package to install SeleniumBase dependencies and plugins (Uses selenium 3.x and is compatible with Python 2.7+ and Python 3.6+) """ from setuptools import setup, find_packages # noqa from os import path this_directory = path.abspath(path.dirname(__file__)) long_description = None try: with open(pa...
Python
0
@@ -555,17 +555,17 @@ n='1.22. -0 +1 ',%0A d
c7994b2e8b8dfdd5ad60850ed56afd7e1c69646a
fix typo in setup.py
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="heartpy", version="1.2.3", author="Paul van Gent", author_email="P.vanGent@tudelft.nl", description="Heart Rate Analysis Toolkit", long_description=long_description, long_descripti...
Python
0.000015
@@ -1149,33 +1149,33 @@ :: Python :: 3. -5 +4 %22,%0A %22Prog
c1d111ab00cdc916412cc2985ef4bbc184166f20
Change contact field and author field for PyPI.
setup.py
setup.py
""" ``onecodex`` ------------ ``onecodex`` provides a command line client for interaction with the One Codex API. Links ````` * `One Codex: <https://www.onecodex.com/>` * `API Docs: <http://docs.onecodex.com/>` """ from setuptools import setup setup( name='onecodex', version='0.0.1', url='https://www...
Python
0
@@ -365,28 +365,32 @@ or=' -Nick Boyd Greenfield +Reference Genomics, Inc. ',%0A @@ -410,12 +410,12 @@ il=' -nick +help @one
c3fe1e939708dad0628cae57a4249b5ab2a44dd7
Bump to 0.7.0, beta. (#105)
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
@@ -843,17 +843,17 @@ sion='0. -6 +7 .0',%0A @@ -1745,16 +1745,15 @@ :: -3 - Alph +4 - Bet a',%0A
5692ba1b32779fd76d25c52fbe3b6dec26ee1ee4
Version 2.1.
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup setup(name='python-wordpress-xmlrpc', version='2.0', description='WordPress XML-RPC API Integration Library', author='Max Cutler', author_email='max@maxcutler.com', ...
Python
0
@@ -179,9 +179,9 @@ ='2. -0 +1 ',%0D%0A
705999d9ca332c42d2c052f39ab44104be99b9c4
print stdout during nose tests
stagecraft/settings/common.py
stagecraft/settings/common.py
""" Django settings for stagecraft project. For more information on this file, see https://docs.djangoproject.com/en/1.6/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.6/ref/settings/ """ import os import sys from os.path import abspath, dirname, join as pjoi...
Python
0.003047
@@ -2342,16 +2342,22 @@ ARGS = %5B +'-s', '--exclu
c3294f7ec5e1d91196d53ccc84c38511941ff7c7
update version
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import sys import os version = '1.2.2' long_description = open('README.md').read() if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() setup( name='africastalking', version=version, packages=['africastalking'], ...
Python
0
@@ -81,17 +81,17 @@ = '1.2. -2 +3 '%0A%0Along_
8243a52b7db8962ae381cc1b565c5c519f32bb9d
Bump version
setup.py
setup.py
#!/usr/bin/env python '''The setup and build script for the lightning-python library.''' __author__ = 'github@mathisonian.com' __version__ = '1.0.7' # The base package metadata to be used by both distutils and setuptools METADATA = dict( name = "lightning-python", version = __version__, packages = ['lightning'...
Python
0
@@ -145,9 +145,9 @@ 1.0. -7 +8 '%0A%0A#
66a148f9240133ead3b74a50fb0b6d43f1903de7
Update to next dev version
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redist...
Python
0
@@ -1077,17 +1077,22 @@ = '0.5. -1 +2.dev0 ',%0A%0A
afdbc1a8200e47be78f81947349372e1a846b1eb
update requirements
setup.py
setup.py
import os.path as op from setuptools import setup with open(op.join(op.dirname(__file__), './README.rst')) as fin: long_description = fin.read() setup( name='wcpan.worker', version='3.0.1', description='An asynchronous task queue with priority support.', long_description=long_des...
Python
0
@@ -573,24 +573,62 @@ _requires=%5B%0A + 'async-timeout ~= 3.0.0',%0A
493d73bea7d7a6b1b3c5be11fe47f3aa39fa4a49
Upgrade version to 1.0.0
setup.py
setup.py
#!/usr/bin/env python ''' Created on 2015/11/17 :author: hubo ''' try: import ez_setup ez_setup.use_setuptools() except: pass from setuptools import setup, find_packages VERSION = '0.11.1' setup(name='vlcp', version=VERSION, description='Full stack framework for SDN Controller, support Openfl...
Python
0.000001
@@ -192,14 +192,13 @@ = ' -0.11.1 +1.0.0 '%0A%0As
99f82543bd97c54ee0850a154e1cb97957c33ea9
Swap pycrypto for pycryptodome
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ 'setuptools', 'pycrypto' ] try: from collections import OrderedDict except ImportError: install_requires.append('ordereddict') setup( ...
Python
0.000193
@@ -189,16 +189,20 @@ pycrypto +dome '%0A%5D%0A%0Atry @@ -380,9 +380,9 @@ '3. -2 +3 ',%0A
197dca6e5c81dc1437f65af192e2b590a575bf53
Bump to next dev 0.1.1.dev1
setup.py
setup.py
#!/usr/bin/env python3 # encoding: utf-8 from setuptools import setup, find_packages setup( name='pyatv', version='0.1.0', license='MIT', url='https://github.com/postlund/pyatv', author='Pierre Ståhl', author_email='pierre.staahl@gmail.com', description='Library for controlling an Apple TV...
Python
0
@@ -122,17 +122,22 @@ on='0.1. -0 +1.dev1 ',%0A l
1c2881332fb12389b161b9bf7c79248f36dc9b07
Bump version
setup.py
setup.py
from __future__ import with_statement import sys import os.path import setuptools needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open...
Python
0
@@ -744,9 +744,9 @@ 0.4. -1 +2 %22,%0A
79c4d0f19ffb569919b1d210674884a22fd80c0b
Fix up setup.py
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup try: import unittest.mock has_mock = True except ImportError: has_mock = False __author__ = 'ping <lastmodified@gmail.com>' __version__ = '1.6.0' packages = [ 'instagram_private_api', 'instagram_private...
Python
0.000003
@@ -1,16 +1,46 @@ +from os import path%0Aimport io%0A try:%0A from se @@ -428,16 +428,148 @@ mock'%5D%0A%0A +with io.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:%0A long_description = f.read()%0A%0A setup(%0A @@ -685,17 +685,16 @@ mail.com -%3E ',%0A l @@ -94...
51e4a9eb5708b7f35784f4a4a704f72ac5e00e6f
remove package stuff
setup.py
setup.py
# coding: utf-8 from __future__ import division, print_function __author__ = "adrn <adrn@astro.columbia.edu>" # Standard library import os, sys from distutils.core import setup from distutils.extension import Extension # Third-party import numpy as np from Cython.Distutils import build_ext # Get numpy path numpy_b...
Python
0.000002
@@ -599,16 +599,17 @@ _path%5D)%0A +%0A cbuiltin @@ -920,16 +920,97 @@ SD%22,%0A + cmdclass = %7B'build_ext': build_ext%7D,%0A ext_modules=%5Bcpotential, cbuiltin%5D%0A)%0A%0A# package @@ -1069,17 +1069,17 @@ am.io%22,%0A - +# @@ -1073,34 +1073,32 @@ o%22,%0A# - %22streamteam.obse ...
ccd45d35b05c4f3e2a134d285e485523c08298cf
Add misc package to setup.py
setup.py
setup.py
from setuptools import setup setup( name='autograd', version='1.1.11', description='Efficiently computes derivatives of numpy code.', author='Dougal Maclaurin and David Duvenaud and Matthew Johnson', author_email="maclaurin@physics.harvard.edu, duvenaud@cs.toronto.edu, mattjj@csail.mit.edu", pa...
Python
0
@@ -391,16 +391,33 @@ y.stats' +, 'autograd.misc' %5D,%0A i
7ea606d4e9cd27880ecbd730baeac488cfbca075
Fix setup.py with CYTHON==True
setup.py
setup.py
import os import sys import versioneer from distutils.core import setup from setuptools import find_packages from distutils.extension import Extension from distutils.command.sdist import sdist as _sdist from distutils.command.install import install as _install try: import numpy as np except: print("ERROR: Nu...
Python
0.001029
@@ -2486,32 +2486,63 @@ mport cythonize%0A + global ext_modules%0A ext_
a30ed634f641c3c62dc0d4501ed4cb852c9930d0
Update TreeTime dep link now that the py3 branch is merged
setup.py
setup.py
import os from setuptools import setup setup( name = "augur", version = "0.1.0", author = "nextstrain developers", author_email = "trevor@bedford.io, richard.neher@unibas.ch", description = ("Pipelines for real-time phylogenetic analysis"), license = "MIT", keywo...
Python
0
@@ -951,11 +951,14 @@ all/ -py3 +v0.4.0 #egg
0ad4eadaeca3e442b85bb29d530b791e06c6c07f
Bump version number
setup.py
setup.py
from setuptools import setup setup( name = "aws-identity-manager", version = "0.0.1", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = ("Manage credentials for multiple AWS accounts"), url='https://github.com/nocarryr/AWS-Identity-Manager', license='MIT', ...
Python
0.000002
@@ -88,9 +88,9 @@ 0.0. -1 +2 %22,%0A
776663716437e3d6e255046a04bd301c697a020f
Drop declared support for Python 3.6 - breaks on upload to PyPI
setup.py
setup.py
#!/usr/bin/env python # Generated by jaraco.develop 2.27.1 # https://pypi.python.org/pypi/jaraco.develop import io import sys import setuptools with io.open('README.rst', encoding='utf-8') as readme: long_description = readme.read() needs_pytest = {'pytest', 'test'}.intersection(sys.argv) pytest_runner = ['pyte...
Python
0
@@ -2258,57 +2258,8 @@ 5%22,%0A - %22Programming Language :: Python :: 3.6%22,%0A
e47d69382863438b9506f2b153fec2c38a7707dd
fix setup.py
setup.py
setup.py
from setuptools import setup setup(name='netCDF4p', version='0.9', description='Addition to netCDF4 to select by dimension', url='', author='Mathias Hauser', author_email='mathias.hauser@env.ethz.ch', license='MIT', packages=['netCDF4p'], install_requires=[ <<<<<<< HEAD ======= ...
Python
0.000001
@@ -50,16 +50,18 @@ p',%0A + version= @@ -67,16 +67,18 @@ ='0.9',%0A + desc @@ -131,16 +131,18 @@ nsion',%0A + url= @@ -145,24 +145,26 @@ url='',%0A + author='Math @@ -176,16 +176,18 @@ auser',%0A + auth @@ -229,16 +229,18 @@ h',%0A + + license= @@ -246,16 +246,18 @@ ='M...
eccf510e1148d375cfcea692b4a0b52663bbffc2
Remove circular dependency on importing package in setup.py
setup.py
setup.py
#!/usr/bin/env python import os, sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand from pip.req import parse_requirements from loginsightwebhookdemo import __version__ as loginsightwebhookdemoversion # TODO Replace with a static variant? # Hack from https://sta...
Python
0.000001
@@ -171,16 +171,25 @@ ements%0A%0A +try:%0A from log @@ -297,16 +297,79 @@ ariant?%0A +except ImportError:%0A loginsightwebhookdemoversion = %220.dev0%22 %0A%0A# Hack
fb762b21947c5c3116c6deac394e2e47fbfc880f
Bump version to 0.5.0
setup.py
setup.py
import os from setuptools import setup def read(path): with open(os.path.join(os.path.dirname(__file__), path)) as fileobj: return fileobj.read() setup( name='Funk', version='0.4.0', description='A mocking framework for Python', long_description=read("README.rst"), author='Michael Wi...
Python
0.000001
@@ -198,9 +198,9 @@ ='0. -4 +5 .0',
a33eb794d9e1adcb729740eb7d9eda306791534b
Version 3.22.1
setup.py
setup.py
from setuptools import find_packages, setup with open("README.md", "r") as readme: long_description = readme.read() setup( name="stockfish", author="Ilya Zhelyabuzhsky", author_email="zhelyabuzhsky@icloud.com", version="3.22.0", license="MIT", keywords="chess stockfish", python_require...
Python
0
@@ -240,17 +240,17 @@ n=%223.22. -0 +1 %22,%0A l
2842771b78f8452de5515dccf879eb63060ec620
comment README
setup.py
setup.py
import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() requires = [ 'itertools', ] setup( name='xor-string', packages=['xor-string',], version='0.1.2', url='https://github.com/Akagi201/xor-string', downl...
Python
0
@@ -1,9 +1,11 @@ %0A +# import o @@ -37,16 +37,18 @@ setup%0A%0A +# here = o @@ -89,16 +89,18 @@ ile__))%0A +# README = @@ -438,16 +438,18 @@ on',%0A + # long_de
fc245f061bc185d465218a9af36f926045a6ca3b
Bump version
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() CHANGES = open(os.path.join(here, 'CHANGES.rst')).read() version = '0.3.3b0' requires = [ 'pymongo >= 2.8,<3', # CI fails to build unless a version (sa...
Python
0
@@ -230,17 +230,17 @@ '0.3.3b -0 +1 '%0A%0Arequi
8e3c0d3794a65e10000da68495ea84771f663016
Improve Python package information.
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import print_function from os import sys try: from skbuild import setup except ImportError: print('scikit-build is required to build from source.', file=sys.stderr) print('Please run:', file=sys.stderr) print('', file=sys.stderr) print(' python -m pip instal...
Python
0.00038
@@ -659,75 +659,48 @@ =r'I -nterslice inte +mage mo rp +h ol -ations of label images based on their mo +ogical contour inte rp -h ol -ogy +ation .',%0A @@ -725,212 +725,103 @@ on=' -ITK is an open-source, cross-platform library that '%0A 'provides developers with an extensive suite of softwa...
8246bf6a05c5c934351f6f4867eaa255f73f0eb2
add URL to GitHub for PyPi
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup install_requires = [ 'agate>=1.6.1', 'agate-excel>=0.2.2', 'agate-dbf>=0.2.0', 'agate-sql>=0.5.3', 'six>=1.6.1' ] if sys.version_info < (2, 7): install_requires.append('argparse>=1.2.1') install_requires.append('ordereddict>=1....
Python
0
@@ -663,28 +663,137 @@ http -://csvkit.rtfd.org/' +s://github.com/wireservice/csvkit',%0A project_urls=%7B%0A 'Documentation': 'https://csvkit.readthedocs.io/en/latest/',%0A %7D ,%0A
efadb71c0598f50d2f5966a0e0eeef33779d72fc
Bump version to 0.2.0-alpha5 (#36)
setup.py
setup.py
from setuptools import setup, find_packages setup(name='cartographer', version='0.2.0-alpha4', description='Python library for using JSON API, especially with Flask.', url='http://github.com/Patreon/cartographer', author='Patreon', author_email='david@patreon.com', license='Apache 2...
Python
0
@@ -91,17 +91,17 @@ .0-alpha -4 +5 ',%0A
5ba4c4b572d0ef569e536c1153dab4af40be8725
add conf to datafiles in setup
setup.py
setup.py
import os from setuptools import setup os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) exec(open('src/__init__.py').read()) setup( name='newrelicnfsmond', version=__version__, license='MIT License', description='NFS disk monitoring plugin for New Relic', author='Co...
Python
0.000001
@@ -651,16 +651,75 @@ _files=%5B +%0A ('/etc', %5B'conf/newrelic-nfsmond.conf'%5D),%0A ('/etc/i @@ -760,16 +760,22 @@ smond'%5D) +,%0A %5D,%0A i
1f311faff87777d92dee4d30392c80e5f1d8c368
Version 0.4.4
setup.py
setup.py
# Copyright 2016 Florian Lehner. All rights reserved. # # The contents of this file are 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 r...
Python
0
@@ -763,17 +763,17 @@ on='0.4. -3 +4 ',%0A p
1ea0adf6afe6dcec83582de08d3d3aef200bdb99
Update deps
setup.py
setup.py
# Copyright (c) 2014-present PlatformIO <contact@platformio.org> # # 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 appli...
Python
0
@@ -802,16 +802,50 @@ n__,%0A)%0A%0A +PY36 = sys.version_info %3C (3, 7)%0A%0A %0Aminimal @@ -906,63 +906,41 @@ %25 (%22 -%3E += =8.0.4 -,%3C9 %22 if -sys.version_info %3E= (3, 7) +PY36 else %22 -= +%3E =8.0.4 +,%3C9 %22),%0A @@ -987,40 +987,21 @@ (%223. -* +14.1 %22 if -sys.version_info %3E= (3, 7) +PY36 ...
5a4c9ec51061241ce091b1dd4759c0817b1db9ef
bump version to 0.1.10
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup from pip.req import parse_requirements from uuid import uuid1 # parse requirements reqs = parse_requirements("requirements/common.txt", session=uuid1()) # setup the project setup( name='cmsplugin-forms-builder', version='0.1.9', descripti...
Python
0
@@ -300,9 +300,10 @@ 0.1. -9 +10 ',%0A
2dd096cfab529f33d6d132795c7706d2bed92f68
bump version to v0.1.2
setup.py
setup.py
#!/usr/bin/python3 from codecs import open from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='gnpy', version='0.1.1', description='route ...
Python
0
@@ -286,17 +286,17 @@ on='0.1. -1 +2 ',%0A d
1f793daf03f821f993b0920256652185f0445a78
Add more metadata info to the setup.py file.
setup.py
setup.py
from setuptools import setup setup( name="rotterdam", version="0.0.6", packages=["rotterdam"], include_package_data=True, package_data={ 'rotterdam': ['lua/*.lua'] }, scripts=[ "bin/rotterdam", "bin/rotterdamctl" ], install_requires=[ "cython==0.19.1"...
Python
0
@@ -69,17 +69,210 @@ on=%220.0. -6 +7%22,%0A description=(%0A %22Simple distributed job queue via redis.%22%0A ),%0A author=%22William Glass%22,%0A author_email=%22william.glass@gmail.com%22,%0A url=%22http://github.com/wglass/rotterdam %22,%0A p
1ebf0b470b3ef98954b774dd8a7190a4658d9833
Update setup.py to install poyo instead of ruamel.yaml and PyYAML
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup version = "1.3.0" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') os.system('python setup.py bdist_wheel upload') sys.exit() if sys.argv[-1] == 'tag': os.system("git tag -a %s -m 'version %s'" % (version...
Python
0
@@ -679,16 +679,35 @@ %3E=0.1.1' +,%0A 'poyo%3E=0.1.0' %0A%5D%0A%0Along @@ -1520,242 +1520,8 @@ ts,%0A - extras_require=%7B%0A ':sys_platform==%22win32%22 and python_version==%222.7%22': %5B%0A 'PyYAML%3E=3.10'%0A %5D,%0A ':sys_platform!=%22win32%22 or python_version!=%222.7%22'...
47c347e8277c63d8e157d44084604408fb8cdcc7
Comment on git submodules
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() requires = ['pyrax>=1.4.7', 'ipython==1.0.0a', ...
Python
0
@@ -783,16 +783,84 @@ quires,%0A + # Can't pull from the zip file as IPython uses git submodules%0A #d
023c0f17652037c80c9513a8ab522373d7ccae9d
Add download_url to setup.py
setup.py
setup.py
#!/usr/bin/python from setuptools import setup, find_packages with open('requirements.txt') as f: requirements = f.read().splitlines() setup( name = "docker-scripts", version = "0.3.1", packages = find_packages(), url='https://github.com/goldmann/docker-scripts', author='Marek Goldmann', ...
Python
0
@@ -57,16 +57,35 @@ ckages%0A%0A +version = %220.3.1%22%0A%0A with ope @@ -204,23 +204,23 @@ rsion = -%220.3.1%22 +version ,%0A pa @@ -252,17 +252,19 @@ %0A url -= + = 'https:/ @@ -309,15 +309,110 @@ -author= +download_url = %22https://github.com/goldmann/docker-scripts/archive/%25s.tar.gz%22 %25 ve...
b90ff6c5c1dcc36e9da1255c753e0ffbec73f15a
Update homepage.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2010 KenTyde # All rights reserved. # # This software is licensed as described in the file LICENSE, # which you should have received as part of this distribution. from setuptools import setup import os desc = open(os.path.join(os.path.dirname(__file__), ...
Python
0
@@ -563,29 +563,26 @@ p:// -bitbucket.org/ +source. kentyde +.com /fix
e8645980807a48cbf3078267406db85a0c64eb55
version update
setup.py
setup.py
from setuptools import setup setup( name='socialreaper', version='0.2.1', packages=['socialreaper'], package_dir={'socialreaper': 'socialreaper'}, install_requires=['requests>=2.11.1', 'requests-oauthlib>=0.7.0', 'oauthlib>=2.0.1'], url='https://github.com/ScriptSmith/soci...
Python
0.000001
@@ -72,17 +72,17 @@ on='0.2. -1 +2 ',%0A p
6d84302e29ff9d77ff058567db3b82e0b00ebfa5
Remove unused arguments
setup.py
setup.py
# -*- coding:utf8 -*- import os import sys import codecs import re from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand dev_version = 1 here = os.path.abspath(os.path.dirname(__file__)) package_requires = [ 'venusian' ] test_requires = [ 'pytest', 'pytest-pep8...
Python
0.000003
@@ -1219,84 +1219,8 @@ d):%0A - user_options = %5B('pytest-args=', 'a', %22Arguments to pass to py.test%22)%5D%0A%0A
cf9eaa922dfd0b853090d24a2a7571f0301925a1
bump version number
setup.py
setup.py
from setuptools import setup, find_packages version = '0.2.0' setup(name='Mako', version=version, description="A super-fast templating language that borrows the \ best ideas from the existing templating languages.", long_description="""\ Mako is a template library written in Python. It provides a f...
Python
0.000006
@@ -53,17 +53,17 @@ = '0.2. -0 +1 '%0A%0Asetup
a013ab75809a630b88ee996486098b36977553f1
Bump version to 0.1.18.
setup.py
setup.py
from setuptools import setup with open('README.md') as f: long_description = f.read() short_description = "Simple tmux launcher that will take less than 2 minutes to learn." setup( name="smux.py", version='0.1.17', author="Henry Qin", author_email="root@hq6.me", description=short_description, long_d...
Python
0
@@ -220,9 +220,9 @@ .1.1 -7 +8 ',%0A
5d53bd04783edc49558262d24b3c0c5a5b5b8e76
Bump version to 1.5
setup.py
setup.py
from setuptools import setup __version__ = '1.4' __author__ = 'Eli Uriegas' retry_classifiers = [ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Software Development :: Libraries',...
Python
0
@@ -44,9 +44,9 @@ '1. -4 +5 '%0A__
d61733eed29923ae1f7db6e38bba181e3581051f
Bump version number
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='whack', version='0.2.5', description='Utility for installing binaries from source with a single command', long_description=read("README...
Python
0.000002
@@ -193,11 +193,11 @@ ='0. -2.5 +3.0 ',%0A
0fdd77907ef09fbdae6647b177c9ba4cf8c3de9c
Bump version to 0.9.1
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with...
Python
0
@@ -811,17 +811,17 @@ on=%220.9. -0 +1 %22,%0A u
0805b61f0d153ddf94a96297a52396bbb804522c
Bump version.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: latin1 -*- def main(): from setuptools import setup import glob import os import os.path setup(name="synoptic", version="0.92.1", description="An AJAXy notes manager", long_description=""" Synoptic is "GMail for your notes...
Python
0
@@ -187,17 +187,17 @@ n=%220.92. -1 +2 %22,%0A
39a42a6b013ecb57457559810e6a48c9e76fe474
update to setup.py
setup.py
setup.py
""" """ from setuptools import setup import trackopy with open('README.md') as r: readme = r.read() setup( name=trackopy.__title__, version=trackopy.__version__, url='https://github.com/ThaWeatherman/trackopy', license='MIT', author='Sean Beck', author_email='seanmckaybeck@gmail.com', ...
Python
0
@@ -920,37 +920,122 @@ les' -%0A %5D,%0A test_suite='tests +,%0A 'Programming Language :: Python :: 3'%0A %5D,%0A test_suite='tests',%0A keywords='trackobot hearthstone '%0A)%0A
b4b968af6bbd6c94e23ece02dbe33c1ee9475868
Fix setuptools v38.0+ compatbility
setup.py
setup.py
import re import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand INIT_FILE = 'bucketcache/__init__.py' init_data = open(INIT_FILE).read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_data)) AUTHOR_EMAIL = metadata['author'] VERSION = metadata['...
Python
0
@@ -468,17 +468,17 @@ uires = -%7B +%5B %0A 'bo @@ -597,17 +597,17 @@ 1.9.0',%0A -%7D +%5D %0A%0A%0Aextra @@ -668,17 +668,17 @@ .4%22'%5D = -%7B +%5B 'pathlib @@ -678,17 +678,17 @@ pathlib' -%7D +%5D %0A%0Aextras @@ -706,17 +706,17 @@ est'%5D = -%7B +%5B %0A 'ms @@ -809,17 +809,17 @@ xdist',%0A -%7D...
0f18b3ff63bf6183247e7bce25160547f8cfc21d
Change PyPI trove classifier for license terms.
setup.py
setup.py
import os import sys from distutils.core import setup if sys.version_info < (3,): print('\nSorry, but Adventure can only be installed under Python 3.\n') sys.exit(1) README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt') with open(README_PATH, encoding="utf-8") as f: README_TEXT ...
Python
0
@@ -919,11 +919,23 @@ :: -BSD +Apache Software Lic
0b77331cba0b23b9d8498860dee5fdd3fe8baf93
Bump version
setup.py
setup.py
import sys import os.path import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "introdu...
Python
0
@@ -703,17 +703,17 @@ n=%220.10. -1 +2 %22,%0A a
4397981c0283a93716682566b95a08875311b2a4
version bump
setup.py
setup.py
from setuptools import setup setup( name='rasa_nlu', packages=[ 'rasa_nlu', 'rasa_nlu.classifiers', 'rasa_nlu.emulators', 'rasa_nlu.extractors', 'rasa_nlu.featurizers', 'rasa_nlu.interpreters', 'rasa_nlu.trainers', 'rasa_nlu.tokenizers' ], ...
Python
0.000001
@@ -365,16 +365,18 @@ n='0.4.1 +.1 ',%0A i
08058e120c4a7e9637da55e9a0ca2f69805cd94e
Remove more usages of "~=" version specifier
setup.py
setup.py
# This file is part of Shoop. # # Copyright (c) 2012-2016, Shoop Ltd. All rights reserved. # # This source code is licensed under the AGPLv3 license found in the # LICENSE file in the root directory of this source tree. import os import sys import setuptools import shoop_setup_utils as utils TOPDIR = os.path.abspath...
Python
0.000001
@@ -3570,17 +3570,17 @@ 'enum34 -~ +%3E =1.0,%3C1. @@ -3695,13 +3695,16 @@ hinx -~ +%3E =1.3 +,%3C2 ',%0A @@ -3815,13 +3815,16 @@ ake8 -~ +%3E =2.4 +,%3C3 ',%0A @@ -3846,13 +3846,16 @@ ming -~ +%3E =0.2 +,%3C1 ',%0A
05a414230aad6bd6d7eefb82c5900228436ddd99
bump mpl version
setup.py
setup.py
#! /usr/bin/env python3 import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) def read(fname): with open(os.path.join(here, fname)) as f: return f.read() extra_files = { "WrightTools": [ "datasets", "datasets/*", "datasets/...
Python
0
@@ -861,17 +861,17 @@ tlib%3E=3. -3 +4 .0%22,%0A
3c952110aef7f94766fe69e6ee2cb6ff3a0be15a
Bump version to 2.0.34
setup.py
setup.py
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '2.0.33' with open("README.md", "r") as fh: long_description = fh.read() # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scri...
Python
0
@@ -112,17 +112,17 @@ = '2.0.3 -3 +4 '%0A%0Awith
6263930e5870c938b431967869e8b45f2c343d1b
bump version to 2.3.0 in setup
setup.py
setup.py
import os import os.path from setuptools import setup, find_packages def get_package_data(): package_data = [] for root, dirnames, filenames in os.walk('./eva_cttv_pipeline/evidence_string_generation/resources'): root = root.replace("./eva_cttv_pipeline/", "") for filename in filenames: ...
Python
0
@@ -662,11 +662,11 @@ ='2. -2.1 +3.0 ',%0A
ae797380574cba5a9cb0a21bf25ef925ef8f40ad
version update
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages NAME = "apicaller" DESCRIPTION = "APICaller makes the creating API client library easier." AUTHOR = "Jan Češpivo" AUTHOR_EMAIL = "jan.cespivo@gmail.com" URL = "https://github.com/cespivo/apicaller" VERSION = '0.0.2a' setup( name=NAME, version...
Python
0.000001
@@ -277,11 +277,11 @@ '0. -0.2 +1.0 a'%0A%0A
782bfa8f716d60c402b944d381dd40fa23486544
Bump pypi version
setup.py
setup.py
from distutils.core import setup __version__ = '0.3' setup( name='etnawrapper', packages=['etnawrapper'], version=__version__, description='API wrapper for ETNA\' APIs', author='Theo Massard', author_email='massar_t@etna-alternance.net', url='https://github.com/massard-t/etnawrapper', ...
Python
0
@@ -48,9 +48,9 @@ '0. -3 +4 '%0A%0As @@ -427,37 +427,33 @@ s=%5B' -testing', 'logging', 'example +school', 'wrapper', 'APIs '%5D,%0A
8fd65ff32118c453eb655bd88140f4a3fd81a4b0
fix py.typed path
setup.py
setup.py
""" ulid ~~~~ Universally Unique Lexicographically Sortable Identifier :copyright: (c) 2017 Andrew Hawker. :license: Apache 2.0, see LICENSE for more details. """ import ast import re try: from setuptools import setup except ImportError: from distutils.core import setup version_regex =...
Python
0.000006
@@ -1005,21 +1005,16 @@ lid': %5B' -ulid/ py.typed
10392ee8b764db2fbff114141992ec90a4efb8bc
Update django-ipware requirement
setup.py
setup.py
from setuptools import find_packages, setup NAME = "pinax-stripe" DESCRIPTION = "a payments Django app for Stripe" AUTHOR = "Pinax Team" AUTHOR_EMAIL = "team@pinaxproject.com" URL = "https://github.com/pinax/pinax-stripe" LONG_DESCRIPTION = """ ============ Pinax Stripe ============ .. image:: http://slack.pinaxproj...
Python
0
@@ -2789,13 +2789,13 @@ re== -1.1.6 +2.1.0 %22%0A
c55c729daf3be4e5011f79c23a351a224bda7a5b
Fix gotcha in 'setup.py publish'
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function import os import re from setuptools import setup import sys def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = open(os.path.join(package, '__init__.py')).read()...
Python
0
@@ -979,24 +979,68 @@ sys.exit()%0A + os.system(%22rm -rf .eggs/ build/ dist/%22)%0A os.syste
4b7e03e203148be8a2068c6474a08b847f26b670
Make setup.py use new README extension
setup.py
setup.py
# -*- coding: utf-8 -*- #$HeadURL$ #$LastChangedDate$ #$LastChangedRevision$ import os from setuptools import setup, find_packages version = '0.93' def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() long_description = ( read('LICENSE.txt') + '\n' + 'Detailed Docu...
Python
0.000001
@@ -387,18 +387,18 @@ 'README. -tx +rs t')%0A @@ -777,24 +777,16 @@ %5D%0A - %0Atry:%0A
853a3f689850f906871ecca0d5db72e51e93d367
Increment patch version number
setup.py
setup.py
import sys import subprocess import setuptools from setuptools.command.build_ext import build_ext from setuptools.command.test import test class TestCommand(test): description = 'run tests, linters and create a coverage report' user_options = [] def run(self): super().run() self._call(['...
Python
0.000002
@@ -1477,17 +1477,17 @@ on='0.1. -0 +1 ',%0A
288c01a3e653103f2fd1310aa9dd227afda2a7f4
Read version from infinity.py in setup.py
setup.py
setup.py
""" infinity -------- All-in-one infinity value for Python. Can be compared to any object. """ from setuptools import setup, find_packages import sys PY3 = sys.version_info[0] == 3 extras_require = { 'test': [ 'pytest>=2.2.3', 'Pygments>=1.2', 'six>=1.4.1' ], } setup( name='in...
Python
0
@@ -144,44 +144,346 @@ ort -sys%0A%0A%0APY3 = sys.version_info%5B0%5D == 3 +os%0Aimport re%0Aimport sys%0A%0A%0AHERE = os.path.dirname(os.path.abspath(__file__))%0APY3 = sys.version_info%5B0%5D == 3%0A%0A%0Adef get_version():%0A filename = os.path.join(HERE, 'infinity.py')%0A with open(filename) as f:%0A ...
44dedbe4152f0e6fd308783672f9e277929a7bae
bump version
setup.py
setup.py
from setuptools import setup, find_packages setup(name='webdiff', version='0.6.1', description='Two-column web-based git difftool', author='Dan Vanderkam', author_email='danvdk@gmail.com', url='https://github.com/danvk/webdiff/', entry_points={ 'console_scripts': [ ...
Python
0
@@ -83,9 +83,9 @@ 0.6. -1 +2 ',%0A @@ -827,16 +827,15 @@ :: -3 - Alph +4 - Bet a',%0A
e9b3b2a067e31f73596cff0140ba27b6a5745b1e
fix setup
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 - # # Copyright (c) 2008 Benoit Chesneau <benoitc@e-engura.com> # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies...
Python
0.000001
@@ -1834,16 +1834,49 @@ +%0A %5D,%0A%0A install_requires = %5B 'httplib @@ -1877,20 +1877,15 @@ ttplib2' -%0A %5D,%0A%0A)%0A%0A
d366be9d552209e1e5e9c7ac789d2dc832b9f39a
Update setup file.
setup.py
setup.py
from distutils.core import setup setup( name='pydarkstar', version='0.1', packages=['tests', 'pydarkstar'], url='git@github.com:AdamGagorik/pydarkstar.git', license='MIT', author='Adam Gagorik', author_email='adam.gagorik@gmail.com', description='A python module for interacting with a d...
Python
0
@@ -94,17 +94,8 @@ es=%5B -'tests', 'pyd
9cab951a8cd490f89eb8ca22020f15f9166565c8
version bump to 0.1.6
setup.py
setup.py
from distutils.core import setup setup(name='pynagio', version='0.1.5', description="Super simple nagios check python library", packages=['pynagio'], )
Python
0.000001
@@ -70,9 +70,9 @@ 0.1. -5 +6 ',%0A
6cdc906b3cb6d49eb5a1994c9e30549106f1ad78
fix minimal version
setup.py
setup.py
#!/usr/bin/python from setuptools import setup from setuptools.command.test import test as TestCommand import sys class Tox(TestCommand): user_options = [('tox-args=', 'a', "Arguments to pass to tox")] def initialize_options(self): TestCommand.initialize_options(self) self.tox_args = None ...
Python
0.000013
@@ -940,37 +940,8 @@ '%5D,%0A - requires=%5B'requests'%5D,%0A @@ -969,16 +969,25 @@ requests + %3E= 1.2.1 '%5D,%0A @@ -1031,16 +1031,28 @@ e=%5B'tox' +, 'discover' %5D,%0A