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
737a76ed5b5b0b0720deca2804fa9dd1d79e0fa1
Bump version to 0.6.0
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'Django>=1.2', 'unittest2', ] setup( name='django-perftools', version='0.6.0', author='DISQUS', author_email='opensource@disqus.com', url='http://github.com/disqus/django-perftools', description = '', ...
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'Django>=1.2', 'unittest2', ] setup( name='django-perftools', version='0.5.1', author='DISQUS', author_email='opensource@disqus.com', url='http://github.com/disqus/django-perftools', description = '', ...
Python
0.000001
e81d5f85266f937ddc4771534875e9d02d306e84
Bump wcxf version to 1.2
setup.py
setup.py
from setuptools import setup, find_packages with open('flavio/_version.py') as f: exec(f.read()) setup(name='flavio', version=__version__, author='David M. Straub', author_email='david.straub@tum.de', url='https://flav-io.github.io', description='A Python package for flavour physics ...
from setuptools import setup, find_packages with open('flavio/_version.py') as f: exec(f.read()) setup(name='flavio', version=__version__, author='David M. Straub', author_email='david.straub@tum.de', url='https://flav-io.github.io', description='A Python package for flavour physics ...
Python
0
26760103ec785b7e76bee85feb43f85a6cc19f38
remove setup_requires b/c it was problematic for conda-forge
setup.py
setup.py
#!/usr/bin/env python import os import re import shutil import sys try: from setuptools import setup, Command from setuptools.extension import Extension except ImportError: raise RuntimeError('setuptools is required') import versioneer DESCRIPTION = ('A set of functions and classes for simulating the ...
#!/usr/bin/env python import os import re import shutil import sys try: from setuptools import setup, Command from setuptools.extension import Extension except ImportError: raise RuntimeError('setuptools is required') import versioneer DESCRIPTION = ('A set of functions and classes for simulating the ...
Python
0
f0216d291337bce4241a40bb05c79e6d43d9b9c2
Fix indentation.
setup.py
setup.py
#!/usr/bin/env python #coding: utf-8 import os, sys from setuptools import setup, find_packages EXCLUDE_FROM_PACKAGES = ['cms.project_template', 'cms.bin'] setup( name = "cms", version = "1.0.4", url = "https://github.com/onespacemedia/cms", author = "Daniel Samuels", au...
#!/usr/bin/env python #coding: utf-8 import os, sys from setuptools import setup, find_packages EXCLUDE_FROM_PACKAGES = ['cms.project_template', 'cms.bin'] setup( name = "cms", version = "1.0.4", url = "https://github.com/onespacemedia/cms", author = "Daniel Samuels", author_emai...
Python
0.000007
870d8f73ee1b4584220b09c6ac2b87ccd43b78a0
Fix style problems in setup.py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="HAdmin", version="0.1", packages=find_packages(), author="Alec Ten Harmsel", author_email="alec@alectenharmsel.com", description="A Hadoop configuration manager", url="http://github.com/trozamon/hadmin", lic...
#!/usr/bin/env python from setuptools import setup, find_packages import hadmin_test setup( name = "HAdmin", version = "0.1", packages = find_packages(), author = "Alec Ten Harmsel", author_email = "alec@alectenharmsel.com", description = "A Hadoop configuration manager...
Python
0.000001
a9e007f2876c7356311975eb11232f11aba80625
Add classifiers, platforms
setup.py
setup.py
from setuptools import setup setup( name='django-kewl', version=".".join(map(str, __import__('short_url').__version__)), packages=['django_kewl'], url='https://github.com/Alir3z4/django-kewl', license='BSD', author='Alireza Savand', author_email='alireza.savand@gmail.com', description='...
from setuptools import setup setup( name='django-kewl', version=".".join(map(str, __import__('short_url').__version__)), packages=['django_kewl'], url='https://github.com/Alir3z4/django-kewl', license='BSD', author='Alireza Savand', author_email='alireza.savand@gmail.com', description='...
Python
0.000048
fddab75d614d6d063731c76046969b382c41c430
Fix setup.py to use 2to3.
setup.py
setup.py
try: from distutils.command.build_py import build_py_2to3 as build_py except ImportError: from distutils.command.build_py import build_py from distutils.core import setup import os # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] r...
from distutils.core import setup import os # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os.walk('registration'): # Ignore...
Python
0
7ccbf6b68a581f0163f6064a33958801f0cfac40
Update version and remove dependency link
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='sciunit', version='0.1.5.6', author='Rick Gerkin', author_email='rgerkin@asu.edu', packages=['sciunit', 'sciunit.tests'], url='http://sciunit.scidash.org', license='MIT...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='sciunit', version='0.1.5.5', author='Rick Gerkin', author_email='rgerkin@asu.edu', packages=['sciunit', 'sciunit.tests'], url='http://github.com/scidash/sciunit', licen...
Python
0
a210fde6806070d0c47eaeb34a485e26850dc779
make sure all subpackages get installed
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup setup( name = 'travwave', description = 'Compute traveling waves', author='Daulet Moldabayev, Henrik Kalisch, Olivier Verdier', license = 'MIT', keywords = ['Math'], packages=['travwave', 'travwave.equations', 'travwave.boundary', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup setup( name = 'travwave', description = 'Compute traveling waves', author='Daulet Moldabayev, Henrik Kalisch, Olivier Verdier', license = 'MIT', keywords = ['Math'], packages=['travwave'], classifiers = [ 'Development Status :: 3...
Python
0
75ebe45f64228e39f196d75a3e3d0cf8a5fcc20f
Add unit tests to setup.py
setup.py
setup.py
#!/usr/bin/env python __author__ = "Keith T. Butler" __copyright__ = "Copyright Keith T. Butler (2013)" __version__ = "1.0" __maintainer__ = "Keith T. Butler" __email__ = "k.t.butler@bath.ac.uk" __date__ = "Aug 24 2017" from setuptools import setup import os import unittest module_dir = os.path.dirname(os.path.absp...
#!/usr/bin/env python __author__ = "Keith T. Butler" __copyright__ = "Copyright Keith T. Butler (2013)" __version__ = "1.0" __maintainer__ = "Keith T. Butler" __email__ = "k.t.butler@bath.ac.uk" __date__ = "Aug 24 2017" from setuptools import setup import os module_dir = os.path.dirname(os.path.abspath(__file__)) ...
Python
0
3bceef110f24e22ca8cc72cf1e33da0c580de767
extend classifiers
setup.py
setup.py
from setuptools import setup, Extension import os, platform # look for environment variable that specifies path to SCIP Opt lib and headers scipoptdir = os.environ.get('SCIPOPTDIR', '') includedir = os.path.abspath(os.path.join(scipoptdir, 'include')) libdir = os.path.abspath(os.path.join(scipoptdir, 'lib')) libname...
from setuptools import setup, Extension import os, platform # look for environment variable that specifies path to SCIP Opt lib and headers scipoptdir = os.environ.get('SCIPOPTDIR', '') includedir = os.path.abspath(os.path.join(scipoptdir, 'include')) libdir = os.path.abspath(os.path.join(scipoptdir, 'lib')) libname...
Python
0.000007
d0714dcabc80cc1af98ad3517ddda2dbae0b3e6c
add brax to extra_require
setup.py
setup.py
# Copyright 2022 The EvoJAX Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in w...
# Copyright 2022 The EvoJAX Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in w...
Python
0.000001
d25226ad9a8df4ddb4724113b4cce8dd920fc493
Add back setup
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup TEST_HELP = """ Note: running tests is no longer done using 'python setup.py test'. Instead you will need to run: tox -e test If you don't already have tox installed, you can install it with: pip install tox If you only want to run part ...
#!/usr/bin/env python import os import sys TEST_HELP = """ Note: running tests is no longer done using 'python setup.py test'. Instead you will need to run: tox -e test If you don't already have tox installed, you can install it with: pip install tox If you only want to run part of the test suite, you can als...
Python
0
21223700ea1f1d0209c967761e5c22635ee721e7
Correct PEP8
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages REQUIRES = ( 'marshmallow>=2.1.0', 'mongoengine>=0.9.0', ) def read(fname): with open(fname) as fp: content = fp.read() return content setup( name='marshmallow-mongoengine', version='0.7.7', description='Mongoe...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages REQUIRES = ( 'marshmallow>=2.1.0', 'mongoengine>=0.9.0', ) def read(fname): with open(fname) as fp: content = fp.read() return content setup( name='marshmallow-mongoengine', version='0.7.7', description='Mongoen...
Python
0.000037
36601bc2fc6d1bcdbd700907e2c0173410589f41
Bump netort version in reqs
setup.py
setup.py
from setuptools import setup, find_packages setup( name='yandextank', version='1.12.4', description='a performance measurement tool', longer_description=''' Yandex.Tank is a performance measurement and load testing automatization tool. It uses other load generators such as JMeter, ab or phantom inside ...
from setuptools import setup, find_packages setup( name='yandextank', version='1.12.4', description='a performance measurement tool', longer_description=''' Yandex.Tank is a performance measurement and load testing automatization tool. It uses other load generators such as JMeter, ab or phantom inside ...
Python
0
27b08ae644d76853241b16d0a45e751c15467df5
Fix setup module
setup.py
setup.py
#!/usr/bin/env python import os import re from setuptools import setup, find_packages version = re.compile(r'VERSION\s*=\s*\((.*?)\)') def get_package_version(): "returns package version without importing it" base = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(base, "tracker/__init...
#!/usr/bin/env python import os import re from setuptools import setup, find_packages version = re.compile(r'VERSION\s*=\s*\((.*?)\)') def get_package_version(): "returns package version without importing it" base = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(base, "tracker/__init...
Python
0.000001
a292192c64c6c965d817617334a36f84c6b7fb98
update setup.py
setup.py
setup.py
from setuptools import find_packages, setup from kenchi import __version__ with open('README.rst') as f: readme = f.read() with open('requirements.txt') as f: requires = f.read().splitlines() setup( name = 'kenchi', version = __version__, a...
from setuptools import find_packages, setup from kenchi import __version__ with open('README.rst') as f: readme = f.read() with open('requirements.txt') as f: requires = f.read().splitlines() setup( name = 'kenchi', version = __version__, author ...
Python
0.000001
4710ee93e4b9c4a9410d360b480f1fbe49574b9d
change version number 1.2.1 -> 1.2.2
setup.py
setup.py
from distutils.core import setup VERSION = '1.2.2' AUTHOR_NAME = 'Andy Port' AUTHOR_EMAIL = 'AndyAPort@gmail.com' setup(name='svgpathtools', packages=['svgpathtools'], version=VERSION, description=('A collection of tools for manipulating and analyzing SVG ' 'Path objects and Bezie...
from distutils.core import setup VERSION = '1.2.1' AUTHOR_NAME = 'Andy Port' AUTHOR_EMAIL = 'AndyAPort@gmail.com' setup(name='svgpathtools', packages=['svgpathtools'], version=VERSION, description=('A collection of tools for manipulating and analyzing SVG ' 'Path objects and Bezie...
Python
0.000276
c9dffda5584837ff82b7bbf146a9fa58f44cb168
Add description and remove trailing whitespace
setup.py
setup.py
#!/usr/bin/env python import sys import re try: from setuptools import setup, find_packages except ImportError: print('Spunky Bot needs setuptools in order to build. Install it using' ' your package manager (usually python-setuptools) or via pip (pip' ' install setuptools).') sys.exit(...
#!/usr/bin/env python import sys import re try: from setuptools import setup, find_packages except ImportError: print('Spunky Bot needs setuptools in order to build. Install it using' ' your package manager (usually python-setuptools) or via pip (pip' ' install setuptools).') sys.exit(...
Python
0.000211
325b6d209c96a0cb743fd3d32682f77362910cb1
Fix build.
setup.py
setup.py
#!/usr/bin/env python #Copyright (C) 2013 - The MITRE Corporation #For license information, see the LICENSE.txt file import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <(2, 6): raise Exception('libtaxii requires Python 2.6 or higher.') in...
#!/usr/bin/env python #Copyright (C) 2013 - The MITRE Corporation #For license information, see the LICENSE.txt file import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <(2, 6): raise Exception('libtaxii requires Python 2.6 or higher.') in...
Python
0
8d6ab010d45d69b2eb101653b720270ffe13570c
Enforce an oauth2 version
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages from setuptools.command.test import test except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test class mytest(test): ...
#!/usr/bin/env python try: from setuptools import setup, find_packages from setuptools.command.test import test except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test class mytest(test): ...
Python
0.000012
dd222c31d5dbd695f741233134f3f1cd400788e5
Fix removing logo from README for PyPi
setup.py
setup.py
import distutils.cmd import os import subprocess from setuptools import find_packages, setup class BaseCommand(distutils.cmd.Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def create_command(text, commands): """Creates a custom setu...
import distutils.cmd import os import subprocess from setuptools import find_packages, setup class BaseCommand(distutils.cmd.Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def create_command(text, commands): """Creates a custom setu...
Python
0.000001
ca929bd291ab93ef1fcbc9ae28f9c5e7def6421d
Bump up to v0.4.5
setup.py
setup.py
from os.path import dirname, abspath, join from setuptools import setup with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj: README = fileobj.read().strip() setup( name='hlsclient', description='Client to download all files from HLS streams', long_description=README, author='Globo...
from os.path import dirname, abspath, join from setuptools import setup with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj: README = fileobj.read().strip() setup( name='hlsclient', description='Client to download all files from HLS streams', long_description=README, author='Globo...
Python
0.000003
c9be62cfd8d39f263cff494cfdc3c764bed01adc
Bump version
setup.py
setup.py
import sys import os.path import setuptools MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open(os.path.join(MISC_DIR, "summary.txt")) as f: summary = f.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install...
import sys import os.path import setuptools MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open(os.path.join(MISC_DIR, "summary.txt")) as f: summary = f.read() with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f: install...
Python
0
01fdab64a84a0b960850a655ed5a27639e860002
Fix mockup egg.
setup.py
setup.py
from setuptools import setup, find_packages version = '0.1' setup( name='mockup', version=version, description="No sure how should this package be named so please don't " "judge me just, yet", long_description=open("README.rst").read(), classifiers=[ "Framework :: Plone", ...
from setuptools import setup, find_packages version = '0.1' setup( name='mockup', version=version, description="No sure how should this package be named so please don't " "judge me just, yet", long_description=open("README.rst").read(), classifiers=[ "Framework :: Plone", ...
Python
0
a3a4cd3416dff2e436c88a586f3ad4eb860daccf
fix description in setup.py
setup.py
setup.py
from setuptools import setup, find_packages setup(name='cql-builder', version='0.0.1', description="CQL generation tool", long_description=""" """, classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License' ], keywords='', ...
from setuptools import setup, find_packages setup(name='cql-builder', version='0.0.1', description="Generic data modeling and validation", long_description=""" """, classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License' ], k...
Python
0.000004
9b14273a78e135a5be0127dd36cafe8168d424da
Bump to version 0.3.2
setup.py
setup.py
from distutils.core import setup setup(name='Rivets', version='0.3.2', url='https://github.com/OiNutter/rivets', download_url='https://github.com/OiNutter/rivets/tarball/master', description='Python asset packaging system. Based on Sprockets ruby gem', author='Will McKenzie', author_email='wi...
from distutils.core import setup setup(name='Rivets', version='0.3', url='https://github.com/OiNutter/rivets', download_url='https://github.com/OiNutter/rivets/tarball/master', description='Python asset packaging system. Based on Sprockets ruby gem', author='Will McKenzie', author_email='will...
Python
0
a1e934fc42f2c2ca737bebed4208bd9d5f575ce7
remove bogus setuptools requirement
setup.py
setup.py
__VERSION__ = "1.2.1" import os from setuptools import setup def read(fname): '''Utility function to read the README file.''' return open(os.path.join(os.path.dirname(__file__), fname)).read() # figure out what the install will need install_requires = [] tests_require = ["nose==1.1.2", "nosexcover==1.0.8", "...
__VERSION__ = "1.2.0" import os from setuptools import setup def read(fname): '''Utility function to read the README file.''' return open(os.path.join(os.path.dirname(__file__), fname)).read() # figure out what the install will need install_requires = ["setuptools==0.9.8"] tests_require = ["nose==1.1.2", "no...
Python
0
0b19ddf44da25728557d01ccfa4b596627b0f44b
Bump release
setup.py
setup.py
#!/usr/bin/env python # vim: set fileencoding=utf-8 : # Andre Anjos <andre.dos.anjos@gmail.com> # Tue 22 Jan 2013 13:37:39 CET """Professional website package management """ from setuptools import setup, find_packages setup( name="anjos.website", version="1.0.1", description="My professional website", ...
#!/usr/bin/env python # vim: set fileencoding=utf-8 : # Andre Anjos <andre.dos.anjos@gmail.com> # Tue 22 Jan 2013 13:37:39 CET """Professional website package management """ from setuptools import setup, find_packages setup( name="anjos.website", version="1.0.0", description="My professional website", ...
Python
0
8e6586f746d6a5ebe40a869d854478b9cd121025
fix license
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function from setuptools import setup, find_packages from os import path import codecs import os import re import sys # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv or 'develop' in sys.argv: try: os.chdir('flue...
#!/usr/bin/env python from __future__ import print_function from setuptools import setup, find_packages from os import path import codecs import os import re import sys # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv or 'develop' in sys.argv: try: os.chdir('flue...
Python
0.000001
856efd20e2ce3e9e542b6c76e304885795eaab93
Add revrand back to setup.py requirements
setup.py
setup.py
""" Setup utility for the dora package. """ from setuptools import setup, find_packages # from setuptools.command.test import test as TestCommand setup( name='dora', version='0.1', description='Active sampling using a non-parametric regression model.', author="Alistair Reid and Simon O'Callag...
""" Setup utility for the dora package. """ from setuptools import setup, find_packages # from setuptools.command.test import test as TestCommand setup( name='dora', version='0.1', description='Active sampling using a non-parametric regression model.', author="Alistair Reid and Simon O'Callag...
Python
0
e92d240967acdce817f634fdb533f3a4212870c5
Bump minimal Core version
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- """Tunisia specific model for OpenFisca -- a versatile microsimulation free software""" from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System...
#! /usr/bin/env python # -*- coding: utf-8 -*- """Tunisia specific model for OpenFisca -- a versatile microsimulation free software""" from setuptools import setup, find_packages classifiers = """\ Development Status :: 2 - Pre-Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System...
Python
0
b47c83f1da853577244dc44bce07978be198727a
add test to setup.py
setup.py
setup.py
import os import distutils.sysconfig from distutils.core import setup setup( name="Comet", description="VOEvent Broker", author="John Swinbank", author_email="swinbank@transientskp.org", packages=[ 'comet', 'comet.config', 'comet.plugins', 'comet.service', 'c...
import os import distutils.sysconfig from distutils.core import setup setup( name="Comet", description="VOEvent Broker", author="John Swinbank", author_email="swinbank@transientskp.org", packages=[ 'comet', 'comet.config', 'comet.plugins', 'comet.service', 'c...
Python
0
3145f7759058a805954c6f1a55cbac724cdc3aef
Update version
setup.py
setup.py
import os from setuptools import setup, Extension V8_PREFIX = os.environ.get('V8_PREFIX') if not V8_PREFIX: print 'You should set V8_PREFIX variable in the environment' exit(1) V8_LIBRARY_DIR = os.path.join(V8_PREFIX, 'lib64/') V8_INCLUDE_DIR = os.path.join(V8_PREFIX, 'include/') setup( name='PyV8Mono'...
import os from setuptools import setup, Extension V8_PREFIX = os.environ.get('V8_PREFIX') if not V8_PREFIX: print 'You should set V8_PREFIX variable in the environment' exit(1) V8_LIBRARY_DIR = os.path.join(V8_PREFIX, 'lib64/') V8_INCLUDE_DIR = os.path.join(V8_PREFIX, 'include/') setup( name='PyV8Mono'...
Python
0
57453036b2dc1bc513a0031043d505bff92e14af
Update setup.py
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages from elsapy.__init__ import version # TODO: use pbr for various packaging tasks. setup( name = 'elsapy', version = version, description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://...
from distutils.core import setup from setuptools import find_packages from elsapy.__init__ import version setup( name = 'elsapy', version = version, description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://api.elsevier.com", long_description = "Se...
Python
0.000001
a6045ae313a501c73ba2b0c23576ba444fbbbaf1
add sqlalchemy-migrate dependency
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup(name='pprof', version='0.9.9', packages=find_packages(), install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0", "regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6", ...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup(name='pprof', version='0.9.8', packages=find_packages(), install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0", "regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6", ...
Python
0
54e9265da13b79f008abafc6853790cdb6b7d46d
Update trove classifiers
setup.py
setup.py
from setuptools import setup setup( name='tangled.auth', version='0.1a3.dev0', description='Tangled auth integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ 'tangl...
from setuptools import setup setup( name='tangled.auth', version='0.1a3.dev0', description='Tangled auth integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ 'tangl...
Python
0.000001
2105b2ae0c68a559e1268b3fc2da0b433bfda3dc
Update version
setup.py
setup.py
from setuptools import setup, find_packages setup( name='Flask-DebugToolbar', version='0.5', url='http://github.com/mvantellingen/flask-debugtoolbar', license='BSD', author='Michael van Tellingen', author_email='michaelvantellingen@gmail.com', description='A port of the Django debug toolba...
from setuptools import setup, find_packages setup( name='Flask-DebugToolbar', version='0.4.6dev', url='http://github.com/mvantellingen/flask-debugtoolbar', license='BSD', author='Michael van Tellingen', author_email='michaelvantellingen@gmail.com', description='A port of the Django debug t...
Python
0
6d34151817f5c161cfd209d8b3e2f1ed59e28c6b
Fix static analysis
setup.py
setup.py
#!/usr/bin/env python from os import path as op from setuptools import setup def _read(fname): return open(op.join(op.dirname(__file__), fname)).read() install_requires = [ line for line in _read('requirements.txt').split('\n') if line and not line.startswith('#')] setup( name='sanic-sentry', ...
#!/usr/bin/env python from os import path as op from setuptools import setup def _read(fname): return open(op.join(op.dirname(__file__), fname)).read() install_requires = [ l for l in _read('requirements.txt').split('\n') if l and not l.startswith('#')] setup( name='sanic-sentry', version='0.1...
Python
0.003362
60d29ca3bf958c4753162762209a56e85af0a412
update setup for new version 0.0.12
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def readme(): with open('README.rst') as f: return f.read() setup(name='python-netbox', version='0.0.12', description='Python Ne...
#!/usr/bin/env python import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def readme(): with open('README.rst') as f: return f.read() setup(name='python-netbox', version='0.0.11', description='Python Ne...
Python
0
566bf8b10b74e3457d5a81b7699bee19d385c86b
Change python3-ldap to ldap3 in setup.py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name="django-arcutils", version='0.0.1', url='https://github.com/PSU-OIT-ARC/django-arcutils', author='Matt Johnson', author_email='mdj2@pdx.edu', description="ARC Utils for Django sites", packages=['arcutils', 'arcutils.templatetags...
#!/usr/bin/env python from setuptools import setup setup( name="django-arcutils", version='0.0.1', url='https://github.com/PSU-OIT-ARC/django-arcutils', author='Matt Johnson', author_email='mdj2@pdx.edu', description="ARC Utils for Django sites", packages=['arcutils', 'arcutils.templatetags...
Python
0
d593c904144427496f69f2acaa9d702de5842c76
Bump le version
setup.py
setup.py
import os from setuptools import setup from pip.req import parse_requirements # 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): w...
import os from setuptools import setup from pip.req import parse_requirements # 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): w...
Python
0
64ba26f57874136569740c13ef7703f900b4ae08
Bump back to 1.1.2
setup.py
setup.py
import os from setuptools import setup setup( name='algorithmia', version='1.1.2', description='Algorithmia Python Client', long_description='Algorithmia Python Client is a client library for accessing Algorithmia from python code. This library also gets bundled with any Python algorithms in Algorithm...
import os from setuptools import setup setup( name='algorithmia', version='1.1.3', description='Algorithmia Python Client', long_description='Algorithmia Python Client is a client library for accessing Algorithmia from python code. This library also gets bundled with any Python algorithms in Algorithm...
Python
0.00005
193baecc6cbae01c0894d4752bd59d30c7e7ac7f
Fix Windows build.
setup.py
setup.py
# Copyright (C) 2007-2009 Cournapeau David <cournape@gmail.com> # 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr> # 2014 Gael Varoquaux # 2014-2016 Sergei Lebedev <superbobry@gmail.com> # 2018- Antony Lee import os os.environ.setdefault("SETUPTOOLS_USE_DISTUTIL...
# Copyright (C) 2007-2009 Cournapeau David <cournape@gmail.com> # 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr> # 2014 Gael Varoquaux # 2014-2016 Sergei Lebedev <superbobry@gmail.com> # 2018- Antony Lee import setuptools from setuptools import Extension, fin...
Python
0
4f699618930472e4f424a91286f824d6f79c24cf
Bump the s2clientprotocol version to support all the new features.
setup.py
setup.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ...
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ...
Python
0.000001
62778c3d0e26faeb5c05813387816f9764950af9
Cut release 1.0.0 of logging package. (#3278)
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
Python
0
2e43eb089dee46e4fab229a49429d231b23396ed
update the metadata
setup.py
setup.py
#!/usr/bin/env python import os, os.path from distutils.core import setup, Extension import distutils.msvccompiler source_files = ["Engine.cpp", "Wrapper.cpp", "PyV8.cpp"] macros = [("BOOST_PYTHON_STATIC_LIB", None)] third_party_libraries = ["python", "boost", "v8"] include_dirs = os.environ["INCLUDE"].spl...
#!/usr/bin/env python import os, os.path from distutils.core import setup, Extension import distutils.msvccompiler source_files = ["Engine.cpp", "Wrapper.cpp", "PyV8.cpp"] macros = [("BOOST_PYTHON_STATIC_LIB", None)] third_party_libraries = ["python", "boost", "v8"] include_dirs = os.environ["INCLUDE"].spl...
Python
0.999993
e6fa2ba2c7298cf2d3482961d76119c928fb2ed0
add example
setup.py
setup.py
# Copyright (C) 2015 Bitquant Research Laboratories (Asia) Limited # Released under the Simplified BSD License from setuptools import ( setup, find_packages, ) setup( name="algobroker", version = "0.0.1", author="Joseph C Wang", author_email='joequant@gmail.com', url="https://github.co...
# Copyright (C) 2015 Bitquant Research Laboratories (Asia) Limited # Released under the Simplified BSD License from setuptools import ( setup, find_packages, ) setup( name="algobroker", version = "0.0.1", author="Joseph C Wang", author_email='joequant@gmail.com', url="https://github.co...
Python
0.000002
78674a31aca536309dea38aeb6ac1271910248bb
Bump up version number
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='apush', version='0.2.1', description='A simple Apple push notification service provider', long_description=readme, ...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='apush', version='0.1.0', description='A simple Apple push notification service provider', long_description=readme, ...
Python
0.000011
8cd82d462132e0a5ac74bd540c6f1f092af73056
Bump version
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import io import os.path import setuptools import sys MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" with io.open("README.rst", encoding="utf8") as f: long_description = f.read() with ...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import io import os.path import setuptools import sys MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" with io.open("README.rst", encoding="utf8") as f: long_description = f.read() with ...
Python
0
7f7e4a73c9b0dfe395ed71fb19f6fa76186146da
Use system default python interpreter in setup.py
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup versionfile = open('VERSION', 'r') ver = versionfile.read().strip() versionfile.close() setup(name='SCoT', version=ver, description='Source Connectivity Toolbox', author='Martin Billinger', author_email='martin.billinger@tugraz.at', ...
#!/usr/bin/env python2 from distutils.core import setup versionfile = open('VERSION', 'r') ver = versionfile.read().strip() versionfile.close() setup(name='SCoT', version=ver, description='Source Connectivity Toolbox', author='Martin Billinger', author_email='martin.billinger@tugraz.at', ...
Python
0.000001
3edb02b36a85712e896e785c9205f53258a48428
Update setup.py
setup.py
setup.py
import os.path import setuptools import sys 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("docs", "pages", "intro...
import os.path import setuptools import sys 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("docs", "pages", "intro...
Python
0.000001
052ed182ec5171f9a36d1364722883ed70c28e48
Update descr.
setup.py
setup.py
#! /usr/bin/env python # Last Change: Sun Sep 14 05:00 PM 2008 J # Copyright (C) 2008 Cournapeau David <cournape@gmail.com> descr = """Talkbox, to make your numpy environment speech aware ! Talkbox is set of python modules for speech/signal processing. The goal of this toolbox is to be a sandbox for features which...
#! /usr/bin/env python # Last Change: Sun Sep 14 05:00 PM 2008 J # Copyright (C) 2008 Cournapeau David <cournape@gmail.com> descr = """Talkbox, to make your numpy environment speech aware ! This is set of python modules for speech/signal processing. The goal of this toolbox is to be a sandbox for features which ma...
Python
0
bffebebd86d09f5924461959401ef3698b4e47d5
Create version 0.3.23
setup.py
setup.py
from setuptools import setup setup(name='DukeDSClient', version='0.3.23', description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.', url='https://github.com/Duke-GCB/DukeDSClient', keywords='duke dds dukedataservice', author='John Bradley', ...
from setuptools import setup setup(name='DukeDSClient', version='0.3.22', description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.', url='https://github.com/Duke-GCB/DukeDSClient', keywords='duke dds dukedataservice', author='John Bradley', ...
Python
0
36984a3e951e5baed0041851901aa97b359ef840
add a comma
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function """discretize Discretization tools for finite volume and inverse problems. """ import os import sys CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OS...
#!/usr/bin/env python from __future__ import print_function """discretize Discretization tools for finite volume and inverse problems. """ import os import sys CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OS...
Python
0.999987
85950c20a13f34bb4a52ac7fa19ffaac8a1c7453
Drop 2 support.
setup.py
setup.py
# vim: set et nosi ai ts=4 sts=4 sw=4: # -*- coding: utf-8 -*- import os from setuptools import setup def read_local_file(filename): with open(os.path.join(os.path.dirname(__file__), filename)) as f: return f.read().strip() README = read_local_file('README.md') VERSION = __import__('simple').__version_...
# vim: set et nosi ai ts=4 sts=4 sw=4: # -*- coding: utf-8 -*- import os from setuptools import setup def read_local_file(filename): with open(os.path.join(os.path.dirname(__file__), filename)) as f: return f.read().strip() README = read_local_file('README.md') VERSION = __import__('simple').__version_...
Python
0
250970a54bc04cde46685692ec71d164ed17a484
Update to buildbot 2.4.0
setup.py
setup.py
from setuptools import setup, find_packages setup( name='autobuilder', version='2.2.0', packages=find_packages(), license='MIT', author='Matt Madison', author_email='matt@madison.systems', entry_points={ 'console_scripts': [ 'store-artifacts = autobuilder.scripts.store_a...
from setuptools import setup, find_packages setup( name='autobuilder', version='2.1.0', packages=find_packages(), license='MIT', author='Matt Madison', author_email='matt@madison.systems', entry_points={ 'console_scripts': [ 'store-artifacts = autobuilder.scripts.store_a...
Python
0
ec1afb1d57ea4c674475c9510de1e1964372043b
Add pripnglsch to setup.py
setup.py
setup.py
# PyPNG setup.py # This is the setup.py script used by distutils. # You can install the png module into your Python distribution with: # python setup.py install # You can also do other standard distutil type things, but you can refer # to the distutil documentation for that. # This script is also imported as a module...
# PyPNG setup.py # This is the setup.py script used by distutils. # You can install the png module into your Python distribution with: # python setup.py install # You can also do other standard distutil type things, but you can refer # to the distutil documentation for that. # This script is also imported as a module...
Python
0
61c42e177f1a6ca9a74bdda2da9ae0dcac06e74b
fix doc build broken by Sphinx 5
setup.py
setup.py
import pathlib from setuptools import setup, find_packages setup( name='graphviz', version='0.20.1.dev0', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Simple Python interface for Graphviz', keywords='graph visualization dot render', license='MIT', ...
import pathlib from setuptools import setup, find_packages setup( name='graphviz', version='0.20.1.dev0', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Simple Python interface for Graphviz', keywords='graph visualization dot render', license='MIT', ...
Python
0
bb3d855d7335a456b0a15323e49aa0b40b04c38c
Bump the version number.
setup.py
setup.py
from setuptools import setup setup( name = 'pyTrivialCache', version = '0.3.0', description = "The poor man's API for manipulating a file system cache.", packages = [ 'pyTrivialCache' ], author = 'Roberto Reale', author_email = 'rober.reale@gmail.com', url = 'https://github.com/robertoreale...
from setuptools import setup setup( name = 'pyTrivialCache', version = '0.2.0', description = "The poor man's API for manipulating a file system cache.", packages = [ 'pyTrivialCache' ], author = 'Roberto Reale', author_email = 'rober.reale@gmail.com', url = 'https://github.com/robertoreale...
Python
0.000002
8d14ced65919fa6f94b041c79ae60439db4e243f
Add joblib to install_requires
setup.py
setup.py
from setuptools import setup def readme(): with open("README.rst") as readme_file: return readme_file.read() configuration = { "name": "pynndescent", "version": "0.3.0", "description": "Nearest Neighbor Descent", "long_description": readme(), "classifiers": [ "Development Sta...
from setuptools import setup def readme(): with open("README.rst") as readme_file: return readme_file.read() configuration = { "name": "pynndescent", "version": "0.3.0", "description": "Nearest Neighbor Descent", "long_description": readme(), "classifiers": [ "Development Sta...
Python
0
047215a3e07e7cebf78e409602dd57a2709f8923
Update broken link in PyPi (Homepage)
setup.py
setup.py
import sys from setuptools import setup, find_packages from cement.utils import version VERSION = version.get_version() f = open('README.md', 'r') LONG = f.read() f.close() setup(name='cement', version=VERSION, description='CLI Framework for Python', long_description=LONG, long_description_content_t...
import sys from setuptools import setup, find_packages from cement.utils import version VERSION = version.get_version() f = open('README.md', 'r') LONG = f.read() f.close() setup(name='cement', version=VERSION, description='CLI Framework for Python', long_description=LONG, long_description_content_t...
Python
0
ae279376122772dc189d744caa799c3a0916b38b
Fix setup.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.md').read() history = open('HISTORY.rst'...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.rst').read() history = open('HISTORY.rst...
Python
0.000001
761c6d6331b8031b957d772d203dcba2575eb908
Fix readthedocs URLs in the long description.
setup.py
setup.py
# Copyright 2013 Mark Dickinson # # 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,...
# Copyright 2013 Mark Dickinson # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing,...
Python
0.000019
36bb5f553f0488b8eba7c0b70c7a35ffccb47dbb
Add Easy-Deploy / Easy-Publish
setup.py
setup.py
""" The setup package to install TensorPy dependencies. *> This does NOT include TensorFlow installation. *> To install TensorFlow, use "./install.sh" """ from setuptools import setup, find_packages # noqa import os import sys this_directory = os.path.abspath(os.path.dirname(__file__)) long_description = None try: ...
""" The setup package to install TensorPy dependencies. *> This does NOT include TensorFlow installation. *> To install TensorFlow, use "./install.sh" """ from setuptools import setup, find_packages # noqa from os import path this_directory = path.abspath(path.dirname(__file__)) long_description = None try: wit...
Python
0
79343a79ddba721f4624f881689c66aeb25c5415
bump version for release
setup.py
setup.py
import os from setuptools import setup, Extension, find_packages import pkg_resources # make sure FastImage is importable import motmot.FastImage.FastImage as FastImage major,minor,build = FastImage.get_IPP_version() import motmot.FastImage.util as FastImage_util # build with same IPP as FastImage vals = FastImage_ut...
import os from setuptools import setup, Extension, find_packages import pkg_resources # make sure FastImage is importable import motmot.FastImage.FastImage as FastImage major,minor,build = FastImage.get_IPP_version() import motmot.FastImage.util as FastImage_util # build with same IPP as FastImage vals = FastImage_ut...
Python
0
41f1fa3e04929cfda9df52f6f80eba5fed2150bb
Fix metadata
setup.py
setup.py
import sys import os try: from setuptools import setup except ImportError: from distutils.core import setup if 'sdist' in sys.argv: os.system('./admin/makedoc') version = '3.0.0-alpha' setup( name='python-openid', version=version, description='OpenID support for servers and consumers.', ...
import sys import os try: from setuptools import setup except ImportError: from distutils.core import setup if 'sdist' in sys.argv: os.system('./admin/makedoc') version = '3.0.0-alpha' setup( name='python-openid', version=version, description='OpenID support for servers and consumers.', ...
Python
0.033154
52ee1ff44b51c7f6a10697354031a326a825abcc
fix for dependencies that were not specified in the module setup
setup.py
setup.py
from setuptools import setup, find_packages DESCRIPTION = "A MongoDB object mapper inspired by Django models and SQLAlchemy's pythonic DSL." with open('README') as f: LONG_DESCRIPTION = f.read() VERSION = '0.1.2' CLASSIFIERS = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License'...
from setuptools import setup, find_packages DESCRIPTION = "A MongoDB object mapper inspired by Django models and SQLAlchemy's pythonic DSL." with open('README') as f: LONG_DESCRIPTION = f.read() VERSION = '0.1.2' CLASSIFIERS = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License'...
Python
0
606ed4f5f984c4e099442ae3db017c54b330bfd8
update videos.html
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- """ Created on Sun May 17 07:14:20 2015 @author: ddboline """ from __future__ import (absolute_import, division, print_function) from setuptools import setup setup( name='roku_app', version='0.0.3.7', author='Daniel Boline', author_email='ddboline@gmail.com',...
#!/usr/bin/python # -*- coding: utf-8 -*- """ Created on Sun May 17 07:14:20 2015 @author: ddboline """ from __future__ import (absolute_import, division, print_function) from setuptools import setup setup( name='roku_app', version='0.0.3.6', author='Daniel Boline', author_email='ddboline@gmail.com',...
Python
0
ca7df2103a2e53f0b401c7004a2a5e942bd3e7e1
Remove PIL and docutils from requirements, easy_thumbnails requires it anyway
setup.py
setup.py
from distutils.core import setup from setuptools import setup, find_packages setup(name = "django-image-cropping", version = "0.3.0", description = "A reusable app for cropping images easily and non-destructively in Django", long_description=open('README.rst').read(), author = "jonasvp", author_ema...
from distutils.core import setup from setuptools import setup, find_packages setup(name = "django-image-cropping", version = "0.3.0", description = "A reusable app for cropping images easily and non-destructively in Django", long_description=open('README.rst').read(), author = "jonasvp", author_ema...
Python
0
d497942fedb3096b291f887b70ca231c203e6b85
Bump version.
setup.py
setup.py
"""Setup for Flask Jsondash.""" from glob import glob import os from setuptools import setup, find_packages SRCDIR = '.' folder = os.path.abspath(os.path.dirname(__file__)) template_start = '{}/flask_jsondash/templates'.format(folder) static_start = '{}/flask_jsondash/static'.format(folder) def get_all_files(patter...
"""Setup for Flask Jsondash.""" from glob import glob import os from setuptools import setup, find_packages SRCDIR = '.' folder = os.path.abspath(os.path.dirname(__file__)) template_start = '{}/flask_jsondash/templates'.format(folder) static_start = '{}/flask_jsondash/static'.format(folder) def get_all_files(patter...
Python
0
5c1397fd563f30741f71f07433722dfe3f5a322d
Update pypi.python.org URL to pypi.org (#21)
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from codecs import open setup( name='email_validator', version='1.0.3', description='A robust email syntax and deliverability validation library for Python 2.x/3.x.', long_description=open("README.rst", encoding='utf-8').read(), url=...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from codecs import open setup( name='email_validator', version='1.0.3', description='A robust email syntax and deliverability validation library for Python 2.x/3.x.', long_description=open("README.rst", encoding='utf-8').read(), url=...
Python
0
acdeb233acd9d3f5e1b5e7e5c9df6030fdb0cd85
Fix bugs in setup.py.
setup.py
setup.py
from distutils.core import setup setup( name='django-analyze-sessions', version='0.1', author='Kevan Carstensen', author_email='kevan@isnotajoke.com', packages=['analyze_sessions', 'analyze_sessions.management', 'analyze_sessions.management.commands'], url='http://isnotajoke.com', license='...
from distutils.core import setup setup( name='django-analyze-sesions', version='0.1', author='Kevan Carstensen', author_email='kevan@isnotajoke.com', packages=['analyze_sessions'], url='http://isnotajoke.com', license='LICENSE.txt', description='Tools to analyze Django DB sessions', ...
Python
0
29023d781b817db58686e23ff47e134f63b1a86e
Add python version dependency in setup
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup with open("README.rst") as fh: long_description = fh.read() setup( name='sigtools', version='2.0.2', description="Utilities for working with inspect.Signature objects.", long_description=long_description, long_description_content_type='text/...
#!/usr/bin/env python from setuptools import setup with open("README.rst") as fh: long_description = fh.read() setup( name='sigtools', version='2.0.2', description="Utilities for working with inspect.Signature objects.", long_description=long_description, long_description_content_type='text/...
Python
0.000001
86954efce4f93f4614137a262d94b6acffa8521f
Remove the upper bound
setup.py
setup.py
from setuptools import setup, find_packages kwargs = { 'packages': find_packages( exclude=['tests', '*.tests', '*.tests.*', 'tests.*']), 'include_package_data': True, 'install_requires': [ 'django>=1.4', ], 'name': 'django-tracking2', 'version': __import__('tracking').get_versio...
from setuptools import setup, find_packages kwargs = { 'packages': find_packages( exclude=['tests', '*.tests', '*.tests.*', 'tests.*']), 'include_package_data': True, 'install_requires': [ 'django>=1.4,<1.8', ], 'name': 'django-tracking2', 'version': __import__('tracking').get_v...
Python
0.998353
29fb5c36e7f2dd647c18d30ad026b1de6ff03821
Update dev status
setup.py
setup.py
from setuptools import setup # from setuptools import find_packages # from os import path # from codecs import open # To use a consistent encoding # here = path.abspath(path.dirname(__file__)) # # Get the long description from the relevant file # with open(path.join(here, 'README'), encoding='utf-8') as f: # long_...
from setuptools import setup # from setuptools import find_packages # from os import path # from codecs import open # To use a consistent encoding # here = path.abspath(path.dirname(__file__)) # # Get the long description from the relevant file # with open(path.join(here, 'README'), encoding='utf-8') as f: # long_...
Python
0
80d50feb7353067f2477c4e21be833e1d37d3999
Bump pypi version
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup try: import pandoc except ImportError: pandoc = None if sys.argv[-1] == 'publish': assert pandoc, 'You have to do: pip install pyandoc' os.system('python setup.py sdist upload') sys.exit(0) def read(fname): with open(fn...
#!/usr/bin/env python import os import sys from setuptools import setup try: import pandoc except ImportError: pandoc = None if sys.argv[-1] == 'publish': assert pandoc, 'You have to do: pip install pyandoc' os.system('python setup.py sdist upload') sys.exit(0) def read(fname): with open(fn...
Python
0
6d8702c2d96f9feb3bfd83afd2e161903df83e15
Add git vcsversion method.
setup.py
setup.py
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2011 OpenStack LLC. # 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/...
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2011 OpenStack LLC. # 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/...
Python
0.000004
19c9465a740c065ea6380a56be4d748ada58b174
Upgrade ConfigArgParse
setup.py
setup.py
from setuptools import setup from setuptools.command.test import test as TestCommand import os import sys if sys.version_info < (3, 4, 2): # This is the minimum version supported by aiohttp. raise RuntimeError("hangups requires Python 3.4.2+") # Find __version__ without import that requires dependencies to ...
from setuptools import setup from setuptools.command.test import test as TestCommand import os import sys if sys.version_info < (3, 4, 2): # This is the minimum version supported by aiohttp. raise RuntimeError("hangups requires Python 3.4.2+") # Find __version__ without import that requires dependencies to ...
Python
0.000001
e78044306dd1a7c7484e5bd83bc0cda7d6bc2c75
bump version
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-salmonella", version="0.2.1", author='Lincoln Loop', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " "string value on change and can be overridd...
from setuptools import setup, find_packages setup( name="django-salmonella", version="0.2.0", author='Lincoln Loop', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " "string value on change and can be overridd...
Python
0
24507f0500e1e9172e0a663f98a4eebcddce232e
Add mypy to dev requirements
setup.py
setup.py
import os from setuptools import find_packages, setup # single source of truth for package version version_ns = {} # type: ignore with open(os.path.join("globus_cli", "version.py")) as f: exec(f.read(), version_ns) version = version_ns["__version__"] setup( name="globus-cli", version=version, packag...
import os from setuptools import find_packages, setup # single source of truth for package version version_ns = {} # type: ignore with open(os.path.join("globus_cli", "version.py")) as f: exec(f.read(), version_ns) version = version_ns["__version__"] setup( name="globus-cli", version=version, packag...
Python
0
dc6d19fa8f967741ea209be529946e0232e3be28
Set version to 1.0.1.
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'vitalstyles', description = 'Generate CSS/SASS/LESS documentation with previews using Markdown in comments.', version = '1.0.1', license = 'BSD', author = 'Espen Angell Kristiansen', author_email = 'post@espenak.net', url = 'https:...
from setuptools import setup, find_packages setup( name = 'vitalstyles', description = 'Generate CSS/SASS/LESS documentation with previews using Markdown in comments.', version = '1.0', license = 'BSD', author = 'Espen Angell Kristiansen', author_email = 'post@espenak.net', url = 'https://...
Python
0
4117539f0e2c377ebaf50120a4a3205b5cfa952e
Bump dependency versions
setup.py
setup.py
#!/usr/bin/env python import os, sys, glob, subprocess, textwrap, setuptools try: # Git version extraction logic designed to be compatible with both semver and PEP 440 version = subprocess.check_output(["git", "describe", "--tags", "--match", "v*.*.*"]).decode() version = version.strip("v\n").replace("-",...
#!/usr/bin/env python import os, sys, glob, subprocess, textwrap, setuptools try: # Git version extraction logic designed to be compatible with both semver and PEP 440 version = subprocess.check_output(["git", "describe", "--tags", "--match", "v*.*.*"]).decode() version = version.strip("v\n").replace("-",...
Python
0
0cd23b7ca563a92adc0c5882d9f434955a983aff
Update python setup.py classifiers to Python 3.7
setup.py
setup.py
############################################################################### # Caleydo - Visualization for Molecular Biology - http://caleydo.org # Copyright (c) The Caleydo Team. All rights reserved. # Licensed under the new BSD license, available at http://caleydo.org/license ######################################...
############################################################################### # Caleydo - Visualization for Molecular Biology - http://caleydo.org # Copyright (c) The Caleydo Team. All rights reserved. # Licensed under the new BSD license, available at http://caleydo.org/license ######################################...
Python
0.000062
c46da7419dee72f543ea289eb6b6531dfa31a280
Update version
setup.py
setup.py
"""PySend """ 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.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='pysend',...
"""PySend """ 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.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='pysend',...
Python
0
4b3dc61e5cb46774cf647f8c640b280aae1e4e90
Handle symlinks in path to home directory
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # © 2017-2021 qsuscs, TobiX # Should still run with Python 2.7... from __future__ import print_function, unicode_literals import os import sys from glob import glob os.chdir(os.path.dirname(os.path.abspath(__file__))) home = os.path.realpath(os.path.expanduser('~')) ex...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # © 2017-2019 qsuscs, TobiX # Should still run with Python 2.7... from __future__ import print_function, unicode_literals import os import sys from glob import glob os.chdir(os.path.dirname(os.path.abspath(__file__))) exit = 0 for f in glob('dot.*'): dst_home = '~/...
Python
0
32fe723d195d03f68714d3b97d77f2ce34e02e13
Bump version and Python version.
setup.py
setup.py
from setuptools import setup setup( name='ppb-vector', version='0.3', packages=['ppb_vector'], url='http://github.com/pathunstrom/ppb-vector', license='', author='Piper Thunstrom', author_email='pathunstrom@gmail.com', description='A basic game development Vector2 class.', classifie...
from setuptools import setup setup( name='ppb-vector', version='0.2', packages=['ppb_vector'], url='http://github.com/pathunstrom/ppb-vector', license='', author='Piper Thunstrom', author_email='pathunstrom@gmail.com', description='A basic game development Vector2 class.', classifie...
Python
0
7cd6bdb80649f6ef903cd8356b5c417fbb84cad4
Add twistedcaldav.directory to packages.
setup.py
setup.py
#!/usr/bin/env python ## # Copyright (c) 2006 Apple Computer, Inc. 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 # # Unl...
#!/usr/bin/env python ## # Copyright (c) 2006 Apple Computer, Inc. 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 # # Unl...
Python
0.000112
5ef63a4400669a67ab09d9a822ace4f7e6c5acf5
Add sphinx and spelling packages to setup.py
setup.py
setup.py
from distutils.core import setup GITHUB_URL = 'https://github.com/jongiddy/jute' VERSION = '0.1.8' def contents_of(filename): with open(filename, encoding='utf-8') as f: return f.read() setup( name='jute', packages=['jute'], package_dir={'jute': 'python3/jute'}, version=VERSION, desc...
from distutils.core import setup GITHUB_URL = 'https://github.com/jongiddy/jute' VERSION = '0.1.8' def contents_of(filename): with open(filename, encoding='utf-8') as f: return f.read() setup( name='jute', packages=['jute'], package_dir={'jute': 'python3/jute'}, version=VERSION, desc...
Python
0
6e2f22d4e710e90100387f62715282c58612e102
Add install_requires.
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup long_description = open('README.md', 'r').read() with open('requirements.txt') as f: install_requires = [l for l in f.read().splitlines() if not l.startswith('#')] setup( name="loofah", version="0.1", packages=[ "loo...
#!/usr/bin/env python from setuptools import setup long_description = open('README.md', 'r').read() setup( name="loofah", version="0.1", packages=[ "loofah" ], author="Paul Tagliamonte", author_email="paultag@debian.org", long_description=long_description, description='does so...
Python
0
e4b441a38e8a68d8b1e697a6e5e0cb818ea2eb64
bump other packages too
setup.py
setup.py
import sys from setuptools import setup # Be verbose about Python < 3.6 being deprecated. if sys.version_info < (3, 6): print('\n' * 3 + '*' * 64) print('lastcast requires Python 3.6+, and might be broken if run with\n' 'this version of Python.') print('*' * 64 + '\n' * 3) setup( name='las...
import sys from setuptools import setup # Be verbose about Python < 3.6 being deprecated. if sys.version_info < (3, 6): print('\n' * 3 + '*' * 64) print('lastcast requires Python 3.6+, and might be broken if run with\n' 'this version of Python.') print('*' * 64 + '\n' * 3) setup( name='las...
Python
0
2808199dbfa969823e5a7b3c16eedc1dcd531251
update to v0.2.dev
setup.py
setup.py
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst import glob import os import sys import ah_bootstrap from setuptools import setup #A dirty hack to get around some early import/configurations ambiguities if sys.version_info[0] >= 3: import builtins else: import __builtin_...
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst import glob import os import sys import ah_bootstrap from setuptools import setup #A dirty hack to get around some early import/configurations ambiguities if sys.version_info[0] >= 3: import builtins else: import __builtin_...
Python
0
1680cc753010ca267cdcc12ae414e6083baeb686
bump version
setup.py
setup.py
import sys if sys.version_info[0] < 3: sys.exit('Sorry, Python < 3.x is not supported') # Try using setuptools first, if it's installed from setuptools import setup, find_packages packages = ["pytc_gui", "pytc_gui/dialogs", "pytc_gui/widgets", "pytc_gui/widgets/experiment_box"...
import sys if sys.version_info[0] < 3: sys.exit('Sorry, Python < 3.x is not supported') # Try using setuptools first, if it's installed from setuptools import setup, find_packages packages = ["pytc_gui", "pytc_gui/dialogs", "pytc_gui/widgets", "pytc_gui/widgets/experiment_box"...
Python
0
c630a4c44babac54ce01dc5898a9d6fbfae598c6
Remove unecessary dependency
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from holmes import __version__ tests_require = [ 'mock', 'nose', 'coverage', 'yanc', 'preggy', 'tox', 'ipdb', 'coveralls', 'factory_boy', 'sqltap', 'sphinx', 'honcho', ] setup( ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from holmes import __version__ tests_require = [ 'mock', 'nose', 'coverage', 'yanc', 'preggy', 'tox', 'ipdb', 'coveralls', 'factory_boy', 'sqltap', 'sphinx', 'honcho', ] setup( ...
Python
0.027308
02ac38532cea722ef71717cbe70f9639a4373d07
Tweak description and long_description
setup.py
setup.py
import re from setuptools import setup with open('nexmo/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) setup(name='nexmo', version=version, description='Nexmo Client Library for Python', long_description='This is the Python client ...
import re from setuptools import setup with open('nexmo/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) setup(name='nexmo', version=version, description='Python client for the Nexmo API', long_description='Python client for the Nexm...
Python
0.000002
5f0a1afdf1317da3b101171e6935be3b891a8a73
Add more detailed metadata to setup.py
setup.py
setup.py
#! /usr/bin/env python3 from setuptools import setup, find_packages setup( name = "vmflib", version = "0.1", packages = find_packages(), scripts = ['tools/buildbsp.py'], entry_points = { 'console_scripts': [ 'buildbsp = buildbsp:main' ] }, # metadata for upload...
from setuptools import setup, find_packages setup( name = "vmflib", version = "0.1", packages = find_packages(), scripts = ['tools/buildbsp.py'], entry_points = { 'console_scripts': [ 'buildbsp = buildbsp:main' ] }, # metadata for upload to PyPI author = "S...
Python
0
35fd4836b0d823dbceea8694c9f7a23c4dc40f20
update the realease
setup.py
setup.py
import re from setuptools import find_packages, setup install_requires = [ 'wagtail>=1.9,<1.11', 'user-agents>=1.0.1', 'wagtailfontawesome>=1.0.6', ] tests_require = [ 'factory_boy==2.8.1', 'flake8', 'flake8-blind-except', 'flake8-debugger', 'flake8-imports', 'freezegun==0.3.8', ...
import re from setuptools import find_packages, setup install_requires = [ 'wagtail>=1.9,<1.11', 'user-agents>=1.0.1', 'wagtailfontawesome>=1.0.6', ] tests_require = [ 'factory_boy==2.8.1', 'flake8', 'flake8-blind-except', 'flake8-debugger', 'flake8-imports', 'freezegun==0.3.8', ...
Python
0
4ca207458b1007fbef11d62f63af9fdf8f91a19b
Fix req parsing
setup.py
setup.py
#!/usr/bin/python # -*- coding: UTF-8 -*- from setuptools import setup try: # for pip >= 10 from pip._internal.req import parse_requirements except ImportError: # for pip <= 9.0.3 from pip.req import parse_requirements from oshino_admin.version import get_version install_reqs = list(parse_requirements("requi...
#!/usr/bin/python # -*- coding: UTF-8 -*- from setuptools import setup from pip.req import parse_requirements from oshino_admin.version import get_version install_reqs = list(parse_requirements("requirements/release.txt", session={})) test_reqs = list(parse_requirements("requirements/test.txt", session={})) setup(na...
Python
0.000292
59091a8c2bb76860d52eac5214166eb57ec013a7
change project, package name to all lowercase letters
setup.py
setup.py
import os try: from setuptools import setup except ImportError: from distutils.core import setup DESCRIPTION = "Galaxy Cluster and Weak Lensing Tools" LONG_DESCRIPTION = """ clusterlensing: galaxy cluster halo calculations ====================================================== This package includes tools for c...
import os try: from setuptools import setup except ImportError: from distutils.core import setup DESCRIPTION = "Galaxy Cluster Properties and Weak Lensing Profiles" LONG_DESCRIPTION = """ cluster-lensing: galaxy cluster halo calculations ====================================================== This package inclu...
Python
0.000036
1f9c491ccf8411eb68c4992cf9f50b2b852e8cb1
Bump version to pre-release
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name='scholarly', version='1.5.0-alpha', author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva, Arun Kannawadi', author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca, aru...
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name='scholarly', version='1.4.5', author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva, Arun Kannawadi', author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca, arunkanna...
Python
0