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 |
|---|---|---|---|---|---|---|---|
66c8a093eca70f9774e6db8b7490d6e44a219d33 | change version | setup.py | setup.py | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
... | Python | 0.000001 | @@ -616,9 +616,9 @@
1.1.
-7
+8
',%0A%0A
|
af2db11c0c365e4a4c6f91aa799abc7cb28bcbb3 | Fix setup | setup.py | setup.py | #!/usr/bin/python2.7
from distutils.core import setup, Extension
from os import getcwd
from os.path import join
from platform import architecture
from sys import platform
from nassl import __author__, __version__
class SupportedPlatformEnum:
"""Platforms supported by nassl.
"""
OSX_64 = 1
LINUX_64 = 2... | Python | 0.000001 | @@ -1570,20 +1570,21 @@
'nassl.
-SslC
+ssl_c
lient',
@@ -1594,17 +1594,19 @@
ssl.
-D
+d
ebug
-SslC
+_ssl_c
lien
@@ -1620,13 +1620,14 @@
ssl.
-X509C
+x509_c
erti
@@ -1665,13 +1665,14 @@
ssl.
-OcspR
+ocsp_r
espo
|
bd266d7a60a9e9ea1523ab13fa941012858cfc56 | Set version for 0.1.0 release. | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='vumi-wikipedia',
version='0.1a',
description='Vumi Wikipedia App',
packages=find_packages(),
include_package_data=True,
install_requires=[
'vumi>=0.5',
'unidecode',
],
url='http://github.com/praekelt/vumi-wikipedi... | Python | 0 | @@ -88,17 +88,18 @@
ion='0.1
-a
+.0
',%0A d
|
81fd9afe628d441b409763f71859736812e72d4f | Update rootwrap; track changes in nova/cinder | setup.py | setup.py | # Copyright 2011 OpenStack, 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.000007 | @@ -1158,16 +1158,44 @@
pts = %5B%0A
+ 'bin/quantum-rootwrap',%0A
%5D%0A%0Aconfi
@@ -1701,16 +1701,46 @@
.conf',%0A
+ 'etc/rootwrap.conf',%0A
|
87feb67efe527250a999ea032a5a8f647bea7de1 | remove dateutil requirement from setup.py because it fails | setup.py | setup.py | #! /usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='permamodel',
version='0.1.0',
author='Elchin Jafarov and Scott Stewart',
author_email='james.stewart@colorado.edu',
description='Permamodel',
long_descripti... | Python | 0 | @@ -542,20 +542,8 @@
aml'
-, 'dateutil'
),%0A
|
471ef9a9c9f0a14a0077f3cb6cbedad918c2f166 | Delete obsolete PyPI tags | 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 = [
# TODO: put package requirements here
]
test_requirements = [
# TOD... | Python | 0.000001 | @@ -902,57 +902,8 @@
s=%5B%0A
- 'Development Status :: 2 - Pre-Alpha',%0A
@@ -1040,159 +1040,8 @@
h',%0A
- %22Programming Language :: Python :: 2%22,%0A 'Programming Language :: Python :: 2.6',%0A 'Programming Language :: Python :: 2.7',%0A
|
d1d820633bb46c59897155df4f1d75396ae66c89 | Bump to 0.1.1 | setup.py | setup.py | import os
from setuptools import setup, find_packages
def README():
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
return open('README.md').read()
setup(
name='django-modalview',
version='0.1.1-dev',
packages=find_packages(),... | Python | 0.000683 | @@ -281,12 +281,8 @@
.1.1
--dev
',%0A
|
b5594a330bbfc1f9419aa0ba1d4f2d2d8b29e32a | rm "__main__" def | setup.py | setup.py | """Config for PyPI."""
from collections import OrderedDict
import importlib.machinery
from setuptools import find_packages
from setuptools import setup
import os
from pprint import pprint
def build_contribs_file():
"""Recursively scan ``cltk`` dir for ``.py`` files and read
``__author__``, then build a dicti... | Python | 0.999993 | @@ -1667,16 +1667,39 @@
rib_f)%0A%0A
+build_contribs_file()%0A%0A
setup(%0A
@@ -3125,58 +3125,4 @@
,%0A)%0A
-%0Aif __name__ == %22__main__%22:%0A build_contribs_file()%0A
|
2e66322df3c48e30469ca2720e1ca2c8b691f1ea | version bump | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
name = 'versioning_fs'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ''
setup (
name = name,
version = '0.0.7',
description = """Incremental versioning file system ... | Python | 0.000001 | @@ -257,9 +257,9 @@
0.0.
-7
+8
',%0A
|
077150086ebbdd2e30e2a77b5771d9cc71c121f8 | version increment | setup.py | setup.py | from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='ssbio',
version='0.9.9.7',
author='Nathan Mih',
author_email='nmih@ucsd.edu',
license='MIT',
url='http://github.com/SBRG/ssbio',
dow... | Python | 0.000002 | @@ -164,17 +164,17 @@
='0.9.9.
-7
+8
',%0A
@@ -375,9 +375,9 @@
9.9.
-7
+8
.tar
|
f6056eb9f9b19f89cd8c39fa3eae181b35a7203a | Version 0.6.5 | setup.py | setup.py | """setup.py file."""
import uuid
from setuptools import setup, find_packages
from pip.req import parse_requirements
__author__ = 'David Barroso <dbarrosop@dravetech.com>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
setup(
name="napalm-... | Python | 0.000001 | @@ -342,9 +342,9 @@
0.6.
-4
+5
%22,%0A
|
138755e72a580d16104b7662a611c0a9f2b65a0d | Update setup.py | setup.py | setup.py | # -*- coding:utf-8 -*-
from setuptools import setup
from timezonefinder.global_settings import PACKAGE_DATA_FILES, PACKAGE_NAME
setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
package_data={PACKAGE_NAME: PACKAGE_DATA_FILES},
include_package_data=True,
description="fast python package for findin... | Python | 0.000001 | @@ -50,83 +50,39 @@
up%0A%0A
-from timezonefinder.global_settings import PACKAGE_DATA_FILES, PACKAGE_NAME
+PACKAGE_NAME = %22timezonefinder%22
%0A%0Ase
@@ -137,24 +137,32 @@
E_NAME%5D,%0A
+ # NOTE:
package_dat
@@ -166,44 +166,75 @@
data
-=%7BPACKAGE_NAME: PACKAGE_DATA_FILES%7D,
+ is not required. all data file... |
bb481940f4116bc3322c5f43802e26d6f76feff7 | Bump version | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='immobilus',
version='1.4.2',
description='Say `Immobilus!` to freeze your tests',
long_description=long_description,
author='Eugene Pokidov',
author_email='pokido... | Python | 0 | @@ -160,17 +160,17 @@
on='1.4.
-2
+3
',%0A d
|
fb63c0b3e356f54f333da84ce5097c3c5670969c | bump version to 0.6.8-bw2 | setup.py | setup.py | from setuptools import setup
setup(
name='slacker',
version='0.6.8-bw',
packages=['slacker'],
description='Slack API client',
author='Oktay Sancak',
author_email='oktaysancak@gmail.com',
url='http://github.com/os/slacker/',
install_requires=['requests >= 2.2.1'],
license='http://ww... | Python | 0 | @@ -72,16 +72,17 @@
0.6.8-bw
+2
',%0A p
|
54af42d8d0194a346a43aa3080e6bc9d5326a3db | Fix syntax error in setup.py | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/globocom/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com timehome@corp.globo.com
from setuptools import setup, Extension
from thumbor import __versi... | Python | 0.000009 | @@ -2962,24 +2962,30 @@
%22
-derpconf%3E=0.2
+Pillow%3E=1.7.5,%3C1.8
.0%22
+,
%0A
@@ -2992,38 +2992,32 @@
%22
-Pillow%3E=1.7.5,%3C1.8
+derpconf%3E=0.2
.0%22
-,
%0A %5D
|
ad39c57af43a7249d8a7f8a2a99d7f84b3c5916e | Version bump | setup.py | setup.py | """
Package configuration file
"""
from setuptools import find_packages, setup
setup(
name='IXDjango',
version='0.2.0',
author='Infoxchange Australia dev team',
author_email='devs@infoxchange.net.au',
packages=find_packages(),
url='http://pypi.python.org/pypi/IXDjango/',
license='MIT',
... | Python | 0.000001 | @@ -118,17 +118,17 @@
on='0.2.
-0
+1
',%0A a
|
4d2cbb209ab57efb5d604b2970bf1bb507ed46d2 | Use _CRT_SECURE_NO_WARNINGS on win32 | setup.py | setup.py | #!/usr/bin/env python
import sys
import os.path
import os
import platform
import warnings
import couchbase_version
try:
if os.environ.get('PYCBC_NO_DISTRIBUTE'):
raise ImportError()
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
extoptions ... | Python | 0.000001 | @@ -1583,24 +1583,91 @@
'include')%5D%0A
+ extoptions%5B'define_macros'%5D = %5B('_CRT_SECURE_NO_WARNINGS', 1)%5D%0A
pkgdata%5B
|
b2310258d64d5071302ca251b7653fc0eb3cb3a5 | add progressbar as dependency | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='kitti2bag',
version='1.4',
description='Convert KITTI dataset to ROS bag file the easy way!',
author='Tomas Krejci',
author_email='tomas789@gmail.com',
url='https://github.com/tomas789/kitti2bag/',
download_url = 'https... | Python | 0.000002 | @@ -486,16 +486,32 @@
pykitti'
+, 'progressbar2'
%5D%0A
|
f3e4138d74374c3b67b16ee03e97d0ab25bfae39 | Exit during setup if python < 3.5 | setup.py | setup.py | # -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2013-2018 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the Licen... | Python | 0.000035 | @@ -818,16 +818,98 @@
ckages%0A%0A
+if sys.version_info %3C (3,5):%0A sys.exit('Sorry, Python %3C 3.5 is not supported')%0A
%0Adef get
|
31fe82f95c230dd0acb46f4d3af01b954fb5f080 | Bump to 0.9 | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
from glob import glob
data = dict()
app = 'trivup'
data[app] = list()
# Find Apps data
for d in glob('trivup/apps/*App'):
data[app] += [x[x.find('apps/'):] for x in glob('%s/*' % d)
if x[-1:] != '~']
setup(name='trivup',
... | Python | 0.000067 | @@ -329,11 +329,11 @@
='0.
-8.3
+9.0
',%0A
@@ -602,11 +602,10 @@
ata=data
-%0A
)%0A
|
6bb8cf11389713b0428a08f3e108618b629e97f1 | Update download url | setup.py | setup.py | from distutils.core import setup
setup(name='python-googauth',
version='0.1.0',
description='Python library for Google Authenticator.',
author='RentShare Inc',
url='https://github.com/rentshare/python-googauth',
download_url='https://github.com/rentshare/python-googauth/downloads',
... | Python | 0 | @@ -273,43 +273,98 @@
com/
-rentshare/python-googauth/downloads
+downloads/rentshare/' + %5C%0A 'python-googauth/python-googauth-0.1.0.tar.gz
',%0A
|
1eb49850534c91b5e357ced1b6abaaa02ca0a316 | Add mock to test_require list | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
required_packages = ['pyparsing>=2.0.3']
if sys.version_info[:2] == (2, 6):
required_packages.append('argparse')
required_packages.append('ordereddict')
class PyTestCommand(TestCommand):
... | Python | 0 | @@ -1826,16 +1826,24 @@
'pytest'
+, 'mock'
%5D,%0A e
|
b2162920e5a50d4eabe592e3326286e13d91252f | Update jax required version | setup.py | setup.py | # Copyright 2019 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 | @@ -1011,17 +1011,17 @@
x%3E=0.1.5
-5
+7
',%0A '
|
a88f7e87f7c32c96bbcf01cc7296714c67120c0e | update setup | setup.py | setup.py | from setuptools import setup
import os
import sys
import re
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files, temp_data_files, addons_data_files = [], [], [], []
docs_data_files, resources_data_files = [], []
root_dir = os.path.dirname(__file__)
... | Python | 0.000001 | @@ -1648,9 +1648,9 @@
me='
-D
+d
jang
@@ -2254,8 +2254,9 @@
flag),%0A)
+%0A
|
ae9022385543e03e731b1356121bbe459e3adb67 | Update version number in prep for release | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='eventlet',
version='0.2',
description='Coroutine-based networking library',
author='Linden Lab',
author_email='eventletdev@lists.secondlife.com',
url='http://wiki.secondlife.com/wiki/Eventlet',
packages=find_p... | Python | 0 | @@ -110,9 +110,9 @@
='0.
-2
+5
',%0A
|
94aa8314057afa95ec81188eeca7df61f5c6d472 | bump version to 0.3.0 | setup.py | setup.py | import setuptools
setuptools.setup(
name='duct',
version='0.2.0',
py_modules=['duct'],
)
| Python | 0 | @@ -66,9 +66,9 @@
='0.
-2
+3
.0',
|
971e254f90595e7f7e23a563993382b5e9823548 | better description | setup.py | setup.py | import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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-bulk-update',
version='0.2',
package... | Python | 0.999755 | @@ -396,18 +396,39 @@
ate
-for d
+using one query over D
jango
+ ORM
.',%0A
|
e3033391d49ca111d0b4a9fc37451c00a03fbd47 | Install storage first because an issue with the google-resumable-media package version | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def walk_subpkg(name):
data_files = []
package_dir = 'cartoframes'
for parent, _, files in os.walk(os.path.join(package_dir, name)):
# Remove package_dir from the path.
sub_dir = os.sep.joi... | Python | 0 | @@ -834,22 +834,21 @@
oud-
-bigquery
+storage
%3E=1.
-19
+23
.0,%3C
@@ -867,37 +867,38 @@
oogle-cloud-
-storage
+bigquery
%3E=1.2
-3
+2
.0,%3C2.0',%0A
|
cb4daa01be56b0f4a2ffebcf4ef482f3edfa3b67 | add new directories to distribution file | setup.py | setup.py | import os
from distutils.core import setup
from distutils.command.install import install
from distutils.command.install_data import install_data
from opennsa import __version__
# nasty global for relocation
RELOCATE = None
class InstallOpenNSA(install):
def finalize_options(self):
install.finalize_opti... | Python | 0.000001 | @@ -2008,54 +2008,97 @@
ols/
-webservice', 'opennsa/protocols/webservice/ext
+discovery', 'opennsa/protocols/nsi1', 'opennsa/protocols/nsi2', 'opennsa/protocols/shared
',%0A
|
5533c9b79509098fbca8d8e0c90aaf45ee5ed260 | Remove Py2Exe references | setup.py | setup.py | #!/usr/bin/env python2.5
from distutils.core import setup
from distutils.core import setup
from distutils import cmd
from distutils.command.install_data import install_data as _install_data
from distutils.command.build import build as _build
import py2exe
import msgfmt
import os
class build_trans(cmd.Command):
... | Python | 0 | @@ -242,22 +242,8 @@
ld%0A%0A
-import py2exe%0A
impo
@@ -2074,156 +2074,8 @@
tup(
-options = %7B'py2exe': %7B'bundle_files': 1, 'compressed': True%7D%7D,%0A zipfile = None,%0A console = %5B'src/Jarokn-Battle.py'%5D,%0A
name
|
741333866a0ed776791a4ac11a19259b9e94a208 | Update setup.py description and classifiers. | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
version = "0.41"
setup(
name="pycoin",
version=version,
packages = [
"pycoin",
"pycoin.convention",
"pycoin.ecdsa",
"pycoin.key",
"pycoin.tx",
"pycoin.tx.script",
"pycoin.serialize",
"pycoin... | Python | 0 | @@ -1116,104 +1116,487 @@
on=%22
-A bunch of utilities that might be helpful when dealing with Bitcoin addresses and transactions.%22%0A
+Utilities for Bitcoin and altcoin addresses and transaction manipulation.%22%0A classifiers=%5B%0A 'Programming Language :: Python :: 2.7',%0A 'Programming Language... |
02f044dbbf485d2a2990f0fca1e1359537006c25 | Document project as Python 3 only (#146) | setup.py | setup.py | import re
from setuptools import setup
def get_version(filename):
with open(filename, 'r') as fp:
contents = fp.read()
return re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents).group(1)
version = get_version('flake8_comprehensions.py')
with open('README.rst', 'r') as readme_file:
readm... | Python | 0 | @@ -1687,16 +1687,71 @@
: 3.7',%0A
+ 'Programming Language :: Python :: 3 :: Only',%0A
%5D,%0A)
|
0592b12e2d8415a797f25a3a4fba374d6f5baa70 | change install_requires order to fix scipy install on readthedocs | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
# TODO Requirements are not really minimal at the moment...
# TODO Having PyTest in requirements not optimal, fix to make travis use
# the tests_require
import os
import sys
from setuptools import Command, setup
authors = [u"Daniel Suess", u"Milan Holzäpfel"]
name = "mpnu... | Python | 0 | @@ -2248,20 +2248,19 @@
'
-Num
+Sci
Py%3E=
-1.5.1
+0.15
',%0A
@@ -2267,35 +2267,36 @@
'
-Sci
+Num
Py%3E=
-0
+1.5
.1
-5
',%0A
|
512747db8f1593cd4a2eec91a6405ec13fd6fbbe | Revert "mark dependencies, so readthedocs can properly build" | setup.py | setup.py | #!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
# workaround issue on OSX, where sys.prefix is not an installable location
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
data_prefix = os.path.join('.', 'share', 'androguard')
elif sys.platform == 'win32':
... | Python | 0 | @@ -649,49 +649,8 @@
nts'
-, 'sphinx', 'sphinxcontrib-programoutput'
%5D%0Ael
@@ -765,49 +765,8 @@
nts'
-, 'sphinx', 'sphinxcontrib-programoutput'
%5D,%0A%0A
@@ -1326,16 +1326,75 @@
yQt5%22%5D,%0A
+ 'docs': %5B'sphinx', 'sphinxcontrib-programoutput'%5D,%0A
|
f6f70f71cfce3ced5ffe7b6431ee12553c8a3b6a | Add development status | setup.py | setup.py | """
Flask-Twilio
-------------
Make Twilio voice/SMS calls with Flask
"""
from setuptools import setup
exec(open('flask_twilio.py').readline())
setup(
name='Flask-Twilio',
version=__version__,
url='http://example.com/flask-twilio/',
license='BSD',
author='Leo Singer',
author_email='leo.singer... | Python | 0 | @@ -914,24 +914,71 @@
dependent',%0A
+ 'Development Status :: 2 - Pre-Alpha',%0A
'Pro
|
ae9ffa23940a624c9fa6991f136f689a5d572494 | Fix typo in script installation | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright (c) 2015 Ericsson AB
#
# 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 ... | Python | 0.000002 | @@ -2269,17 +2269,17 @@
scontrol
-.
+:
main',%0A
|
5f4ed7dd09d6010ae77dbe511fa55f02a8b92e99 | fix dependency version for hedgehog-server | 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.absp... | Python | 0.000001 | @@ -1983,16 +1983,29 @@
g-server
+ %3E= 0.8, %3C0.9
',%0A
|
969021b4fba8061db7cd4c3d252d6943c36191b4 | Bump version | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='radar',
version='2.3.7',
description='RaDaR - Rare Disease Registry',
author='Rupert Bedford',
author_email='rupert.bedford@renalregistry.nhs.uk',
url='https://www.radar.nhs.uk/',
packages=find_packages(),
include_package_data=Tru... | Python | 0 | @@ -84,9 +84,9 @@
2.3.
-7
+8
',%0A
|
790e392b6cce5b48003e9a5360d1fe0c791fddb6 | bump uber micro version | setup.py | setup.py | from distutils.core import setup
setup(
name='bamboo-data',
version='0.5.2.1',
author='Modi Research Group',
author_email='info@modilabs.org',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
... | Python | 0 | @@ -79,17 +79,17 @@
='0.5.2.
-1
+2
',%0A
|
893b68bf497e35d2f1404463338e01fb92a955a9 | Add long_description | setup.py | setup.py | from setuptools import setup
setup(
name="aiopipe",
version="0.1.2",
description="Multiprocess communication pipe for asyncio",
author="Mick Koch",
author_email="mick@kochm.co",
license="MIT",
url="https://github.com/kchmck/aiopipe",
packages=["aiopipe"],
extras_require={
"d... | Python | 0.001235 | @@ -23,16 +23,68 @@
setup%0A%0A
+with open(%22Readme.md%22) as f:%0A readme = f.read()%0A%0A
setup(%0A
@@ -850,10 +850,90 @@
.pipe%22,%0A
+ long_description=readme,%0A long_description_content_type=%22text/markdown%22,%0A
)%0A
|
4b653eeec32b88e4552869a485228cc05ce26b61 | remove pandas, add dateutil | setup.py | setup.py | from setuptools import setup
setup(
name="localFoodLearner",
version="0.0.1",
author="Stacey Troy",
install_requires=[
"pandas",
]
) | Python | 0.000006 | @@ -125,16 +125,26 @@
%09%09%22p
-andas
+ython-dateutil
%22,%0A%09%5D%0A)
+%0A
|
1a8a6fb054623b6167cb9d83f683291fb8dcda33 | Set long_description_content_type for setup.py | setup.py | setup.py | #!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
try:
from pypandoc import convert
def read_me(filename):
return convert(filename, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
def read_me(filename):
... | Python | 0.000003 | @@ -78,249 +78,32 @@
es%0A%0A
-try:%0A from pypandoc import convert%0A%0A def read_me(filename):%0A return convert(filename, 'rst')%0Aexcept ImportError:%0A print(%22warning: pypandoc module not found, could not convert Markdown to RST%22)%0A%0A def read_me(filename):%0A
+%0Adef read_me(filename... |
f340d2c10f287857bac778bb1b1d053506e9278f | Fix download_url in setup() | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.site',
version='0.1a3.dev0',
description='Simple site/blog/cms',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.site',
author='Wyatt Baldwin',
author_e... | Python | 0.000001 | @@ -266,24 +266,29 @@
tangled.site
+/tags
',%0A autho
|
68439e7cd6cd429c4aeec58a5b4e38375b95c52b | Bump version number for release. | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
def readreq(filename):
result = []
with open(filename) as f:
for req in f:
req = req.partition('#')[0].strip()
if not req:
continue
result.append(req)
return result
def readfile(filename):
... | Python | 0 | @@ -412,17 +412,17 @@
on='0.2.
-3
+4
',%0A a
|
fab75e9c6c6e4ebfffaeb5594f206022cadd5f31 | Increase flexibility of upload sample | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pymisp',
version='1.1.2',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISP',
description='Python API for MISP.',
packages=['p... | Python | 0 | @@ -106,18 +106,16 @@
sion='1.
-1.
2',%0A
|
b1712fde6c6b8bbe8ec753b0f094ce9292e6f75c | correct repository url | setup.py | setup.py | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirn... | Python | 0.000026 | @@ -628,16 +628,19 @@
/firmata
+.py
%22,%0A pac
|
cf5c35dd8592afd226c1719762086b1370f3e26f | Update setup.py | setup.py | setup.py | from setuptools import setup
import sys
VERSION = '0.2'
install_requires = [
'pymorphy2 >=0.8'
]
if sys.version_info < (2, 7):
install_requires.append('backport_collections >=0.1')
if sys.version_info < (3, 4):
install_requires.append('enum34 >=1.0')
setup(
name = 'rutermextract',
packages = ['r... | Python | 0 | @@ -32,16 +32,36 @@
port sys
+%0Afrom io import open
%0A%0AVERSIO
|
a9ad3ed489a933ce1dbea58f9a15e59804e6d8d5 | Bump the version number | setup.py | setup.py | import io
from setuptools import setup, find_packages
with io.open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='wide-product',
version='0.0.1',
url='https://github.com/thread/wide-product',
description="Wide (partial Khatri-Rao) sparse matrix product",
... | Python | 0.998452 | @@ -189,17 +189,17 @@
on='0.0.
-1
+2
',%0A u
|
963171602beced5c46a3c8980cfffea75b27077c | Bump version | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2.1b9'
requires = [
'setuptools >= 2.2',
'eduid-userdb >= 0.0.5',
]
# Flavours
webapp_requires = [
'Flask==0.10.1',
'pysaml2 >= 4.0.3rc1', # version sync with dashboard to avoid pip catastrophes
'redis >= 2.10.5',
'pwgen == 0.4',
... | Python | 0 | @@ -60,9 +60,10 @@
2.1b
-9
+10
'%0A%0Ar
|
5b68f04a71a1ea4771696b92580340077a515270 | Version Bump to 1.28.11 | setup.py | setup.py | import codecs
import os
import sys
import unittest
from setuptools import setup, find_packages
from setuptools.command.install import install
VERSION = "1.28.10"
AUTHOR = "Free Law Project"
EMAIL = "info@free.law"
HERE = os.path.abspath(os.path.dirname(__file__))
reqs_path = HERE + "/requirements.txt"
with open(req... | Python | 0 | @@ -154,17 +154,17 @@
%221.28.1
-0
+1
%22%0AAUTHOR
|
c8e1c9f24937565f13828c9a7f1b1bb1171a6afe | add proso_feedback to setup.py | 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='Jan Papousek, Vit Stanislav',
author_email='jan.papousek@gmail.com, slawee... | Python | 0 | @@ -709,32 +709,58 @@
ment.commands',%0A
+ 'proso_feedback',%0A
'proso_f
|
81bea04d43f93ed0351abcd47924fd9d1c957997 | Include deleted cases for contact sync showing progress bar | corehq/apps/hqwebapp/management/commands/synch_phone_nums.py | corehq/apps/hqwebapp/management/commands/synch_phone_nums.py | from __future__ import absolute_import
from __future__ import unicode_literals
from django.core.management.base import BaseCommand
from corehq.apps.users.models import CommCareUser
from corehq.apps.sms.tasks import sync_user_phone_numbers as sms_sync_user_phone_numbers
from corehq.form_processor.models import CommCar... | Python | 0 | @@ -381,16 +381,62 @@
ssaging%0A
+from corehq.util.log import with_progress_bar%0A
from cor
@@ -1277,16 +1277,34 @@
r_id in
+with_progress_bar(
commcare
@@ -1308,24 +1308,25 @@
are_user_ids
+)
:%0A
@@ -1749,23 +1749,8 @@
main
-, deleted=False
)%0A
@@ -1851,24 +1851,42 @@
e_id in
+with_progress_ba... |
a02fd3c1616f1c4a1e284d0c0efdefec993579b1 | Bump version 0.3.1 | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='asynqp-consumer',
version='0.3.0',
author='Timofey Kukushkin',
author_email='tima@kukushkin.me',
url='https://github.com/tkukushkin/asynqp-consumer',
description='Consumer utility class for AMQP',
packages=find_packages('src'),
p... | Python | 0.000001 | @@ -91,17 +91,17 @@
on='0.3.
-0
+1
',%0A a
|
9c2e3d5125a5c4209240ecca0a74753cce3ec4fc | fix comma | setup.py | setup.py | from setuptools import setup
import glob
import os
metadata = glob.glob("Metadata/*.yaml")
annotation_dirs = glob.glob("Annotations/*")
data_files = [('Metadata', metadata)]
for d in annotation_dirs:
d_name = os.path.basename(d)
files = glob.glob(os.path.join(d, "*.*"))
data_files.append(("Annotations/%s... | Python | 0.99994 | @@ -2004,16 +2004,17 @@
'sox'
+,
%0A
|
04d0ae953aeda2afc6024acf77df401cc3fd8068 | Fix spacing issues reported by flake8 | setup.py | setup.py | # Copyright (c) 2016-2017, Imperial College London
# Copyright (c) 2016-2017, Ghislain Antony Vaillant
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the BSD license. See the accompanying LICENSE file
# or read the terms at https://opensource.org/... | Python | 0 | @@ -851,19 +851,17 @@
name
- =
+=
'nfft-cf
@@ -876,19 +876,17 @@
version
- =
+=
'0.1',%0A
@@ -899,19 +899,17 @@
cription
- =
+=
'Python
@@ -988,19 +988,17 @@
%0A url
- =
+=
'https:/
@@ -1040,19 +1040,17 @@
author
- =
+=
'Ghislai
@@ -1085,19 +1085,17 @@
or_email
- =
+=
'ghisvai
@@ -1119,19 ... |
c015c4a4ddcabe4989f80e9ce102ccd61babd73c | add classifiers | setup.py | setup.py | from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='mysql_batch',
version='1.0.5',
description='Run large MySQL UPDATE and DELETE queries with small batc... | Python | 0.002154 | @@ -239,9 +239,9 @@
1.0.
-5
+6
',%0A
@@ -790,13 +790,636 @@
%5D,%0A
-
%7D,%0A
+ classifiers=%5B # see https://pypi.python.org/pypi?%253Aaction=list_classifiers%0A 'Topic :: Software Development',%0A 'Topic :: Database',%0A 'Topic :: Database :: Database Engines/Servers',%0A 'Li... |
af71556a43a6900457c66fad97e40af5e89ebb60 | Bump up version number on branch. | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007 Christopher Lenz
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from distutils.cmd import Command
import doctest
from glob import glob
import os
tr... | Python | 0 | @@ -3499,17 +3499,17 @@
on = '0.
-1
+2
',%0A d
|
20b2df7a855709fdcb94870a5978c1965edf4c6a | Add markdown as a requirement. | setup.py | setup.py | import os
import sys
import subprocess
import shutil
from setuptools import setup
from distutils.sysconfig import get_python_lib
if "uninstall" in sys.argv:
def run(command):
try:
return subprocess.check_output(command, shell=True).strip()
except subprocess.CalledProcessError:
pass
cactusBinPath = ... | Python | 0 | @@ -1709,16 +1709,30 @@
%3E=2.4.1'
+,%0A%09%09'markdown'
%0A%09%5D,%0A%09zi
|
6005b111afc8562fa8e2d429e7a4745358f1869b | Update jupyterlab_server to 2.0.0rc1 | 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 os.path import join as pjoin
import json
import os
import sys
# Our own imports
from jupyter_packaging import (
create_cmdclass, get_version,
command_for_func, combin... | Python | 0 | @@ -4478,17 +4478,17 @@
=2.0.0rc
-0
+1
',%0A '
|
24ba9ccd5d4d0b2f9e8dbfd76503b833822e6ec9 | version 0.1.0 | setup.py | setup.py | 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__))
setup(
name='MechanicalSoup',
version='0.0.3',
description='A Python library for automating inter... | Python | 0.000003 | @@ -256,11 +256,11 @@
='0.
-0.3
+1.0
',%0A%0A
|
34dfce22bf88f8ba38836f9abc7d6a76c0f89854 | Fix hdf5-io requirement. | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2015-2018, ETH Zurich, Institut fuer Theoretische Physik
# Author: Dominik Gresch <greschd@gmx.ch>
import re
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 5):
raise 'must use Python version 3.5 or higher'
README = """TBmodels... | Python | 0 | @@ -1236,17 +1236,17 @@
5-io%3E=0.
-2
+3
.0'%0A
|
e281faf997baef05f997535bf44d6ea3d8e37a4d | bump to v1.1. | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join as join_path
from setuptools import setup, find_packages
def _read(file_name):
sock = open(file_name)
text = sock.read()
sock.close()
return text
setup(
name = 'pyramid_hsts',
version = '1.0',
descriptio... | Python | 0 | @@ -295,17 +295,17 @@
on = '1.
-0
+1
',%0A d
|
ecce21013f366fceffaa541dcc8c633600c4335a | Version bump | setup.py | setup.py | #!/usr/bin/env python
# flake8: noqa
from setuptools import find_packages, setup
from os import path
setup(
name = "acos-client",
version = "2.0.0",
packages = find_packages(),
author = "A10 Networks",
author_email = "opensource@a10networks.com",
description = "A10 Networks ACOS API Client",... | Python | 0.000001 | @@ -147,17 +147,17 @@
on = %222.
-0
+1
.0%22,%0A
|
10ee833b5303c83a4f3ca807346fbbf1e06197b3 | Bump version to 0.2.2 | setup.py | setup.py | """Setup for hastexo XBlock."""
import os
from setuptools import setup
def package_scripts(root_list):
data = []
for root in root_list:
for dirname, _, files in os.walk(root):
for fname in files:
data.append(os.path.join(dirname, fname))
return data
def package_data(pk... | Python | 0.000002 | @@ -775,17 +775,17 @@
on='0.2.
-1
+2
',%0A d
|
8c228a79450c49ee1d494ca1e3cf61ea7bcc8177 | Set API key directly in test runner | setup.py | setup.py | """
Copyright (c) 2010-2013, Anthony Garcia <anthony@lagg.me>
Distributed under the ISC License (see LICENSE)
"""
from distutils.core import setup, Command
from distutils.errors import DistutilsOptionError
from unittest import TestLoader, TextTestRunner
import os
import steam
class run_tests(Command):
description... | Python | 0 | @@ -252,18 +252,8 @@
ner%0A
-import os%0A
impo
@@ -623,46 +623,34 @@
-os.environ%5B%22STEAM_API_KEY%22%5D =
+steam.api.key.set(
self.key
%0A%0A
@@ -645,16 +645,17 @@
self.key
+)
%0A%0A de
|
8e20ba08517b716b11c097d83f93a1ecaa8bcea7 | Bump version | setup.py | setup.py | #from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
from os.path import dirname, join
here = dirname(__file__)
setup(
name='btchip-python',
version='0.1.23',
author='BTChip',
author_email='hello@ledger.fr',
description='Python library to commu... | Python | 0 | @@ -216,9 +216,9 @@
.1.2
-3
+4
',%0A
|
b6a213357fc9c3f7d96241c74783cd71d47be228 | Set setuptools version <58 | setup.py | setup.py | import json
from setuptools import setup, find_packages
with open('devilry/version.json') as versionfile:
version = json.load(versionfile)
setup(
name="devilry",
version=version,
url='http://devilry.org',
license='BSD',
zip_safe=False,
author=('Tor Johansen, Espen Angell Kristiansen, Bend... | Python | 0 | @@ -732,16 +732,19 @@
tuptools
+%3C58
',%0A
|
a908acf3ef01fcaf71ad5090fce7088191029bea | change version | 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)))
setup(
name='django-lightpdf',
version='0.1',
... | Python | 0.000001 | @@ -308,16 +308,18 @@
ion='0.1
+.0
',%0A p
|
cc288bcc74a6c945807d4281a62e37eb8e93d041 | bump version | setup.py | setup.py | #!/usr/bin/env python
'''Setup file to create an Expedient package.
Created on Aug 23, 2010
@author: jnaous
'''
import sys, glob, os
sys.path.append("src/python")
from setuptools import setup, find_packages
from setuptools.command.test import test
def get_files(path, *extensions):
"""Recursively get all files""... | Python | 0 | @@ -1828,17 +1828,17 @@
on=%220.2.
-7
+8
%22,%0A d
|
f13d62214d1e9bf9d64cffbeb0b0de74bfbf9e9e | Put raw requirements back into setup file and increment version | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
VERSION='1.1.1'
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:
l... | Python | 0 | @@ -149,17 +149,17 @@
ON='1.1.
-1
+2
'%0A%0Ahere
@@ -341,16 +341,17 @@
read()%0A%0A
+#
with ope
@@ -413,16 +413,17 @@
) as f:%0A
+#
%09require
@@ -1525,28 +1525,147 @@
equires=
-requirements
+%5B'scikit-learn','numpy','scipy','intervaltree','networkx','pycorenlp','lxml','future','bioc','pytest_socket','six','sp... |
f6ba532144d94c4345bb18a9faef1c4d8b9c5376 | update tagline | setup.py | setup.py | """Config for PyPI."""
from setuptools import find_packages
from setuptools import setup
setup(
author='Kyle P. Johnson',
author_email='kyle@kyle-p-johnson.com',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Int... | Python | 0.000011 | @@ -963,39 +963,29 @@
NLP
-support for Classical languages
+for the ancient world
.',%0A
|
0e153cc511548829c3971128c1cfdec68dd8bde2 | Version up | setup.py | setup.py | #! /usr/bin/env python
import os
from setuptools import setup
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
CLASSIFIERS = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Progr... | Python | 0 | @@ -937,14 +937,18 @@
on='
-0.1.15
+1.0.0-beta
',%0A
|
dac808a1038a542320daca4e0a2b12fd37146ee9 | Version 0.1.7 | setup.py | setup.py | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pdf2image',
version='0.1.6',
description='A wrapper around the pdftoppm command line t... | Python | 0.000001 | @@ -247,17 +247,17 @@
on='0.1.
-6
+7
',%0A%0A
|
2e32cee866cfb77c268a6b2e4a8365c43ade9d8b | Update setup.py | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='qgeneration',
version='0.1a2',
description='Data generation pro... | Python | 0.000001 | @@ -733,24 +733,122 @@
License',%0A%0A
+ 'Programming Language :: Python :: 3.4',%0A 'Programming Language :: Python :: 3.5',%0A
'Pro
@@ -882,17 +882,16 @@
:: 3.6'
-,
%0A %5D,%0A
|
ae7e1f9daf5fd7cc0f5fd11e830a5e2363855033 | Слияние с version1 | setup.py | setup.py | from setuptools import setup, find_packages
import os
import reportapi
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='django-reportapi',
version=reportapi.__version__,
description='Easy mechanism building repo... | Python | 0.000001 | @@ -739,16 +739,29 @@
::
-4 - Beta
+5 - Production/Stable
',%0A
|
b88ed32c8a4484488ac6c340f36dda4762838143 | fix dependency issues | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
install mythril and deploy source-dist and wheel to pypi.python.org
deps (requires up2date version):
*) pip install --upgrade pip wheel setuptools twine
publish to pypi w/o having to convert Readme.md to RST:
1) #> python setup.py sdist bdist_wheel
2) #> twine upload dist/* #<... | Python | 0.000003 | @@ -2847,24 +2847,60 @@
=0.1.0b21',%0A
+ 'eth-typing%3E=1.3.0,%3C2.0.0',%0A
'cov
|
b271dde7d8ade28cd5305befaec0885b393b96bc | Use Python3.x-compatible syntax for print statements in `setup.py`, so that error messages are printed properly. Refs #9595. | 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.000004 | @@ -628,25 +628,25 @@
n:%0A print
-
+(
%22Trac requir
@@ -683,16 +683,17 @@
n_python
+)
%0A sys
@@ -739,17 +739,17 @@
print
-
+(
%22Trac do
@@ -777,16 +777,17 @@
3 (yet)%22
+)
%0A sys
@@ -1347,17 +1347,17 @@
print
-
+(
%22Genshi
@@ -1396,16 +1396,17 @@
talling%22
+)
%0A # g
|
6c46f86aafc015c060029a8e454a808d36469e6d | Add explicit pip dependency | setup.py | setup.py | from setuptools import setup
setup(name='carbonite',
version='0.0.1',
description='Freeze your Python package dependencies',
author='GameChanger',
author_email='kiril@gc.io',
license='MIT',
packages=['carbonite'],
tests_require=['nose'],
test_suite='nose.collector',
... | Python | 0.000005 | @@ -240,24 +240,56 @@
arbonite'%5D,%0A
+ install_requires=%5B'pip'%5D,%0A
tests_
|
1c3622c435576a48cad2022a86aaa9bf4ea28cb7 | 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.9.4',
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.9.
-4
+5
',%0A a
@@ -588,9 +588,9 @@
0.9.
-4
+5
.tar
|
247a034a548f6f0255f666114bdb7e2a2da3ef0e | Add missing lib | setup.py | setup.py | import multiprocessing
from setuptools import setup, find_packages
setup(
name='sow-generator',
version='0.1',
description='Create a scope of work from templates and version controlled documentation.',
long_description = open('README.rst', 'r').read() + open('CHANGELOG.rst', 'r').read() + open('AUTHORS... | Python | 0.018852 | @@ -732,24 +732,51 @@
ect-tools',%0A
+ 'django-adminplus'%0A
%5D,%0A i
|
c24e4a48d109e95f86d06769b6cac0c62cefd371 | Update version to 0.3.7 after `at_hash` fix | setup.py | setup.py | import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.3.6',
packages=[
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
... | Python | 0 | @@ -216,9 +216,9 @@
0.3.
-6
+7
',%0A
|
db6769bdd4cc0c7e346b5603c530bfb555e3fa26 | Remove pypi datacite requirement because it doesn't work | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
#
# This file is part of ckanext-doi
# Created by the Natural History Museum in London, UK
from setuptools import find_packages, setup
__version__ = u'2.0.0-alpha'
with open(u'README.md', u'r') as f:
__long_description__ = f.read()
setup(
name=u'ckanext-doi',
vers... | Python | 0.000001 | @@ -1101,35 +1101,8 @@
0.0'
-,%0A 'datacite==1.0.1'
%0A
|
38e87f337b444a4c8004e79e1708c3ad13b91469 | version requirements | setup.py | setup.py | from setuptools import setup, find_packages
import imp
version = imp.load_source('crema.version', 'crema/version.py')
setup(
name='crema',
version=version.version,
description="Convolutional-recurrent estimators for music analysis",
author='Brian McFee',
url='http://github.com/bmcfee/crema',
... | Python | 0.000001 | @@ -1283,17 +1283,17 @@
it-learn
-=
+%3E
=0.18',%0A
|
e2b5e85f36160e5b9bc78a2d5f6377f03cf09692 | Bump version. | setup.py | setup.py | from setuptools import setup, find_packages
PACKAGE_NAME = "lintreview"
VERSION = "1.28.1"
requirements = open('./requirements.txt', 'r')
setup(
name=PACKAGE_NAME,
version=VERSION,
description="Lint Review, an automated code review tool that "
"integrates with github. Integrates with the ... | Python | 0 | @@ -82,17 +82,17 @@
= %221.28.
-1
+2
%22%0A%0Arequi
|
6247a9054c5eb5d8513e79eb2ed2dfb9da58cb37 | Bump sphinx-issues from 1.2.0 to 2.0.0 | setup.py | setup.py | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=3.0.0", "SQLAlchemy>=1.2.0")
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-lazy-fixture>=0.6.2"],
"lint": ["flake8==4.0.1", "flake8-bugbear==21.11.29", "pre-commit~=2.0"],
"docs": ["sphinx==4.3.1", "alabaster==0.7.12"... | Python | 0.000001 | @@ -331,19 +331,19 @@
issues==
-1.2
+2.0
.0%22%5D,%0A%7D%0A
|
34ed7247cb2f4236adad53f2e7950d05d68c320e | Remove setup.py from installed package | setup.py | setup.py | from distutils.core import setup, Extension
from os import environ
from os.path import dirname, join, exists
import sys
import subprocess
import platform
from setup_sdist import SETUP_KWARGS
dev_platform = sys.platform
kivy_ios_root = environ.get('KIVYIOSROOT', None)
arch = environ.get('ARCH', platform.machine())
if k... | Python | 0 | @@ -1578,16 +1578,120 @@
pyx')%5D%0A%0A
+# pop setup.py from included files in the installed package%0ASETUP_KWARGS%5B'py_modules'%5D.remove('setup')%0A%0A
# create
|
739aa34039bdc1fd7b9babf87378cd3e47b9bebf | Update deps and versions for install | setup.py | setup.py | #!/usr/bin/env python
from distutils.command.build_py import build_py
from distutils.command.sdist import sdist
import os.path
import subprocess
import glob
from setuptools import setup, find_packages
__version__ = '0.1'
# Check if this is a git repo; maybe we can get more precise version info
try:
REPO_PATH ... | Python | 0 | @@ -3184,16 +3184,49 @@
'click'
+, 'pbr %3E= 0.10.7', 'six %3E= 1.9.0'
%5D,%0A s
|
2bca21532849da1b3016a903c39daa1110a55fe9 | Increment version | setup.py | setup.py | from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='pycroscopy',
version='0.0a23',
description='A suite of Python libraries for high ... | Python | 0.000002 | @@ -255,17 +255,17 @@
n='0.0a2
-3
+4
',%0A d
|
72f4a0abadd09a88fc6ad46318bc3fc8017c950d | Update setup.py | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <contact@openfisca.fr>
#
# Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redist... | Python | 0.000001 | @@ -927,43 +927,8 @@
%0A%22%22%22
-France specific model for OpenFisca
--
@@ -1020,16 +1020,159 @@
kages%0A%0A%0A
+setup(%0A name = 'OpenFisca-France',%0A version = '0.5.dev0',%0A%0A author = 'OpenFisca Team',%0A author_email = 'contact@openfisca.fr',%0A
classifi
@@ -1181,13 +1181,19 @@
s =
-%22... |
3445c81eddfeb4e886c28a939288f7f7fa4b9c6d | fix for rtfd | setup.py | setup.py | from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
# from mpld3
def get_version(f):
"""Get the version info from the mpld3 package without importing it"""
import ast
with open(f) as init_file:
module = ast.parse(init_file.read())
version = (ast.li... | Python | 0.000001 | @@ -1,12 +1,21 @@
+try:%0A
from ez_setu
@@ -38,16 +38,20 @@
uptools%0A
+
use_setu
@@ -58,16 +58,45 @@
ptools()
+%0Aexcept ImportError:%0A pass
%0A%0Afrom s
|
17956eb2b8089432ff2a0fcec5ce56884f904db1 | Add south as a dependency. | setup.py | setup.py | #
# Copyright 2013 Cisco Systems
#
# 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... | Python | 0.000001 | @@ -1090,16 +1090,33 @@
aclient'
+,%0A 'south'
%0A %5D,%0A
|
fa6e95c034e4b015e8408a9f6f4939c01fd6c99b | Tweak coding style in setup.py | setup.py | setup.py | from os.path import join, dirname
from setuptools import setup
setup(name='aaargh',
version='0.4', # XXX: Keep version number in sync with setup.py
description='An astonishingly awesome application argument helper',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
author='W... | Python | 0 | @@ -63,16 +63,21 @@
%0A%0Asetup(
+%0A
name='aa
@@ -79,26 +79,24 @@
e='aaargh',%0A
-
version=
@@ -147,19 +147,20 @@
ith
-setup.py%0A
+module code%0A
@@ -227,18 +227,16 @@
elper',%0A
-
long
@@ -300,26 +300,24 @@
read(),%0A
-
author='Wout
@@ -328,26 +328,24 @@
olsterlee',%0A
-
... |
625102621bed1cc032b629e39ac50b52c2dd5f79 | use package's __version__. PEP-0396 | setup.py | setup.py | # -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup, find_packages
import os
import sys
install_requires = [
'distribute',
'six',
'polib',
]
if sys.version_info < (2, 7):
install_requires.append('ordereddict')
extras_require = {
'transifex': [
'tran... | Python | 0.99997 | @@ -122,16 +122,53 @@
rt sys%0A%0A
+from sphinx_intl import __version__%0A%0A
install_
@@ -694,17 +694,19 @@
ion=
-'0.9.1b1'
+__version__
,%0A
|
f65bbc352ffe0d33d76807bf05c23ca889a3ac60 | Create just one level of content directory | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import xml.sax.saxutils
from os.path import join
import sys
import os
from six import text_type
def get_version(fname='formalchemy/__init__.py'):
with open(fname) as f:
for line in f:
if line.startswith('__version__'):
... | Python | 0 | @@ -1373,16 +1373,25 @@
ntents::
+ :depth:1
%5Cn%5Cn' +%5C
|
404015143cbc53cd6cdb794fdfc7008f8474ea00 | Update version to 0.4.1 | setup.py | setup.py | # -*- coding: utf-8 -*-
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-heluser... | Python | 0.000001 | @@ -334,17 +334,17 @@
on='0.4.
-0
+1
',%0A p
|
a9e54418040a046ad13c3ac8e1907a08450aa02d | update metadata | setup.py | setup.py | from setuptools import setup
setup(
name='dli',
author='Gareth Rushgrove',
author_email='gareth@morethanseven.net',
url='http://github.com/garethr/dli',
version='0.1',
py_modules=['dli'],
install_requires=[
'click',
'jsonschema',
'colorama',
'dockerfile-parse... | Python | 0.000001 | @@ -41,18 +41,37 @@
name='d
-li
+ocker-label-inspector
',%0A a
@@ -418,10 +418,222 @@
''',%0A
+ description='A tool for linting and validating labels '%0A 'in Dockerfiles.',%0A classifiers=%5B%0A 'License :: OSI Approved :: BSD License',%0A 'Programming Language :: Python',%... |
7850d00aeb4c69aaaa1af1af40940985d2bb7efb | Bump version to 0.5.0 | setup.py | setup.py | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
from __future__ import unicode_literals
import os.path
import sys
import setuptools
REQUIREMENT_DIR = "requirements"
MODULE_NAME = "subprocrunner"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner =... | Python | 0.000001 | @@ -757,12 +757,11 @@
=%220.
-4.11
+5.0
%22,%0A
|
66d734047edc1d3272117c0700005c7473599e22 | bump version | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'crowfood',
description = 'C/C++ dependency graphing using snakefood',
long_description = open('README.rst').read(),
version = '0.1.0',
author = 'Maik Riechert',
author_email = 'maik.riechert@arcor.de',
url = 'https://github.com/neot... | Python | 0 | @@ -202,9 +202,9 @@
'0.
-1
+2
.0',
|
6bbd28b9eca67769031dc4904715dcb23dd2351f | Install pymssql 2.0.1 on 64 bits systems and 1.0.2 on 32 bits systems. | 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 | @@ -1184,20 +1184,185 @@
1.8.0',%0A
-
+%5D%0A%0A# OS dependent%0Aif 'x86_64' in os.uname()%5B-1%5D:%0A # We are in 64 bits%0A dependencies.append('pymssql==2.0.1')%0Aelse:%0A # We are in 32 bits%0A dependencies.append(
'pymssql
@@ -1369,19 +1369,17 @@
==1.0.2'
-,%0A%5D
+)
%0A%0A# Init
@@ -1441,17 +1... |
67b1a563a08c3fc99c10a2bd3eccfde069db2081 | Update classifiers | setup.py | setup.py | from codecs import open
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='centerline',
version='0.2.1',
... | Python | 0.000002 | @@ -514,24 +514,70 @@
T License',%0A
+ 'Operating System :: OS Independent',%0A
'Pro
@@ -626,95 +626,355 @@
'
-Intended Audience :: Science/Research',%0A 'Topic :: Scientific/Engineering :: GIS
+Programming Language :: Python :: 3',%0A 'Programming Language :: Python :: 3.5',%0A ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.