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
ca1ef6d34d5ba04c6c1364b60d10314d49d00a8b
add classifiers to setup.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup setup( name='easymail', version='0.1.0', author='Mathias Fussenegger', author_email='pip@zignar.net', url='http://pypi.python.org/pypi/easymail/', license='LICENSE.txt', description='abstraction layer on top of...
Python
0.000001
@@ -437,11 +437,496 @@ =%5B%0A %5D +,%0A classifiers=%5B%0A 'Programming Language :: Python',%0A 'Programming Language :: Python :: 2.7',%0A 'Programming Language :: Python :: 3.2',%0A 'Programming Language :: Python :: 3.3',%0A 'Intended Audience :: Developers',%0A 'Int...
ca166c74914f570fa08d95380760fc5a1bea59ba
build new fast integration
setup.py
setup.py
# coding: utf-8 from __future__ import division, print_function __author__ = "adrn <adrn@astro.columbia.edu>" # Standard library import os from distutils.core import setup from distutils.extension import Extension # Third-party import numpy as np from Cython.Distutils import build_ext from Cython.Build import cytho...
Python
0
@@ -892,19 +892,73 @@ op853.c%22 +,%0A %22gary/integrate/1d/simpson.c%22 %5D,%0A - @@ -1103,18 +1103,16 @@ grate)%0A%0A -# dynamics @@ -1143,18 +1143,16 @@ ics.*%22,%0A -# @@ -1189,18 +1189,16 @@ .pyx%22%5D,%0A -# @@ -1242,18 +1242,16 @@ _path%5D)%0A -# ex...
2ffa5e8f5c8b3beb0026727d12f8d83cc9f931fe
Bump up version
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='djaccount', version='0.0.3-alpha2', description='Django account manager', author='Yehuda Deutsch', author_email='yeh@uda.co.il', l...
Python
0
@@ -195,16 +195,16 @@ 0.0. -3 +4 -alpha -2 +1 ',%0A
f7909707a96d82492a5b569cc50939b379c64b5d
Bump version to 0.0.30
setup.py
setup.py
from setuptools import setup setup(name='servicemanager', version='0.0.29', description='A python tool to manage developing and testing with lots of microservices', url='https://github.com/hmrc/service-manager', author='vaughansharman', license='Apache Licence 2.0', packages=['serv...
Python
0
@@ -76,10 +76,10 @@ 0.0. -29 +30 ',%0A
509bf6be9bd139f79a16a32bba45d3198d1da74a
Fix for setup.py
setup.py
setup.py
"""Setup script for oct2py package. """ DISTNAME = 'oct2py' DESCRIPTION = 'Python to GNU Octave bridge --> run m-files from python.' LONG_DESCRIPTION = open('README.rst', 'rb').read().decode('utf-8') MAINTAINER = 'Steven Silvester' MAINTAINER_EMAIL = 'steven.silvester@ieee.org' URL = 'http://github.com/blink1073...
Python
0
@@ -1158,9 +1158,16 @@ d:%0D%0A -%09 + line
2e63797833612b5d0da4cca51547fd5d2b1466d9
Use README as the long description for the package
setup.py
setup.py
#!/usr/bin/env python ###################################################################### # Copyright (C) 2011,2012,2014 Jaakko Luttinen # # This file is licensed under Version 3.0 of the GNU General Public # License. See LICENSE for a text of the license. ###########################################################...
Python
0
@@ -1062,205 +1062,8 @@ ##%0A%0A -LONG_DESCRIPTION = %5C%0A%22%22%22%0ABayesian inference tools for Python.%0A%0AThe package provides tools for building models and performing%0Aposterior inference using variational Bayesian message passing.%0A%22%22%22%0A%0A NAME @@ -1292,16 +1292,16 @@ 0.3.1'%0A%0A - if __nam @...
f46dec1933f4a4c4f7644ee4545637384c236834
version bump
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
@@ -1298,17 +1298,17 @@ on=%220.2. -1 +2 %22,%0A
bae8e062948654bca62c4ede915bbf04c28f1eab
Version bump
setup.py
setup.py
from distutils.core import setup with open('requirements.txt') as req: content = req.readlines() setup( name = 'djsw_wrapper', packages = ['djsw_wrapper'], version = '0.2.0', description = 'Allows to build REST API directly from Swagger schema', author = 'Alex Revin', author_email = 'lyssdod@gmail.com...
Python
0.000001
@@ -176,17 +176,17 @@ = '0.2. -0 +1 ',%0A des @@ -453,17 +453,17 @@ ive/0.2. -0 +1 .tar.gz'
d13a161cf93b100154140d025097b98dd65b3c8b
Remove Servee dependency
setup.py
setup.py
import os import sys from fnmatch import fnmatchcase from distutils.util import convert_path from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # Provided as an attribute, so you can append to these instead # of replicating them: standar...
Python
0
@@ -3556,32 +3556,34 @@ ires = %5B%0A + # 'django-servee%3E @@ -3971,8 +3971,9 @@ False,%0A) +%0A
59249be2ea3a6c8b9d0f16ca91f6e7c83b04d701
update myst-parser version
setup.py
setup.py
from os import path from io import open import re 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() with open(path.join(this_directory, 'jupytext/version.py')) as f...
Python
0
@@ -2085,17 +2085,13 @@ rser -= +~ =0.8 -.0a3 ; py
db88c98cc1b7ba76a3f8efa417bf241d9eec4532
Update to version 0.0.2
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="cfn", version="0.0.1", description="Small script to manipulate AWS CloudFor...
Python
0
@@ -260,9 +260,9 @@ 0.0. -1 +2 %22,%0A%09
bc828d621dbea3e9510c05c1d40b952b710c6187
Update description and link in setup.py
setup.py
setup.py
"""Packaging settings.""" from codecs import open from os.path import abspath, dirname, join from setuptools import setup from formica import __version__ this_dir = abspath(dirname(__file__)) with open(join(this_dir, 'README.md'), encoding='utf-8') as file: long_description = file.read() setup( name='form...
Python
0
@@ -372,14 +372,18 @@ ple +AWS Cloud -f +F orma @@ -482,31 +482,25 @@ hub.com/ -cloudthropology +flomotlik /formica
05f8743a0047767dd46cdef3788fef2ede8e9ff0
add Pillow to requirements
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-vkontakte-postcard', version=__import__('vkontakte_postcard').__version__, description='Post photo to vk and add comment to it', long_description=open('README.md').read(), author='krupin.dv', author_email='krupin.dv19@gmail.com', ...
Python
0
@@ -623,24 +623,42 @@ _requires=%5B%0A + 'Pillow',%0A 'dja
49b85784487bd25c1e0b231c862fd7a758b55aae
Clean up left-overs after changing to using publish
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 # Copyright 2017-2019 The FIAAS Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
Python
0
@@ -1031,54 +1031,8 @@ 1',%0A - 'gitdb2==2.0.6',%0A %22GitPython==2.1.14%22,%0A %5D%0A%0A# @@ -1130,59 +1130,8 @@ = %5B%0A - # %22pluggy==0.12.0%22,%0A # %22prospector==1.9.0%22,%0A %5D%0A%0A%0A @@ -2191,55 +2191,8 @@ %22%5D,%0A - %22release%22: %5B%22gitpython%22, %22twine%22%5D,%0A
5aa525ed26f34705c58d62ccf8a8945d0a64bd15
add url
setup.py
setup.py
from setuptools import setup setup( name='django-hibpwned', version='0.1', description='Django password validator based on haveibeenpwned.com API', url='', author='tombiasz', author_email='', license='MIT', packages=['haveibeenpwned'], zip_safe=False, install_requires=[ ...
Python
0.000013
@@ -163,16 +163,59 @@ url=' +https://github.com/tombiasz/django-hibpwned ',%0A a
8f2c6cb5da0c456cefe958db305292a0abda8607
Fix license trove classifier, bump to 1.0.1
setup.py
setup.py
# -*- coding: utf-8 -*- """setup.py -- setup file for antimarkdown """ import os from setuptools import setup README = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.rst') setup( name = "antimarkdown", packages = ['antimarkdown'], install_requires = [ 'lxml', ], package...
Python
0.000007
@@ -405,17 +405,17 @@ = %221.0. -0 +1 %22,%0A d @@ -858,19 +858,19 @@ oved :: -BSD +MIT License
f1b3d06093968259a6d92ae61baf2b6a02f397f6
Use logging module to display error information in setup.py
setup.py
setup.py
# encoding: utf-8 from setuptools import setup from setuptools.command.install import install from subprocess import call import sys # check availability of runtime dependencies def check_any(*packages): """Issue a warning if none of the packages is available.""" errors = [] for package in packages: ...
Python
0
@@ -125,16 +125,58 @@ port sys +%0Aimport logging%0A%0Alog = logging.getLogger() %0A%0A# chec @@ -450,31 +450,8 @@ or:%0A - import sys%0A @@ -499,113 +499,33 @@ -if len(errors) == 1:%0A print(%22Missing runtime dependency: %25s%22 %25 errors%5B0%5D)%0A else:%0A print( +log.war...
2be470569ebef5ae87bac267babf010d09165acc
Bump package version to 1.11.2
setup.py
setup.py
# coding: utf-8 from distutils.version import LooseVersion from setuptools import find_packages, setup def check_setuptools(): import pkg_resources st_version = pkg_resources.get_distribution('setuptools').version if LooseVersion(st_version) < LooseVersion('20.2.2'): exit('The Instana sensor requ...
Python
0
@@ -775,17 +775,17 @@ n='1.11. -1 +2 ',%0A
fa8089ff886c2d073d9a566e666802ee10c8af74
Revert default ai_timestamp
config/config_service.py
config/config_service.py
from configparser import ConfigParser, ParsingError from RULEngine.Util.singleton import Singleton class ConfigService(metaclass=Singleton): def __init__(self): self.config_dict = self._load_defaults() def load_file(self, input_config_file) -> None: config_parser = ConfigParser(allow_no_valu...
Python
0.000001
@@ -3521,17 +3521,17 @@ p%22: %220.0 -1 +5 %22,%0A
bd3b09b3a0dc7cc450d4a6806802712d521b2d22
Remove Python 2
setup.py
setup.py
#!/usr/bin/env python # -*- test-case-name: twistedchecker -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. from setuptools import find_packages, setup with open('README.rst') as f: longDescription = f.read() setup( name='twistedchecker', description='A Twisted coding standard ...
Python
0.99931
@@ -974,104 +974,8 @@ n%22,%0A - %22Programming Language :: Python :: 2%22,%0A %22Programming Language :: Python :: 2.7%22,%0A
8e970d665c874c16d56227e4acebdd0793f70ee2
version bump to 1.2.34
setup.py
setup.py
from distutils.core import setup setup(name='vyked', version='1.2.33', author='Kashif Razzaqui, Ankit Chandawala', author_email='kashif.razzaqui@gmail.com, ankitchandawala@gmail.com', url='https://github.com/kashifrazzaqui/vyked', description='A micro-service framework for Python', ...
Python
0
@@ -67,17 +67,17 @@ n='1.2.3 -3 +4 ',%0A
4e1360a3c340552be1145be6c474765bcfcf0379
write out imgfac/Version.py instead of using version.txt
setup.py
setup.py
# Copyright 2011 Red Hat, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
Python
0
@@ -737,88 +737,92 @@ ile_ -name = %22version.txt%22%0Atry:%0A if(not os.path.exists(version_file_name)):%0A +path = %22imgfac/Version.py%22%0Aversion_file = open(version_file_path, 'w')%0Apkg_version = sub @@ -834,11 +834,19 @@ ss.c -all +heck_output ('/u @@ -877,316 +877,104 @@ - _ - %3E %25s' %25 (v...
e544009bfdded85c6c3e69b34b0d2a74820a3fe7
Use pip-requirements.txt to populate install_requires
setup.py
setup.py
#!/usr/bin/python # # Surveilr - Log aggregation, analysis and visualisation # # Copyright (C) 2011 Linux2Go # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License # as published by the Free Software Foundation, either versi...
Python
0
@@ -833,16 +833,423 @@ setup%0A%0A +def get_install_requires():%0A install_requires = %5B%5D%0A with open('tools/pip-requirements.txt', 'r') as fp:%0A for l in fp:%0A l = l.strip()%0A if l.startswith('#'):%0A continue%0A elif l.startswith('-e'):%0A ...
f4be8bca302a5124aacbe817c35572e7e4923539
fix issue 217 by adding contrib to setup.py file
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """This module contains setup instructions for pytube.""" 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('LICENSE') as readme_file: licens...
Python
0
@@ -470,16 +470,34 @@ 'pytube' +, 'pytube.contrib' %5D,%0A u
0a859239eb82871a2ac576e1efc724cf696c3bf8
Extract a function that gets pytest-runner requirement
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import os.path import sys import setuptools MODULE_NAME = "pytablereader" REQUIREMENT_DIR = "requirements" pkg_info = {} class ReleaseCommand(setuptools.Command): user_options = [] def initia...
Python
0.999986
@@ -234,16 +234,102 @@ = %7B%7D%0A%0A%0A +def need_pytest():%0A return set(%5B%22pytest%22, %22test%22, %22ptr%22%5D).intersection(sys.argv)%0A%0A%0A class Re @@ -1412,77 +1412,8 @@ 2%22%5D%0A -needs_pytest = set(%5B%22pytest%22, %22test%22, %22ptr%22%5D).intersection(sys.argv)%0A pyte @@ -1461,16 +1461,17 @@ ...
9fa2174bd94832c5fdc831143fa119ded6f9dc86
Fix installation setup
setup.py
setup.py
# -*- coding: utf-8 -*- import re import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand # Plugins that will not work with python versions EXCLUDE_PLUGINS = { "2.6": ['mfr_ipynb'], "2.7": [], "3.3": ['mfr_docx', 'mfr_code_pygments'], "3.4": ['mfr...
Python
0.000001
@@ -1849,16 +1849,18 @@ atic/*/* +/* ', '*.tx
4fde19b4b77c80b5d36376a763f644fc3711d1e2
Add Missing Requirement
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
Python
0
@@ -348,16 +348,31 @@ clowder' +,%0A 'isodate' %0A%5D%0A%0Atest
15694fa2f7cc18f256dc2866e6206686de1ab795
remove gevent extras_require
setup.py
setup.py
#!/usr/bin/env python """ distutils/setuptools install script. See inline comments for packaging documentation. """ import os import sys import requests from requests.compat import is_py3 try: from setuptools import setup # hush pyflakes setup except ImportError: from distutils.core import setup if...
Python
0.000001
@@ -1409,164 +1409,8 @@ e)%0A%0A -# The async API in requests.async requires the gevent package.%0A# This is also not a required dependency.%0Aextras_require = %7B%0A 'async': %5B'gevent'%5D,%0A%7D%0A%0A setu @@ -1858,43 +1858,8 @@ es,%0A - extras_require=extras_require,%0A
2de635bbb747b21d04eac8530d1412be2c3cd9c1
Bump version
setup.py
setup.py
"""Nanoservice installation script https://github.com/walkr/nanoservice """ #!/usr/bin/env python import sys from setuptools import setup def read_long_description(readme_file): """ Read package long description from README file """ try: import pypandoc except (ImportError, OSError) as excepti...
Python
0
@@ -732,17 +732,17 @@ on='0.5. -2 +3 ',%0A p
e1200dfc7a882340037448ff64241786e828c8c3
Include changelog on pypi page
setup.py
setup.py
from setuptools import setup, find_packages setup( name='mittn', use_scm_version=True, description='Mittn', long_description=open('README.rst').read(), classifiers=[ "Programming Language :: Python :: 2.7" ], license='Apache License 2.0', author='F-Secure Corporation', au...
Python
0
@@ -161,16 +161,54 @@ ).read() + + '%5Cn' + open('CHANGELOG.rst').read() ,%0A cl
ed5119485dcaaf0ff5f68a365fd2cfa44cfd0a16
exclude test package from setup
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-tex', # version='0.2', description='A simple Django app to render Latex templates and compile them into Pdf files.', url='https://github.com/weinbusch/django-tex', author='Martin Bierbaum', license='MIT', keywords='django latex...
Python
0
@@ -72,29 +72,8 @@ x',%0A - # version='0.2',%0A @@ -329,16 +329,33 @@ ackages( +exclude=%5B'tests'%5D ),%0A u
fe03ecdf9562a9fb08d6a0adab5848d0deeef224
add `zvm` script to setup
setup.py
setup.py
# Copyright 2014 Rackspace, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in...
Python
0
@@ -1832,16 +1832,23 @@ =%5B'zvsh' +, 'zvm' %5D,%0A *
dafb7d1023d77c2b094b0de5296acc54818722f5
Bump version to 0.4.1
setup.py
setup.py
# dockerpty. # # Copyright 2014 Chris Corbyn <chris@w3style.co.uk> # # 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 ap...
Python
0
@@ -839,17 +839,17 @@ on='0.4. -0 +1 ',%0A d
b8c8c4a599b2f101c5d375553676950faa965fea
bump package versions
setup.py
setup.py
import setuptools from pathlib import Path PKG_NAME = "archivebox" REPO_URL = "https://github.com/pirate/ArchiveBox" BASE_DIR = Path(__file__).parent.resolve() SOURCE_DIR = BASE_DIR / PKG_NAME README = (BASE_DIR / "README.md").read_text() VERSION = (SOURCE_DIR / "VERSION").read_text().strip() # To see when setup.py g...
Python
0
@@ -1245,16 +1245,24 @@ requests +==2.24.0 %22,%0A @@ -1281,36 +1281,15 @@ ites -%22,%0A %22dataclasses==0.6 +==1.4.0 %22,%0A @@ -1377,17 +1377,17 @@ go==3.0. -7 +8 %22,%0A @@ -1413,13 +1413,13 @@ ns== -2.2.9 +3.0.3 %22,%0A%0A @@ -1514,16 +1514,16 @@ 2.5.1%22,%0A + @@ -1543,30 +1543...
0e3b8e2e0e8045686edd3fbc9899a55dc8252293
remove condoor requirement frm setup file
setup.py
setup.py
# ============================================================================= # # Copyright (c) 2016, Cisco Systems # All rights reserved. # # # Author: Klaudiusz Staniek # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met...
Python
0
@@ -1671,30 +1671,8 @@ k%22,%0A - %22condoor%3E=0.1.5%22,%0A
c82a7b64e98cabc301f4d420483cb384888bb960
prepare for release 1.5
setup.py
setup.py
"""Main setup script.""" from setuptools import setup, find_packages NAME = "bcubed" VERSION = "1.4" DESCRIPTION = "Simple extended BCubed implementation in Python for clustering evaluation" AUTHOR = "Hugo Hromic" AUTHOR_EMAIL = "hhromic@gmail.com" URL = "https://github.com/hhromic/python-bcubed" DOWNLOAD_URL = URL +...
Python
0
@@ -97,9 +97,9 @@ %221. -4 +5 %22%0ADE
9c72d48b007d71ba53119031d1e4c71662d5988a
Fix for issue 10: chicken/egg issue on importing version number in setup.py
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup from cartouche import __version__ as version with open('README.txt', 'r') as readme: long_description = readme.read() requires = ['Sphinx>=0.6'] setup( name='cartouche', packages=['cartouche'], version = "{version}".format(version=version), u...
Python
0
@@ -52,52 +52,23 @@ up%0A%0A -from cartouche import __version__ as version +version = '0.9' %0A%0Awi
1ce563c8ae1baa12af486e7449792d8c6847be62
Version bump
setup.py
setup.py
from setuptools import setup, find_packages, Command version = "0.5" class PyTest(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import sys import subprocess errno = subprocess.call([sys.executa...
Python
0.000001
@@ -64,9 +64,9 @@ %220. -5 +6 %22%0A%0A%0A
503e370890c03ac1859b97c64608275eae1f6716
Update version number for 1.0.0 release
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages # Always prefer setuptools over distutils from codecs import open # To use a consistent encoding from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'README.rst...
Python
0
@@ -643,13 +643,13 @@ on=' +1. 0.0 -.1 ',%0A%0A
a55282f2ee339061eee2ee8e9202fe15ab6a389f
fix missing commands directory in install
setup.py
setup.py
from distutils.core import setup setup( name = 'piton', license='LICENSE', packages = ['piton', 'piton/utils'], # this must be the same as the name above version = '0.1.0', description = 'A local python package manager', url = 'https://github.com/piton-package-manager/piton', # use the URL to the github repo key...
Python
0.000001
@@ -105,16 +105,34 @@ n/utils' +, 'piton/commands' %5D, # thi
8c5dfce7ccbc7729cc085d44177bcf68b370ba02
update numpy dep
setup.py
setup.py
from setuptools import setup from setuptools import find_packages def readme(): with open('README.md', encoding='utf-8') as file: return file.read() def license(): with open('LICENSE.txt', encoding='utf-8') as file: return file.read() setup( name='nalaf', version='0.5.6-SNAPSHOT', ...
Python
0.000001
@@ -957,17 +957,17 @@ , %3C= 1.1 -1 +3 .3',%0A
9fc336acb5451f257399c8575fe0e6ca7e4f72ef
add install_requires to setup.py
setup.py
setup.py
from distutils.core import setup setup(name='zencoder', version='0.3', description='Integration library for Zencoder', author='Alex Schworer', author_email='alex.schworer@gmail.com', url='http://github.com/schworer/zencoder-py', license="MIT License", packages=['zencoder'] ...
Python
0
@@ -283,16 +283,53 @@ cense%22,%0A + install_requires=%5B'httplib2'%5D,%0A pa
f1b565f4d548e4036bb54dfff0e33a8a9b5db176
=3.25
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name="i3pystatus", version="3.24", description="Like i3status, this generates status line for i3bar / i3wm", url="http://github.com/enkore/i3pystatus", license="MIT", classifiers=[ "Development Status :: 4 - Beta", ...
Python
0.999939
@@ -89,17 +89,17 @@ ion=%223.2 -4 +5 %22,%0A @@ -629,45 +629,8 @@ e%22,%0A - %22i3pystatus.core.threading%22,%0A
5e1141793eb453e542e19eb1d2c271103333727e
Fix I202 error in setup.py imports (flake8)
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import sys # To use a consistent encoding from codecs import open from os import path # Always prefer setuptools over distutils from setuptools import find_packages, setup here ...
Python
0
@@ -146,16 +146,41 @@ ort sys%0A +from codecs import open # To use @@ -203,29 +203,25 @@ coding%0Afrom -codec +o s import ope @@ -221,80 +221,18 @@ ort -open +path %0Afrom -os import path%0A# Always prefer setuptools over distutils%0Afrom setu @@ -265,16 +265,52 @@ s, setup + # Prefer setuptools over dis...
a0539fc7327eff11e42981244ae6a913b887867f
use pathlib for windows / linux compat
setup.py
setup.py
import glob from setuptools import setup def get_advanced_templates(): template_base = 'aws/templates/advanced/' template_names = ['advanced-master', 'advanced-priv-agent', 'advanced-pub-agent', 'infra', 'zen'] return [template_base + name + '.json' for name in template_names] # These files are expect...
Python
0
@@ -1,15 +1,28 @@ +from pathlib import -glob +Path %0A%0Afr @@ -734,24 +734,29 @@ les = %5B%0A +Path( 'docker/dcos @@ -775,22 +775,28 @@ kerfile' +) ,%0A +Path( 'docker/ @@ -818,16 +818,17 @@ ADME.md' +) ,%0A%5D%0Adcos @@ -850,21 +850,27 @@ = %5Bf -ilename%5Blen(' +.relative_to(Path(%22 ./pk @@ -87...
d1b5fd979973232275c5de88aa500be9a2222149
version bump 0.1.4
setup.py
setup.py
import os from setuptools import setup from distutils.command.install import INSTALL_SCHEMES for scheme in INSTALL_SCHEMES.values(): scheme['data'] = scheme['purelib'] def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return ...
Python
0.000001
@@ -365,17 +365,17 @@ on='1.0. -3 +4 ',%0A
c34ce19b3c1a1f7fb867d2977c924d870b12286c
Bump version to v1.1.0.
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2013 The MITRE Corporation. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, ...
Python
0
@@ -1543,17 +1543,17 @@ sion='1. -0 +1 .0',%0A
bb1afe0a8571e22d590b64b6003ae1f4bb1ab31f
Revert version to 1.5.0
setup.py
setup.py
# MIT License # Copyright (c) 2017 MassChallenge, Inc. import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__)...
Python
0
@@ -658,11 +658,11 @@ el== -3.3 +1.5 .0%22,
2a6a14ad0d066ef422c64687e174742c599aba69
Version bump 1.0.4
setup.py
setup.py
# -*- encoding: utf-8 -*- from setuptools import setup from setuptools import find_packages install_requires = [ 'django>=1.4,<1.9', 'six', ] setup( name="django-compat", version="1.0.3", author_email="admin@arteria.ch", packages=find_packages(), include_package_data=True, description...
Python
0
@@ -196,17 +196,17 @@ on=%221.0. -3 +4 %22,%0A a
926598b3af76c9c4d8c43b0a4d0c4a001e173653
Upgrade version to v0.3.2
setup.py
setup.py
from setuptools import setup setup( name='py_expression_eval', version='0.3.1', description='Python Mathematical Expression Evaluator', url='https://github.com/AxiaCore/py-expression-eval/', author='vero4ka', author_email='vero4ka.ru@gmail.com', license='MIT', packages=['py_expression_e...
Python
0.000001
@@ -82,9 +82,9 @@ 0.3. -1 +2 ',%0A
d68bd4d65d44ac45b689b34e040a44addf327a1e
Bump version.
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='Flask-GoogleAuth', version='0.4', url='https://github.com/sashka/flask-googleauth', license='BSD', author='Alexander Saltanov', author_email='asd@mokote.com', description='Super simple OpenID and Google Federated Auth for Fl...
Python
0
@@ -100,16 +100,22 @@ ion='0.4 +.lft.1 ',%0A u
941700efab69ed52de840d76662922921e08983f
bump launcher dependency
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 # Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. from __future__ import print_function # the name of the project name = 'jupyterlab' #----------------------------------------------------------------------------- # Minimal Pyth...
Python
0.000001
@@ -3580,16 +3580,18 @@ her%3E=0.2 +.3 '%0A%5D%0A%0Aext
04a6ba1729befd63cd9a4507d633c1497817c40b
Update classifiers
setup.py
setup.py
from setuptools import setup def get_version(): import re with open('lastpass/__init__.py', 'r') as f: for line in f: m = re.match(r'__version__ = [\'"]([^\'"]*)[\'"]', line) if m: return m.group(1) raise RuntimeError('Cannot find version information') set...
Python
0.000002
@@ -1149,17 +1149,66 @@ on :: 3. -3 +4',%0A 'Programming Language :: Python :: 3.5 ',%0A @@ -1239,33 +1239,33 @@ :: Python :: 3. -4 +6 ',%0A 'Prog
c1fb843497f85eb4e1fb8d26fb7c168d936fc968
Bump version 1.1.1 -> 1.1.2
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from os import path try: from setuptools import setup except ImportError: from distutils.core import setup readme_file = path.join(path.dirname(path.abspath(__file__)), 'README.rst') with open(readme_file) as readme_file: readme = readme_file.read(...
Python
0.000001
@@ -449,17 +449,17 @@ on='1.1. -1 +2 ',%0A d
11c740a346132d5af53ac3804d646b296593e4f0
Version lock kafka-python
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) setup( name='ztag', version='1.0.0', description='utility for transforming and annotating JSON scan data with additional metdata', license="Apache License, Version 2.0", long_description=open(os.path.join...
Python
0.000001
@@ -844,24 +844,31 @@ kafka-python +==1.3.1 %22,%0A %22lz4t
344901baf5d11649fbc5e0c1fc3caa69175e2482
Set core version compatible specifier to packages.
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
Python
0
@@ -1760,16 +1760,27 @@ = 0.21.0 +, %3C 0.22dev ',%0A%5D%0A%0Ase
09003c9e9ac1d389c04e851c5700662d3006baec
fix package name & add maintainers
setup.py
setup.py
from distutils.core import setup setup( name = "dialogos", version = "0.6", author = "Eldarion", author_email = "development@eldarion.com", description = "a flaggable comments app", long_description = open("README.rst").read(), license = "BSD", url = "https://github.com/GeoNode/geonode...
Python
0
@@ -47,16 +47,24 @@ name = %22 +geonode- dialogos @@ -159,16 +159,110 @@ n.com%22,%0A + maintaner = %22Geonode Developers%22,%0A maintainer_email = %22geonode-devel@lists.osgeo.org%22,%0A desc
cca33a507b1d6ac0060f205b287784b286bcfae7
Bump version
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from setuptools.extension import Extension from Cython.Build import cythonize import numpy as np import io PACKAGE_NAME = 'pysaliency' VERSION = '0.2.10' DESCRIPTION = 'A Python Framework for Saliency Modeling and Evaluation' AUTHOR = 'Matthias Kümm...
Python
0
@@ -215,17 +215,17 @@ = '0.2.1 -0 +1 '%0ADESCRI
33e4f077c43a8102291aba301d9c33d5255badf8
drop distutils dependency
setup.py
setup.py
from setuptools import setup from distutils.extension import Extension from pkg_resources import resource_string from Cython.Distutils import build_ext class build_ext_subclass(build_ext): """ This class is an ugly hack to a problem that arises when one must force a compiler to use specific flags by addin...
Python
0
@@ -25,40 +25,9 @@ etup -%0Afrom distutils.extension import +, Ext
c62d63fee453390f5d421dbd8d6b1654fb121b3e
Add pytest as a dependency to setup.py
setup.py
setup.py
# 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
Python
0.000001
@@ -1118,24 +1118,38 @@ %22pandas%22,%0A + %22pytest%22,%0A %22numpy%22,
a99209821a285c78dc487cac34a3e5b9f449d65b
Update version to 1.0.3
setup.py
setup.py
import os from setuptools import setup, find_packages with open('requirements.txt') as file_requirements: requirements = file_requirements.read().splitlines() setup( name='aws_eis', version='1.0.2', author='John Paul P. Doria', author_email='jp@lazyadm.in', description=('Register snapshot dire...
Python
0
@@ -206,9 +206,9 @@ 1.0. -2 +3 ',%0A
5f48ee965e17aa1cebf4c6dfb14c08dd934dc0f8
Bump requests library to 2.7.0
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'vero' ] requires = ['requests==1.2.3'] tests_require = ['mock==1.0.1'] setup( name='vero', description='Python wrapper for Vero API', long_description=open('README.rst').read(), version='1....
Python
0
@@ -142,13 +142,13 @@ ts== -1.2.3 +2.7.0 '%5D%0At
6dc41940388a3bb9ae000c0760514f3a1455e9f1
Use setuptools find_packages
setup.py
setup.py
#!/usr/bin/env python import os from fnmatch import fnmatch from setuptools import setup import versioneer def find_packages(path): for root, _, _ in filter(lambda x: '__init__.py' in x[2], os.walk(path)): yield os.path.relpath(root).replace(os.sep, '.') def find_data_files(where, exts): exts = tu...
Python
0.000001
@@ -82,17 +82,32 @@ rt setup +, find_packages %0A - %0Aimport @@ -123,170 +123,8 @@ r%0A%0A%0A -def find_packages(path):%0A for root, _, _ in filter(lambda x: '__init__.py' in x%5B2%5D, os.walk(path)):%0A yield os.path.relpath(root).replace(os.sep, '.')%0A%0A%0A def @@ -634,65 +634,8 @@ )%0A%0A%0A -pa...
d04bc63fe078e7147112690a997ec35c69b2ad95
Fix the topic.
setup.py
setup.py
# -*- coding: utf-8 # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f: long_description =...
Python
0.99999
@@ -735,41 +735,8 @@ c :: - Software Development :: Topic :: Sys
652eed09221c080138c8b260b22c2ca1adcc512e
Revert "Remove unused setup.py hack"
setup.py
setup.py
#!/usr/bin/env python """ Sentry ====== Sentry is a realtime event logging and aggregation platform. It specializes in monitoring errors and extracting all the information needed to do a proper post-mortem without any of the hassle of the standard user feedback loop. Sentry is a Server ------------------ The Sentry ...
Python
0
@@ -868,16 +868,356 @@ ckages%0A%0A +# Hack to prevent stupid %22TypeError: 'NoneType' object is not callable%22 error%0A# in multiprocessing/util.py _exit_function when running %60python%0A# setup.py test%60 (see%0A# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)%0Afor m in ('multiprocessing', 'billiar...
24154ca41a5a7d596b8dc9f05c016c272ee130be
Bump version number.
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cas', version='0.3.2', description='CAS plugin for PPP', url='https://github.com/ProjetPP', author='Projet Pensées Profondes', author_email='marc.chevalier@ens-lyon.org', license='MIT', classifiers=[ ...
Python
0
@@ -104,19 +104,17 @@ sion='0. -3.2 +4 ',%0A d
46aebb8479007f03b3a468920ecba2f57ad05241
add URL
setup.py
setup.py
from setuptools import setup setup( name='tornado_shell', version='0.0.1', packages=['tornadoshell'], url='', license='LICENSE.txt', author='Vukasin Toroman', author_email='vtoroman@attensity.com', description='', requires=['tornado'] )
Python
0.000001
@@ -117,16 +117,56 @@ url=' +https://github.com/vukasin/tornado-shell ',%0A l @@ -303,8 +303,10 @@ ado'%5D%0A)%0A +%0A%0A
0c6b2922a91bf8476fbe792848414e6e36e0cec5
Version 0.3.1
setup.py
setup.py
from setuptools import setup, find_packages setup(name='knxip', version='0.3.0', description='A native Python KNX/IPNet implementation', url='http://github.com/usul27/pknx', author='Daniel Matuschek', author_email='daniel@matuschek.net', license='MIT', classifiers=[ 'D...
Python
0.000001
@@ -77,17 +77,17 @@ on='0.3. -0 +1 ',%0A @@ -311,16 +311,18 @@ + 'Develop @@ -348,16 +348,18 @@ Alpha',%0A + @@ -401,16 +401,18 @@ + 'Topic : @@ -450,24 +450,26 @@ e Drivers',%0A + 'Lic @@ -506,32 +506,34 @@ cense',%0A + 'Programming Lan @@ -555,16 +...
15437c33fd25a1f10c3203037be3bfef17716fbb
Add trove classifiers for Python versions
setup.py
setup.py
import os from setuptools import setup, find_packages LONG_DESCRIPTION = """Django-Prometheus This library contains code to expose some monitoring metrics relevant to Django internals so they can be monitored by Prometheus.io. See https://github.com/korfuri/django-prometheus for usage instructions. """ setup( n...
Python
0
@@ -1038,24 +1038,314 @@ istrators%22,%0A + %22Programming Language :: Python :: 2%22,%0A %22Programming Language :: Python :: 2.7%22,%0A %22Programming Language :: Python :: 3%22,%0A %22Programming Language :: Python :: 3.3%22,%0A %22Programming Language :: Python :: 3.4%22,%0A ...
94fbc9de5e540e9fc14ac0bd777b259df7e8f5d6
Bump requirements
setup.py
setup.py
#!/usr/bin/env python3 import os from os.path import dirname, exists, join import sys, subprocess from setuptools import setup, find_packages setup_dir = dirname(__file__) git_dir = join(setup_dir, '.git') base_package = 'robotpy_ext' version_file = join(setup_dir, base_package, 'version.py') # Automatically generat...
Python
0.000001
@@ -1516,19 +1516,19 @@ =201 -7.1 +8.0 .0,%3C201 -8 +9 .0.0 @@ -1555,13 +1555,13 @@ =201 -7.0.1 +8.0.0 '%5D%0A%0A
0f97e1427cf86cab4d53f613eb440c1cf4426e6d
Change download url for release 0.3.6
setup.py
setup.py
from distutils.core import setup setup( name = 'django-test-addons', packages = ['test_addons'], version = '0.3.5', description = 'Library to provide support for testing multiple database system like Mongo, Redis, Neo4j along with django.', author = 'Hakampreet Singh Pandher', author_email = 'hspandher@outlook.c...
Python
0
@@ -109,17 +109,17 @@ = '0.3. -5 +6 ',%0A%09desc @@ -449,17 +449,19 @@ rball/0. -1 +3.6 ',%0A%09keyw
9d8c769b9d0a3c1fa2da62c2a2a221e9a5764571
bump version for release
setup.py
setup.py
from setuptools import setup, find_packages import os kws = {} if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )): kws['install_requires'] = ['numpy>=1.0.4', 'motmot.imops>=0.5.2.dev', 'pyglet>=1.0', 'wxPython>=2.8', ...
Python
0
@@ -718,17 +718,17 @@ on='0.6. -1 +2 ',%0A
d112981794ddd7756be11618517495c36b6da6ba
make MP build optional
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Boost Python Bullet ======= This is the setup file for the boost python thin wrapper for the Bullet Physics SDK (see: http://bulletphysics.org/) """ import os from setuptools import find_packages from distutils.core import setup, Extension def parallelCCompile(self, s...
Python
0
@@ -202,16 +202,27 @@ port os%0A +import sys%0A from set @@ -1320,16 +1320,67 @@ ompiler%0A +if '-j' in sys.argv:%0A sys.argv.remove('-j')%0A distutil @@ -1428,16 +1428,16 @@ Compile%0A - %0Arequire @@ -1750,32 +1750,8 @@ = (%0A - 'bullet/src/boost',%0A @@ -1775,16 +1775,147 @@ rMath',%0A + '...
a5587dadbc152ba2a4cf1baa076f544018cac40e
Update setup.py Update Version Number.
setup.py
setup.py
# coding: utf-8 """ Trakerr API Get your application events and errors to Trakerr via the *Trakerr API*. OpenAPI spec version: 1.0.0 Generated by: https://github.com/swagger-api/swagger-codegen.git Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file...
Python
0
@@ -857,17 +857,17 @@ = %222.1. -2 +3 %22%0A%0A# To
b8fcd65e0fb4b3d35c09068d6972778918d1d2aa
Bump version to 0.7.0
setup.py
setup.py
# -*- coding: utf-8 -*- """ django-cache-url ~~~~~~~~~~~~~~~~ This simple Django utility allows you to utilize the `12factor <http://www.12factor.net/backing-services>`_ inspired ``CACHE_URL`` environment variable to configure your Django application. Usage ----- Configure your cache in ``settings.py``:: CACHE...
Python
0
@@ -462,9 +462,9 @@ ='0. -6 +7 .0',
8f4b1fee00a70b1e22e27b4f5e9a256ff2964cf4
update setup.py download_url to point to wheel
setup.py
setup.py
from setuptools import setup import codecs import os VERSION = '1.4.2' AUTHOR_NAME = 'Andy Port' AUTHOR_EMAIL = 'AndyAPort@gmail.com' GITHUB = 'https://github.com/mathandy/svgpathtools' def read(*parts): """ Build an absolute path from *parts* and and return the contents of the resulting file. Assume U...
Python
0
@@ -903,44 +903,86 @@ %7B%7D/r -aw/1.4.1/dist/svgpathtools-%7B%7D.tar.gz +eleases/download/%7B%7D/svgpathtools-%7B%7D-py2.py3-none-any.whl'%0A ' '.fo @@ -993,16 +993,25 @@ (GITHUB, + VERSION, VERSION
709ef820ddc49651b9ec496db366a4af48554efc
Revise time complexity & comments from London
lc0085_maximal_rectangle.py
lc0085_maximal_rectangle.py
"""Leetcode 85. Maximal Rectangle Hard URL: https://leetcode.com/problems/maximal-rectangle/ Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example: Input: [ ["1","0","1","0","0"], ["1","0","1","1","1"], ["1","1","1","1","1"], ["1","0","0...
Python
0
@@ -940,16 +940,18 @@ xity: O( +m* n), wher @@ -955,17 +955,53 @@ here - n is the +%0A - m: number of rows%0A - n: num @@ -2093,16 +2093,18 @@ ding +' s -are th +left ar e le
989b110bf0a0681db45036cd1a130634b278d971
Update setup.py
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', version='0....
Python
0
@@ -1294,13 +1294,13 @@ wt== -0.3.1 +1.1.0 ',%0A
050febe2b9d5c5c38e7e5287b9e6c57d66d48ccb
version updated
setup.py
setup.py
from setuptools import setup setup(name='djauto', version='0.1', description='Django project generator', url='https://github.com/vikas-parashar/django-project-automator', author='Vikas Parashar', author_email='svnitvikas@gmai.com', license='MIT', classifiers=[ 'D...
Python
0
@@ -62,16 +62,18 @@ ion='0.1 +.1 ',%0A
40afc357e0850c71153f8779583fc03f643b2271
Reorder and group metadata and options together
setup.py
setup.py
from setuptools import find_packages, setup setup(name='satnogsclient', packages=find_packages(), version='0.2.5', author='SatNOGS team', author_email='client-dev@satnogs.org', url='https://github.com/satnogs/satnogs-client/', description='SatNOGS Client', include_package_dat...
Python
0
@@ -45,16 +45,21 @@ %0A%0Asetup( +%0A name='sa @@ -80,61 +80,79 @@ - packages=find_packages(),%0A version='0.2.5',%0A +version='0.2.5',%0A url='https://github.com/satnogs/satnogs-client/',%0A @@ -170,26 +170,24 @@ NOGS team',%0A - author_e @@ -225,131 +225,38 @@ - url='https:...
c5543678437a75e73c3987e750eee7fa67df296b
Remove s3 redirect
learnwithpeople/settings.py
learnwithpeople/settings.py
""" Django settings for learnwithpeople project. For more information on this file, see https://docs.djangoproject.com/en/1.7/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.7/ref/settings/ """ from __future__ import absolute_import # Build paths inside the pr...
Python
0.000001
@@ -1252,16 +1252,46 @@ ' -s3direct +django_extensions',%0A 'debug_toolbar ',%0A @@ -3433,405 +3433,8 @@ '%5D%0A%0A -##### AWS upload config%0A%0AAWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID')%0AAWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY')%0AAWS_STORAGE_BUCKET_NAME = os.environ.get...
55b1315aca711869df34dc2d427a1b08053e3ed0
Bump version to v0.1.1
setup.py
setup.py
from setuptools import setup from codecs import open from os import path, system import sys here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() version = '0.1.0' if sys.argv[-1] ==...
Python
0
@@ -291,17 +291,17 @@ = '0.1. -0 +1 '%0A%0Aif sy
ec2b867a9203bbcf21f239c9b3d7d6c90b4b6642
bump to version 0.1.7
setup.py
setup.py
from setuptools import setup with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] setup(name='wos', version='0.1.6', description='Web of Science client using API v3.', long_description=long_description...
Python
0
@@ -217,9 +217,9 @@ 0.1. -6 +7 ',%0A
f1af14959468ca4f8d18ce3c2e03557036ffb32e
Bump version
setup.py
setup.py
#!/usr/bin/env python import sys from distutils.core import setup from distutils.extension import Extension if sys.platform == 'darwin': monoclock_libraries = [] else: monoclock_libraries = ['rt'] setup( name='Monoclock', version='14.4.16', description="Monotonic clock access for Python", url="https://github.c...
Python
0
@@ -241,9 +241,9 @@ .4.1 -6 +8 ',%0A%09
4eb298af6131c6747c8053b3ed7ddf9058fc23a6
Allow setup.py to work when cython is not available
setup.py
setup.py
from setuptools import setup, find_packages from Cython.Build import cythonize setup( name='python-wallpaper', version='0.2.2', url='https://github.com/ondergetekende/python-wallpaper', description=( 'python-wallpaper generates pseudorandom abstract wallpapers' ), author='Koert van der ...
Python
0
@@ -37,16 +37,25 @@ ackages%0A +try:%0A from Cyt @@ -81,16 +81,105 @@ thonize%0A + ext_modules = cythonize(%22wallpaper/*.pyx%22)%0Aexcept ImportError:%0A ext_modules = %5B%5D%0A%0A %0Asetup(%0A @@ -224,17 +224,17 @@ on='0.2. -2 +3 ',%0A u @@ -512,36 +512,19 @@ les= -cythonize(%22wallpaper/*.pyx%22)...
b65b0ed8d09d4a22164f16ed60f7c5b71d6f54db
Move download_url and bump version
setup.py
setup.py
import setuptools from gitvendor.version import Version from setuptools import find_packages CLASSIFIERS = [ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Environment :: Console', 'Topic :: Software Development' ] setuptools.setup(name='git-vendor', ver...
Python
0
@@ -335,9 +335,9 @@ 0.0. -1 +3 ').n @@ -641,32 +641,117 @@ er/git-vendor',%0A + download_url='https://github.com/chuckbutler/git-vendor/releases/',%0A
23aea43bd9bda180c2d00c971d02df49a703dfdf
make urllib3 an explicit dependency
setup.py
setup.py
from setuptools import setup def get_advanced_templates(): template_base = 'aws/templates/advanced/' template_names = ['advanced-master', 'advanced-priv-agent', 'advanced-pub-agent', 'infra', 'zen'] return [template_base + name + '.json' for name in template_names] setup( name='dcos_image', ver...
Python
0.000002
@@ -1101,24 +1101,43 @@ -compress',%0A + 'urllib3',%0A # Pi
af60e81e3c557ace943aab35c1364d3d03d5a3bf
Add more relevant classifiers
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from __future__ import print_function import os.path import warnings import sys try: from setuptools import setup, Command setuptools_available = True except ImportError: from distutils.core import setup, Command setuptools_available = False from distutils.spawn ...
Python
0.000002
@@ -3603,16 +3603,105 @@ omain',%0A + 'Programming Language :: Python',%0A 'Programming Language :: Python :: 2',%0A @@ -4078,24 +4078,416 @@ on :: 3.6',%0A + 'Programming Language :: Python :: 3.7',%0A 'Programming Language :: Python :: Implementation',%0A 'Programming La...
8f30f96ce48f347bc940f3da6f96254dc988817a
Update setup.py to include gl modules.
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import sys # get pygly's version but don't import it # or we'll need our dependencies already installed # https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9 execfile('pygly/version.py') os_x_requires = ['pyglet(>=1.2)', 'pyob...
Python
0
@@ -1141,12 +1141,21 @@ gly. -mesh +uv_generators ',%0A @@ -1164,37 +1164,78 @@ 'pygly. -uv_generators +gl',%0A 'pygly.gl.legacy',%0A 'pygly.gl.core ',%0A %5D
ee22c23462b93c532e7b419bc9665916196a86e8
Add C language classifier
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup, Extension import numpy import re readme = open('README.rst').read() text = open('tifffile/__init__.py').read() version = re.search("__version__ = '(.*?)'", text).groups()[0] setup( name='tifffile', version=version, descrip...
Python
0.998555
@@ -1089,16 +1089,53 @@ ndent',%0A + %22Programming Language :: C%22,%0A
dfd5885e5a8209ef18757de959a90a3de8dd19ca
allow us to build a package non-interactively
setup.py
setup.py
from __future__ import print_function import warnings from setuptools import setup, find_packages, Extension from setuptools.command.install import install import numpy from theano.compat.six.moves import input # Because many people neglected to run the pylearn2/utils/setup.py script # separately, we compile the nec...
Python
0.000001
@@ -2850,20 +2850,25 @@ mode = -None +'install' %0A @@ -2868,16 +2868,17 @@ +# while mo @@ -2929,32 +2929,33 @@ '%5D:%0A +# if mode is not N @@ -2971,24 +2971,25 @@ +# print(%22Pleas @@ -3010,24 +3010,25 @@ +# mode = input
33ed7983faec74c389902cd6ec6f6586d81e3168
Fix setup.py on 2.x
setup.py
setup.py
import os import io from setuptools import setup setup( name='azureblur', version='0.1', url='https://github.com/SimonSapin/azureblur', license='MPL2', maintainer='Simon Sapin', maintainer_email='simon.sapin@exyr.org', description='The triple box blur implementation from Firefox’s moz2d/Azu...
Python
0
@@ -1,12 +1,27 @@ +# coding: utf8%0A import os%0Aim
051c02e4511d1ef2cc1627c125e0f3a35310e6f8
bump version
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='hopsutil', version='0.4.8', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hi...
Python
0
@@ -168,17 +168,17 @@ on='0.4. -8 +9 ',%0A a @@ -588,9 +588,9 @@ 0.4. -8 +9 .tar
2bd52cd615f2b8e244b0b5db3e21b983456b07f4
Change version to 0.54
setup.py
setup.py
from setuptools import setup import sys if not sys.version_info[0] == 3 and sys.version_info[1] < 5: sys.exit('Python < 3.5 is not supported') version = '0.53' setup( name='steampy', packages=['steampy', 'test', 'examples', ], version=version, description='A Steam lib for trade automation', a...
Python
0.000007
@@ -156,17 +156,17 @@ n = '0.5 -3 +4 '%0A%0Asetup
44a68e01b6051ce8f1c30997187e725402c048a4
Add long_description to setup.py
setup.py
setup.py
""" Py-Tree-sitter """ import platform from setuptools import setup, Extension setup( name = "tree_sitter", version = "0.0.8", maintainer = "Max Brunsfeld", maintainer_email = "maxbrunsfeld@gmail.com", author = "Max Brunsfeld", author_email = "maxbrunsfeld@gmail.com", url = "https://gith...
Python
0
@@ -17,16 +17,25 @@ er%0A%22%22%22%0A%0A +import os %0Aimport @@ -84,16 +84,139 @@ ension%0A%0A +base_dir = os.path.dirname(__file__)%0A%0Awith open(os.path.join(base_dir, 'README.md')) as f:%0A long_description = f.read()%0A %0Asetup(%0A @@ -630,16 +630,110 @@ brary%22,%0A + long_description = long_descrip...
e1411e0dfe5bea90dc52605eb08d4fb98e21edab
Bump version to 0.8.1
setup.py
setup.py
# coding: utf-8 from setuptools import setup with open('README.rst', 'r') as f: long_description = f.read() setup( name='cs', version='0.8.0', url='https://github.com/exoscale/cs', license='BSD', author=u'Bruno Renié', description=('A simple yet powerful CloudStack API client for ' ...
Python
0
@@ -146,17 +146,17 @@ on='0.8. -0 +1 ',%0A u
589c2f6422a3d27d47e1e7f80d9cb5a48f8e5d26
Bump version instructed by bamboo
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() dependency_links = [ 'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs', 'http://github.com/pbs/django-filer/tarball/master_pbs#egg=django...
Python
0
@@ -396,9 +396,9 @@ 4pbs -8 +9 %22,%0A
9cbc694535b81ba9d9d268d1efc5f0862daa93c8
Switch package URL back.
setup.py
setup.py
import os import os.path import sys from setuptools import find_packages, setup requirements = ['parse>=1.3.3'] major, minor = sys.version_info[:2] if major == 2 and minor < 7: requirements.append('argparse') if major == 2 and minor < 6: requirements.append('simplejson') description = ''.join(open('README.rs...
Python
0
@@ -612,20 +612,16 @@ com/ -Katherinesun +jeamland /beh
918c5d1649d9b1581a3dc7bd9fe889c4e59d4b9a
Upgrade core
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='OpenFisca-Country-Template', version='1.3.1', author='OpenFisca Team', author_email='contact@openfisca.fr', description=u'OpenFisca tax and benefit system for Country-Template', keywords='...
Python
0.000001
@@ -597,19 +597,19 @@ %3E= 1 -7.1 +9.0 .0, %3C -19 +20 .0',
bfda5f0c6fecdc3558db106e0562364bb0406759
Bump 0.2
setup.py
setup.py
import re import setuptools def load_dependencies(filename): install_requires = [] dependency_links = [] for line in open(filename): line = line.strip() m = re.match(r'http.+#egg=(?P<pkgname>.+)', line) if m: dependency_links.append(line) install_requires.ap...
Python
0.000154
@@ -579,9 +579,9 @@ ='0. -1 +2 ',%0A