commit
stringlengths
40
40
subject
stringlengths
1
1.49k
old_file
stringlengths
4
311
new_file
stringlengths
4
311
new_contents
stringlengths
1
29.8k
old_contents
stringlengths
0
9.9k
lang
stringclasses
3 values
proba
float64
0
1
c0bbad726a92bbda75d4de6ba73ce49c97a5fba8
Bump version to 1.1
setup.py
setup.py
from distutils.core import setup setup( name='requests-negotiate', version='1.1', license='BSD', packages=['requests_negotiate'], classifiers=['License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', ...
from distutils.core import setup setup( name='requests-negotiate', version='1.0', license='BSD', packages=['requests_negotiate'], classifiers=['License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', ...
Python
0
68e7ba3db32e1a8632cd317206769e5b5e96c9a8
Bump 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-zipview', version='1.0.0', ...
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-zipview', version='0.1', ...
Python
0
39a3eb69dd98518093ac84025eb6d037aceb0d10
Fix setup.py, and bump version
setup.py
setup.py
""" Setup file for the cred-client package. """ from setuptools import setup import sys # The package only works with python >=3.0 if sys.version_info < (3,): print("I'm only for 3, please upgrade") sys.exit(1) version = '0.2.5' setup( name='cred-client', version=version, author='Tehnix', aut...
""" Setup file for the cred-client package. """ from setuptools import setup import sys # The package only works with python >=3.0 if sys.version_info < (3,): print("I'm only for 3, please upgrade") sys.exit(1) version = '0.2.4' setup( name='cred-client', version=version, author='Tehnix', aut...
Python
0
f5082476aa8c25bcdea6fe1f96e0f1184195d875
update setup.py
setup.py
setup.py
#!/usr/bin/env python __author__ = "Daniel W. Davies" __copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)" __version__ = "2.3.4" __maintainer__ = "Anthony O. Onwuli" __email__ = "anthony.onwuli16@imperial.ac.uk" __date__ = "July 7 2022" from setuptools import setup, Extension import o...
#!/usr/bin/env python __author__ = "Daniel W. Davies" __copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)" __version__ = "2.3.2" __maintainer__ = "Anthony O. Onwuli" __email__ = "anthony.onwuli16@imperial.ac.uk" __date__ = "Nov 4 2021" from setuptools import setup, Extension import os...
Python
0.000001
6dfe9f2ef3072ee52bcfa12eaf4cf4d6127af846
Revert back to simple installation.
setup.py
setup.py
from setuptools import setup, find_packages setup( name='dps', author="Eric Crawford", author_email="eric.crawford@mail.mcgill.ca", version='0.1', packages=find_packages(), entry_points={ 'console_scripts': ['dps-hyper=dps.hyper.command_line:dps_hyper_cl', 'd...
from setuptools import setup, find_packages import os import subprocess from setuptools.command.install import install as install_command from setuptools.command.develop import develop as develop_command from setuptools.command.egg_info import egg_info as egg_info_command try: # for pip >= 10 from pip._internal.r...
Python
0
82cda10d145faa1ef13c22cdbd6e1c586a6dfdf9
remove debug print and update dependencies
setup.py
setup.py
#!/usr/bin/env python # vim: et:sta:bs=2:sw=4: from setuptools import setup, find_packages, findall from get_git_version import get_git_version import os, os.path def find_package_data(): base = os.path.join(os.path.dirname(__file__), 'src') s, r = ['.'], [] while s: p = s.pop() for c in o...
#!/usr/bin/env python # vim: et:sta:bs=2:sw=4: from setuptools import setup, find_packages, findall from get_git_version import get_git_version import os, os.path def find_package_data(): base = os.path.join(os.path.dirname(__file__), 'src') s, r = ['.'], [] while s: p = s.pop() for c in o...
Python
0
8fda341a5d6fbb4e466dcb4d300a9cdd28701d77
extend the list of trove classifiers
setup.py
setup.py
# -*- coding: utf-8 -*- import os import sys from setuptools import setup, Extension, find_packages try: from Cython.Build import cythonize except ImportError: # A 'cythonize' stub is needed so that build, develop and install can # start before Cython is installed. cythonize = lambda extensions, **kwa...
# -*- coding: utf-8 -*- import os import sys from setuptools import setup, Extension, find_packages try: from Cython.Build import cythonize except ImportError: # A 'cythonize' stub is needed so that build, develop and install can # start before Cython is installed. cythonize = lambda extensions, **kwa...
Python
0.00002
060b8a8b9c03a8c0b7f3acd72789b4a6ab6f6c8a
Fix setup.py import subprocess.run (not supported on < py3.5)
setup.py
setup.py
#!/usr/bin/env python3 """A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject Extra supported commands are: * gen_tl, to generate the classes required for Telethon to run * clean_tl, to clean these generated classes * pypi, to generate s...
#!/usr/bin/env python3 """A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject Extra supported commands are: * gen_tl, to generate the classes required for Telethon to run * clean_tl, to clean these generated classes * pypi, to generate s...
Python
0
b0ebc89420a9a1f3d49369fb1ce50f102a2d2495
Move repository from @edoburu to @django-parler team
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from os import path import codecs import os import re import sys def read(*parts): file_path = path.join(path.dirname(__file__), *parts) return codecs.open(file_path, encoding='utf-8').read() def find_version(*parts): version_file = read(...
#!/usr/bin/env python from setuptools import setup, find_packages from os import path import codecs import os import re import sys def read(*parts): file_path = path.join(path.dirname(__file__), *parts) return codecs.open(file_path, encoding='utf-8').read() def find_version(*parts): version_file = read(...
Python
0
2e62f1dff218f4357bee0ad2a6e9a0e5e956ad55
fix twine check warnings (#23)
setup.py
setup.py
import os from setuptools import setup long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read() setup( name='sphinx-confluence', description='Atlassian Confluence extension for sphinx', long_description_content_type='text/markdown', long_description=long_descriptio...
import os from setuptools import setup long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read() setup( name='sphinx-confluence', description='Atlassian Confluence extension for sphinx', long_description=long_description, version='0.0.4', author='Arello Mobile',...
Python
0
cc33a5ebed8132c1fa87fa83710693e6130bc12e
remove extra = in setup.py
setup.py
setup.py
from setuptools import setup, find_packages setup( name='credstash', version='1.5', description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB', license='Apache2', url='https://github.com/LuminalOSS/credstash', classifiers=[ 'Intended Audience :: Developers', ...
from setuptools import setup, find_packages setup( name='credstash', version='1.5', description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB', license='Apache2', url='https://github.com/LuminalOSS/credstash', classifiers=[ 'Intended Audience :: Developers', ...
Python
0.000009
db211034e21cebbb6c9681b1c854412dbe90a51b
Install backports namespace packages conditionally
setup.py
setup.py
#! /usr/bin/env python """Cheroot package setuptools installer.""" # Project skeleton maintained at https://github.com/jaraco/skeleton import io import setuptools with io.open('README.rst', encoding='utf-8') as readme: long_description = readme.read() name = 'cheroot' description = 'Highly-optimized, pure-pyth...
#! /usr/bin/env python """Cheroot package setuptools installer.""" # Project skeleton maintained at https://github.com/jaraco/skeleton import io import setuptools with io.open('README.rst', encoding='utf-8') as readme: long_description = readme.read() name = 'cheroot' description = 'Highly-optimized, pure-pyth...
Python
0
06db8ec819fe8f2dffc6b7c93e9a72fcb24b188c
Add oscar 0.8 as a valid version
setup.py
setup.py
from setuptools import setup, find_packages # dirty hack to allow running sdist in a vbox # source: Leonardo.Z's answer on this StackOverflow thread: # http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted import os if os.environ.get('USER', '') == 'vagrant': del os.link ...
from setuptools import setup, find_packages # dirty hack to allow running sdist in a vbox # source: Leonardo.Z's answer on this StackOverflow thread: # http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted import os if os.environ.get('USER', '') == 'vagrant': del os.link ...
Python
0.000011
31f08ace2e2ea8266fc17350b2e3dbd832517515
Upgrade to prompt_toolkit==0.42.
setup.py
setup.py
import re import ast from setuptools import setup, find_packages _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('pgcli/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) description = 'CLI for Postgres Database. With auto-compl...
import re import ast from setuptools import setup, find_packages _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('pgcli/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) description = 'CLI for Postgres Database. With auto-compl...
Python
0
f581deba1b3058b4bce38810682a0f2f4c1dedf8
Bump to v1.4.1
setup.py
setup.py
from setuptools import setup, find_packages setup( name='primestg', version='1.4.1', packages=find_packages(), url='https://github.com/gisce/primestg', license='GNU Affero General Public License v3', author='GISCE-TI, S.L.', author_email='devel@gisce.net', install_requires=[ 'l...
from setuptools import setup, find_packages setup( name='primestg', version='1.4.0', packages=find_packages(), url='https://github.com/gisce/primestg', license='GNU Affero General Public License v3', author='GISCE-TI, S.L.', author_email='devel@gisce.net', install_requires=[ 'l...
Python
0.000001
3d2bbe90617ec090b5f413b95fc9d1161c2848fa
Update package name in setup.py
setup.py
setup.py
#!/usr/bin/env python3 from distutils.core import setup setup(name='lenderbot', version='1.0.6', description='LendingClub auto investor tool', author='Joe Butler', author_email='joebutler88@gmail.com', packages=['investor'], )
#!/usr/bin/env python3 from distutils.core import setup setup(name='auto-investor', version='1.0.5', description='LendingClub auto-investment tool', author='Joe Butler', author_email='joebutler88@gmail.com', packages=['investor'], )
Python
0
39ebb2d463dc7185801aac2dee8ec30fa4adcfac
Allow cryptography versions >3 (but <4) (#164)
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='signxml', version="2.8.0", url='https://github.com/kislyuk/signxml', license='Apache Software License', author='Andrey Kislyuk', author_email='kislyuk@gmail.com', description='Python XML Signature library', ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='signxml', version="2.8.0", url='https://github.com/kislyuk/signxml', license='Apache Software License', author='Andrey Kislyuk', author_email='kislyuk@gmail.com', description='Python XML Signature library', ...
Python
0.000001
67c6f7b1460403e51125eb15f7d081e6de20f6ab
Downgrade Celery and kombu.
setup.py
setup.py
#!/usr/bin/env python """Kegbot Beer Kegerator Server package. Kegbot is a hardware and software system to record and monitor access to a beer kegerator. For more information and documentation, see http://kegbot.org/ """ from setuptools import setup, find_packages VERSION = '0.9.25' DOCLINES = __doc__.split('\n') ...
#!/usr/bin/env python """Kegbot Beer Kegerator Server package. Kegbot is a hardware and software system to record and monitor access to a beer kegerator. For more information and documentation, see http://kegbot.org/ """ from setuptools import setup, find_packages VERSION = '0.9.25' DOCLINES = __doc__.split('\n') ...
Python
0
768820a4af086e72c88e779f08a7f597ad4a2774
Update email
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="valideer", version="0.2", description="Lightweight data validation and adaptation library for Python", long_description=open("README.rst").read(), url="https://github.com/podio/valideer", author="George Sakkis", ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="valideer", version="0.2", description="Lightweight data validation and adaptation library for Python", long_description=open("README.rst").read(), url="https://github.com/podio/valideer", author="George Sakkis", ...
Python
0
b99c83ff15a02d4be3dc2e7f6e4a27601fdbdbf2
fix 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__)) # 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='hazelcast-python-cli...
from setuptools import setup, find_packages 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.md'), encoding='utf-8') as f: long_description = f.read() setup( name='hazelcast-python-cli...
Python
0.000001
0a0a64aab06e202fe37805523dd2f3e862fcb7d8
Bump version to 0.3.16
setup.py
setup.py
#!/usr/bin/env python import os import sys from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() _install_requires = [ "parsimonious>=0.5,<0.6", "dodge>=0.1.5,<0.2", ] if sys.version_info[:2] <= (2, 6): _install_requires.append("argpars...
#!/usr/bin/env python import os import sys from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() _install_requires = [ "parsimonious>=0.5,<0.6", "dodge>=0.1.5,<0.2", ] if sys.version_info[:2] <= (2, 6): _install_requires.append("argpars...
Python
0
b87f2d324ec42a294f557064933a3e21d4507e70
Bump pandas from 1.3.2 to 1.3.3
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==1.3.3', 'cvxopt==1.2.6', ...
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==1.3.2', 'cvxopt==1.2.6', ...
Python
0.000005
0e5e46615ce8f599483c5075cc120cf6aad4c8a5
Tweak setup.py
setup.py
setup.py
from __future__ import print_function from setuptools import setup from setuptools.command.test import test as TestCommand import io import os import sys import wsstat py_version = sys.version_info[:2] if py_version < (3, 3): raise Exception("websockets requires Python >= 3.3.") here = os.path.abspath(os.path.d...
from __future__ import print_function from setuptools import setup from setuptools.command.test import test as TestCommand import io import os import sys import wsstat py_version = sys.version_info[:2] if py_version < (3, 3): raise Exception("websockets requires Python >= 3.3.") here = os.path.abspath(os.path.d...
Python
0.000001
7bda19daf9fba63ea3e2d374a5f13390f3f7fa05
Bump version to 3.1
setup.py
setup.py
from setuptools import setup setup( name='cloudify-diamond-plugin', version='1.1', author='Cloudify', author_email='cosmo-admin@gigaspaces.com', packages=['diamond_agent', 'cloudify_handler'], install_requires=['cloudify-plugins-common==3.1', 'diamond==3.5.0', ...
from setuptools import setup setup( name='cloudify-diamond-plugin', version='3.1', author='Cloudify', author_email='cosmo-admin@gigaspaces.com', packages=['diamond_agent', 'cloudify_handler'], install_requires=['cloudify-plugins-common==3.1', 'diamond==3.5.0', ...
Python
0
0f6be423058d98f7365f95c427ab59db5608af80
use jsonobject in setup.py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pillowtop', version='0.1.3.1', description='A couchdbkit changes listener for doing backend processing', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', packages=find_packages(exclud...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pillowtop', version='0.1.3.1', description='A couchdbkit changes listener for doing backend processing', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', packages=find_packages(exclud...
Python
0.000002
3c538568092e6a1fe54f0b3aea6ac423f454da60
Bump flake8-bugbear from 20.1.2 to 20.1.3
setup.py
setup.py
# -*- coding: utf-8 -*- import re from setuptools import setup, find_packages EXTRAS_REQUIRE = { "sqlalchemy": [ "flask-sqlalchemy", 'marshmallow-sqlalchemy>=0.13.0; python_version >= "3.6"', 'marshmallow-sqlalchemy>=0.13.0,<0.19.0; python_version < "3.6"', ], "docs": ["marshmallow...
# -*- coding: utf-8 -*- import re from setuptools import setup, find_packages EXTRAS_REQUIRE = { "sqlalchemy": [ "flask-sqlalchemy", 'marshmallow-sqlalchemy>=0.13.0; python_version >= "3.6"', 'marshmallow-sqlalchemy>=0.13.0,<0.19.0; python_version < "3.6"', ], "docs": ["marshmallow...
Python
0.000002
9444be6e891e7f7690dc10415690e484e17b3b61
Extend base extraction module
fenrir/extraction/base.py
fenrir/extraction/base.py
# coding: utf-8 # Author: Vova Zaytsev <zaytsev@usc.edu> import re import textblob from client.api import common class TextPreprocessor(object): RE_HTML_SPECIAL_CHARS = re.compile("\&#?[a-z0-9]+;") RE_Q_PHRASE_PATTERN_1 = re.compile("\"([^\"]*)\"") RE_Q_PHRASE_PATTERN_2 = re.compile("\'([^\"]*)\'") ...
# coding: utf-8 # Author: Vova Zaytsev <zaytsev@usc.edu> import re import textblob class TextPreprocessor(object): HTML_SPECIAL_CHARS = re.compile("\&#?[a-z0-9]+;") def __init__(self): pass def clean_html_junk(self, text): return self.HTML_SPECIAL_CHARS.sub("", text) def sent_segm...
Python
0
f77e92aef7e337ed67ebc78d4de5829285ed651a
Update url
setup.py
setup.py
from us import __appname__, __version__ from setuptools import setup, find_packages long_description = open('README.rst').read() setup( name=__appname__, version=__version__, author="Jeremy Carbaugh", author_email="jcarbaugh@sunlightfoundation.com", url='https://github.com/unitedstates/python-us',...
from us import __appname__, __version__ from setuptools import setup, find_packages long_description = open('README.rst').read() setup( name=__appname__, version=__version__, author="Jeremy Carbaugh", author_email="jcarbaugh@sunlightfoundation.com", url='https://github.com/sunlightlabs/python-us',...
Python
0.000001
50d2b9cf2640c7788cb890ad945a64ac2f5613f3
Update version for packaging.
setup.py
setup.py
from setuptools import setup, find_packages with open('README.md') as fhandle: long_description = fhandle.read() setup( name='pyansible', version='1.0.3', description='A module for interfacing with Ansible Runner and Inventory.', long_description=long_description, url="https://github.com/bdas...
from setuptools import setup, find_packages with open('README.md') as fhandle: long_description = fhandle.read() setup( name='pyansible', version='1.0.2', description='A module for interfacing with Ansible Runner and Inventory.', long_description=long_description, url="https://github.com/bdas...
Python
0
1f7decd74c8e4bd5e8d2f9ee387e4fcd3f860f58
update statistics
async_crawler.py
async_crawler.py
#!/usr/bin/env python3 # python dictionary object to html5 json form generator. # https://github.com/mehmetkose/python3-async-crawler # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2016 Mehmet Kose mehmet@linux.com import aiohttp import asyncio from html.parser i...
#!/usr/bin/env python3 # python dictionary object to html5 json form generator. # https://github.com/mehmetkose/python3-async-crawler # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2016 Mehmet Kose mehmet@linux.com import aiohttp import asyncio from html.parser i...
Python
0.000001
7a7dd4ed8285d4963d05612870206db7b07b2452
Add jmespath as a dependency
setup.py
setup.py
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import sys import botocore try: from setuptools import setup setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() packages = [ ...
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import sys import botocore try: from setuptools import setup setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() packages = [ ...
Python
0.000001
522c7d13cb491998f8feba99f3657e77310f275b
add sparc.testing dependency
setup.py
setup.py
from setuptools import setup, find_packages import os version = '0.0.3' setup(name='sparc.common', version=version, description="Common utilities used within SPARC platform", long_description=open("README.md").read() + "\n" + open("HISTORY.txt").read(), # Get more string...
from setuptools import setup, find_packages import os version = '0.0.3' setup(name='sparc.common', version=version, description="Common utilities used within SPARC platform", long_description=open("README.md").read() + "\n" + open("HISTORY.txt").read(), # Get more string...
Python
0.000001
18191319f244ea9f1ab7a874467e944d051724e8
Add credentials, description, etc.
setup.py
setup.py
from setuptools import setup setup( author='Bradley Golden', author_email='golden.bradley@gmail.com', description='Tox wrapped in docker', name='boxer', version='0.1', py_modules=['boxer'], include_package_data=True, url='https://github.com/bradleygolden/boxer', download_url='https:...
from setuptools import setup setup( name='boxer', version='0.1', py_modules=['boxer'], include_package_data=True, url='https://github.com/bradleygolden/boxer', download_url='https://github.com/bgolden/boxer/archive/0.1.tar.gz.', keywords=['tox', 'pyenv', 'docker'], install_requires=[ ...
Python
0
4bfaf45ed2f27dca0105975243da093cf518ef4b
Bump version
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. 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...
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. 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...
Python
0
b9b8a65234ba36c34a10db2b0f9fe0ee526dea70
Bump version in setup.py
setup.py
setup.py
''' Setup File ''' from setuptools import setup import multiprocessing setup(name='cmd_utils', version='0.4.0', description='Wrapper for subprocess.Popen and paramiko', long_description=('Wrapper for subprocess.Popen and paramiko ' 'to allow easy running of commands locally an...
''' Setup File ''' from setuptools import setup import multiprocessing setup(name='cmd_utils', version='0.3.0', description='Wrapper for subprocess.Popen and paramiko', long_description=('Wrapper for subprocess.Popen and paramiko ' 'to allow easy running of commands locally an...
Python
0
4a0574329003f5cdbfc66dac948b2f6a6f10ea05
long_description should be read from README, not README.md
setup.py
setup.py
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='blah', version='0.1.2', description='Thin wrapper around source control systems', long_description=read("README"), author='Michael ...
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='blah', version='0.1.2', description='Thin wrapper around source control systems', long_description=read("README.md"), author='Micha...
Python
0.999815
dc6df0448d9a7f921c7dc078eecbb6d65fc29320
Bump version to 0.0.6
setup.py
setup.py
from setuptools import setup version = '0.0.6' try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): long_description = open('README.md').read() setup(name='falcon-autocrud', version=version, description='Makes RESTful CRUD easier', ...
from setuptools import setup version = '0.0.5' try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): long_description = open('README.md').read() setup(name='falcon-autocrud', version=version, description='Makes RESTful CRUD easier', ...
Python
0.000001
0691678ba97930ab3073c166e4c4fd9c33bc94a4
Update requirements
setup.py
setup.py
""" WTForms-Alchemy --------------- Generates WTForms forms from SQLAlchemy models. """ from setuptools import setup, Command import subprocess import sys class PyTest(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): ...
""" WTForms-Alchemy --------------- Generates WTForms forms from SQLAlchemy models. """ from setuptools import setup, Command import subprocess import sys class PyTest(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): ...
Python
0
c19e1c4e0597203283ae7c9d706389a12b1d15cf
Generate the long description of the project for pypi.
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import distutils.sysconfig import inspect import os # from distutils.core import Extension from setuptools import Extension, setup here = os.path.abspath(os.path.dirname(inspect.getsource(lambda: 0))) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: ...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import distutils.sysconfig, os # from distutils.core import Extension from setuptools import Extension, setup # Work around the problem with the warning about '-Wstrict-prototypes'. # https://bugs.python.org/issue1222585 config_vars = distutils.sysconfig.get_config_vars(...
Python
0.999988
2e25125904c94fa7250f6a8a0f4de4e2c463644b
Update Chapter04/reverseCipher.py added docstring and wrapped in main() function
books/CrackingCodesWithPython/Chapter04/reverseCipher.py
books/CrackingCodesWithPython/Chapter04/reverseCipher.py
"""Reverse Cipher https://www.nostarch.com/crackingcodes/ (BSD Licensed) Note: Pretty much the same, except I use double quotes, expand variable names for readability, simplify the while loop, and use fancier operators """ def main(): message = "Three can keep a secret, if two of them are dead." #me...
# Reverse Cipher # https://www.nostarch.com/crackingcodes/ (BSD Licensed) # Note: pretty much the same, except I use double quotes, # expand variable names for readability, simplify the while loop, # and use fancier operators message = "Three can keep a secret, if two of them are dead." #message = input("Enter message...
Python
0
c24bab2ac07dcbcaf214fe396db7a154a0d3baec
Bump version
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 import os from setuptools import setup def read_file(name): filepath = os.path.join( os.path.dirname(os.path.realpath(__file__)), name ) data = open(filepath) try: return data.read() except IOError: print "could not read %r"...
#!/usr/bin/env python # encoding: utf-8 import os from setuptools import setup def read_file(name): filepath = os.path.join( os.path.dirname(os.path.realpath(__file__)), name ) data = open(filepath) try: return data.read() except IOError: print "could not read %r"...
Python
0
d699cc1d34436c5bb53f008f7abf1f3325d2efa7
Bump flake8-bugbear from 20.11.1 to 21.3.1
setup.py
setup.py
from setuptools import setup EXTRAS_REQUIRE = { "tests": ["pytest", "mock"], "lint": ["flake8==3.8.4", "flake8-bugbear==21.3.1", "pre-commit~=2.7"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] def read(fname): with open(fname) as fp: content = fp.read() ...
from setuptools import setup EXTRAS_REQUIRE = { "tests": ["pytest", "mock"], "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "pre-commit~=2.7"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] def read(fname): with open(fname) as fp: content = fp.read() ...
Python
0.000002
1b1ad61f2637acefa8b70a926e078f2e567cfd06
add a version check here too
setup.py
setup.py
#!/usr/bin/env python # Setup file for Kiwi # Code by Async Open Source <http://www.async.com.br> # setup.py written by Christian Reis <kiko@async.com.br> # re-written various times by Johan Dahlin <jdahlin@async.com.br> """ kiwi offers a set of enhanced widgets for Python based on PyGTK. It also includes a framework...
#!/usr/bin/env python # Setup file for Kiwi # Code by Async Open Source <http://www.async.com.br> # setup.py written by Christian Reis <kiko@async.com.br> # re-written various times by Johan Dahlin <jdahlin@async.com.br> """ kiwi offers a set of enhanced widgets for Python based on PyGTK. It also includes a framework...
Python
0
2b06bfa93a476aa140539e6ad86fcc10bcd495e3
Bump version to 0.9a5
setup.py
setup.py
from setuptools import setup, find_packages setup( name='reobject', version='0.9a6', description='Python without ifs and buts', url='https://github.com/onyb/reobject', author='Anirudha Bose', author_email='ani07nov@gmail.com', license='Apache-2.0', classifiers=[ 'Development Sta...
from setuptools import setup, find_packages setup( name='reobject', version='0.9a5', description='Python without ifs and buts', url='https://github.com/onyb/reobject', author='Anirudha Bose', author_email='ani07nov@gmail.com', license='Apache-2.0', classifiers=[ 'Development Sta...
Python
0
3cac863dfbd4261a0429f2562bf1d8a1bc854d91
Bump version
setup.py
setup.py
# coding=utf-8 import sys from setuptools import setup, find_packages NAME = 'django-permission' VERSION = '0.8.3' def read(filename): import os BASE_DIR = os.path.dirname(__file__) filename = os.path.join(BASE_DIR, filename) with open(filename, 'r') as fi: return fi.read() def readlist(fil...
# coding=utf-8 import sys from setuptools import setup, find_packages NAME = 'django-permission' VERSION = '0.8.2' def read(filename): import os BASE_DIR = os.path.dirname(__file__) filename = os.path.join(BASE_DIR, filename) with open(filename, 'r') as fi: return fi.read() def readlist(fil...
Python
0
4f2761011f170cf978fd77b9b25c754d158f88b9
bump version
setup.py
setup.py
# Copyright (c) 2009, Rotem Yaari <vmalloc@gmail.com> # 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 li...
# Copyright (c) 2009, Rotem Yaari <vmalloc@gmail.com> # 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 li...
Python
0
f968629f36516df4134a06d0a439bc57e4457cd6
remove platform dependence
setup.py
setup.py
import os import numpy as np from Cython.Distutils import build_ext from setuptools import Extension, find_packages, setup ext_modules = [] for shape in ["cylinder", "slit"]: pkg = f"pymwm.{shape}.utils.{shape}_utils" basename = os.path.join("pymwm", shape, "utils", f"{shape}_utils") ext_modules.append( ...
import os from distutils.util import get_platform import numpy as np from Cython.Distutils import build_ext from setuptools import Extension, find_packages, setup platform = get_platform() if platform.startswith("win"): extra_compile_args = [] extra_link_args = [] else: extra_compile_args = [ "-fP...
Python
0
d4ad94d1e78de00bb047359f5056a5a5cf41df49
remove analysis package from install script
setup.py
setup.py
__author__ = 'lobocv' import os from setuptools import setup from anonymoususage import __version__ setup( name='anonymoususage', packages=['anonymoususage', 'anonymoususage.tables'], # this must be the same as the name above version=__version__, description='Anonymously track user usage patterns an...
__author__ = 'lobocv' import os from setuptools import setup from anonymoususage import __version__ setup( name='anonymoususage', packages=['anonymoususage', 'anonymoususage.tables', 'anonymoususage.analysis'], # this must be the same as the name above version=__version__, description='Anonymously t...
Python
0
9e7ce48bfb2d9b6f7bfb881b8b587d2ae730f8e2
Bump version to 0.4.1
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 MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-run...
import sys import os.path import setuptools MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join(MISC_...
Python
0.000001
93c866cc0c815bf7c4f4eabd50274a474bd98ad4
Tweak setup.py so that it may run even when fired from different locations, as suggested by Maarten Damen.
setup.py
setup.py
#!/usr/bin/python from os.path import isfile, join import glob import os import re from setuptools import setup if isfile("MANIFEST"): os.unlink("MANIFEST") TOPDIR = os.path.dirname(__file__) or "." VERSION = re.search('__version__ = "([^"]+)"', open(TOPDIR + "/dateutil/__init__.py").read()...
#!/usr/bin/python from os.path import isfile, join import glob import os import re from setuptools import setup if isfile("MANIFEST"): os.unlink("MANIFEST") VERSION = re.search('__version__ = "([^"]+)"', open("dateutil/__init__.py").read()).group(1) setup(name="python-dateutil", ver...
Python
0
a9bdeadeefee0e107a6d86fb055d3a4c10f08d2f
更新setup.py
setup.py
setup.py
# encoding: UTF-8 ''' vn.py - By Traders, For Traders. The vn.py project is an open-source quantitative trading framework that is developed by traders, for traders. The project is mainly written in Python and uses C++ for low-layer and performance sensitive infrastructure. Using the vn.py project, institutional ...
# encoding: UTF-8 ''' vn.py - By Traders, For Traders. The vn.py project is an open-source quantitative trading framework that is developed by traders, for traders. The project is mainly written in Python and uses C++ for low-layer and performance sensitive infrastructure. Using the vn.py project, institutional ...
Python
0.000001
dd1bb5d8d00c676fef91ce7d3f58cd7af44f854f
Bump version to 2.0.0
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
Python
0
a8d1e8daf397f81d5692f9022859576973f48ae7
Bump version to 0.1.2
setup.py
setup.py
#!/usr/bin/env python import os import platform import subprocess import tarfile import shutil try: import sysconfig except ImportError: # Python 2.6 from distutils import sysconfig from setuptools import setup from distutils.extension import Extension from distutils.command.build_ext import build_ext t...
#!/usr/bin/env python import os import platform import subprocess import tarfile import shutil try: import sysconfig except ImportError: # Python 2.6 from distutils import sysconfig from setuptools import setup from distutils.extension import Extension from distutils.command.build_ext import build_ext t...
Python
0.000001
972a4088a11c03e514ff9f75636166951561fe6d
Add copyright header to setup.py
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 # # Copyright © 2015 Collabora Ltd. # # 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 w...
#!/usr/bin/python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 """ Parse D-Bus introspection XML and process it in various ways """ from setuptools import setup, find_packages import os __version__ = '0.1.0' README = open('README').read() NEWS = open('NEWS').read() setup( name='dbus-deviation', ve...
Python
0
b2640f0b9f9b36ab06066873bc8179842ae3bc24
Prepare openprocurement.api 2.3.36.
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'li...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'li...
Python
0
fe34a52f7aab7119c2aa8f69b0db914f33902d97
bump version before release (no refs)
setup.py
setup.py
from setuptools import find_packages, setup setup( name='opentopic-falcon-api', version='0.3.6', author='Tomasz Roszko', author_email='tom@opentopic.com', description='Base Library for services api endpoints', url='http://git.opentopic.com/backend/falcon-api', license='GNU GENERAL PUBLIC L...
from setuptools import find_packages, setup setup( name='opentopic-falcon-api', version='0.3.5', author='Tomasz Roszko', author_email='tom@opentopic.com', description='Base Library for services api endpoints', url='http://git.opentopic.com/backend/falcon-api', license='GNU GENERAL PUBLIC L...
Python
0
6dfaa5c97fe9342a26610f53aea533a39af5d8c5
Use setuptools instead of distutils
setup.py
setup.py
from setuptools import setup, find_packages from idiokit import __version__ setup( name="idiokit", version=__version__, author="Clarified Networks", author_email="contact@clarifiednetworks.com", url="https://github.com/abusesa/idiokit", packages=find_packages(exclude=["*.tests"]), license=...
import os import errno from distutils.core import setup from distutils.dir_util import remove_tree from distutils.util import convert_path from distutils.command.build import build as _build from distutils.command.install import install as _install from idiokit import __version__ def rmtree(path): try: r...
Python
0
f8c049e1b6a6309d494771e4038aa10b40bfbf76
Move 'nose' dependency to 'tests_require'
setup.py
setup.py
from setuptools import setup VERSION = '1.2.2' setup( name='pkgconfig', version=VERSION, author='Matthias Vogelgesang', author_email='matthias.vogelgesang@gmail.com', url='http://github.com/matze/pkgconfig', license='MIT', packages=['pkgconfig'], description="Interface Python with pkg-...
from setuptools import setup VERSION = '1.2.2' setup( name='pkgconfig', version=VERSION, author='Matthias Vogelgesang', author_email='matthias.vogelgesang@gmail.com', url='http://github.com/matze/pkgconfig', license='MIT', packages=['pkgconfig'], description="Interface Python with pkg-...
Python
0
35b6a835bd93bed97e85e216fa81011220851081
Bump version
setup.py
setup.py
import setuptools setuptools.setup( name="djver", version="2.1.0", url="https://github.com/sesh/djver", author="Brenton Cleeland", author_email="brenton@brntn.me", description="Ever wanted to know what version of Django someone else is running?", packages=setuptools.find_packages(), ...
import setuptools setuptools.setup( name="djver", version="2.0.0", url="https://github.com/sesh/djver", author="Brenton Cleeland", author_email="brenton@brntn.me", description="Ever wanted to know what version of Django someone else is running?", packages=setuptools.find_packages(), ...
Python
0
add607e2920148572c9fc421b6cdeaa1f17d9c38
Bump version to 0.8.2
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ import io import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with io.open("RE...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ import io import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with io.open("RE...
Python
0
839dbc8a22d505578b17adae41e5ce1f3cae9672
update license
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import sys with open("README.rst", 'r') as readme: README_txt = readme.read() dependencies = [ 'openpyxl', 'pyexcel-io' ] i...
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import sys with open("README.rst", 'r') as readme: README_txt = readme.read() dependencies = [ 'openpyxl', 'pyexcel-io' ] i...
Python
0
7530eed51b39d4d02b91a5dd1a382b6a1b43f9cc
update metadata
setup.py
setup.py
""" Flask-Sencha ------------- This is the description for that library """ from setuptools import setup setup( name='Flask-ExtDirect', version='0.1', url='http://github.com/rch/flask-extdirect', license='MIT', author='Ryan C. Hill', author_email='@zndx.org', description='Sencha Ext.Direc...
""" Flask-Sencha ------------- This is the description for that library """ from setuptools import setup setup( name='Flask-Sencha', version='0.1', url='http://github.com/rch/flask-extdirect', license='BSD', author='Ryan C. Hill', author_email='@zndx.org', description='Very short descript...
Python
0.000001
6fa473ee554c71812fb102d76973410e059031b2
Add long_description field in setup.
setup.py
setup.py
# Copyright (c) 2016, Imperial College London # Copyright (c) 2016, Ghislain Antony Vaillant # All rights reserved. # # Distributed under the terms of the new BSD license. # See the accompanying LICENSE file or read the terms at # https://opensource.org/licenses/BSD-3-Clause. from setuptools import find_packages, setu...
# Copyright (c) 2016, Imperial College London # Copyright (c) 2016, Ghislain Antony Vaillant # All rights reserved. # # Distributed under the terms of the new BSD license. # See the accompanying LICENSE file or read the terms at # https://opensource.org/licenses/BSD-3-Clause. from setuptools import find_packages, setu...
Python
0
e3514b73bcbffbab2597a4eb068d3c03cf8d942b
bump 0.5.6
setup.py
setup.py
from setuptools import setup from setuptools import find_packages def readme(): with open('README.md', encoding='utf-8') as file: return file.read() def license(): with open('LICENSE.txt', encoding='utf-8') as file: return file.read() setup( name='nalaf', version='0.5.6', descr...
from setuptools import setup from setuptools import find_packages def readme(): with open('README.md', encoding='utf-8') as file: return file.read() def license(): with open('LICENSE.txt', encoding='utf-8') as file: return file.read() setup( name='nalaf', version='0.5.6-SNAPSHOT', ...
Python
0.000011
8c3c15aca9bf78051b684ac46b72aff79f6640d3
fix README path
setup.py
setup.py
from setuptools import setup import django_elastipymemcache setup( name='django-elastipymemcache', version=django_elastipymemcache.__version__, description='Django cache backend for Amazon ElastiCache (memcached)', long_description=open('README.md').read(), author='Danil Gusev', platforms='an...
from setuptools import setup import django_elastipymemcache setup( name='django-elastipymemcache', version=django_elastipymemcache.__version__, description='Django cache backend for Amazon ElastiCache (memcached)', long_description=open('README.rst').read(), author='Danil Gusev', platforms='a...
Python
0.000015
8b8a3731002d3d0434e20b4231b2554008e90f0f
add the supported versions of awscli to extras require
setup.py
setup.py
import os import re import sys from setuptools import setup, find_packages # aiohttp requirement is pegged as we need to manually ensure that # https://github.com/aio-libs/aiobotocore/pull/248 will continue working install_requires = ['botocore>=1.5.71, <=1.5.78', 'aiohttp>=2.0.4, <=2.3.0', 'multi...
import os import re import sys from setuptools import setup, find_packages # aiohttp requirement is pegged as we need to manually ensure that # https://github.com/aio-libs/aiobotocore/pull/248 will continue working install_requires = ['botocore>=1.5.71, <=1.5.78', 'aiohttp>=2.0.4, <=2.3.0', 'multi...
Python
0.000251
5961c5bddf89ea7c048aafc16bbabe9630f632f4
Make setup.py executable
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='typogrify', version='2.0.0', packages=find_packages(), author='Christian Metts', author_email='xian@mintchaos.com', license='BSD', description='Typography related template filters for Django & Jinja2 applicatio...
from setuptools import setup, find_packages setup( name='typogrify', version='2.0.0', packages=find_packages(), author='Christian Metts', author_email='xian@mintchaos.com', license='BSD', description='Typography related template filters for Django & Jinja2 applications', url='https://g...
Python
0.000008
4a321b060a0e41d15f872e3f080e446657a98ea2
Add pycldf dependency
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup from beastling import __version__ as version requires = [ 'six', 'newick>=0.6.0', 'appdirs', 'clldutils', 'pycldf', ] setup( name='beastling', version=version, descri...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup from beastling import __version__ as version requires = [ 'six', 'newick>=0.6.0', 'appdirs', 'clldutils', ] setup( name='beastling', version=version, description='Command...
Python
0.000001
70be93343a985b4aa81944649c42c4138fece388
Use regex for finding version in __init__.py
setup.py
setup.py
from __future__ import print_function import codecs import os import re from setuptools import setup def read(filename): """Read and return `filename` in root dir of project and return string""" here = os.path.abspath(os.path.dirname(__file__)) return codecs.open(os.path.join(here, filename), 'r').read()...
from __future__ import print_function import codecs import os from setuptools import setup, find_packages import piazza_api def read(filename): """Read and return `filename` in root dir of project and return string""" here = os.path.abspath(os.path.dirname(__file__)) return codecs.open(os.path.join(here...
Python
0.000177
691e9df7cf5434a1296c0643bc9c62edde72b1c6
Bump version number.
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_logger', version='0.2.2', description='Logging backend for PPP user interfaces.', url='https://github.com/ProjetPP/PPP-Core', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', lic...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_logger', version='0.2.1', description='Logging backend for PPP user interfaces.', url='https://github.com/ProjetPP/PPP-Core', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', lic...
Python
0
b4bc0dc0c4bd53c8af0cf6f878708a8b22a5f832
set version to 1.0.0
setup.py
setup.py
from setuptools import setup setup(name='linkedlist', version='1.0.0', description='General purpose linked list', url='https://github.com/teroqim/linkedlist', author='Peter Andersson', author_email='teroqim@gmail.com', packages=['linkedlist'], zip_safe=False)
from setuptools import setup setup(name='linkedlist', version='0.0.1', description='General purpose linked list', url='https://github.com/teroqim/linkedlist', author='Peter Andersson', author_email='teroqim@gmail.com', packages=['linkedlist'], zip_safe=False)
Python
0.000318
4e32c1597891c67daf03d71e35bc499cfba3e596
Bump version number.
setup.py
setup.py
from distutils.core import setup, Extension from Cython.Distutils import build_ext import numpy def cext(name): return Extension('lulu.%s' % name, ['lulu/%s.pyx' % name], include_dirs=[numpy.get_include()]) setup(name='lulu', version='0.9.3', description='Fast and efficient implem...
from distutils.core import setup, Extension from Cython.Distutils import build_ext import numpy def cext(name): return Extension('lulu.%s' % name, ['lulu/%s.pyx' % name], include_dirs=[numpy.get_include()]) setup(name='lulu', version='0.9.2', description='Fast and efficient implem...
Python
0
26daa433b28b886ad6aa68bd5e40736e7d892c3a
Update version.
setup.py
setup.py
import os from setuptools import setup, find_packages __version__ = "0.1.5" def file_read(filename): filepath = os.path.join(os.path.dirname(__file__), filename) with open(filepath) as flo: return flo.read() setup( name="staticmodel", version=__version__, packages=find_packages(exclude...
import os from setuptools import setup, find_packages __version__ = "0.1.4" def file_read(filename): filepath = os.path.join(os.path.dirname(__file__), filename) with open(filepath) as flo: return flo.read() setup( name="staticmodel", version=__version__, packages=find_packages(exclude...
Python
0
1ded6a3f75629695f477f69881d125c2b9221447
increment version to 2.0.4
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '2.0.4', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', author_email = 'pytvmaze@gmail.com', license='MIT', cl...
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '2.0.3', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', author_email = 'pytvmaze@gmail.com', license='MIT', cl...
Python
0.00121
aa9e7f322882ab2d94c5426aef8c0490601f278c
Remove six from list.
setup.py
setup.py
from setuptools import find_packages from setuptools import setup setup( name='skytap', packages=find_packages(), version='1.0.2', description='Skytap REST API access modules', author='Fulcrum Technologies', author_email='mknowles@fulcrum.net', install_requires=['requests'], url='https:...
from setuptools import find_packages from setuptools import setup setup( name='skytap', packages=find_packages(), version='1.0.2', description='Skytap REST API access modules', author='Fulcrum Technologies', author_email='mknowles@fulcrum.net', install_requires=['requests', 'six'], url=...
Python
0.000024
505446d8c45429242889230ae60df9f4d297304d
bump version number
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pymediainfo', version = '1.3.3', author='Patrick Altman', author_email='paltman@gmail.com', url='git@github.com/paltman/pymediainfo.git', description="""A Python wrapper for the mediainfo command line tool.""", packages=find_packages(...
from setuptools import setup, find_packages setup( name='pymediainfo', version = '1.3.2', author='Patrick Altman', author_email='paltman@gmail.com', url='git@github.com/paltman/pymediainfo.git', description="""A Python wrapper for the mediainfo command line tool.""", packages=find_packages(...
Python
0.000004
0d50e39803db371c9352bfc5f1c0c853ce647006
fix pypi build
setup.py
setup.py
from setuptools import find_packages, setup VERSION = '0.1.1' setup( name='django-herald', version=VERSION, author='Worthwhile', author_email='devs@worthwhile.com', install_requires=['django>=1.8', 'six'], packages=find_packages(), include_package_data=True, # declarations in MANIFEST.in...
from setuptools import find_packages from distutils.core import setup VERSION = '0.1' setup( name='django-herald', version=VERSION, author='Worthwhile', author_email='devs@worthwhile.com', install_requires=['django>=1.8', 'six'], packages=find_packages(), include_package_data=True, # dec...
Python
0
d3fec7f0eb48813e4f9895cc5900188cd3a33176
Add pytest to tests_require
setup.py
setup.py
from distutils.core import setup setup( name = 'cleverbot', version = '0.2.0', packages = ['cleverbot'], install_requires = ['future', 'requests'], tests_require = ['pytest'], author = 'Rodney Folz', author_email = 'folz@rodneyfolz.com', url = 'https://github.com/folz/cleverbot.py', ...
from distutils.core import setup setup( name = 'cleverbot', version = '0.2.0', packages = ['cleverbot'], install_requires = ['future', 'requests'], author = 'Rodney Folz', author_email = 'folz@rodneyfolz.com', url = 'https://github.com/folz/cleverbot.py', description = 'An API for Cleve...
Python
0.000001
2aef7511f63a525cd54f22c132e652760ccb64dc
Change version
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup LONG_DESCRIPTION = """ Django confirmaction is a battery for confirm actions via email, sms etc. """ def long_description(): try: return open( os.path.join(os.path.dirname(__file__), "README.md") ).read() except IOErro...
# -*- coding: utf-8 -*- import os from setuptools import setup LONG_DESCRIPTION = """ Django confirmaction is a battery for confirm actions via email, sms etc. """ def long_description(): try: return open( os.path.join(os.path.dirname(__file__), "README.md") ).read() except IOErro...
Python
0
f27c0541bcbaffdb1b9189ab18d955c7d10d484b
make scrapyd package zip unsafe because the scrapyd command requires the txapp.py unpacked to run. fixes #49
setup.py
setup.py
from os.path import join, dirname with open(join(dirname(__file__), 'scrapyd/VERSION')) as f: version = f.read().strip() setup_args = { 'name': 'scrapyd', 'version': version, 'url': 'https://github.com/scrapy/scrapyd', 'description': 'A service for running Scrapy spiders, with an HTTP API', 'l...
from os.path import join, dirname with open(join(dirname(__file__), 'scrapyd/VERSION')) as f: version = f.read().strip() setup_args = { 'name': 'scrapyd', 'version': version, 'url': 'https://github.com/scrapy/scrapyd', 'description': 'A service for running Scrapy spiders, with an HTTP API', 'l...
Python
0.000001
99d0a21bc0ceca486e8f7f4590a2c75d1df89ec9
Update to version 0.6.16
setup.py
setup.py
# -*-coding:utf-8-*- from setuptools import setup setup( name='rocketchat_API', version='0.6.16', packages=['rocketchat_API', 'rocketchat_API.APIExceptions'], url='https://github.com/jadolg/rocketchat_API', license='MIT', author='Jorge Alberto Díaz Orozco', author_email='diazorozcoj@gmail....
# -*-coding:utf-8-*- from setuptools import setup setup( name='rocketchat_API', version='0.6.15', packages=['rocketchat_API', 'rocketchat_API.APIExceptions'], url='https://github.com/jadolg/rocketchat_API', license='MIT', author='Jorge Alberto Díaz Orozco', author_email='diazorozcoj@gmail....
Python
0
fdcc2365904d988d9a52db51c9a8a0d30cda9538
Bump flask-caching from 1.7.0 to 1.7.2
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...
#!/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.00004
b484361fc9008e77f94799a138f0625ed7da4647
Bump version number in setup.py
setup.py
setup.py
#!/usr/bin/env python3 import io from setuptools import setup with io.open('README.rst', encoding='utf-8') as f: README = f.read() with io.open('HISTORY.rst', encoding='utf-8') as f: HISTORY = f.read() desc='MultiThreaded and MultiServers Redis Extension for Flask Applications' setup( name='Flask-Multi-...
#!/usr/bin/env python3 import io from setuptools import setup with io.open('README.rst', encoding='utf-8') as f: README = f.read() with io.open('HISTORY.rst', encoding='utf-8') as f: HISTORY = f.read() desc='MultiThreaded and MultiServers Redis Extension for Flask Applications' setup( name='Flask-Multi-...
Python
0
d1ffbda1eebaaf4a9d91881c1d82cfe214bc1df1
update pyjwt dependency
setup.py
setup.py
# Copyright 2014 ARM Limited # # Licensed under the Apache License, Version 2.0 # See LICENSE file for details. import os from setuptools import setup, find_packages # Utility function to cat in a file (used for the README) def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # we ...
# Copyright 2014 ARM Limited # # Licensed under the Apache License, Version 2.0 # See LICENSE file for details. import os from setuptools import setup, find_packages # Utility function to cat in a file (used for the README) def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # we ...
Python
0
0f6115e33bbfd3fb989ae5bec743374ef70ab574
Bump support Django versions
setup.py
setup.py
import os import sys from shutil import rmtree from setuptools import setup, find_packages exclude = ["forms_builder/example_project/dev.db", "forms_builder/example_project/local_settings.py"] exclude = dict([(e, None) for e in exclude]) for e in exclude: if e.endswith(".py"): try: ...
import os import sys from shutil import rmtree from setuptools import setup, find_packages exclude = ["forms_builder/example_project/dev.db", "forms_builder/example_project/local_settings.py"] exclude = dict([(e, None) for e in exclude]) for e in exclude: if e.endswith(".py"): try: ...
Python
0
44bb2d27aa4d0651e79ed57be733c08a61d195c0
Add conflict with newer pyparsing versions
setup.py
setup.py
#!/usr/bin/env python """ This script uses Setuptools (http://pythonhosted.org/setuptools/), a collection of enhancements to the standard Python distutils. """ import sys import os import shutil from setuptools import setup, Command, find_packages from setuptools.command.test import test as TestCommand # Make sure I...
#!/usr/bin/env python """ This script uses Setuptools (http://pythonhosted.org/setuptools/), a collection of enhancements to the standard Python distutils. """ import sys import os import shutil from setuptools import setup, Command, find_packages from setuptools.command.test import test as TestCommand # Make sure I...
Python
0
c5f297001f12a6bea42c6460d480fdd63285c2bc
bump version to 0.18
setup.py
setup.py
from setuptools import setup setup( name = 'schiene', packages = ['schiene'], version = '0.18', license = 'MIT', description = 'schiene is a Python library for interacting with Bahn.de', author = 'Kevin Kennell', author_email = 'kevin@kennell.de', install_requires=[ 'requests>=2.10.0', '...
from setuptools import setup setup( name = 'schiene', packages = ['schiene'], version = '0.17', license = 'MIT', description = 'schiene is a Python library for interacting with Bahn.de', author = 'Kevin Kennell', author_email = 'kevin@kennell.de', install_requires=[ 'requests>=2.10.0', '...
Python
0
c101310d7e8d90c3d9d0ac412964c62617a2aa4e
Update test_requires in setup.py
setup.py
setup.py
""" Flask-Slacker -------------- Adds Slack support to your Flask application using Slacker. """ import ast import re from setuptools import setup def get_version(): _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('flask_slacker/__init__.py', 'rb') as f: version = str(ast.literal_eval...
""" Flask-Slacker -------------- Adds Slack support to your Flask application using Slacker. """ import ast import re from setuptools import setup def get_version(): _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('flask_slacker/__init__.py', 'rb') as f: version = str(ast.literal_eval...
Python
0
1fbce76b0e6daa097f47a2d531cb8d9bfb0601eb
Refactor setup.py
setup.py
setup.py
# -*- coding: utf-8 -*- import os import tarfile from subprocess import Popen, PIPE from setuptools import setup, Extension, find_packages # setuptools DWIM monkey-patch madness # http://mail.python.org/pipermail/distutils-sig/2007-September/thread.html#8204 import sys if 'setuptools.extension' in sys.modules: m =...
# -*- coding: utf-8 -*- import os from subprocess import Popen, PIPE from setuptools import setup, Extension, find_packages # setuptools DWIM monkey-patch madness # http://mail.python.org/pipermail/distutils-sig/2007-September/thread.html#8204 import sys if 'setuptools.extension' in sys.modules: m = sys.modules['s...
Python
0
69994e4b7bac8ba10bbf412060e42ce71832c2cb
add py3.5 classifier
setup.py
setup.py
from setuptools import setup import imp _version = imp.load_source("pynmea2._version", "pynmea2/_version.py") setup( name='pynmea2', version=_version.__version__, author='Tom Flanagan', author_email='tom@zkpq.ca', license='MIT', url='https://github.com/Knio/pynmea2', descript...
from setuptools import setup import imp _version = imp.load_source("pynmea2._version", "pynmea2/_version.py") setup( name='pynmea2', version=_version.__version__, author='Tom Flanagan', author_email='tom@zkpq.ca', license='MIT', url='https://github.com/Knio/pynmea2', descript...
Python
0.007939
e1cc4d49f37abbda308968b1bf4f49298a1c904e
Change version to prevent unleash from choking.
setup.py
setup.py
#!/usr/bin/env python # coding=utf8 import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='legitfs', version='0.3.dev1', description='A read-only FUSE-based filesystem allowing you to browse ' ...
#!/usr/bin/env python # coding=utf8 import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='legitfs', version='0.3dev', description='A read-only FUSE-based filesystem allowing you to browse ' ...
Python
0
7ccc29455aca3ad453d7d62cd1c1fa874a22dcc2
add setup file
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup, find_packages import labyrinth with open('requirements.txt') as f: requires = f.read().split('\n') setup( name='oc-labyrinth', version=3.2, packages=find_packages(), install_requires=requires, author='Nico Zhan',...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup, find_packages import labyrinth with open('requirements.txt') as f: requires = f.read().split('\n') setup( name='oc-labyrinth', version=3.2, packages=find_packages(), install_requires=requires, author='Nico Zh...
Python
0.000001
387dcda6fff3fac0d8506e047919ffe3c48591af
Bump django-entity to version 1.1.2
setup.py
setup.py
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'entity_emailer/v...
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'entity_emailer/v...
Python
0
77ce7d52840da7ff98ae863f08fd46569325c05b
fix stup with description
setup.py
setup.py
import os from distutils.command.build import build from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) tests_require = [ 'freezegun', 'factory_boy', 'coverage', ] here = os.path.abspath(os.path.dirname(__file__)) class BuildCommand(build): def run(self):...
import os from distutils.command.build import build from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) tests_require = [ 'freezegun', 'factory_boy', 'coverage', ] here = os.path.abspath(os.path.dirname(__file__)) class BuildCommand(build): def run(self):...
Python
0.000264
998ce4a9425f7ab612321e6040bc276594ea8069
Bump release number to 0.10
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name = 'pybis', version = '0.10', description = 'Python IBIS parser', author = 'Russ Dill', requires = [ 'pyparsing', 'numpy' ], author_email = 'Russ.Dill@gmail.com', url = 'https://github.com/russdill/pybis/wiki', download_url =...
#!/usr/bin/env python from distutils.core import setup setup(name = 'pybis', version = '0.9', description = 'Python IBIS parser', author = 'Russ Dill', requires = [ 'pyparsing', 'numpy' ], author_email = 'Russ.Dill@gmail.com', url = 'https://github.com/russdill/pybis/wiki', download_url = ...
Python
0.000031
8297fd9f1dfd221cb1dd22187bcf410b5c8475cc
add long description to setup.py (#292)
setup.py
setup.py
import sys import io from setuptools import setup if sys.version_info <= (2, 4): error = "Requires Python Version 2.5 or above... exiting." print >>sys.stderr, error sys.exit(1) requirements = ["requests>=2.20.0,<3.0"] # use io.open until python2.7 support is dropped with io.open("README.md", encoding=...
import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <= (2, 4): error = 'Requires Python Version 2.5 or above... exiting.' print >> sys.stderr, error sys.exit(1) requirements = [ 'requests>=2.20.0,<3.0', ] setup(name='googlemaps', ...
Python
0
985dc5fe85b02d597098a1dd0a361871149e8089
update to 3.0.1
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages version = '3.0.0' setup( name='tensorgraph', version=version, author='Wu Zhen Zhou', author_email='hyciswu@gmail.com', install_requires=['numpy>=1.7.1', 'six>=1.9.0', 'scikit-learn>=0.1...
from distutils.core import setup from setuptools import find_packages version = '3.0.0' setup( name='tensorgraph', version=version, author='Wu Zhen Zhou', author_email='hyciswu@gmail.com', install_requires=['numpy>=1.7.1', 'six>=1.9.0', 'scikit-learn>=0.1...
Python
0
f372f5d577687aea0e5a70b41ebd1475125c1fd7
Bump version to 1.4.3
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='django-gravatar2', version='1.4.3', description='Essential Gravatar support for Django. Features helper' ' methods, templatetags and a full test suite!', long_description=open('RE...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='django-gravatar2', version='1.4.2', description='Essential Gravatar support for Django. Features helper' ' methods, templatetags and a full test suite!', long_description=open('RE...
Python
0
7b16884e0081b8ade9382483acd22b54629d3c6a
update version
setup.py
setup.py
from setuptools import setup with open('LICENSE') as f: license = f.read() setup( name='pymyq', version='0.0.16', description='Python package for controlling MyQ-Enabled Garage Door', author='Chris Campbell', author_email='chris@arraylabs.com', url='https://github.com/arraylabs/pymyq', ...
from setuptools import setup with open('LICENSE') as f: license = f.read() setup( name='pymyq', version='0.0.13', description='Python package for controlling MyQ-Enabled Garage Door', author='Chris Campbell', author_email='chris@arraylabs.com', url='https://github.com/arraylabs/pymyq', ...
Python
0
c82e056ec41792b4a8aa2087817eb72637e02cb8
Bump to v0.2.2
setup.py
setup.py
import sys from setuptools import setup, find_packages if sys.version_info.major < 3: sys.exit("Error: Please upgrade to Python3") def get_long_description(): with open("README.rst") as fp: return fp.read() setup(name="tsrc", version="0.2.2", description="Manage multiple repositories", ...
import sys from setuptools import setup, find_packages if sys.version_info.major < 3: sys.exit("Error: Please upgrade to Python3") def get_long_description(): with open("README.rst") as fp: return fp.read() setup(name="tsrc", version="0.2.1", description="Manage multiple repositories", ...
Python
0.000001