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
4dc8316d1f5378db974437e462df12d697d126ea
Mark project as beta release
setup.py
setup.py
import os from setuptools import setup version = '0.2dev' long_description = '\n\n'.join([ open('README.rst').read(), open('CHANGES.txt').read(), ]) setup( name = "compare", version = version, description = "Alternative syntax for comparing/asserting expressions in Python. Supports pluggable match...
Python
0.000082
@@ -51,11 +51,9 @@ '0.2 -dev +b '%0Alo
7087e92d40310d9bb6c8b4a6bb1baf7c3b73bee7
bump to v0.8.2
setup.py
setup.py
# Copyright (c) 2012, Calxeda Inc. # # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and th...
Python
0.000001
@@ -1596,17 +1596,17 @@ on='0.8. -1 +2 ',%0A p
f5d60320d262028e9d35b395ba0c582ef9555217
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-coffeescript', version='0.1.dev', url='https://github.com/gears/gears-coffeescript', license='ISC', author='Mike Yumatov', au...
Python
0.000002
@@ -203,12 +203,8 @@ '0.1 -.dev ',%0A
00e051dfb7cefa682f3bf04f0672990759f4e753
Add in tx_people as a requirement
setup.py
setup.py
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
Python
0.000001
@@ -1116,16 +1116,74 @@ files%7D,%0A + install_requires=%5B%0A 'tx_people%3E=0.1.0',%0A %5D,%0A clas
d33fe4b1bc31db4745e60164077b50506baf3289
Update description in `setup.py`.
setup.py
setup.py
from setuptools import setup, find_packages try: from pypandoc import convert def read_markdown(file: str) -> str: return convert(file, "rst") except ImportError: def read_markdown(file: str) -> str: return open(file, "r").read() setup( name="hgijson", version="1.3.0", author="...
Python
0
@@ -704,16 +704,37 @@ complex + (but easy to write!) mapping
8e198cfb5317ef47242e5231f88f4f75d19871c3
Version 0.4.5
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup(name='megacl', version='0.4.4', description='mega.co.nz command line client.', author='Arthibus Gisséhel', author_email='public-dev-megacl@gissehel.org', url='https://github.com/gissehel/megac...
Python
0.000001
@@ -125,17 +125,17 @@ on='0.4. -4 +5 ',%0A
4f41b3512d63f0d59aa8ba9caf7b96c954a74ad2
update pypi doc
setup.py
setup.py
from distutils.core import setup import assertpy desc = """assertpy ======== Dead simple assertions framework for unit testing in Python with a nice fluent API that supports Python 2 and 3. Usage ''''' Just import the ``assert_that`` function, and away you go:: from assertpy import assert_that class TestS...
Python
0
@@ -331,16 +331,17 @@ bject):%0A +%0A @@ -567,12 +567,14 @@ ke %60 -Nose +pytest %3Cht @@ -582,83 +582,96 @@ p:// -nose.readthedocs.org/%3E%60_%0Aor %60pytest %3Chttp://pytest.org/latest/contents.html +pytest.org/latest/contents.html%3E%60_ (our favorite)%0Aor %60Nose %3Chttp://nose.readthedocs.org/ %3E...
7b840886158efcc26c514caa2ccf9f2ad57bdc29
Bump ITK dependency to 5.0.1
setup.py
setup.py
from __future__ import print_function from os import sys from skbuild import setup setup( name='itk-ultrasound', version='0.2.3', author='Matthew McCormick', author_email='matt.mccormick@kitware.com', packages=['itk'], package_dir={'itk': 'itk'}, download_url=r'https://github.com/KitwareMe...
Python
0
@@ -1825,14 +1825,8 @@ 5.0. -0.post 1',%0A
afa17347a4065cbddc3f904e609dfbde887ae7c5
Update version to 0987
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # author: xiLin.ding from setuptools import setup, find_packages setup( name='django-render-url', version='0.9.8.6', packages=find_packages(), author='WANG Tai', author_email='i@wangtai.me', url='https://github.com/wangtai/django_render', des...
Python
0
@@ -168,9 +168,9 @@ 9.8. -6 +7 ',%0A
8cbfc45b1ae1dcce507e66555217ff897d057e4c
Bump version number
setup.py
setup.py
import os from setuptools import setup, find_packages f = open(os.path.join(os.path.dirname(__file__), 'README.md')) readme = f.read() f.close() setup( name='tgm-files', version='0.1.21', description='Stuff...', long_description=readme, author="Thorgate", author_email='info@thorgate.eu', ...
Python
0.000002
@@ -188,17 +188,17 @@ n='0.1.2 -1 +2 ',%0A d
8303736d3d0da13a08c5cd5979b56c845583358e
add classifiers for pypi
setup.py
setup.py
import os import sys from setuptools import find_packages, setup from setuptools.command.test import test as test_command class PyTest(test_command): def finalize_options(self): test_command.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): ...
Python
0.000025
@@ -782,16 +782,474 @@ ifiers=%5B +'Intended Audience :: Developers',%0A 'License :: OSI Approved :: Apache Software License',%0A 'Programming Language :: Python :: 3',%0A 'Programming Language :: Python :: 2',%0A 'Programming Language :: Python :...
3c553ef0e4880e9eaf11b5f4b02886414d9e0fb8
version string
setup.py
setup.py
from setuptools import setup, Extension from Cython.Build import cythonize extension_module = Extension( 'pyappveyordemo.extension', sources=['pyappveyordemo/extension.pyx'] ) setup( name = 'python-appveyor-demo', version = '1.0', description = 'This is a demo package with a compiled C extension...
Python
0.000013
@@ -1,12 +1,22 @@ +import os%0A from setupto @@ -83,118 +83,438 @@ ze%0A%0A -extension_module = Extension(%0A 'pyappveyordemo.extension',%0A sources=%5B'pyappveyordemo/extension.pyx'%5D%0A)%0A +#####################################%0AVERSION = %221.0%22%0AISRELEASED = False%0A__version__ = VERSION%0A##########...
42d19b4e2337a040e33645b93af8cc8121f4322f
Add extra for I18n.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2006 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://genshi.edgewall.org/wiki/License. # # This...
Python
0
@@ -5074,16 +5074,57 @@ uire = %7B +%0A 'i18n': %5B'Babel%3E=0.8'%5D,%0A 'plugin' @@ -5146,16 +5146,21 @@ =0.6a2'%5D +%0A %7D,%0A e @@ -5240,16 +5240,22 @@ :extract +%5Bi18n%5D %0A %0A
a1ed05089c983f3347b5164fffe4030d75b9453d
Include data file in package.
setup.py
setup.py
import setuptools import pathlib setuptools.setup( name='crafter', version='0.17.0', description='Open world survival game for reinforcement learning.', url='http://github.com/danijar/crafter', long_description=pathlib.Path('README.md').read_text(), long_description_content_type='text/markdown...
Python
0
@@ -86,9 +86,9 @@ '0.1 -7 +8 .0', @@ -372,16 +372,29 @@ fter': %5B +'data.yaml', 'assets/
fd925bbb88b1a784678d861eba440e4850819791
Tweak the menubar shortcuts
setup.py
setup.py
from numpy.distutils.core import setup, Extension import sys import os import os.path # Make sure everything is resolved addn_link_args = [ "-fPIC", "-rdynamic", "-Xlinker", "--no-undefined", ] # (Non-standard) Directories containing .h include files incdir_list = [ "pyfermod", os.path.join("fer", "co...
Python
0.0002
@@ -3586,17 +3586,17 @@ = %220.0. -2 +3 %22,%0A
a0a36ec2201f756f89ac925560cfee8629d85fbf
Fix Appveyor build failure
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup # Prepare and send a new release to PyPI if "release" in sys.argv[-1]: os.system("python setup.py sdist") os.system("twine upload dist/*") os.system("rm -rf dist/pyketools*") sys.exit() # Load the __version__ variable without imp...
Python
0
@@ -2166,9 +2166,9 @@ NASA -%E2%80%99 +' s Ke
0d1196f2c393d7fd424932cdaf07a9df1ef29223
change init
setup.py
setup.py
from distutils.core import setup setup( name = 'swifter', packages = ['swifter'], # this must be the same as the name above version = '0.153', description = 'A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner', author = 'Jason Carpenter', author_...
Python
0.000011
@@ -140,11 +140,11 @@ '0. -153 +201 ',%0A @@ -508,11 +508,11 @@ e/0. -152 +200 .tar @@ -661,16 +661,26 @@ 'dask +%5Bcomplete%5D '%0A %5D,%0A
660c08c708dff47912d0d8fdeb3d441ba2480bd0
Bump version to 0.4.0
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.3.4', description='Utility for installing binaries from source with a single command', long_description=read("README...
Python
0.000001
@@ -193,11 +193,11 @@ ='0. -3.4 +4.0 ',%0A
8ea9ba8149f21116fde18a1021598b7e5c9c9308
Update setup.py to use renamed README.rst
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages def long_description(): """ Build the long description from a README file located in the same directory as this module. """ base_path = os.path.dirname(os.path.realpath(__file__)) readme = open(os.path.join(base_path, ...
Python
0
@@ -320,16 +320,20 @@ 'README +.rst '))%0A
84c46be536bdfe3e34d98a64636ba5c8c11591a0
Add informations to `setup.py`
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import setuptools import kicost try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: histor...
Python
0
@@ -929,16 +929,142 @@ url= +'https://xesscorp.github.io/KiCost',%0D%0A project_urls=%7B%0D%0A 'Doc': 'https://xesscorp.github.io/KiCost',%0D%0A 'Git': 'https:/ @@ -1090,24 +1090,31 @@ p/KiCost',%0D%0A + %7D%0D%0A packages
775f3754d3949e1c4b9553f8550060093af86b91
Remove comment
greengraph/command.py
greengraph/command.py
from argparse import ArgumentParser from matplotlib import pyplot as plt from graph import Greengraph def process(): parser = ArgumentParser( description="Produce graph quantifying the amount of green land between two locations") parser.add_argument("--start", required=True, nargs="+", ...
Python
0
@@ -759,17 +759,16 @@ ()%0A%0A -# mygraph
3e083c4ed6f6ebd6739d10a639939c8a290aebc9
Change package name before publishing to PyPI
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright (C) 2009-2010 Sebastian Krysmanski # Copyright (C) 2012 Greg Lavallee # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. # from setuptools import setup PACKAGE = 'TicketGuidelinesPl...
Python
0
@@ -295,16 +295,20 @@ KAGE = ' +Trac TicketGu @@ -315,22 +315,16 @@ idelines -Plugin '%0AVERSIO
21f689b1dbd522bfd59fbdbfdcea2fe5629153e7
version 1.2
setup.py
setup.py
import logging import os import sys try: from setuptools import setup except ImportError: print("WARNING: setuptools not installed. Will try using distutils instead..") from distutils.core import setup def launch_http_server(directory): assert os.path.isdir(directory) try: try: ...
Python
0.000001
@@ -2226,17 +2226,17 @@ sion=%221. -1 +2 %22,%0A d
707f3246b8f73c88a8a5a808f042a96f75a2d699
update classifiers
setup.py
setup.py
# coding=utf-8 import codecs import re try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension from setup_libuv import libuv_build_ext def get_version(): return re.search(r"""__version__\s+=\s+(?P<quote>['"])(?P<version>.+?)(?P=quote)""", open('pyuv/...
Python
0
@@ -1388,16 +1388,67 @@ : 3.5',%0A + 'Programming Language :: Python :: 3.6',%0A
9af4cf14826cee4dccd83c2c79df20ded70c5349
Bump coverage from 6.2 to 6.3
setup.py
setup.py
import re from setuptools import setup, find_packages # take the version with open("indexdigest/__init__.py", "r") as fh: # e.g. VERSION = '1.5.0' last_line = fh.readlines()[-1] VERSION = re.search(r'[\d.]+', last_line).group(0) # @see https://packaging.python.org/tutorials/packaging-projects/#creating-se...
Python
0.000004
@@ -1880,17 +1880,17 @@ rage==6. -2 +3 ',%0A
7ea7f88cfadb07af63addf228232f4a1e2a2edd3
update setup.py
setup.py
setup.py
from setuptools import setup, find_packages import io import os here = os.path.abspath(os.path.dirname(__file__)) # Avoids IDE errors, but actual version is read from version.py __version__ = None exec(open("rasa_core/version.py").read()) # Get the long description from the README file with io.open(os.path.join(here...
Python
0.000001
@@ -815,21 +815,23 @@ %22scipy -~ += =1.1 +.0 %22%0A %22t
1773caf9b94a372b68a2c4272012ba7d6dea5d0b
use master branch for plugin versions
setup.py
setup.py
__author__ = 'dank' import setuptools COSMO_CELERY_VERSION = "0.1.1" COSMO_CELERY_BRANCH = "develop" COSMO_CELERY = "https://github.com/CloudifySource/cosmo-celery-common/tarball/{0}".format(COSMO_CELERY_BRANCH) CHEF_CLIENT_COMMON_VERSION = "0.1.0" CHEF_CLIENT_COMMON_BRANCH = "develop" CHEF_CLIENT_COMMON = "https:/...
Python
0
@@ -87,23 +87,22 @@ ANCH = %22 -develop +master %22%0ACOSMO_ @@ -278,15 +278,14 @@ = %22 -develop +master %22%0ACH
5eec7da162b6942c012ec4a72fb34f5a81ba3964
Version 0.7.9.
setup.py
setup.py
from setuptools import setup from pip.req import parse_requirements setup( name = 'Kodi-Voice', packages = ['kodi_voice'], version = '0.7.8', description = 'A library for interfacing with Kodi with VUI platforms like Amazon Alexa, Google Home, and Cortana.', author = 'Joe Ipson', author_email = 'joe@ipson....
Python
0
@@ -134,25 +134,25 @@ sion = '0.7. -8 +9 ',%0A descrip @@ -551,9 +551,9 @@ 0.7. -8 +9 ',%0A
3350d91e54c226dd69301f1f6f670073914e3a04
version 1.0.0
setup.py
setup.py
from setuptools import setup setup( name='dominoes', version='0.0.0', description='A Python library for the game of dominoes.', url='https://github.com/abw333/dominoes', author='Alan Wagner', author_email='alanwagner333@gmail.com', license='MIT', packages=['dominoes'], scripts=['bin...
Python
0.000002
@@ -64,17 +64,17 @@ ersion=' -0 +1 .0.0',%0A
3e194cc1661db01113a30df7dd334f6b2921e4fa
update deps
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- from os import path from setuptools import setup, find_packages this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() setup(name="hwt", version="3.2", d...
Python
0
@@ -1453,17 +1453,17 @@ cotb%3E=0. -6 +7 %22, # si @@ -1503,25 +1503,25 @@ aveTools%3E=0. -5 +6 %22, # simula @@ -1602,145 +1602,8 @@ (),%0A - package_data=%7B%22hwt%22: %5B%22*.vhd%22, %22*.v%22,%0A %22*.py.template%22,%0A %22*.cpp.template%22%5D%7D,%0A...
c366c8923d61bfb75dde1576f0bb95513ae2886e
change version number to 1.0.0
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' setup.py (c) Will Roberts 14 April, 2014 distutils setup script for pytimeparse. ''' from distutils.core import setup with open('README.rst') as file: long_description = file.read() setup(name = 'pytimeparse', version = '1.0', ...
Python
0.000015
@@ -304,16 +304,18 @@ = '1.0 +.0 ',%0A
065f52be203cc5813a1b648e8b8a26fbff96bafe
Bump version
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as f: return f.read() setup( name='pynubank', version='2.13.0', url='https://github.com/andreroggeri/pynubank', author='André Roggeri Campos', author_email=...
Python
0.000078
@@ -209,9 +209,9 @@ .13. -0 +1 ',%0A
5f259f24fceb5dcd05a91277b2fbae04a6121209
Bump version: 0.0.11 -> 0.0.12
setup.py
setup.py
# /setup.py # # Installation and setup script for parse-shebang # # See /LICENCE.md for Copyright information """Installation and setup script for parse-shebang.""" from setuptools import find_packages, setup setup(name="parse-shebang", version="0.0.11", description="""Parse shebangs and return their comp...
Python
0
@@ -252,17 +252,17 @@ n=%220.0.1 -1 +2 %22,%0A
c46c6cb898f4d5cf8d1a0c6a4f740bf06dcc9722
classifiers must be a list
setup.py
setup.py
# coding=utf-8 from __future__ import unicode_literals import re from setuptools import setup version = '' with open('flask_sse.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) if not version: raise RuntimeError('Cannot...
Python
0.999961
@@ -872,17 +872,17 @@ sifiers= -( +%5B %0A @@ -1145,17 +1145,17 @@ 5',%0A -) +%5D ,%0A zi
7ee5a80766d1497732cef866521f60c09fca1fdc
Bump version
setup.py
setup.py
from distutils.core import setup setup( name='twads', packages=['twads'], version='0.1.3', description='A wrapper for the Twitter Ads API', author='Jacob Gillespie', author_email='jdgillespie91@gmail.com', url='https://github.com/jdgillespie91/twads', install_requires=[ 'reques...
Python
0
@@ -98,9 +98,9 @@ 0.1. -3 +4 ',%0A
0dda44408892511b9b5636dba0034ea59572a50c
version 0.9.1
setup.py
setup.py
from setuptools import setup def readme(): with open('README.md') as f: return f.read() setup(name='py-ugs3client', version='0.9.0', description='UGS3 Python client', long_description=readme(), classifiers=[ 'Development Status :: 4 - Beta', 'L...
Python
0.000002
@@ -142,17 +142,17 @@ on='0.9. -0 +1 ',%0A
9997965391e88760aa52f4eb8d1e85a159e2c7af
Move setup.py to Python 3.
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-email-from-template', description="Send emails generated entirely from Django templates.", version='2.3.1', url='https://chris-lamb.co.uk/projects/django-email-from-template', author="Chris Lamb", author_ema...
Python
0
@@ -14,16 +14,17 @@ v python +3 %0A%0Afrom s
fc64b927df9551a4ce360e2c5a8af697a61862d7
Fix description in setup.py
setup.py
setup.py
#!/usr/bin/env python # coding=utf8 from distutils.core import setup from distutils.extension import Extension try: from Cython.Distutils import build_ext except ImportError: from Pyrex.Distutils import build_ext import commands def pkgconfig_include_dirs(*packages): flag_map = {'-I': 'include_dirs'} ...
Python
0.000039
@@ -1300,17 +1300,16 @@ libaosd -_ an on s
2d3d7f31ff85a6c3d6b58e3d731ecad886a07295
change requirements in setup.py
setup.py
setup.py
from setuptools import setup install_requires = [ 'couchdb>=1.0.1', 'dateparser>=0.3.4', 'pbkdf2', 'requests', 'requests_cache', ] setup( name='reports', version='0.0.1', packages=[ 'reports', ], entry_points={ 'console_scripts': [ 'bids = reports.u...
Python
0
@@ -143,16 +143,42 @@ cache',%0A + 'pytz',%0A 'iso8601'%0A %5D%0A%0A%0Asetu
2a66c8be39b5bcd62115d33ed80a356fbe0d40db
update dependency on graphenelib
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs')) VERSION = '0.1....
Python
0
@@ -1304,15 +1304,15 @@ elib -= +%3E =0.5. -2 +3 %22,%0A @@ -1417,16 +1417,55 @@ for AES +, installed through graphenelib already %0A %5D,%0A
a734f34497d0814b8b6f7c3c7d48aad706cbb74e
Add missing comma to setup.py classifiers list.
setup.py
setup.py
import versioneer versioneer.versionfile_source = 'bom_data_parser/_version.py' versioneer.versionfile_build = 'bom_data_parser/_version.py' versioneer.tag_prefix = 'v' versioneer.parentdir_prefix = 'bom_data_parser-' from setuptools import setup setup( name='bom_data_parser', version=versioneer.get_version()...
Python
0
@@ -988,16 +988,17 @@ Modules' +, %0A
0ebda79d3747e4d9570a249dcf7888b15c4f239b
changed name to bird-feeder
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup version = '0.1.0' description = 'Bird Feeder publishes Thredds metadata catalogs to a Solr index service with birdhouse schema.' long_description = ( open('README.rst').read() + '\n' + open('AUTHORS.rst').read() + '\n' +...
Python
0.999766
@@ -824,24 +824,25 @@ p(name='bird +- feeder',%0A
8b35364b6f5d7cec1c120667a2ade78fb375b9d4
Bump version to 0.4
setup.py
setup.py
from setuptools import setup requires = [ 'pyramid', 'SQLAlchemy', 'transaction', 'validate_email', 'pyDNS', 'passlib', 'pycrypto', 'requests', 'python-slugify', 'uritemplate', 'pyyaml', ] setup(name='sofa', version='0.3', description='A lightweight REST API...
Python
0
@@ -268,17 +268,17 @@ sion='0. -3 +4 ',%0A @@ -516,9 +516,9 @@ l/0. -3 +4 ',%0A
c7d2753169aa249a880d35bde4f68a891185503f
bump version
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 -*- """ Uses the official Khronos-XML specs to generate a GL/GLES/EGL/GLX/WGL Loader made for your needs. Glad currently supports the languages C, D and Volt. Note: this package might be slightly outdated, for always up to date versions checkout the GitHub repository: https://...
Python
0.000003
@@ -468,17 +468,17 @@ on='0.1. -4 +5 a0',%0A
d06596219755d02d76852f43ef42bcbd4592baef
Remove unuseful coding comment in setup.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import with_statement import os from setuptools import setup, find_packages import wechatpy readme = 'README.md' if os.path.exists('README.rst'): readme = 'README.rst' with open(readme) as f: long_description = f.read() with open('requirements.txt...
Python
0.000001
@@ -19,32 +19,8 @@ hon%0A -# -*- coding: utf-8 -*-%0A from
60645ea79cf4f6dde6d13a086603f4f01107511d
update python version
setup.py
setup.py
import os import re import sys import platform import subprocess import multiprocessing from setuptools import setup, Extension from setuptools.command.build_ext import build_ext from distutils.version import LooseVersion cores = multiprocessing.cpu_count()*1.25 threads="-j" + str(int(cores)) class CMakeExtension...
Python
0
@@ -771,11 +771,11 @@ ='0. -6.7 +7.0 ',%0A
924f8a0f7768b26c3dfe275d57be6d17ebdb268f
Remove simplejson from dependencies.
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='phabricator', version='0.1.1', author='DISQUS', author_email='mike@disqus.com', url='http://github.com/disqus/python-phabricator', description = 'Phabricator API Bindings', packages=find_packages(), zip_safe...
Python
0
@@ -381,18 +381,8 @@ s=%5B' -simplejson '%5D,%0A
110439e39a06ba6c398b6aed22f88c567fff1ff4
update mead-layers to be same as mead-baseline (#629)
setup.py
setup.py
import os import re import ast import shutil from itertools import product from setuptools import setup, find_packages def get_version(file_name, version_name="__version__"): with open(file_name) as f: tree = ast.parse(f.read()) for node in ast.walk(tree): if isinstance(node, ast.Assig...
Python
0
@@ -2815,17 +2815,43 @@ d-layers -' +==%7B%7D'.format(About.VERSION) ,%0A
89bb9d064f5d05709f89d47a9de4db96fac8abb4
version bump
setup.py
setup.py
""" setup.py ~~~~~~~~~~~~~ :copyright: (c) 2016 Sander Bollen :copyright: (c) 2016 Leiden University Medical Center :license: MIT """ from os.path import abspath, dirname, join from setuptools import setup readme_file = join(abspath(dirname(__file__)), "README.md") with open(readme_file) as desc_handle: long_de...
Python
0.000001
@@ -385,11 +385,9 @@ =%220. -1.1 +2 %22,%0A
def04ba891b99cc5217c3eb662b58811d5ffb479
Add 'clean'
setup.py
setup.py
import subprocess import sys SETUPTOOLS_MIN_VERSION="0.14.1" # if setuptools is too old then quit - vext seems to trip some # bugs on older versions causing serious issues... if set(["install", "develop", "build", "sdist"]).intersection(sys.argv): print('Ensure setuptools >= {}'.format(SETUPTOOLS_MIN_VERSION)) ...
Python
0.999998
@@ -511,17 +511,52 @@ normpath +, relpath%0Afrom shutil import rmtree %0A - %0Afrom di @@ -652,16 +652,47 @@ t setup%0A +from setuptools import Command%0A from set @@ -1539,16 +1539,851 @@ dest)%0A%0A +class CleanCommand(Command):%0A %22%22%22Custom clean command to tidy up the project root.%22%22%22%0A CL...
6b320ac9b154079c967b7f2e96d5c2aa8cd2340a
version bump
setup.py
setup.py
import os from setuptools import setup, find_packages install_requires = [ 'umysql', 'pymysql', ] setup( name = 'umysqldb', description = "MySQLdb compatible wrapper for ultramysql", long_description = open(os.path.join(os.path.dirname(__file__), 'README.rs...
Python
0.000001
@@ -344,16 +344,18 @@ n = '1.0 +.1 ',%0A p
fb9caf05bf526a2d4cc08e8463667d9eed548fdd
Revert "completion: Install via setup.py"
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function import scuba.version from setuptools import setup from setuptools.command.build_py import build_py import os.path from subprocess import check_call class BuildHook(build_py): def run(self): print('Building scubainit...') check_call(['make'...
Python
0
@@ -1186,97 +1186,8 @@ %7D,%0A - data_files = %5B%0A ('/etc/bash_completion.d', %5B'bash_completion/scuba'%5D),%0A %5D,%0A
642b2f2782bb57d64f2a5ed3f0e5c99614b8b9eb
Fix project description for pypi
setup.py
setup.py
from setuptools import setup, find_packages requirements = [ 'GitPython == 1.0.1', 'docker-py >= 1.7.0', 'requests ==2.7.0' ] setup_requirements = [ 'flake8' ] setup( name='docker-release', version='0.3-SNAPSHOT', description='Tool for releasing docker images.', author='Grzegorz Kokos...
Python
0.000002
@@ -168,24 +168,439 @@ 'flake8'%0A%5D%0A%0A +description = %22%22%22%0ATool for releasing docker images. It is useful when your docker image files%0Aare under continuous development and you want to have a%0Aconvenient way to release (publish) them.%0A%0AThis utility supports:%0A%0A - tagging git repository when a dock...
322b45c346e32917bebabdd2b4bfa0f640644baa
fix small bug in setup.py
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name="send_nsca", version="0.1.3", author="Yelp", author_email="yelplabs@yelp.com", url="http://github.com/Roguelazer/send_nsca", description='pure-python nsca sender', classifiers=[ ...
Python
0
@@ -477,16 +477,17 @@ LGPLv2)%22 +, %0A @@ -518,16 +518,17 @@ itoring%22 +, %0A
4de2543280932f361c657626a745bc02226439e1
Bump schema salad version dep to 1.17.20160820171034
setup.py
setup.py
#!/usr/bin/env python import os import sys import shutil import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.rst') try: import gittaggers tagger = gittaggers.EggInfoFromGit except Import...
Python
0
@@ -1696,13 +1696,13 @@ 8201 -65726 +71034 ',%0A
e2d93ba4def0b57e9784d06e77c3a88a2e21e01c
add support for installing requirements.txt dependencies from both pip and setuptools by using dependency_links in setup to ensure the correct package is installed from github instead of the version on pypi
setup.py
setup.py
#!/usr/bin/env python # # Copyright (c) 2011,2012,2013 Canonical Ltd. # # This file is part of: SST (selenium-simple-test) # https://launchpad.net/selenium-simple-test # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You...
Python
0
@@ -1196,16 +1196,21 @@ irements +_file = os.pa @@ -1247,28 +1247,28 @@ s.txt')%0A -REQUIREMENTS +requirements = filte @@ -1292,16 +1292,21 @@ irements +_file ).read() @@ -1319,16 +1319,127 @@ lines()) +%0AREQUIREMENTS = %5Breq for req in requirements if 'git+git' not in req%5D%0AREQUIREMENTS.append('sauceclie...
b8840cdb0233069dbe6a8a16f9ba9dff134e97f1
Version 0.8.2 - hopefully toml will hit 1.0 soon
setup.py
setup.py
from distutils.core import setup with open("README.md") as readmefile: readme = readmefile.read() setup(name='toml', version='0.8.1', description="Python Library for Tom's Obvious, Minimal Language", author="Uiri Noyb", author_email="uiri@xqz.ca", url="https://github.com/uiri/toml", ...
Python
0
@@ -49,10 +49,11 @@ DME. -md +rst %22) a @@ -139,9 +139,9 @@ 0.8. -1 +2 ',%0A
cc76dad0916ee7772b167c3e463a102842080a52
Fix 'name' of extension
setup.py
setup.py
#!/usr/bin/python -u # # Python Bindings for XZ/LZMA backported from Python 3.3.0 # # This file copyright (c) 2012 Peter Cock, p.j.a.cock@googlemail.com # See other files for separate copyright notices. import sys, os from warnings import warn from distutils import log from distutils.command.build_ext import build_ex...
Python
0.998708
@@ -1079,30 +1079,30 @@ n('backports -/ +. lzma -/ +. _lzma',%0A
b52fa1ce6f6f60e65f3523ed824ebdd8b871a4e0
Increment version to 2.0.0a2
setup.py
setup.py
# -*- coding: utf-8 -*- import os import re import shutil from codecs import open from setuptools import setup, find_packages from setuptools.command.install import install class CustomInstallCommand(install): def run(self): install.run(self) config_path = os.path.join(os.path.expanduser('~'), '...
Python
0.003533
@@ -1231,17 +1231,17 @@ ='2.0.0a -1 +2 ',%0A%0A
342154692e8147eddde82c55520e58d79ce9947f
bump version
setup.py
setup.py
from setuptools import setup, find_packages from distutils.extension import Extension from Cython.Build import cythonize import numpy #directive_defaults['linetrace'] = True #directive_defaults['binding'] = True extensions = [ Extension('uncurl.nolips', ['uncurl/nolips.pyx'], extra_compile_args=['...
Python
0
@@ -736,17 +736,17 @@ on='0.2. -7 +8 ',%0A
ec81e75b8860401c9f808d599430757216687912
update email
setup.py
setup.py
# Copyright (c) 2014. Mount Sinai School of Medicine # # 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.000001
@@ -1736,23 +1736,17 @@ il=%22alex - %7Bdot%7D +. rubinste @@ -1751,26 +1751,15 @@ teyn - %7Bat%7D gmail %7Bdot%7D +@gmail. com%22
c73e147b9d2a99bec10ace97a1f6e972083c46b5
update version
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="openbaton-cli", version="3.2.7", author="Open Baton", author_email="dev@openbaton.org", description="The Open Baton CLI", license="Apach...
Python
0
@@ -194,9 +194,9 @@ 3.2. -7 +8 %22,%0A
d7626ebc6a10f7dbb24ebd6839f79e910cd883e5
add main & refac. const -> vars
yamlenc/yamlenc.py
yamlenc/yamlenc.py
#!/usr/bin/env python # # Copyright (c) 2016, IPnett AS # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, this # list o...
Python
0.000002
@@ -2945,47 +2945,56 @@ r)%0A%0A -%0Aif __name__ == %22__main__%22:%0A%0A PARSER +def main():%0A %22%22%22 Main function %22%22%22%0A parser = a @@ -3044,38 +3044,38 @@ YAML ENC')%0A%0A -PARSER +parser .add_argument('n @@ -3155,30 +3155,30 @@ name')%0A%0A -PARSER +parser .add_argumen @@ -3256,38...
c12427a266e4685a1c88230ea2231ef0c253d4bd
fix version of `passlib`
setup.py
setup.py
import os import sys import msgfmt from setuptools import setup from setuptools.command.install_lib import install_lib as _install_lib from setuptools.command.develop import develop as _develop from distutils.command.build import build as _build from setuptools.command.test import test as TestCommand from distutils.cm...
Python
0
@@ -3765,17 +3765,68 @@ 'passlib -' + %3E=1.6, %3C1.7' # version 1.7 will drop python2 suport %0A
f75ff79e3e0034840f24fc36c06e74db6c19f94b
version bump
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs')) VERSION = '0.1....
Python
0.000001
@@ -317,9 +317,9 @@ 0.1. -8 +9 '%0A%0As
b15747ab3173e24c00a986c7ab109cbdeaec006d
use hdlConvertorAst>=0.4, pycocotb>=0.8, pyDigitalWaveTools>=0.8
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- from os import path from setuptools import setup, find_packages this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() setup(name="hwt", version="3.3", d...
Python
0.000002
@@ -1308,17 +1308,17 @@ rAst%3E=0. -3 +4 %22, # co @@ -1453,17 +1453,17 @@ cotb%3E=0. -7 +8 %22, # si @@ -1507,17 +1507,17 @@ ools%3E=0. -6 +8 %22, # si
954f8e7c86bd4a6e6015022ee234beebbbee279a
update version to 0.4.2 for package build #51
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ezmomi', version='0.4.1', author='Jason Ashby', author_email='jashby2@gmail.com', packages=['ezmomi'], package_dir={'ezmomi': 'ezmomi'}, package_data={'ezmomi': ['config/config.yml.ex...
Python
0
@@ -132,17 +132,17 @@ on='0.4. -1 +2 ',%0A a
48febbab1988e7904831938281516a306a45db94
add plugins
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup files = [ "ansible/module_utils", "ansible/modules/dcos", ] long_description = open('README.rst', 'r').read() setup( name='ansible-modules-dcos', version='1.2.0', description='DCOS Ansible Modules', long_description=long_description, url=...
Python
0.000001
@@ -51,24 +51,47 @@ %0A%0Afiles = %5B%0A + %22ansible/plugins%22,%0A %22ansible @@ -245,17 +245,17 @@ on='1.2. -0 +1 ',%0A d
6b58627648dc315e98091ccc76131079914457b9
set version 3.0dev11
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import print_function from setuptools import setup, find_packages import os import stat import sys #VERSION="2.1dev4" VERSION="3.0dev10" # Taken from kennethreitz/requests/setup.py package_directory = os.path.realpath(os.path.dirname(__file__)) def get_file_contents(file_path...
Python
0.000001
@@ -168,17 +168,17 @@ %223.0dev1 -0 +1 %22%0A%0A# Tak
0286628ee91663ae7cd6ee7a06043bdf68081092
Bump version to 0.3.1
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='graypy', version='0.3', description="Python logging handler that sends messages in GELF (Graylog Extended Log Format).", long_description=open('README.rst').read(), keywords='logging gelf graylog2 graylog udp amqp', ...
Python
0.000001
@@ -104,16 +104,18 @@ ion='0.3 +.1 ',%0A d
250f867c14c4486ab5e86e27f8d2fbf41875b85b
adding common
setup.py
setup.py
#!/usr/bin/env python """ Set up script for ICQSol pletzer@psu.edu """ from distutils.core import setup setup(name='ICQSol', version='0.1', description='Solving engineering problems on the web', author='Alex Pletzer', author_email='pletzer@psu.edu', url='https://github.com/pletzer/icqso...
Python
0.998482
@@ -453,16 +453,33 @@ tools', +%0A 'icqsol. @@ -493,16 +493,39 @@ eometry' +, 'icqsol.tools.common' %5D,%0A
0dcdefd01930c0e76fc446cd26a7fd04771f763a
Prepare openprocurement.auction 1.0.0.dev45.
setup.py
setup.py
from setuptools import setup, find_packages import os version = '1.0.0.dev44' setup(name='openprocurement.auction', version=version, description="", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), # Get more strings f...
Python
0
@@ -69,17 +69,17 @@ 0.0.dev4 -4 +5 '%0A%0Asetup
be8c0bf0000e10a8e33581dddd70ea5cec84ddeb
Check if runtime is Python2
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages with open('README.rst') as readme_file: README = readme_file.read() install_requires = [ 'click==6.2', 'botocore>=1.4.8,<2.0.0', 'virtualenv>=15.0.0,<16.0.0', 'typing==3.5.2.2', ] setup( name='chalice', version='0.5.0', ...
Python
0.999999
@@ -59,16 +59,26 @@ ackages%0A +import sys %0A%0Awith o @@ -274,16 +274,105 @@ .2',%0A%5D%0A%0A +if sys.version_info %3C (3, 0):%0A raise RuntimeError(%22chalice requires only Python 2.7%22)%0A %0Asetup(%0A
de3775978d3a342afe12dbd5c6f9eda468ee3ac6
Update setup.py
setup.py
setup.py
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst import glob import os import sys import ah_bootstrap from setuptools import setup #A dirty hack to get around some early import/configurations ambiguities if sys.version_info[0] >= 3: import builtins else: import __builtin_...
Python
0
@@ -3454,11 +3454,9 @@ ==1. -0.7 +1 ','p @@ -3474,9 +3474,11 @@ .1.1 -7 +8.1 ','s
6b9ef0d12826d1fdcbf81da17ae76a125d2ecaae
Bump version to 0.2.3
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import find_packages, setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(sel...
Python
0.000001
@@ -463,17 +463,17 @@ on='0.2. -0 +3 ',%0A
b30ce86b57b764c7b736e3b688acc98c3cc08d5c
Increment version to 0.8.0
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs from setuptools import setup description = codecs.open('README.md', encoding='utf-8').read() setup(name="publicsuffixlist", version="0.7.14", packages=["publicsuffixlist"], package_data={ "publicsuffixlist": [ "publ...
Python
0.000014
@@ -201,12 +201,11 @@ =%220. -7.14 +8.0 %22,%0A
e8c4cc1647199da5a45f8144a5fa6dd97c4719aa
Version number upgraded
setup.py
setup.py
from setuptools import setup, find_packages version = "0.5.3" long_description = "" try: long_description=file('README.md').read() except Exception: pass license = "" try: license=file('LICENSE').read() except Exception: pass setup( name = 'redmine-cmd', version = version, description =...
Python
0.000001
@@ -55,11 +55,11 @@ %220. -5.3 +6.0 %22%0A%0Al
d308453a8339406e3919f98aed9380472c33eabb
add root_numpy.tests
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Extension import distutils.util import subprocess import numpy as np import os from glob import glob root_inc = '' root_ldflags = [] try: root_inc = subprocess.Popen(["root-config", "--incdir"], stdout=subprocess.PIPE).communicate()[0].strip() roo...
Python
0.000024
@@ -1750,24 +1750,43 @@ 'root_numpy' +,'root_numpy.tests' %5D,%0A packa
cbff9c217c6214e9b50f8ec07047e4fe7c0360e4
fix spelling error
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.998334
@@ -4712,16 +4712,17 @@ ll_requi +r es=%5B%22pyt
f0fdb40ad8d1a4e6f7f9e30471a9c16a6c4361f2
Remove cyclical dependency
setup.py
setup.py
from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] def initialize_options(self): TestCommand.initialize_options(self) ...
Python
0.000815
@@ -753,30 +753,8 @@ r',%0A - 'invisibleroads',%0A @@ -1100,16 +1100,18 @@ ion='0.2 +.1 ',%0A d
e74e1d9d4dbd50b37d17b4827332cb4256eb7245
Change syutil dependency link to point at github.
setup.py
setup.py
import os from setuptools import setup, find_packages # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(os.path...
Python
0
@@ -762,26 +762,25 @@ @git -.openmarket.com/tn +hub.com:matrix-or g/sy
c2576a35ea89ce17a507c4d45b9cde413091bf97
version bump
setup.py
setup.py
from setuptools import setup setup(name='pyvue', version='0.1.1', description='Generate HTML strings in pure python, or JSX style code', url='http://github.com/oakfang/pyvue', author='Alon Niv', author_email='oakfang@gmail.com', license='MIT', packages=['pyvue'], zip_saf...
Python
0.000001
@@ -62,17 +62,17 @@ on='0.1. -1 +2 ',%0A
656f0d2da7b27ccb3f523c66b7f62a69e6e2691e
add extra_require for ced and nwb
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os long_description = open("README.rst").read() install_requires = ['packaging', 'numpy>=1.18.5', 'quantities>=0.12.1'] extras_require = { 'igorproio': ['igor'], 'kwikio': ['scipy', 'klusta'], ...
Python
0
@@ -454,16 +454,61 @@ edflib'%5D +,%0A 'ced': %5B'sonpy'%5D,%0A 'nwb': %5B'pynwb'%5D, %0A%7D%0A%0Awith
452ee008305a0128ead17633d5d15ca85726513c
Tweak dependency specs.
setup.py
setup.py
from __future__ import print_function from setuptools import setup, find_packages, Command import versioneer class MakeExamples(Command): description = 'Create example scripts from IPython notebooks' user_options=[] def initialize_options(self): pass def finalize_options(self): pass ...
Python
0
@@ -2560,17 +2560,16 @@ etcdf': -%5B 'netCDF4 @@ -2576,17 +2576,16 @@ %3E=1.1.0' -%5D ,%0A @@ -2593,17 +2593,16 @@ 'dev': -%5B 'ipython @@ -2612,17 +2612,16 @@ l%5D%3E=3.1' -%5D ,%0A @@ -2807,17 +2807,16 @@ mples': -%5B 'matplot @@ -2824,17 +2824,16 @@ ib%3E=1.3' -%5D %0A %7D,%0A
b37c5db65355353630debda2f0ddb604994d345b
Add python implementation tag for pypi.
setup.py
setup.py
"""Setup for pyexperiment """ from __future__ import print_function # from __future__ import unicode_literals from __future__ import division from __future__ import absolute_import import os from setuptools import setup read_plain = lambda fname: open( os.path.join(os.path.dirname(__file__), fname), 'r').read() t...
Python
0
@@ -859,17 +859,17 @@ n=%220.1.1 -7 +8 %22,%0A a @@ -1702,16 +1702,87 @@ : 3.4',%0A + 'Programming Language :: Python :: Implementation :: CPython',%0A %5D,%0A)
79ba247c70764cb31498637fed153f166f1096b7
Increment version.
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup __version__ = '0.1.0' setup( name='highlander-one', version=__version__, author='Christopher T. Cannon', author_email='christophertcannon@gmail.com', description='A simple decorator to ensure that your ' 'program is only running on...
Python
0
@@ -64,17 +64,17 @@ = '0.1. -0 +1 '%0A%0Asetup
333067f1bed8af3bf6ef72fb9996b2d73c1649bd
include data files; fixed #17
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import setuptools setuptools.setup( name = 'opoona', version = '0.1.0', description = 'Opoona, the thicket opener.', license = 'MIT', author = 'Pine, Mihyaeru', author_email = 'pinemz@gmail.com, mihy...
Python
0.000001
@@ -489,16 +489,63 @@ kets'%5D,%0A + package_data = %7B'opoona': %5B'*.yaml'%5D%7D,%0A entr
ecdaedcec8e63facad0cb49fbdd91f9ae2b92d50
add tqdm
setup.py
setup.py
import os from distutils.core import setup setup( name='fuzzer', version='1.1', description="Python wrapper for multiarch AFL", packages=['fuzzer', 'fuzzer.extensions'], data_files = [ ("bin", (os.path.join("bin", "create_dict.py"),)) ], scripts = [ 'shellphuzz' ], install_requires=['angr', 'shellp...
Python
0.00115
@@ -341,12 +341,20 @@ ish-afl' +, 'tqdm' %5D%0A)%0A
4c2e612aeb34f910d484b53894b888b9c1042f09
Make mongoengine field for UsageKeys expect a Location
common/lib/xmodule/xmodule/modulestore/mongoengine_fields.py
common/lib/xmodule/xmodule/modulestore/mongoengine_fields.py
""" Custom field types for mongoengine """ import mongoengine from xmodule.modulestore.locations import SlashSeparatedCourseKey, Location from types import NoneType from xmodule.modulestore.keys import CourseKey class CourseKeyField(mongoengine.StringField): """ Serializes and deserializes CourseKey's to mong...
Python
0.000002
@@ -2207,39 +2207,24 @@ neType, -SlashSeparatedCourseKey +Location ))%0A @@ -2266,24 +2266,20 @@ return -locati +N on +e %0A
bc57c91682ddb10749185c1526eeae9e9b049471
correct setup.py
setup.py
setup.py
import io import os import re from distutils.core import setup def read(path, encoding='utf-8'): path = os.path.join(os.path.dirname(__file__), path) with io.open(path, encoding=encoding) as fp: return fp.read() def version(path): """Obtain the packge version from a python file e.g. pkg/__init_...
Python
0.000002
@@ -1296,20 +1296,26 @@ ersion(' -KECA +kernel_eca /__init_
bc6e671201dbe3fd8e832a8911b8be83a26e48b0
Update dev requirements
setup.py
setup.py
#!/usr/bin/env python # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. import os import re import sys from setuptools import find_packages, setup from setuptools.comma...
Python
0
@@ -1286,17 +1286,17 @@ est==0.4 -7 +8 %22,%0A @@ -1341,11 +1341,11 @@ ==1. -1.0 +2.1 %22,%0A @@ -1364,13 +1364,13 @@ st== -6.2.5 +7.1.2 %22,%0A @@ -1387,17 +1387,17 @@ hinx==4. -2 +3 .0%22,%0A @@ -1414,11 +1414,11 @@ =3.2 -4.4 +5.0 %22,%0A @@ -1443,17 +1443,17 @@ ions==2. -8 +9 .1%22,%0A @@ -...
2018d7275403d412b448f9ddb038dcf53323ed91
Update numpy requirement from <1.21.0,>=1.11.0 to >=1.11.0,<1.22.0
setup.py
setup.py
# -*- coding: utf-8 -*- import pathlib from setuptools import setup ROOT_DIR = pathlib.Path(__file__).parent def _get_version(): about = {} ver_mod = ROOT_DIR / 'csaps' / '_version.py' exec(ver_mod.read_text(), about) return about['__version__'] def _get_long_description(): readme = ROOT_DIR ...
Python
0.000007
@@ -657,17 +657,17 @@ .0, %3C1.2 -1 +2 .0',%0A
ca98cc4a2367d847302d4f6ceff4d583e8ba2f0b
Update setup.py file
setup.py
setup.py
""" use 'python setup.py install' while in file folder in anaconda to install this package """ from setuptools import setup, find_packages setup( name='2016_summer_XPD', version='0.0.2', packages=find_packages(), description='Experimental code for summer project', zip_safe=False, url='https://...
Python
0.000001
@@ -155,23 +155,16 @@ me=' -2016_summer_XPD +xpd_view ',%0A @@ -181,11 +181,13 @@ ='0. -0.2 +vista ',%0A @@ -236,44 +236,40 @@ on=' -Experimental code for summer project +Visualization Code for Beam line ',%0A
c8a92a72eaff9a4c271d56cd48bfca3b7e5b31fa
use python3
setup.py
setup.py
#!/usr/bin/evn python2 from setuptools import setup, find_packages setup(name='pprof', version='0.9.8', packages=find_packages(), install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0", "regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6", ...
Python
0.000201
@@ -9,18 +9,18 @@ in/e -v n +v python -2 +3 %0A%0Afr
bcf556284d51f3bc3e4b8b4272fc2d270b882f61
Increment Version number
setup.py
setup.py
from distutils.core import setup setup( name='scrAPI Utils', version='0.4.4', 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.000012
@@ -76,17 +76,17 @@ on='0.4. -4 +5 ',%0A a
37fe07b9ec696a2ec7b5f091894363f21a62e246
Use additional include directories on Darwin.
setup.py
setup.py
#!/usr/bin/python -u # # Python Bindings for LZMA # # Copyright (c) 2004-2008 by Joachim Bauch, mail@joachim-bauch.de # 7-Zip Copyright (C) 1999-2005 Igor Pavlov # LZMA SDK Copyright (C) 1999-2005 Igor Pavlov # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser...
Python
0
@@ -1670,16 +1670,183 @@ %22.%22,%0A%5D%0A%0A +if sys.platform == 'darwin':%0A # additional include directories are required when compiling on Darwin platforms%0A include_dirs += %5B%0A %22/var/include%22,%0A %5D%0A%0A library_
700c5d282ffd62b7d66ffde1ed493db092d87aae
Update support for 3.6.
setup.py
setup.py
#!/usr/bin/python3 # -*- coding: utf-8 -*- # # wxcast: A Python API and cli to collect weather information. # # Copyright (C) 2017 Sean Marlow # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, e...
Python
0
@@ -2033,16 +2033,65 @@ : 3.5',%0A + 'Programming Language :: Python :: 3.6',%0A %5D,%0A
0fef2e0c3aa4367c6afc360847cb4faaf60bce81
Set version to 2013.2
setup.py
setup.py
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compli...
Python
0.000002
@@ -1053,17 +1053,17 @@ , '2013. -1 +2 '),%0A
59fbd9417ff04deb7b3ef4be3ad06ac59c234140
Version bump: 1.1.0
setup.py
setup.py
#!/usr/bin/python3 from setuptools import setup, find_packages setup( name = 'bjarkan', version = '1.0.1', description = 'Bluetooth command line utility', long_description = open( 'README.rst' ).read(), keywords = 'bluez bluetooth cli', author = 'GetWellNetwork', author_email = 'willdeberry@gm...
Python
0.000001
@@ -104,11 +104,11 @@ '1. -0.1 +1.0 ',%0A
3de79ecba9a9bbef39cf324cc5dc62f703767cc3
Change author_email to my own email
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='django-afip', version='0.8.0', description='AFIP integration for django', author='Hugo Osvaldo Barrera', author_email='hbarrera@z47.io', url='https://gitlab.com/hobarrera/django-afip', license='ISC', packag...
Python
0.000002
@@ -219,19 +219,19 @@ l='h +ugo@ barrera -@z47 .io'