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
c9abb51e496e19137dd596a55dbd98f613659c07
Change author in setup.py
setup.py
setup.py
import os import sys from setuptools import setup # Utility function to read the README file. def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # The packages we depend on dependencies = [ "Flask==0.9", "MySQL-python==1.2.4c1", "repoze.lru==0.5", "WTForms==1.0.3",...
Python
0
@@ -528,19 +528,20 @@ = %22 -Gideon Juve +Pegasus Team %22,%0A @@ -563,14 +563,15 @@ = %22 -gideon +pegasus @isi
8a33737700686ad2ad071c8f8ee1b674e7a9b3c8
change delay class formula
ipa_printer.py
ipa_printer.py
#!/usr/bin/env python import sys import os import ipa_db import ipa_config def escape(name): return name.replace('/', '_') def make_head(f, title): f.write(' <head>\n') f.write(' <title>' + title + '</title>\n') f.write(' <meta http-equiv="Content-Type" content="text/html; charset=utf-...
Python
0
@@ -691,16 +691,17 @@ delay %3E += 60:%0A @@ -739,16 +739,17 @@ delay %3E += 20:%0A @@ -787,16 +787,17 @@ delay %3E += 5:%0A
cfe09669a329df0c92795e0864ab089e7a8c8224
Set zip_safe=True
setup.py
setup.py
#!/usr/bin/env python3 import sys try: from setuptools import setup except ImportError: from distutils.core import setup if not ((3, 4) <= sys.version_info < (4, 0)): print('ERROR: Python 3.4+ is required!') sys.exit(1) with open('README.md') as readme_file: readme = readme_file.read() with ope...
Python
0.999875
@@ -2455,12 +2455,11 @@ afe= -Fals +Tru e,%0A)
dffcb768f233b1a3875342d467f1323be3e2364c
add required geo packages to setup.py
setup.py
setup.py
from setuptools import find_packages, setup from setuptools.command.install import install import os BASEPATH='.eDisGo' class InstallSetup(install): def run(self): self.create_edisgo_path() install.run(self) @staticmethod def create_edisgo_path(): edisgo_path = os.path.join(os.pa...
Python
0
@@ -1057,16 +1057,95 @@ =0.10.0' +,%0A 'pyproj %3E= 1.9.5.1, %3C= 1.9.5.1',%0A 'geopy %3E= 1.11.0, %3C= 1.11.0' %0A %5D,%0A
b981a87e1945dc5ff6850f02a8081c0d7534c709
Bump version
setup.py
setup.py
import os from setuptools import setup, find_packages def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() except IOError: return "" install_requires = ...
Python
0
@@ -400,17 +400,17 @@ on=%221.3. -1 +3 %22,%0A a
9e6988d2eed1478f0944da1da177e88b2dfe557d
fix bad req spec
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import glob try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') requirements = [ 'Click>=6.7', 'git+https://github.com...
Python
0.000001
@@ -499,17 +499,17 @@ 1.0.0-rc -4 +5 '%0Asubpac
c997c6518aa675828ced24a49345bcc6f251cf36
update dev status
setup.py
setup.py
import os.path from setuptools import setup, find_packages def read_local_file(fname): path = os.path.join(os.path.dirname(__file__), fname) with open(path, 'r') as rfile: return rfile.read() metadata = {} exec(read_local_file('snug/__about__.py'), metadata) readme = read_local_file('README.rst') hi...
Python
0
@@ -710,16 +710,15 @@ :: -3 - Alph +4 - Bet a',%0A
c86adab57bf65a5aac41ea5cd03b01bf9b98adfe
Bump version
setup.py
setup.py
""" A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # 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.abs...
Python
0
@@ -745,11 +745,11 @@ ='0. -8.7 +9.0 ',%0A%0A
fc884cc397d046c5b1f82816484b8a0e061563e4
Fixing the URL
setup.py
setup.py
from setuptools import setup, find_packages import sys, os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '0.4.4' install_requires = [ 'numpy>=1.1', 'PyYAML', ] # Review, rething the class...
Python
0.999004
@@ -226,17 +226,17 @@ = '0.4. -4 +5 '%0A%0Ainsta @@ -1055,21 +1055,23 @@ 'http:// -pycnv +seabird .castela @@ -1103,16 +1103,24 @@ 'http:// +https:// pypi.pyt @@ -1147,17 +1147,25 @@ rce/ -c/cnv/cnv +s/seabird/seabird -'+v
8f2fc6bbcbc7e6e9fb78021e6e0636783b98f263
add extras to setup.py
setup.py
setup.py
from setuptools import setup, find_packages import sys requires = [ 'Flask==0.9', 'pyes==0.19.1', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') setup( name = 'annotator', version = '0.10.0', packages = find_packages(), insta...
Python
0
@@ -336,16 +336,115 @@ equires, +%0A extras_require = %7B%0A 'docs': %5B'Sphinx'%5D,%0A 'testing': %5B'nose', 'coverage'%5D,%0A %7D, %0A%0A #
dd64e237e0f8e1dc4c00a371e1849ab6accb60a5
add cython dependency to try to built pylbfgs
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- try: from setuptools import setup, Extension except ImportError : raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools") setup( name='rlr', url='https://githu...
Python
0
@@ -570,24 +570,34 @@ ', 'pylbfgs' +, 'cython' %5D,%0A licen
f1093d9e65e844fa2167f0bd4576bf3d97c74d52
Bump required version of django-lab-members to 0.2.4
setup.py
setup.py
import os from setuptools import 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__), os.pardir))) install_requires = [ "Django==1.7.7", "Pillow==2...
Python
0
@@ -555,17 +555,17 @@ rs%3E=0.2. -0 +4 ,%3C0.3.0%22
8ebfe4c60559111cf9e798af16d76e733fa7ac70
Update all other test dependencies to last status
setup.py
setup.py
# Copyright 2019 3YOURMIND GmbH # 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, soft...
Python
0
@@ -1797,17 +1797,17 @@ nt==1.4. -2 +4 %22,%0A @@ -1835,17 +1835,17 @@ ry==2.8. -2 +4 %22,%0A @@ -1882,17 +1882,17 @@ ue==0.3. -1 +2 %22,%0A
7fee938e21701c09fe129fe01843e33352c5678c
Update setup script
setup.py
setup.py
import io from distutils.core import setup def get_long_description(): """Generate a long description from the README file.""" descr = [] for fname in ('README.rst',): with io.open(fname, encoding='utf-8') as f: descr.append(f.read()) return '\n\n'.join(descr) setup( name='ma...
Python
0.000001
@@ -519,9 +519,9 @@ 1.0. -4 +5 ',%0A @@ -730,24 +730,63 @@ y/mahjong',%0A + data_files=%5B('', %5B'README.rst'%5D)%5D,%0A classifi
a28fbfd15ec86c6b9178e5c63c14dea4d12226b8
Update setup.py
setup.py
setup.py
# coding: utf-8 # Copyright (c) Pymatgen Development Team. # Distributed under the terms of the MIT License. import os from io import open from setuptools import setup, find_packages with open("README.rst") as f: long_desc = f.read() ind = long_desc.find("\n") long_desc = long_desc[ind + 1:] setup( ...
Python
0.000001
@@ -414,17 +414,17 @@ onty%3E=0. -7 +9 .0%22, %22si @@ -1132,58 +1132,9 @@ : 3. -3%22,%0A %22Programming Language :: Python :: 3.4 +5 %22,%0A
ce0e4713ce6f2fca08c7f5ef33cdc8231515414d
Add setup_requires to ensure support for cond. dependencies
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import print_function from os.path import join from os import listdir from setuptools import setup # Hmmmph. # So we get all the meta-information in one place (yay!) but we call # exec to get it (boo!). Note that we can't "from txtorcon._...
Python
0.000012
@@ -1113,16 +1113,55 @@ iption,%0A + setup_requires=%22setuptools%3E=36.2%22,%0A long
e0e268dc4b8ca7aa73c7f436491e008776021bc2
version bump
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from pip.req import parse_requirements VERSION = '0.3.3' setup(name='graphenelib', version=VERSION, description='Python library for graphene-based blockchains', long_description=open('README.rst').read(), download_url='https://github.com/xero...
Python
0.000001
@@ -100,17 +100,17 @@ = '0.3. -3 +4 '%0A%0Asetup
c9e6e9c11a56bfc04649d393bd56339e0ecce5ff
make "python setup.py test" install and run tox
setup.py
setup.py
import os import re try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages def read(filename): path = os.path.join(os.path.dirname(__file__), filename) contents = open(path).read() ...
Python
0.000002
@@ -12,16 +12,27 @@ mport re +%0Aimport sys %0A%0Atry:%0A @@ -208,16 +208,73 @@ ckages%0A%0A +from setuptools.command.test import test as TestCommand%0A%0A %0Adef rea @@ -438,16 +438,290 @@ ents)%0A%0A%0A +class Tox(TestCommand):%0A%0A def finalize_options(self):%0A TestCommand.finalize_options(self)%0A...
e6698eef37829ec1c9e9c49f37fadefa18a51302
Make platform checking in setup.py consistent with rest of code
setup.py
setup.py
"""Use the following command to install retriever: python setup.py install""" from setuptools import setup import platform import sys import warnings p = platform.platform().lower() extra_includes = [] if "darwin" in p: try: import py2app except ImportError: pass extra_includes = [] elif "win" in p: t...
Python
0
@@ -149,20 +149,24 @@ gs%0A%0A -p = +current_ platform .pla @@ -165,17 +165,19 @@ form -. + = platform ().l @@ -172,16 +172,23 @@ platform +.system ().lower @@ -212,16 +212,36 @@ = %5B%5D%0Aif + current_platform == %22darwin @@ -237,29 +237,24 @@ == %22darwin%22 - in p :%0A try: i @@ -328,18 +328,37...
89c4863322bcfcb31242ee5123f4ed42bd7ce7f4
Add test command to setup.py again
setup.py
setup.py
# -*- coding:utf-8 -*- from setuptools import setup setup( name = "interleaving", packages = ["interleaving", "interleaving.simulation"], version = "0.0.1", description = "Interleaving library for ranking evaluation", author = "Makoto P. Kato, Tomohiro Manabe", author_email = "kato@dl.kuis.kyot...
Python
0
@@ -44,16 +44,318 @@ rt setup +%0Afrom setuptools.command.test import test as TestCommand%0A%0Aclass PyTest(TestCommand):%0A def finalize_options(self):%0A TestCommand.finalize_options(self)%0A self.test_args = %5B%5D%0A self.test_suite = True%0A%0A def run_tests(self):%0A import pyte...
f5462c2610ab33578b8ef56387d0403af4c76969
Fix reading non-ascii symbols in README/CHANGES
setup.py
setup.py
import codecs import os import re import sys from distutils.command.build_ext import build_ext from distutils.errors import (CCompilerError, DistutilsExecError, DistutilsPlatformError) from setuptools import Extension, setup from setuptools.command.test import test as TestCommand try: ...
Python
0.000039
@@ -14,18 +14,23 @@ %0Aimport -os +pathlib %0Aimport @@ -1483,90 +1483,59 @@ )%0A%0A%0A -with codecs.open(os.path.join(os.path.abspath(os.path.dirname(%0A __file__)), +here = pathlib.Path(__file__).parent%0A%0Atxt = (here / 'ai @@ -1540,17 +1540,18 @@ aiohttp' -, + / '__init @@ -1561,45 +1561,33 @@ py...
4472aa5b2e852d4fbb3b1287384f39f459368bad
add temporary version in setup.py (#84)
setup.py
setup.py
from setuptools import setup, find_packages, Extension import numpy as np from Cython.Build import cythonize ext_modules = [ Extension( "ruptures.detection._detection.ekcpd", sources=[ "ruptures/detection/_detection/ekcpd.pyx", "ruptures/detection/_detection/ekcpd_computati...
Python
0
@@ -738,16 +738,21 @@ n=%221.1.0 +-rc.1 %22,%0A p
0d10206deebed57d4980891a1531f86ffb113dbc
Version 0.1.1
setup.py
setup.py
from setuptools import setup import os README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() setup( name='django-user-clipboard', url='https://github.com/MagicSolutions/django-user-clipboard', version='0.1', description='Clipboard API', author='Vladimir Rusinov', author_em...
Python
0.000001
@@ -233,16 +233,18 @@ ion='0.1 +.1 ',%0A d
ef23394f9c0e06fb6705bc37fab28a3077fe15c8
Bump version
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages base = os.path.dirname(os.path.abspath(__file__)) install_requires = [ 'aiohttp==1.0.5', 'aiohttp_jinja2', 'asyncio', 'aiohttp_debugtoolbar', 'aiohttp_autoreload', 'schematics>=2.0.0.dev2', 'aiopg==0.11.0', ] test...
Python
0
@@ -405,17 +405,17 @@ n='0.0.1 -1 +2 ',%0A
b951bb360f14da66ebb30d31c863ec811955f3cb
Set upper limits on some dependency versions. (#568)
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages install_requires = """ astropy colorlog numpy>=1.3.0 psycopg2 python-casacore python-dateutil>=1.4.1 pytz scipy>=0.7.0 sqlalchemy>=1.0.0 alembic monotonic """.split() extras_require = { 'monetdb': ['s...
Python
0
@@ -94,16 +94,22 @@ astropy +%3C3.0.0 %0A col @@ -130,16 +130,24 @@ y%3E=1.3.0 +,%3C1.17.0 %0A psy @@ -224,16 +224,23 @@ y%3E=0.7.0 +,%3C1.3.0 %0A sql
8a645a839d40f1c95b5007d8128a636f738649a4
Bump version
setup.py
setup.py
#!/usr/bin/env python # # Copyright 2014 Peter Bittner <django@bittner.it> # # 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 require...
Python
0
@@ -1164,17 +1164,17 @@ sion='0. -1 +2 ',%0A a
026caa995dee9115956d1a25c49b2c26647d876f
Update setup.py
setup.py
setup.py
from setuptools import setup, find_packages import os import codecs def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() setup( name='django-cdnjs', packages=find_packages(), version='2017.10.19-...
Python
0.000001
@@ -499,11 +499,10 @@ DME. -rst +md '),%0A
530aeadbc686f436e907ca8d111b5a72788906ee
Bump version to 1.0.4.dev
setup.py
setup.py
# Copyright 2018 The GraphNets Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
Python
0
@@ -1051,17 +1051,21 @@ on=%221.0. -3 +4.dev %22,%0A d
3621089d5ed6374e89138be01f5796ddf1727f69
Update version to 4.0.8
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '4.0.7' with open('requirements.txt') as f: requires = f.read().splitlines() url = 'https://github.com/pmaigutyak/mp-shop' setup( name='django-mp-shop', version=__version__, description='Django shop apps', long_description=open('READM...
Python
0
@@ -62,9 +62,9 @@ 4.0. -7 +8 '%0A%0A%0A
c09bf70bc7bc303ba22215b8c4eb24f14ee03842
fix flake8 issue
setup.py
setup.py
from setuptools import setup import os import re def find_version(*file_paths): """ This pattern was modeled on a method from the Python Packaging User Guide: https://packaging.python.org/en/latest/single_source_version.html We read instead of importing so we don't get import errors if our code ...
Python
0
@@ -2220,16 +2220,17 @@ =2.6.0', + %5D%0A %7D,
26fb85b304e25305977439fe1a80ea16a62566d9
make versions of sphinx compatible with read the docs
setup.py
setup.py
from setuptools import setup, find_packages import proso.release import os VERSION = proso.release.VERSION setup( name='proso-apps', version=VERSION, description='General library for applications in PROSO projects', author='Adaptive Learning Group', author_email='al@fi.muni.cz', namespace_pack...
Python
0
@@ -1361,15 +1361,13 @@ hinx -= +%3E =1.3 -.5 ',%0A @@ -1396,17 +1396,17 @@ napoleon -= +%3E =0.5.0',
4affa5053a3268d0becc9d2af849ecefa1da7c75
Fix for setup.py TypeError
setup.py
setup.py
from setuptools import setup, find_packages import django_nvd3 import os import codecs import re def read(*parts): return codecs.open(os.path.join(os.path.dirname(__file__), *parts)).read() def parse_requirements(file_name): requirements = [] for line in open(file_name, 'r').read().split('\n'): ...
Python
0
@@ -70,22 +70,8 @@ os%0A -import codecs%0A impo @@ -111,15 +111,8 @@ urn -codecs. open
baf1ef102ad367b1997c17dc2ca815ba94e13b38
Bump to next dev version
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
@@ -879,17 +879,22 @@ n='2.18. -1 +2alpha ',%0A d
b64d17589b321451237314fd8f5615590d66a93d
Make classifiers a list
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup settings = dict() # Publish if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() settings.update( name='whenpy'...
Python
0.000014
@@ -764,17 +764,17 @@ sifiers= -( +%5B %0A @@ -1452,17 +1452,17 @@ s',%0A -) +%5D ,%0A)%0A%0Aset
34edca7740c947de5859d29461064c9b2d58ba71
Bump gunicorn from 20.0.4 to 20.1.0 (#208)
setup.py
setup.py
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='ogn-python', versio...
Python
0.000001
@@ -2057,19 +2057,19 @@ orn==20. -0.4 +1.0 '%0A %5D,
0595acfc90fd432007603ec6c318380d3ef174a0
Add 2 applicable Trove classifiers
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ ] test_requirements = [ 'flake8', 'pytest', ] setup( name='nic...
Python
0
@@ -1289,16 +1289,62 @@ glish',%0A + 'Operating System :: OS Independent',%0A @@ -1674,16 +1674,45 @@ : 3.6',%0A + 'Topic :: Security',%0A %5D,%0A
e8069c8ff771b766757a1a96bc741a4073fcf9c1
add wheel support
setup.py
setup.py
# -*- coding: utf-8 -*- import io from setuptools import setup, find_packages try: from atomic import ffi except ImportError: ext_modules=[] else: ext_modules=[ffi.verifier.get_extension()] with io.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( name='atomic', version='0....
Python
0
@@ -27,16 +27,67 @@ port io%0A +import os%0A%0Afrom setuptools.dist import Distribution %0Afrom se @@ -249,16 +249,101 @@ ion()%5D%0A%0A +class BinaryDistribution(Distribution):%0A def is_pure(self):%0A return False%0A%0A with io. @@ -1200,10 +1200,44 @@ odules,%0A + distclass=BinaryDistribution,%0A ...
e8d40b76320cc430326ca1b6b6946cd624beb88c
organize lines
setup.py
setup.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. from setuptools import setup setup( entry_points={ 'trac.plugins': [ "release-macro = twisted_trac_plugins.release_macro", "ticket-reporter = twisted_trac_plugins.ticket_reporter", ], }, ...
Python
0.999811
@@ -342,16 +342,20 @@ lugins', +%0A version @@ -441,16 +441,20 @@ Prince%22, +%0A author_
6f16da09c98f6d52070764867fac26ee80cc894c
Prepare for release
setup.py
setup.py
# Copyright edalize contributors # Licensed under the 2-Clause BSD License, see LICENSE for details. # SPDX-License-Identifier: BSD-2-Clause import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="edalize", version="0.3.1",...
Python
0
@@ -310,17 +310,17 @@ on=%220.3. -1 +2 %22,%0A p
ab0e1f31f3c626de80a3b99dacfca77a930a5249
version bump;
setup.py
setup.py
import re from setuptools import setup, find_packages ''' References: https://python-packaging-user-guide.readthedocs.org/en/latest/ https://docs.python.org/3.5/distributing/index.html#distributing-index https://github.com/jgehrcke/python-cmdline-bootstrap http://www.pyinstaller.org/ Installation Packages: pip instal...
Python
0
@@ -465,17 +465,17 @@ bpack-0. -7 +8 .tar.gz%0A
16a9a9ad4554c2f727be5a833c388e13a77a8cfe
add lark file to data files
setup.py
setup.py
"""setup.py controls the build, testing, and distribution of the egg""" import re import os.path from setuptools import setup, find_packages VERSION_REGEX = re.compile(r""" ^__version__\s=\s ['"](?P<version>.*?)['"] """, re.MULTILINE | re.VERBOSE) VERSION_FILE = os.path.join("hcl2", "version.py") def get_lo...
Python
0
@@ -2249,10 +2249,50 @@ %0A %5D,%0A + data_files=%5B('', 'hcl2/hcl2.lark')%5D%0A )%0A
4b2ad41726f7879d024fc82c6a3154ebfbf9be7b
Use codecs.open()
setup.py
setup.py
#!/usr/bin/python import os, re, sys, unittest, doctest try: from setuptools import setup except ImportError: from distutils.core import setup def relative(filename): here = os.path.dirname('__file__') return os.path.join(here, filename) def read(filename): f = open(relative(filename), 'rb') ...
Python
0.000003
@@ -17,16 +17,24 @@ n%0Aimport + codecs, os, re, @@ -288,16 +288,23 @@ f = +codecs. open(rel @@ -322,17 +322,25 @@ ame), 'r -b +', 'utf-8 ')%0A t @@ -370,24 +370,8 @@ ad() -.decode('utf-8') %0A
2e6187224724780d5a026b6bd228c0fda155e338
Add test dependency towards extension-template
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-Core', version = '12.1.4', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI ...
Python
0
@@ -1226,24 +1226,77 @@ == 1.0.0',%0A + 'openfisca-extension-template == 1.0.0',%0A
e4dd1da8f2fdfa2f4071ab1796b31147f12d00a0
Add Python 3.2 trove classifier
setup.py
setup.py
from setuptools import setup setup(name='covenant', version='0.1.0', description='Code contracts for Python 3', author='Kamil Kisiel', author_email='kamil@kamilkisiel.net', url='http://pypi.python.org/pypi/covenant', license="BSD License", packages=["covenant"], keywords...
Python
0.999888
@@ -719,24 +719,84 @@ thon :: 3',%0A + 'Programming Language :: Python :: 3.2',%0A
8fd223aac8bb3255efeeac47502484fe3801c0ca
Fix travis
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- """Tunisia specific model for OpenFisca -- a versatile microsimulation free software""" from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System...
Python
0.000008
@@ -1252,16 +1252,42 @@ 'nose',%0A + 'matplotlib',%0A
effa3fec06f83dd0f9af8359cc3b4f922ad83122
Prepare PushHubCore 0.17.
setup.py
setup.py
""" Copyright (c) 2013, Regents of the University of California 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
@@ -2049,9 +2049,9 @@ '0.1 -6 +7 ',%0A
a7c396144b9991a520bb9e18f0d31670e1805abc
Version 0.3.0
SiQt/_version.py
SiQt/_version.py
__version__ = '0.3.dev0'
Python
0.000001
@@ -16,10 +16,7 @@ 0.3. -dev 0'%0A
9f7a6e0a55291aa0d89348b401569179163b6eb6
Undo a 2to3 change
setup.py
setup.py
from distutils.core import setup from . import athumb long_description = open('README.rst').read() setup( name='django-athumb', version=athumb.VERSION, packages=['athumb', 'athumb.backends', 'athumb.management', 'athumb.management.commands', 'athumb.templatetags', 'athumb.uploa...
Python
0.000075
@@ -30,15 +30,8 @@ tup%0A -from . impo
6f6b5084669b6e2c0018191e877ad05c94b4177c
Work around bug with Safari auto-extractor.
Scripts/release.py
Scripts/release.py
#!/usr/bin/python import argparse import compileall import distutils.version import glob import json import os import plistlib import shutil import subprocess import sys import tempfile import urllib import webbrowser def update_bundle_version(bundle_path, version, repo): info_plist_path = os.path.join(bundle_pat...
Python
0
@@ -1530,16 +1530,106 @@ t_name)%0A + archive_dir_path = os.path.join(temp_dir_path, '%25s %25s' %25 (product_name, version), '')%0A git( @@ -1660,19 +1660,19 @@ fix= -%25s/' %25 temp +' + archive _dir @@ -1806,36 +1806,39 @@ = os.path.join( -temp +archive _dir_path, py_pa @@ -2111,36 +2111,39 @@ le(os.p...
dfe34ec620e777a407294c2ec55594e2640dfe0f
Update plugin modules in setup.py
setup.py
setup.py
#!/usr/bin/python # python setup.py sdist --format=zip,gztar from setuptools import setup import os import sys import platform import imp version = imp.load_source('version', 'lib/version.py') util = imp.load_source('version', 'lib/util.py') if sys.version_info[:3] < (2, 6, 0): sys.exit("Error: Electrum requir...
Python
0
@@ -3774,15 +3774,20 @@ ins. -aliases +btchipwallet ',%0A @@ -3826,24 +3826,66 @@ e_buyback',%0A + 'electrum_plugins.cosigner_pool',%0A 'ele @@ -3944,14 +3944,28 @@ ins. -labels +greenaddress_instant ',%0A @@ -3993,19 +3993,14 @@ ins. -pointofsale +labels ',%0A @@ -4028,16 +4028,13 @@ ins. -q...
44b9649df3418713b8ef5ae8e1f2990a92a48907
Patch 0.2.1 to remove print
setup.py
setup.py
from setuptools import setup setup( name='icapservice', version='0.2.0', description='ICAP service library for Python', author='Giles Brown', author_email='giles_brown@hotmail.com', url='https://github.com/gilesbrown/icapservice', license='MIT', packages=['icapservice'], zip_safe=F...
Python
0
@@ -72,17 +72,17 @@ on='0.2. -0 +1 ',%0A d
d79145f60abbecda2b681525d40d972e93d18109
Bump to 0.3.0
setup.py
setup.py
import codecs import setuptools __version__ = '0.2.1' with codecs.open('README.rst', 'r', 'utf-8') as f: readme = f.read() setuptools.setup( name='mbq.metrics', long_description=readme, version=__version__, license='Apache 2.0', url='https://github.com/managedbyq/mbq.metrics', author='Man...
Python
0.000108
@@ -47,11 +47,11 @@ '0. -2.1 +3.0 '%0A%0Aw
e1c76a8b4b052d15d68cd282eee86364a348667c
bump version to 0.1.1. we're really coming along.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup(name="kestrel", version="0.1", description="Oversimple library to talk to Kestrel", author="Michael Wolf", author_email="maw+python-kestrel@pobox.com", keywords="queues kestrel memcache", ...
Python
0
@@ -125,16 +125,18 @@ ion=%220.1 +.1 %22,%0A
5b1ae941f00420d04b18d61b0e5f8523086e07c0
Bump version
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="chrys", version="3.0.0", author="Hein Bekker", author_email="hein@netbek.co.za", description="A collection of color palettes for mapping and visualisation", long_description=long_descr...
Python
0
@@ -134,17 +134,17 @@ on=%223.0. -0 +1 %22,%0A a
55bc397d6c2884fa68e3c6caf9d79ea27af79a6e
add requirements to setup.py
setup.py
setup.py
from setuptools import setup, find_packages setup( name="cobertura-clover-transform", version='1.1.1', packages=find_packages(), include_package_data=True, description="Tools for transforming Cobertura test " "coverage XML into Clover-style XML", author='Chris Wacek', author...
Python
0
@@ -277,16 +277,47 @@ e XML%22,%0A + install_requires=%5B'lxml'%5D,%0A auth
2c655c86d16b427d596cda64ef95d5ea48dc9470
Update version for next release 0.2
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() requires = [ 'requests', ] setup(name='prism_rest_client', version='0.1', description='prism_rest_client', long_description=REA...
Python
0
@@ -248,9 +248,9 @@ ='0. -1 +2 ',%0A
375888254dbb27cdf460e1d31141c4edfb3d314f
添加pyshere到setup.py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages __author__ = 'Hardy.zheng' __version = '0.1' setup( name='cdsagent', version=__version, description='cdsagent ', author='hardy.Zheng', author_email='wei.zheng@yun-idc.com', install_requires=[ 'eventlet>=0.13.0', ...
Python
0.000001
@@ -355,24 +355,49 @@ ix%3E=1.7.0',%0A + 'pysphere%3E=0.5',%0A 'ste
23c596fb331478cbc15d1854b61a3e63284da3a5
Fixed setup.py so that it doesn't throw encoding error.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup import sys import subprocess # For Makefile parsing import shlex try: # pragma: no cover import ConfigParser import StringIO except ImportError: # pragma: no cover # Python 3 compatibility import configparser as Conf...
Python
0.999996
@@ -5410,21 +5410,34 @@ st = ''%0A +import io%0A with +io. open('RE @@ -5447,18 +5447,45 @@ E.rst', -'r +mode = 'r', encoding = 'utf-8 ') as fd
6edfa553e32dfefb0494c453b60798d754558fee
Remove matplotlib requirement
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import setuptools requirements = [ "numpy", "hanselx", "pysam", "PyVCF", "matplotlib", ] test_requirements = [ ] setuptools.setup( name="gretel", version="0.0.1a", url="https://github.com/samstudio8/gretel", description="An algorith...
Python
0
@@ -134,26 +134,8 @@ F%22,%0A - %22matplotlib%22,%0A %5D%0A%0At
356f4caabf4b6c455c9045102594b0f72cea7016
Bump version.
setup.py
setup.py
"""A setuptools based setup module.""" # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open as c_open from os import path HERE = path.abspath(path.dirname(__file__)) # Get the long description from the README file with c_open(pat...
Python
0
@@ -456,9 +456,9 @@ 0.5. -2 +3 ',%0A%0A
42b45b7f5629c235cd6d3931221d241727842e06
Update version to 1.0.7
setup.py
setup.py
# coding:utf-8 import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info < (2, 6): error = 'ERROR: qingcloud-sdk requires Python Version 2.6 or above.' print >> sys.stderr, error sys.exit(1) setup( name = 'qingcloud-sdk', versio...
Python
0
@@ -322,17 +322,17 @@ = '1.0. -6 +7 ',%0A d
37e426762b2ca068eb52375de805dddb1f3a169f
Fix data package
setup.py
setup.py
# -*- coding: utf-8 -*- # License: 3-clause BSD __revision__ = "$Id: $" # for the SVN Id import sys import os from setuptools import setup, find_packages import glob _MAJOR = 0 _MINOR = 10 _MICRO = 0 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release ...
Python
0.000086
@@ -4275,16 +4275,87 @@ adiff' : + %5B'*/*', '*/*/*'%5D,%0A 'sequana.resources.testing.feature_counts' : %5B'*/*'%5D
dc04fee375e8ac66efb30a3c536b5a929f9df45e
Version bump to 0.6.1
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'nose', 'unittest2', 'mock', 'redis', 'Django>=1.2,<1.4', 'psycopg2', ] install_requires = [ ] setup( name='nydus', version='0.6.0', author='David Cramer', author_email='dcramer@gmail.com', ...
Python
0
@@ -242,17 +242,17 @@ on='0.6. -0 +1 ',%0A a
308d456a39f07b150d75c4a957aaf6f0765ac83f
fix error in setup.py
setup.py
setup.py
try: # Try using ez_setup to install setuptools if not already installed. from ez_setup import use_setuptools use_setuptools() except ImportError: # Ignore import error and assume Python 3 which already has setuptools. pass from setuptools import setup import sys # Define required packages. requi...
Python
0.000001
@@ -805,16 +805,17 @@ py +_ modules @@ -821,17 +821,16 @@ - = %5B'ina2
c8e8dd74bc8801b6c97932a81180960319714046
Increment version to 0.0.2
setup.py
setup.py
from setuptools import setup, find_packages setup(name='diaspy', version='0.0.1', author='Moritz Kiefer', author_email='moritz.kiefer@gmail.com', packages=find_packages(), install_requires=['requests'] )
Python
0.019904
@@ -81,9 +81,9 @@ 0.0. -1 +2 ',%0A @@ -157,16 +157,135 @@ l.com',%0A + url='https://github.com/Javafant/diaspora-api',%0A description='A python api to the social network diaspora',%0A pa
75318d6c8cc843112edb875359afb1492858765c
Fix version conflict
setup.py
setup.py
from setuptools import setup, find_packages from slackminion.plugins.core import version setup( name='slackminion', version=version, packages=find_packages(exclude=['test_plugins']), url='https://github.com/arcticfoxnv/slackminion', license='MIT', author='Nick King', ...
Python
0.000002
@@ -823,17 +823,17 @@ er==0.1. -1 +2 ',%0A
a85494c6e9db0458ca50a59232fca508ba9619f5
Increment version.
setup.py
setup.py
import subprocess import sys from setuptools import Command, setup class RunTests(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes...
Python
0
@@ -567,9 +567,9 @@ 0.8. -1 +2 ',%0A
2b3a204a2b799828c07b269c48d9b1542ef52394
Set required version of `setuptools` to 0.6.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2003-2013 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://trac.edgewall.org/wiki/TracLicense. #...
Python
0.000002
@@ -3205,10 +3205,8 @@ =0.6 -b1 ',%0A
d657f8416dddedcd300fa451e6f510b0a639f61b
Bump minimum version for google-api-core to 1.14.0. (#8709)
setup.py
setup.py
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
Python
0
@@ -970,17 +970,18 @@ c%5D %3E= 1. -6 +14 .0, %3C 2.
c2a863d2b6da40a9cd23d31390b7510cf6786cd6
Refactor setup.py
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup, Command, find_packages except ImportError: from distutils.core import setup, Command, find_packages __version__ = "1.0" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') os.system('python setup.py b...
Python
0
@@ -503,16 +503,17 @@ exit()%0A%0A +%0A requirem
dd592e99e1bf4e510cfea85e5e15a2c49366dce6
Version bump
setup.py
setup.py
from setuptools import find_packages, setup setup(name='minitrue', version='1', description='Proxy designed to lie.', url='https://github.com/lvh/minitrue', author='Laurens Van Houtven', author_email='_@lvh.cc', packages=find_packages(), install_requires=['twisted'], ...
Python
0.000001
@@ -80,9 +80,16 @@ on=' -1 +20130126 ',%0A
cf42122aa4e82c22bb26140921bb7468df159636
Update classifiers
setup.py
setup.py
from setuptools import setup with open('README.rst') as f: readme = f.read() with open('CHANGELOG.rst') as f: changelog = f.read() setup( name='django-logentry-admin', author='Yuri Prezument', author_email='y@yprez.com', version='1.0.6', packages=['logentry_admin'], package_data={ ...
Python
0.000002
@@ -1138,24 +1138,62 @@ go :: 2.2',%0A + 'Framework :: Django :: 3.0',%0A 'Int @@ -1696,21 +1696,70 @@ on :: 3.7',%0A + 'Programming Language :: Python :: 3.8',%0A %5D,%0A)%0A
ed8dd36a07876a711a62eae98d6af79322801b03
Make sure the shared library doesn't appear in source builds, using various hacks
setup.py
setup.py
try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension from distutils.spawn import spawn from distutils.command.build import build import os import sys from llvmlite.utils import get_library_name here_dir = os.path.dirname(__file__) class LlvmliteBuild...
Python
0
@@ -187,16 +187,66 @@ t build%0A +from distutils.command.build_ext import build_ext%0A import o @@ -385,133 +385,944 @@ def -run(self):%0A cmd = %5Bsys.executable, os.path.join(here_dir, 'ffi', 'build.py')%5D%0A spawn(cmd, dry_run=self.dry_run) +finalize_options(self):%0A build.finalize_options...
5a3df5efb35f55d136d2364402f1c9009b85e6a4
Bump version
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
@@ -1164,9 +1164,9 @@ 0.1. -6 +7 %22,%0A
1223131ff2046257a52a65a059b75e5bd38e4e45
Remove openpyxl version pin (1.5.8 -> latest)
setup.py
setup.py
import os from setuptools import setup, find_packages version = '3.1.5' def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() setup(name='bika.lims', version=version, description="Bika LIMS", long_description=read("README.rst") + \ read(...
Python
0
@@ -1696,15 +1696,8 @@ pyxl -==1.5.8 ',%0A
a4b2c2f46744bc10b138612adc18f8f32d682b94
Fix "ImportError: cannot import name wraps" on trusty
setup.py
setup.py
#!/usr/bin/env python import os import re from setuptools import setup, find_packages def get_ini_variable(name): with open(os.path.join(os.path.dirname(__file__), 'src', 'ros_get', '__init__.py')) as f: return re.compile(r".*%s = '(.*?)'" % name, re.S).match(f.read()).group(1) with open(os.path.join(os...
Python
0.000505
@@ -994,16 +994,88 @@ 'mock',%0A + 'six%3E=1.7', # https://github.com/testing-cabal/mock/issues/257%0A
15f0275b7b8b75bcb100c26dc48392efc90a392e
Bump version.
setup.py
setup.py
import codecs from setuptools import setup requirements = [i.strip() for i in open('requirements.txt').readlines()] setup( name='djet', version='0.0.10', description='Set of helpers for easy testing of Django apps.', long_description=codecs.open('README.rst', encoding='utf-8').read(), license='MIT...
Python
0
@@ -154,11 +154,10 @@ ='0. -0. 1 +. 0',%0A
c62bcab18e38712ce2346cc5fe11f7c01759a431
bump version number
setup.py
setup.py
import os from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() setup( name='django-italian-utils', version='0.3.2', packages=find_packages(), include_package_data=True, license='MIT License', description='Libreria di utility per sempli...
Python
0.000004
@@ -174,17 +174,17 @@ on='0.3. -2 +3 ',%0A p
ac189124bb54fe5a5e65ad6299a21becfbab94c7
version 0.1.5
setup.py
setup.py
# -*- coding: utf-8 -*- from distutils.core import setup setup(name = 'pythreejs', version = '0.1.4', description='Interactive 3d graphics for the Jupyter notebook, using Three.js from IPython widgets.', long_description='A Python/ThreeJS bridge utilizing the IPython widget infrastructure.', a...
Python
0.000003
@@ -99,17 +99,17 @@ = '0.1. -4 +5 ',%0A
a98511d4028b678333a56edd293c5905d976ac88
Fix typo in setup.py
setup.py
setup.py
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='prettystring', version='0.1.0', description='Build ANSI color encoded strings with ease.', long_description=readme(), classifiers=[ 'Development Status :: 2 - Pre-Alpha', ...
Python
0.000067
@@ -998,16 +998,17 @@ requires += %5B'enum34
602ec25dcb8934da3d8f3eea3f21d4fdaf93ac37
add 'mock'
setup.py
setup.py
#! /usr/bin/env python import os, sys from setuptools import setup, find_packages if __name__ == "__main__": here = os.path.abspath(".") README = open(os.path.join(here, 'README.rst')).read() install_requires = ["webob", "simplejson", "pycrypto", "requests", "twisted"] if sys.version_info < (2,7): ...
Python
0.999977
@@ -276,16 +276,24 @@ twisted%22 +, %22mock%22 %5D%0A if
d614dbe8e1d96c9029fc64f72da5acb85a53a5ac
Update setup.py
setup.py
setup.py
# -*- coding: utf-8 -*- from os import path, pardir, chdir from setuptools import setup, find_packages README = open(path.join(path.dirname(__file__), 'README.rst')).read() # requirements.txt must be included in MANIFEST.in and include_package_data must be True # in order for this to work; ensures that tox can use the...
Python
0
@@ -602,9 +602,13 @@ 0.9. -4 +5-dev %22,%0A @@ -761,16 +761,35 @@ fido.',%0A + license='MIT',%0A long
19f4fcf2acbedd78b4510b8260e95f7d389f812b
Fix the version of pycodestyle to 2.5.0
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup for autopep8.""" import ast import io from setuptools import setup INSTALL_REQUIRES = ( ['pycodestyle >= 2.5.0'] ) def version(): """Return version string.""" with io.open('autopep8.py') as input_file: for line in input_file: ...
Python
0.999999
@@ -163,9 +163,9 @@ yle -%3E += = 2.
e1f874902ee338ef779cbbf10d5d68d39630ac97
add a newline for pep8 pass
setup.py
setup.py
import os from setuptools import setup, find_packages import emit def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except IOError: # for tox return '' setup( # System information name='emit', version=emit.__version__, packages=find_pack...
Python
0
@@ -61,16 +61,17 @@ t emit%0A%0A +%0A def read
d66a393f73b1c30f8eff14638d41cc332085afc6
version bump
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages setup(name="dbtruck", version="0.0.8", description="Dump your data into your database", license="MIT", aut...
Python
0.000001
@@ -228,9 +228,9 @@ 0.0. -8 +9 %22,%0A
7f688edf040a8bbb4bb03f408bd1c4cfab6b19ef
Update Version
setup.py
setup.py
from setuptools import find_packages from setuptools import setup VERSION = '0.0.1' setup_args = dict( name='BigQuery-GCS', description='Export Large Results from BigQuery to Google Cloud Storage', url='https://github.com/pirsquare/BigQuery-GCS', version=VERSION, license='MIT', packages=find_p...
Python
0
@@ -79,9 +79,9 @@ 0.0. -1 +2 '%0A%0As
dd949fdcd9834400f0534c054b56cb4d825a2be2
Add package_data to setup.py
setup.py
setup.py
from setuptools import setup, find_packages version = '0.1.0' setup( name='django-writeboards', version=version, description="Manage 123.writeboard.com hosted writeboards in one place. Allows easier team collaboration on multiple writeboardsself.", long_description=read('README'), classifiers=[ ...
Python
0.000001
@@ -301,92 +301,184 @@ -classifiers=%5B%0A 'Framework :: Django',%0A 'Programming Language :: Python +author='Thomas Schreiber',%0A author_email='tom@insatsu.us',%0A url='http://github.com/rizumu/django-writeboards/',%0A classifiers=%5B%0A 'Development Status :: 3 - Alpha ',%0A @@ ...
7463e1073143e0d22a17c499ddb8701307f45a68
Declare dependency
setup.py
setup.py
from setuptools import setup, find_packages setup( name='zeit.intrafind', version='2.3.1.dev0', author='gocept, Zeit Online', author_email='zon-backend@zeit.de', url='http://www.zeit.de/', description="vivi intrafind integration", packages=find_packages('src'), package_dir={'': 'src'},...
Python
0
@@ -522,16 +522,14 @@ .cms - %3E= - 2.8 -1 +9 .0.d
e5c693f185e430c671baceecba8c528d0376142f
Add nicer header.
setup.py
setup.py
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- #============================================================================== # Module : setup # Author : Vincent BESANCON <besancon.vincent@gmail.com> # Description : Setuptools install script. #---------------------------------------------------------...
Python
0
@@ -47,621 +47,676 @@ *-%0A# -==============================================================================%0A# Module : setup%0A# Author : Vincent BESANCON %3Cbesancon.vincent@gmail + Copyright (C) Faurecia %3Chttp://www.faurecia .com +/ %3E%0A# - Description : Setuptools install script.%0A#-------...
06a63dd59d1253875a703cd9b44b45caa59be4fc
add missing PyYAML requirement
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2016 CNRS # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation ...
Python
0.000003
@@ -1628,24 +1628,49 @@ ze %3E= 0.2',%0A + 'pyYAML %3E= 3.12'%0A %5D,%0A%0A
ad9f7fdf4a6339c951b3d619ab8070bc2ba251cc
Version 0.7.2 to Version 0.7.3
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup import sys with open('README.rst') as file: long_description = file.read() extras = {} if sys.version_info < (3,3): extras['tests_require'] = ['mock'] setup( name = 'gitdh', version = '0.7.2', description = 'Tool to automatically de...
Python
0.000024
@@ -268,17 +268,17 @@ = '0.7. -2 +3 ',%0A%09%09des
d99faf5a5fff5f9fac7b02204e8de361b6750e0e
remove prefix version for tags
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup file for cee_syslog_handler. This file was generated with PyScaffold 0.7, a tool that easily puts up a scaffold for your new Python project. Learn more under: https://github.com/blue-yonder/pyscaffold """ import os import sys import inspect from ...
Python
0
@@ -1356,17 +1356,16 @@ efix = ' -v ' # tag
1937f86eb5088e18fe2f5c23116355dc305a6347
Add requirements to setup.py.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright © 2012-2013 by its contributors. See AUTHORS for details. # # Distributed under the MIT/X11 software license, see the accompanying # file LICENSE or http://www.opensource.org/licenses/mit-license.php. # import os from distutils.core import setup from bitco...
Python
0
@@ -2050,16 +2050,302 @@ %0A %5D,%0A + install_requires=%5B%0A 'bigfloat%3E=0.3.0a2',%0A 'blist%3E=1.3.4',%0A 'cdecimal%3E=2.3',%0A 'ecdsa%3E=0.8',%0A 'gmpy2%3E=2.0.0',%0A 'isodate%3E=0.4.8',%0A 'recordtype%3E=1.1',%0A 'requests%3E=0.14.0',%0A 'simpl...
1d3ee6c7477fbece473ad642a57e2069336863a2
Bump version to 1.1.8a.
setup.py
setup.py
#!/usr/bin/env python """Setup file and install script for NextGen sequencing analysis scripts. """ import os from setuptools import setup, find_packages version = "1.1.7" def write_version_py(): version_py = os.path.join(os.path.dirname(__file__), 'bcbio', 'pipeline', 'version.py') ...
Python
0
@@ -167,9 +167,10 @@ 1.1. -7 +8a %22%0A%0Ad
2f01fe5d96869cfca1d7564c0a5032c4088e3d5f
fix install
setup.py
setup.py
import os from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES app_name = 'templatesadmin' version = __import__(app_name).__version__ # Tell distutils to put the data_files in platform-specific installation # locations. See here for an explanation: # http://groups.google.com/group/co...
Python
0.000001
@@ -1405,16 +1405,19 @@ ('README +.md ').read(
3a99eed823990627d15e68734d1a8d161a1d6539
fix Fsdb library version to 0.3.3
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.000001
@@ -3855,16 +3855,25 @@ 'Fsdb + == 0.3.3 ',%0A
4bfd742034f975f0b52858e8f3d85a93396dd5a6
Bump version to 0.7
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.6', description='A lightweight REST API...
Python
0
@@ -268,17 +268,17 @@ sion='0. -6 +7 ',%0A @@ -516,9 +516,9 @@ l/0. -6 +7 ',%0A
2f998d901cef22615fbe8e6eb1a07f1a67f2681f
Bump version to 0.1.2
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 -*- import sys from setuptools import setup, find_packages if sys.version_info < (3, 0): print('ERROR: UliEngineering currently requires at least Python 3.0 to run.') sys.exit(1) setup(name='UliEngineering', version='0.1.1', description='Computational tools...
Python
0.000001
@@ -271,17 +271,17 @@ on='0.1. -1 +2 ',%0A
b9f14322be5c13a05c2571117d261c441a19866d
Bump version to 4.6a2
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8') as readme: README = readme.read() setup( name='django-localized-fields', version='4.6a1', packages=find_packages(exclude=['tests']), include_package_data=True, ...
Python
0
@@ -231,17 +231,17 @@ on='4.6a -1 +2 ',%0A p
aa9f43bb5b11abf3ff8c15d36c3343b1685f896b
fix syntax error in setup.py
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "falcon-cors", version = "1.0.0", description = "Falcon CORS middlware", package_dir = {"":"src"}, packages = find_packages("src"), install_requires=["falcon"] author = 'Colton Leekley-Winslow', author_email = 'lwcolton@gmail.com...
Python
0.000001
@@ -235,16 +235,17 @@ falcon%22%5D +, %0A aut