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
fb70f949437a1dbf5117f634a966c05fa8da0c63
package data
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os __version__ = '1.0' # identify main version of dohq-tfs tool devStatus = '4 - Beta' # default build status, see: https://pypi.python.org/pypi?%3Aaction=list_classifiers if 'TRAVIS_BUILD_NUMBER' in os.environ and 'TRAVIS_BRANCH' i...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os __version__ = '1.0' # identify main version of dohq-tfs tool devStatus = '4 - Beta' # default build status, see: https://pypi.python.org/pypi?%3Aaction=list_classifiers if 'TRAVIS_BUILD_NUMBER' in os.environ and 'TRAVIS_BRANCH' i...
Python
0.000001
89901677819f219423e56fc1a19c2942c9d0bdeb
Increment version to 0.2.0.
setup.py
setup.py
#-*- coding: utf-8 -*- # # setup.py # anytop # # Created by Lars Yencken on 2011-10-09. # Copyright 2011 Lars Yencken. All rights reserved. # from distutils.core import setup setup( name='anytop', version='0.2.0', description='Streaming frequency distribution viewer.', long_description=open('READM...
#-*- coding: utf-8 -*- # # setup.py # anytop # # Created by Lars Yencken on 2011-10-09. # Copyright 2011 Lars Yencken. All rights reserved. # from distutils.core import setup setup( name='anytop', version='0.1.2', description='Streaming frequency distribution viewer.', long_description=open('READM...
Python
0.000001
8e94134c4b6d6509cd515508bb2229c647d6867b
Bump to version 1.0.0. This project will be using Semantic Versioning.
setup.py
setup.py
""" SQLAlchemy-JSONAPI ------------------ JSON API Mixin for SQLAlchemy that aims to meet the full JSON API spec as published at http://jsonapi.org/format. Full documentation is available at: https://github.com/coltonprovias/sqlalchemy-jsonapi """ from setuptools import setup setup(name='SQLAlchemy-JSONAPI', ...
""" SQLAlchemy-JSONAPI ------------------ JSON API Mixin for SQLAlchemy that aims to meet the full JSON API spec as published at http://jsonapi.org/format. Full documentation is available at: https://github.com/coltonprovias/sqlalchemy-jsonapi """ from setuptools import setup setup(name='SQLAlchemy-JSONAPI', ...
Python
0
028afb2d0cecc90d198994fe8799764588c52dad
Set version = 1.2
setup.py
setup.py
#!/usr/bin/env python #coding: utf-8 from setuptools import setup, find_packages from os.path import join, dirname setup( name='mosecom_air', version='1.2', description='Web service dedicated to air pollution in Moscow.', long_description=open('README.md').read(), author='elsid', author_email=...
#!/usr/bin/env python #coding: utf-8 from setuptools import setup, find_packages from os.path import join, dirname setup( name='mosecom_air', version='1.1', description='Web service dedicated to air pollution in Moscow.', long_description=open('README.md').read(), author='elsid', author_email=...
Python
0.999996
d543286e998f76ebc915efb5366218d23faa195b
Bump sql-metadata from 1.5.0 to 1.7.0
setup.py
setup.py
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexd...
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexd...
Python
0.000002
ab5c466005f796c8c757e13ed0f3ed64dd5bfbae
bump version
setup.py
setup.py
#!/usr/bin/env python3 # publish on pypi # --------------- # $ python3 setup.py sdist # $ twine upload dist/imagecluster-x.y.z.tar.gz import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fd: long_description ...
#!/usr/bin/env python3 # publish on pypi # --------------- # $ python3 setup.py sdist # $ twine upload dist/imagecluster-x.y.z.tar.gz import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fd: long_description ...
Python
0
8f0635d41c5da5d844aa5219794134fe1d608896
Fix URL in setup.py
setup.py
setup.py
#!/usr/bin/env python import os import sys import io try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, Extension from setuptools import find_packages extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat...
#!/usr/bin/env python import os import sys import io try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, Extension from setuptools import find_packages extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat...
Python
0.000002
2e08fc46892dc7ef257eb27e99356f8ba6b36ad7
add dev requirements
setup.py
setup.py
import piprepo from setuptools import find_packages, setup setup( name="piprepo", version=piprepo.__version__, url="https://github.com/colinhoglund/piprepo", description=piprepo.__description__, packages=find_packages(), entry_points={ 'console_scripts': ['piprepo=piprepo.command:main']...
import piprepo from setuptools import find_packages, setup setup( name="piprepo", version=piprepo.__version__, url="https://github.com/colinhoglund/piprepo", description=piprepo.__description__, packages=find_packages(), entry_points={ 'console_scripts': ['piprepo=piprepo.command:main']...
Python
0
0747e82b1441aaec28179d94a02f9b9d24f45bff
Count up the version number
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import setuptools as st from codecs import open from os import path import numpy here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file ...
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import setuptools as st from codecs import open from os import path import numpy here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file ...
Python
0.999666
204b9e58a156e4f0faf7a240b5923a7c0f305c09
update setup.py to bootstrap numpy installation
setup.py
setup.py
from setuptools import setup, Extension from setuptools.command.build_ext import build_ext as _build_ext # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc # Extend the default build_ext class to bootstrap numpy installation # that are needed to build C extensions. # see https://stackover...
from setuptools import setup, Extension import numpy # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc def run_setup(with_binary): ext_modules = [] if with_binary: ext_modules.append( Extension('shap._cext', sources=['shap/_cext.cc'], include_dirs=[numpy.get_i...
Python
0
85a7e2deeb60de60b04ca282c963157d692f348f
remove pyqtgraph library
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup, find_packages except ImportError: raise ImportError("Install setup tools") try: import PyQt4 except ImportError: raise ImportError("Install PyQt4") try: import numpy as np except ImportError: raise ImportError("Ins...
#!/usr/bin/env python import os import sys try: from setuptools import setup, find_packages except ImportError: raise ImportError("Install setup tools") try: import PyQt4 except ImportError: raise ImportError("Install PyQt4") try: import numpy as np except ImportError: raise ImportError("Ins...
Python
0.000001
16d509f2ff1af0f7588f302323c883edcd4384b4
Move schema salad minimum version back to earlier version.
setup.py
setup.py
#!/usr/bin/env python import os import sys import shutil import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.rst') try: import gittaggers tagger = gittaggers.EggInfoFromGit except Import...
#!/usr/bin/env python import os import sys import shutil import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.rst') try: import gittaggers tagger = gittaggers.EggInfoFromGit except Import...
Python
0
da74aa7b9c3b227fb449e0e8016d3511efcf315d
Add PyPy to classifiers
setup.py
setup.py
import re from setuptools import setup with open('demands/__init__.py') as init_py: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py.read())) with open('README.rst') as readme_file: readme = readme_file.read() setup( name='demands', version=metadata['version'], description=metadata...
import re from setuptools import setup with open('demands/__init__.py') as init_py: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py.read())) with open('README.rst') as readme_file: readme = readme_file.read() setup( name='demands', version=metadata['version'], description=metadata...
Python
0
944df739983244aaacb90314d0d0ec3046042959
Fix package setup
setup.py
setup.py
#!/usr/bin/env python """Distutils setup script for packaging and distribution.""" import pathlib import setuptools PROJECT_AUTHOR = 'Labrys of Knossos' PROJECT_AUTHOR_EMAIL = 'labrys.git@gmail.com' PROJECT_ROOT = pathlib.Path(__file__).parent PROJECT_NAME = 'tvmaze' PROJECT_VERSION = '0.1.0' PROJECT_URL = 'https:/...
#!/usr/bin/env python """Distutils setup script for packaging and distribution.""" import pathlib import setuptools PROJECT_ROOT = pathlib.Path(__file__).parent PROJECT_NAME = 'tvmaze' PROJECT_VERSION = '0.1.0' PROJECT_URL = 'https://github.com/tvmaze/tvmaze' PROJECT_LICENSE = 'MIT License' PROJECT_DESCRIPTION = 'A...
Python
0.000001
918dd5165ae95514495bd22ed3a689b0fd2c6012
Refactor setup.py's VERSION extraction.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # IceCream - A little library for sweet and creamy print debugging. # # Ansgar Grunseid # grunseid.com # grunseid@gmail.com # # License: MIT # import os import re import sys from os.path import dirname, join as pjoin from setuptools import setup, find_packages, Command ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # IceCream - A little library for sweet and creamy print debugging. # # Ansgar Grunseid # grunseid.com # grunseid@gmail.com # # License: MIT # import os import re import sys from os.path import dirname, join as pjoin from setuptools import setup, find_packages, Command ...
Python
0
f6e1db00281fc01b9e009aa6cabb0727ee80385c
Add oedialect to dependency list
setup.py
setup.py
"""This file is part of DING0, the DIstribution Network GeneratOr. DING0 is a tool to generate synthetic medium and low voltage power distribution grids based on open data. It is developed in the project open_eGo: https://openegoproject.wordpress.com DING0 lives at github: https://github.com/openego/ding0/ The docume...
"""This file is part of DING0, the DIstribution Network GeneratOr. DING0 is a tool to generate synthetic medium and low voltage power distribution grids based on open data. It is developed in the project open_eGo: https://openegoproject.wordpress.com DING0 lives at github: https://github.com/openego/ding0/ The docume...
Python
0
dfaf7ec8b2ac6143cbdd0231418df0c7cbf8fb0c
add Beaker dependency
setup.py
setup.py
from setuptools import setup setup( name="pump", version="0.1.2", description="A web application library.", author="Adeel Ahmad Khan", author_email="adeel@adeel.ru", packages=["pump", "pump.util", "pump.middleware"], install_requires=["Beaker"], license="MIT", classifiers=[ 'Topic :: Internet :: ...
from setuptools import setup setup( name="pump", version="0.1.1", description="A web application library.", author="Adeel Ahmad Khan", author_email="adeel@adeel.ru", packages=["pump", "pump.util", "pump.middleware"], license="MIT", classifiers=[ 'Topic :: Internet :: WWW/HTTP :: WSGI', 'Develop...
Python
0
4d1e7573e52add8ff04d6a9e86862e07a6576d17
Increase version in setup.py
setup.py
setup.py
import os from setuptools import setup # 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) PACKAGE = 'pybb' for dirpath, dirnames, filenames in os.walk(PACKAGE): ...
import os from setuptools import setup # 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) PACKAGE = 'pybb' for dirpath, dirnames, filenames in os.walk(PACKAGE): ...
Python
0
0a834f03114698b75d7c5e2c7a01276781072ff9
Bump patch version
setup.py
setup.py
from setuptools import setup name = 'turbasen' VERSION = '2.4.5' setup( name=name, packages=[name], version=VERSION, description='Client for Nasjonal Turbase REST API', long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md', author='Ali Kaafarani', author_emai...
from setuptools import setup name = 'turbasen' VERSION = '2.4.3' setup( name=name, packages=[name], version=VERSION, description='Client for Nasjonal Turbase REST API', long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md', author='Ali Kaafarani', author_emai...
Python
0
9e7129d5a3a2c625ab0d97ecb50c030e2a258014
Add package
setup.py
setup.py
#!/usr/bin/env python """ Copyright 2015 ARC Centre of Excellence for Climate Systems Science author: Scott Wales <scott.wales@unimelb.edu.au> 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 h...
#!/usr/bin/env python """ Copyright 2015 ARC Centre of Excellence for Climate Systems Science author: Scott Wales <scott.wales@unimelb.edu.au> 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 h...
Python
0.000001
de5e68913d268399533a3d70e21497cf5c36d2c1
bump version to 1.0.2
setup.py
setup.py
import os from setuptools import setup def read(relpath): filename = os.path.join(os.path.dirname(__file__), relpath) with open(filename) as f: return f.read() setup( name='txpool', version='1.0.2', description='A persistent process pool in Python for Twisted', long_description=read(...
import os from setuptools import setup def read(relpath): filename = os.path.join(os.path.dirname(__file__), relpath) with open(filename) as f: return f.read() setup( name='txpool', version='1.0.0', description='A persistent process pool in Python for Twisted', long_description=read(...
Python
0
ddf643a62a1b1d7cd5d6eaa6e8dc27209d64c97d
fix setup.py
setup.py
setup.py
import os import glob import fnmatch from sacrud import version from setuptools import setup def opj(*args): path = os.path.join(*args) return os.path.normpath(path) badnames = [".pyc", ".py", "~", "no_"] def find_data_files(srcdir, *wildcards, **kw): # get a list of all files under the srcdir matching...
import os import glob import fnmatch from sacrud import version from setuptools import setup def opj(*args): path = os.path.join(*args) return os.path.normpath(path) badnames = [".pyc", ".py", "~", "no_"] def find_data_files(srcdir, *wildcards, **kw): # get a list of all files under the srcdir matching...
Python
0.000001
32e91504e6ea6ac4c09b4688eeefd4d3034824ff
add cython to setup_requires
setup.py
setup.py
""" hdmedians: High-dimensional medians. """ import numpy as np from setuptools import setup, find_packages, Extension from Cython.Build import cythonize extensions = [Extension('hdmedians.geomedian', ['hdmedians/geomedian.pyx'], include_dirs = [np.get_include()])] se...
""" hdmedians: High-dimensional medians. """ import numpy as np from setuptools import setup, find_packages, Extension from Cython.Build import cythonize extensions = [Extension('hdmedians.geomedian', ['hdmedians/geomedian.pyx'], include_dirs = [np.get_include()])] se...
Python
0
8d3d339d27ef4a61f3447dae5d671b2dfc30a9b7
change readme target in setup.py
setup.py
setup.py
from setuptools import setup, find_packages from htmlmin import __version__ README = open('README.rst').read() LICENSE = open('LICENSE').read() setup( name='htmlmin', version=__version__, license='BSD', description='An HTML Minifier', long_description=README, url='https://htmlmin.readthedocs.o...
from setuptools import setup, find_packages from htmlmin import __version__ README = open('README.md').read() LICENSE = open('LICENSE').read() setup( name='htmlmin', version=__version__, license='BSD', description='An HTML Minifier', long_description=README, url='https://htmlmin.readthedocs.or...
Python
0
07b11f05e3cce7e76d80e115c388087bcb7a633b
Change setup.py description of quickplots
setup.py
setup.py
from setuptools import setup setup( name="quickplots", version="2.1.0", description="A simple plotting library", long_description="An object-oriented plotting library for Python, with simplicity as its principal aim.", url="https://quickplots.readthedocs.io", author="Sam Ireland", author_email="mail@samireland....
from setuptools import setup setup( name="quickplots", version="2.1.0", description="A simple plotting library", long_description="A Python plotting library with simplicty and intuition as its primary goals", url="https://quickplots.readthedocs.io", author="Sam Ireland", author_email="mail@samireland.com", lic...
Python
0
bb2f5ec13cd452b92a197d14ff7629d01d8b35c7
Update Django version used w/ Python 2.7 (1.10 => 1.11)
setup.py
setup.py
import sys from setuptools import find_packages, setup py_version = sys.version_info[:2] py_version_dotted = '{0.major}.{0.minor}'.format(sys.version_info) supported_py_versions = ('2.7', '3.3', '3.4', '3.5', '3.6') if py_version_dotted not in supported_py_versions: sys.stderr.write('WARNING: django-local-sett...
import sys from setuptools import find_packages, setup py_version = sys.version_info[:2] py_version_dotted = '{0.major}.{0.minor}'.format(sys.version_info) supported_py_versions = ('2.7', '3.3', '3.4', '3.5', '3.6') if py_version_dotted not in supported_py_versions: sys.stderr.write('WARNING: django-local-sett...
Python
0
22b7d0c02d8295a4a8c3a1c9b4ae00a23137b1e6
Update tox dep to latest (3.14.0)
setup.py
setup.py
# Copyright 2019 3YOURMIND GmbH # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, soft...
# Copyright 2019 3YOURMIND GmbH # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, soft...
Python
0
916f426c93c3d3de8f5412bdf46b832b14fc7978
Add support for custom function in setup.py
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' try: setup( name='pynetatmo', version='0.0.1', ...
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' setup( name='pynetatmo', version='0.0.1', description='Netatmo ...
Python
0
03499b7a1cf7491aa3b9a67ff573442a5c925a2e
Bump version number.
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='crater', version='0.6', description='A dependency management system', author='Martin Vejnár', author_email='vejnar.martin@gmail.com', url='https://github.com/avakar/crater', license='MIT', packages=['crat...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='crater', version='0.5', description='A dependency management system', author='Martin Vejnár', author_email='vejnar.martin@gmail.com', url='https://github.com/avakar/crater', license='MIT', packages=['crat...
Python
0
a6f1ea90cde8282075b3dedda9162da4ad731792
update authors
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup package_name = "culqi" package_path = os.path.abspath(os.path.dirname(__file__)) repositorty_url = "https://github.com/culqi/culqi" long_description_file_path = os.path.join(package_path, "README.md") long_description ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup package_name = "culqi" package_path = os.path.abspath(os.path.dirname(__file__)) repositorty_url = "https://github.com/culqi/culqi" long_description_file_path = os.path.join(package_path, "README.md") long_description ...
Python
0
a53e1a56460f197ae11a078f036d2a2ac9342fc3
Bump to v0.11.1
setup.py
setup.py
from setuptools import setup, find_packages PACKAGES_DATA = {'esios': ['data/*.xsd']} setup( name='esios', version='0.11.1', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.n...
from setuptools import setup, find_packages PACKAGES_DATA = {'esios': ['data/*.xsd']} setup( name='esios', version='0.11.0', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.n...
Python
0
8aba69624d0719a9912302c492e05d1988bd1c31
Add licensing info to setup.py
setup.py
setup.py
from distutils.core import setup setup( name='flickrsaver', version='0.1', description='A screensaver for Flickr enthusiasts', url='http://github.com/joh/Flickrsaver', license='BSD', author='Johannes H. Jensen', author_email='joh@pseudoberries.com', requires=[ 'clutter (>=1...
from distutils.core import setup setup( name='flickrsaver', version='0.1', description='A screensaver for Flickr enthusiasts', author='Johannes H. Jensen', author_email='joh@pseudoberries.com', url='http://github.com/joh/Flickrsaver', requires=[ 'clutter (>=1.0.3)', 'flickra...
Python
0
df7e7b7a220dcfefc4d31fc1f01fb1518023c425
Bump version
setup.py
setup.py
import os import unittest from setuptools import setup, find_packages PATH = os.path.join(os.path.dirname(__file__), 'README.md') try: import pypandoc README = pypandoc.convert(PATH, 'rst') except ImportError: README = open(PATH).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os...
import os import unittest from setuptools import setup, find_packages PATH = os.path.join(os.path.dirname(__file__), 'README.md') try: import pypandoc README = pypandoc.convert(PATH, 'rst') except ImportError: README = open(PATH).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os...
Python
0
d8ec6ed2e9100f3e9550fda5078e0a6c0f6d144d
bump version to 0.3 + added github url
setup.py
setup.py
from setuptools import setup, find_packages setup(name='conman', version='0.3', url='https://github.com/the-gigi/conman', license='MIT', author='Gigi Sayfan', author_email='the.gigi@gmail.com', description='Manage configuration files', packages=find_packages(exclude=['tests'])...
from setuptools import setup, find_packages setup(name='conman', version='0.2', license='MIT', author='Gigi Sayfan', author_email='the.gigi@gmail.com', description='Manage configuration files', packages=find_packages(exclude=['tests']), long_description=open('README.md').read(...
Python
0
8f696555df932ef9e87edf108c7ed10904a8b256
Add *ini files in migrations to package data
setup.py
setup.py
#!/usr/bin/env python # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "Li...
#!/usr/bin/env python # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "Li...
Python
0
98efb2ea38539644a1ee1f40d98190a9fb0a5b64
Bump version to 0.2
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name='hashmerge', version='0.2', url='https://github.com/lebauce/hashmerge', author='Sylvain Baubeau', author_email='bob@glumol.com', description="Merges two arbitrari...
#!/usr/bin/env python from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name='hashmerge', version='0.1', url='https://github.com/lebauce/hashmerge', author='Sylvain Baubeau', author_email='bob@glumol.com', description="Merges two arbitrari...
Python
0.000001
d67899d0cd62732f27e0e87400192c7b95af5055
Bump version
setup.py
setup.py
# coding:utf-8 from setuptools import setup, find_packages setup(name='flanker', version='0.6.12', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.com', u...
# coding:utf-8 from setuptools import setup, find_packages setup(name='flanker', version='0.6.11', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.com', u...
Python
0
ccd3660f01ec595ee63ecd6ad1332af078277abd
add sphinx-intl
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from os import path from codecs import open from setuptools import setup 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() ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from os import path from codecs import open from setuptools import setup 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() ...
Python
0.999992
31cd04c8805459fb44047c8e61536ddfc123d566
update version.
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.24', keywords=('torcms', 'tornado', 'cms',), ...
#!/usr/bin/env python3 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.23', keywords=('torcms', 'tornado', 'cms',), ...
Python
0
60236b17c98cd783ac2ab4fd214a6425410195f1
add long_description
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup version = '1.2.1' setup(name='makerestapiclient', version=version, description="Simple python utility to build a python client class for interfacing with a REST API", long_description="Simple python utility to build a python client class for interfacing...
#!/usr/bin/env python3 from setuptools import setup version = '1.2.0' setup(name='makerestapiclient', version=version, description="Simple python utility to build a python client class for interfacing with a REST API", classifiers=[ "Intended Audience :: Developers", "License :: OSI Appro...
Python
0.003355
9266e87c0930e589145ab25609cd8e129a3f487e
bump version
setup.py
setup.py
import os try: from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class ...
import os try: from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class ...
Python
0
098594700b0b8d782b599cb0d74eb0f7de770c7b
Bump version.
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'simhash', version = '1.9.0', keywords = ('simhash'), description = 'A Python implementation of Simhash Algorithm', license = 'MIT License', url = 'http://leons.im/posts/a-python-implementation-of-simhash-algorith...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'simhash', version = '1.8.0', keywords = ('simhash'), description = 'A Python implementation of Simhash Algorithm', license = 'MIT License', url = 'http://leons.im/posts/a-python-implementation-of-simhash-algorith...
Python
0
0cfbf102ebdf39c2680a5cd20586ed189fd73fa3
Fix author email address
setup.py
setup.py
#!/usr/bin/env python import codecs import os.path import re import sys import setuptools here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs...
#!/usr/bin/env python import codecs import os.path import re import sys import setuptools here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs...
Python
0.00006
f75ed6add2058f6988b2baaf73d34c382d17adf7
add examples and test sub-packages and bump version number for new pypi release
setup.py
setup.py
from distutils.core import setup setup( name='NMRPyStar', version='0.0.12', packages=['nmrpystar', 'nmrpystar.parse', 'nmrpystar.examples', 'nmrpystar.test'], license='MIT', author='Matt Fenwick', author_email='mfenwick100@gmail.com', url='https:/...
from distutils.core import setup setup( name='NMRPyStar', version='0.0.11', packages=['nmrpystar', 'nmrpystar.parse'], license='MIT', author='Matt Fenwick', author_email='mfenwick100@gmail.com', url='https://github.com/mattfenwick/NMRPyStar', description='a parser for the NMR-Star data ...
Python
0
54eb19f83f7fa9fb367c5160843bd92f32ef912f
Bump flake8 from 3.7.4 to 3.7.5
setup.py
setup.py
# -*- coding: utf-8 -*- import re from setuptools import setup, find_packages INSTALL_REQUIRES = ("marshmallow>=2.0.0", "SQLAlchemy>=0.9.7") EXTRAS_REQUIRE = { "tests": ["pytest", "mock"], "lint": [ "flake8==3.7.5", 'flake8-bugbear==18.8.0; python_version >= "3.5"', "pre-commit==1.14.3...
# -*- coding: utf-8 -*- import re from setuptools import setup, find_packages INSTALL_REQUIRES = ("marshmallow>=2.0.0", "SQLAlchemy>=0.9.7") EXTRAS_REQUIRE = { "tests": ["pytest", "mock"], "lint": [ "flake8==3.7.4", 'flake8-bugbear==18.8.0; python_version >= "3.5"', "pre-commit==1.14.3...
Python
0.000001
d6a020d29d911e2f353b534040d8a3ee3f16956c
update setup.py
setup.py
setup.py
from distutils.core import setup from distutils.dist import DistributionMetadata # Patch distutils if it can't cope with the "classifiers" keyword (prior to Python 2.3.0). if not hasattr(DistributionMetadata, 'classifiers'): DistributionMetadata.classifiers = None setup( name = "Pattern", ver...
from distutils.core import setup from distutils.dist import DistributionMetadata # Patch distutils if it can't cope with the "classifiers" keyword (prior to Python 2.3.0). if not hasattr(DistributionMetadata, 'classifiers'): DistributionMetadata.classifiers = None setup( name = "Pattern", ver...
Python
0.000001
4bb8acd103131868dfc8bf68cc583c01b4e8481c
Bump version to 0.1.1
setup.py
setup.py
from setuptools import find_packages, setup version = '0.1.1' setup( name='django-user-deletion', packages=find_packages(), include_package_data=True, version=version, license='BSD', description='Management commands to notify and delete inactive django users', classifiers=[ 'Deve...
from setuptools import find_packages, setup version = '0.1.0' setup( name='django-user-deletion', packages=find_packages(), include_package_data=True, version=version, license='BSD', description='Management commands to notify and delete inactive django users', classifiers=[ 'Deve...
Python
0.000002
bc95f1488b5e573277a1306bf0ecca6d2207f88b
Use PEP440-compliant version in setup.py (#277)
setup.py
setup.py
#!/usr/bin/env python """ Bugsnag ======= The official Python notifier for `Bugsnag <https://bugsnag.com/>`_. Provides support for automatically capturing and sending exceptions in your Django and other Python apps to Bugsnag, to help you find and solve your bugs as fast as possible. """ from setuptools import setup...
#!/usr/bin/env python """ Bugsnag ======= The official Python notifier for `Bugsnag <https://bugsnag.com/>`_. Provides support for automatically capturing and sending exceptions in your Django and other Python apps to Bugsnag, to help you find and solve your bugs as fast as possible. """ from setuptools import setup...
Python
0
d5109b582cdf1f0f356122e71847debd37201636
Update version.
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '4.0.3' with open('requirements.txt') as f: requires = f.read().splitlines() url = 'https://github.com/pmaigutyak/mp-shop' setup( name='django-mp-shop', version=__version__, description='Django shop apps', long_description=open('READM...
from setuptools import setup, find_packages __version__ = '4.0.2' with open('requirements.txt') as f: requires = f.read().splitlines() url = 'https://github.com/pmaigutyak/mp-shop' setup( name='django-mp-shop', version=__version__, description='Django shop apps', long_description=open('READM...
Python
0
83d10dc3f453d50e859c0d2674e13cfa3ea74bbb
Fix setup.py.
setup.py
setup.py
# -*- coding: utf-8 -*- """A/B Testing for Django django-lean allows you to perform split-test experiments on your users. In brief, this involves exposing 50% of your users to one implementation and 50% to another, then comparing the performance of these two groups with regards to certain metrics. """ from distutil...
# -*- coding: utf-8 -*- """A/B Testing for Django django-lean allows you to perform split-test experiments on your users. In brief, this involves exposing 50% of your users to one implementation and 50% to another, then comparing the performance of these two groups with regards to certain metrics. """ from distutil...
Python
0
48420606edc3d2486e0e943d8480fe7f57aa6e0e
fix for unneccesary require to argparse
setup.py
setup.py
from setuptools import setup, find_packages import sys import os import re extra = {} if sys.version_info >= (3, 0): extra.update( use_2to3=True, ) v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1...
from setuptools import setup, find_packages import sys import os import re extra = {} if sys.version_info >= (3, 0): extra.update( use_2to3=True, ) v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1...
Python
0.000001
a6d5e8e1550f523eb87d0cd4a097136a350dcd28
Bump versioBump version
setup.py
setup.py
from setuptools import setup, find_packages import os CLASSIFIERS = [] setup( author="Christopher Glass", author_email="tribaal@gmail.com", name='django-shop', version='0.0.2', description='An Advanced Django Shop', long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).r...
from setuptools import setup, find_packages import os CLASSIFIERS = [] setup( author="Christopher Glass", author_email="tribaal@gmail.com", name='django-shop', version='0.0.1', description='An Advanced Django Shop', long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).r...
Python
0.000001
7fd587275fcc470df5a1161743ef9c7607287439
Connect input with filters behaviour
src/input.py
src/input.py
#!/usr/bin/env python # -*- coding: utf-8 -*- #import modułów konektora msg_stream_connector from ComssServiceDevelopment.connectors.tcp.msg_stream_connector import OutputMessageConnector #import modułu klasy testowego kontrolera usługi from ComssServiceDevelopment.development import DevServiceController import cv2 #...
#!/usr/bin/env python # -*- coding: utf-8 -*- #import modułów konektora msg_stream_connector from ComssServiceDevelopment.connectors.tcp.msg_stream_connector import OutputMessageConnector #import modułu klasy testowego kontrolera usługi from ComssServiceDevelopment.development import DevServiceController import cv2 #...
Python
0
7dcbfe2db81cef4de082b2ee2f83b1bce823876d
increase version number
setup.py
setup.py
from setuptools import setup import io with io.open('README.rst', encoding="utf-8") as readme_file: long_description = readme_file.read() setup( name="NooLite_F", packages=["NooLite_F"], version="0.0.4", license="MIT License", description="Module to work with NooLite_F (MTRF-64-USB)", long...
from setuptools import setup import io with io.open('README.rst', encoding="utf-8") as readme_file: long_description = readme_file.read() setup( name="NooLite_F", packages=["NooLite_F"], version="0.0.3", license="MIT License", description="Module to work with NooLite_F (MTRF-64-USB)", long...
Python
0.000114
13d249fcdc0cd7f0a32c4c1b90daf791f26e75e3
Update E-Mail information
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages, findall #from distutils.core import setup import os import re import importlib # read the version from VERSION.txt with open('VERSION.txt') as version_file: __version__ = version_file.read().strip() # write VERSION.txt files in both packages fo...
#!/usr/bin/env python3 from setuptools import setup, find_packages, findall #from distutils.core import setup import os import re import importlib # read the version from VERSION.txt with open('VERSION.txt') as version_file: __version__ = version_file.read().strip() # write VERSION.txt files in both packages fo...
Python
0
901a1e52db9bc960c307e1e6f3fd08f79a7a97bb
Upgrade discord.py and remove unused aiodns
setup.py
setup.py
import sys from pathlib import Path from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
import sys from pathlib import Path from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
Python
0
83f79ed05f2e53b6156c118ce8d9248c97b80aee
fix grammer error.
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'futures==3.0.5', 'requests==2.10.0', 'tornado==...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'futures==3.0.5', 'requests==2.10.0', 'tornado==...
Python
0
fb3983017da558018fd0de7ef10a4c0e98bbb0ec
Send the gecos input from USER through the sanitization as well
txircd/modules/cmd_user.py
txircd/modules/cmd_user.py
from twisted.words.protocols import irc from txircd.modbase import Command import string class UserCommand(Command): def onUse(self, user, data): if not user.username: user.registered -= 1 user.setUsername(data["ident"]) user.setRealname(data["gecos"]) if user.registered...
from twisted.words.protocols import irc from txircd.modbase import Command import string class UserCommand(Command): def onUse(self, user, data): if not user.username: user.registered -= 1 user.setUsername(data["ident"]) user.realname = data["gecos"] if user.registered =...
Python
0
a013af88adad469782d2f05a0b882c2f5500b6b8
Include README as long package description. Specified license.
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup def read_readme(): with open('README.rst') as f: return f.read() setup( name='gallerize', version='0.3.1', description='Create a static HTML/CSS image gallery from a bunch of images.', long_description=read_readme(), license='MIT'...
#!/usr/bin/env python from setuptools import setup setup( name='gallerize', version='0.3.1', description='Create a static HTML/CSS image gallery from a bunch of images.', author='Jochen Kupperschmidt', author_email='homework@nwsnet.de', url='http://homework.nwsnet.de/releases/cc0e/#gallerize'...
Python
0
5a5f805e76098ca64187b475c5b4c47e4be5b6be
Remove double classifier in setup.py and add Python 2 and Python 3
setup.py
setup.py
#!/usr/bin/env python import os import codecs from setuptools import setup def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() from dynamic_forms import get_version setup( name='django-dynamic-forms',...
#!/usr/bin/env python import os import codecs from setuptools import setup def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() from dynamic_forms import get_version setup( name='django-dynamic-forms',...
Python
0.000001
71acce577d1fc7d3366e1cc763433f18bbdfdc00
Upgrade status to Production/Stable and add specific python version to classifiers
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="valideer", version="0.4.1", 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.4.1", 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
7768ace5c6dbe939086bd3beb5051a4d4417e3a4
Fix typo
setup.py
setup.py
from distutils.core import setup setup( name='jinja2-pluralize-filter', version='0.0.1', author='Yuri Shikanov', author_email='dizballanze@gmail.com', packages=['pluralize'], # scripts=[], url='https://github.com/dizballanze/jinja2-pluralize-filter', license='LICENSE', description='...
from distutils.core import setup setup( name='jinja2-pluralize-filter', version='0.0.1', author='Yuri Shikanov', author_email='dizballanze@gmail.com', packages=['pluralize'], # scripts=[], url='https://github.com/dizballanze/jinja2-pluralize-filter', license='LICENSE', description='...
Python
0.999999
13aa2ad682565dc1959d1010fee477b5a1870715
Bump version to 0.3.0-pre2
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='zuice', version='0.3.0-pre2', description='A dependency injection framework for Python', long_description=read("README.rst"), autho...
#!/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='zuice', version='0.3.0-pre1', description='A dependency injection framework for Python', long_description=read("README.rst"), autho...
Python
0
ee1e6b92b6b853025eff314ed65a4f752177c4b6
fix setup.py
setup.py
setup.py
from sqlalchemy_mptt import __version__ from setuptools import setup setup( name='sqlalchemy_mptt', version=__version__, url='http://github.com/ITCase/sqlalchemy_mptt/', author='Svintsov Dmitry', author_email='root@uralbash.ru', packages=['sqlalchemy_mptt', ], include_package_data=True, ...
from sqlalchemy_mptt import __version__ from setuptools import setup setup( name='sqlalchemy_mptt', version=__version__, url='http://github.com/ITCase/sqlalchemy_mptt/', author='Svintsov Dmitry', author_email='root@uralbash.ru', packages=['sqlalchemy_mptt', ], include_package_data=True, ...
Python
0.000001
8835dffe1f33dbf772462e75b1074b2b9a7e7fd6
Fix attrs version for backward compatibility
setup.py
setup.py
# -*- encoding: utf-8 -*- import os import re import codecs try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = codecs.open(os.path.ab...
# -*- encoding: utf-8 -*- import os import re import codecs try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = codecs.open(os.path.ab...
Python
0
9dae7ba658f028e1f4de3291c56fb7b81c0e07c6
Change version
setup.py
setup.py
from setuptools import setup from sys import version if version < '2.6.0': raise Exception("This module doesn't support any version less than 2.6") import sys sys.path.append("./test") with open('README.rst', 'r') as f: long_description = f.read() classifiers = [ 'Development Status :: 4 - Beta', 'I...
from setuptools import setup from sys import version if version < '2.6.0': raise Exception("This module doesn't support any version less than 2.6") import sys sys.path.append("./test") with open('README.rst', 'r') as f: long_description = f.read() classifiers = [ 'Development Status :: 4 - Beta', 'I...
Python
0
54cb4f7eb7a69eaeb24e019d059cf39041704aff
Bump version: 3.4.3 → 3.4.4
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='ingest', version='3.4.4', author="Organized Crime and Corruption Reporting Project", packages=find_packages(exclude=['tests']), package_dir={'ingestors': 'ingestors'}, include_package_data=Tr...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='ingest', version='3.4.3', author="Organized Crime and Corruption Reporting Project", packages=find_packages(exclude=['tests']), package_dir={'ingestors': 'ingestors'}, include_package_data=Tr...
Python
0.000001
f9172ef83dfc96a29480e306de2d1219dd020dd6
add numpy dependencies
setup.py
setup.py
from setuptools import setup from os.path import join setup(name='landmarkerio-server', version='0.0.7', description='Menpo-based server for www.landmarker.io', author='James Booth', author_email='james.booth08@imperial.ac.uk', url='https://github.com/menpo/landmarkerio-server/', cl...
from setuptools import setup from os.path import join setup(name='landmarkerio-server', version='0.0.7', description='Menpo-based server for www.landmarker.io', author='James Booth', author_email='james.booth08@imperial.ac.uk', url='https://github.com/menpo/landmarkerio-server/', cl...
Python
0.000001
48a0c13cf38fd50927dbb110f56954e2567859c6
Revert "different pippery"
setup.py
setup.py
from distutils.core import setup import subprocess TRACER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/tracer.git#egg=tracer' FUZZER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer' if subprocess.call(['pip', 'install', TRACER_URL]) != 0: raise LibError("Unable to install tracer") if s...
from distutils.core import setup import subprocess import pip r = pip.req.RequirementSet(pip.locations.build_prefix, pip.locations.src_prefix, download_dir=None) r.add_requirement(pip.req.InstallRequirement.from_line('git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer')) r.add_requirement(pip.req.InstallR...
Python
0
f6ab67e9d1d4974e16392cfadf811e0f2504287f
change version to 1.0
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() with open('test_requirements.txt') as f: test_required = f.read().splitlines() setup(name="carto", author="Daniel Carrión", author_email="daniel@carto.com", description=...
# -*- coding: utf-8 -*- from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() with open('test_requirements.txt') as f: test_required = f.read().splitlines() setup(name="carto", author="Daniel Carrión", author_email="daniel@carto.com", description=...
Python
0.000007
5c802412e04f4548c81761000501d194a7c951c2
bump version
setup.py
setup.py
''' quick ------------------- Run clojure scripts and lein commands quickly using a persistent nREPL session. Links ````` * `development version <https://github.com/benwbooth/quick-clojure>`_ ''' import os from setuptools import setup, find_packages setup(name="quick-clojure", version=...
''' quick ------------------- Run clojure scripts and lein commands quickly using a persistent nREPL session. Links ````` * `development version <https://github.com/benwbooth/quick-clojure>`_ ''' import os from setuptools import setup, find_packages setup(name="quick-clojure", version=...
Python
0
354c1d4e94e1f22ca505c1959843005b55407973
Bump to version 0.7.2, rolling back to MDTraj readers
setup.py
setup.py
"""mBuild: A hierarchical, component based molecule builder With just a few lines of mBuild code, you can assemble reusable components into complex molecular systems for molecular dynamics simulations. mBuild is designed to minimize or even eliminate the need to explicitly translate and orient components when building...
"""mBuild: A hierarchical, component based molecule builder With just a few lines of mBuild code, you can assemble reusable components into complex molecular systems for molecular dynamics simulations. mBuild is designed to minimize or even eliminate the need to explicitly translate and orient components when building...
Python
0
f2196d29208c4f3df0905227025eb36d5ea60ce6
Bump version to 2015.12.29
setup.py
setup.py
from setuptools import setup, find_packages import sys long_description = ( "This project contains a library and tools for manipulating and " "generating metadata files that conform to the CableLabs VOD Metada 1.1 " "specification" ) # Install requires configparser for Python 2.x if sys.version_info[0] < ...
from setuptools import setup, find_packages import sys long_description = ( "This project contains a library and tools for manipulating and " "generating metadata files that conform to the CableLabs VOD Metada 1.1 " "specification" ) # Install requires configparser for Python 2.x if sys.version_info[0] < ...
Python
0
f46b364d78ece19752535ec3882158901fe78649
prepare next release
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'BioMAJ', 'author': 'Olivier Sallou', 'url': 'http://biomaj.genouest.org', 'download_url': 'http://biomaj.genouest.org', 'author_email': 'olivier.sallou@irisa.fr',...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'BioMAJ', 'author': 'Olivier Sallou', 'url': 'http://biomaj.genouest.org', 'download_url': 'http://biomaj.genouest.org', 'author_email': 'olivier.sallou@irisa.fr',...
Python
0
b417db7cf6f06c74436733590ef15b27f912ed33
Add entry point to setup script
setup.py
setup.py
#!/usr/bin/python # -*- coding: latin-1 -*- """Setup script.""" try: from setuptools import setup except ImportError: from distutils.core import setup try: import grokapi version = grokapi.__version__ except ImportError: version = 'Undefined' with open('requirements.txt') as requirements_file: ...
#!/usr/bin/python # -*- coding: latin-1 -*- """Setup script.""" try: from setuptools import setup except ImportError: from distutils.core import setup try: import grokapi version = grokapi.__version__ except ImportError: version = 'Undefined' with open('requirements.txt') as requirements_file: ...
Python
0
f9947459c6c7330f02dd1f6c0fb59800289beca6
use a pep 440 compatible version number
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages """ Documentation can be found at https://docs.python.org/2/distutils/index.html, but usually you only need to do the following steps to publish a new package version to PyPI:: # Update the version tag in this file (setup.py) python setup.py re...
#!/usr/bin/env python from setuptools import setup, find_packages """ Documentation can be found at https://docs.python.org/2/distutils/index.html, but usually you only need to do the following steps to publish a new package version to PyPI:: # Update the version tag in this file (setup.py) python setup.py re...
Python
0
65ba164f7b2cf3256177dbf5a8e2b3f8796d4920
Use the correct name in setup.py
setup.py
setup.py
from setuptools import setup, find_packages from version import get_git_version setup(name='thecut-authorship', author='The Cut', author_email='development@thecut.net.au', url='http://projects.thecut.net.au/projects/thecut-authorship', namespace_packages=['thecut'], version=get_git_version(), packa...
from setuptools import setup, find_packages from version import get_git_version setup(name='core', author='The Cut', author_email='development@thecut.net.au', url='http://projects.thecut.net.au/projects/thecut-authorship', namespace_packages=['thecut'], version=get_git_version(), packages=find_pack...
Python
0.000035
83a5bf4152da781da2e86b1bc5bda72aeb87bc6d
Update list trove classifiers
setup.py
setup.py
import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup version = '1.4.1.dev0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print("You probably want to also tag the version now:") print(" git tag -a %s -m ...
import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup version = '1.4.1.dev0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print("You probably want to also tag the version now:") print(" git tag -a %s -m ...
Python
0.000001
59c665f27ccbb8fc07d3a2a23b161be5c732562f
bump version
setup.py
setup.py
#! /usr/bin/env python import ez_setup ez_setup.use_setuptools() import os import glob from setuptools import setup, find_packages NAME = 'bacula_configuration' VERSION = '0.92' WEBSITE = 'http://gallew.org/bacula_configuration' LICENSE = 'GPLv3 or later' DESCRIPTION = 'Bacula configuration management tool' AUTHOR =...
#! /usr/bin/env python import ez_setup ez_setup.use_setuptools() import os import glob from setuptools import setup, find_packages NAME = 'bacula_configuration' VERSION = '0.91' WEBSITE = 'http://gallew.org/bacula_configuration' LICENSE = 'GPLv3 or later' DESCRIPTION = 'Bacula configuration management tool' AUTHOR =...
Python
0
16f62228972d9281dd33172251a4a6402329d4d3
Remove pymatsolver from setup.py
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.000001
d286ce93d0394e3bd626aa12c4016527c4306a45
swap out .rst readme for .md one.
setup.py
setup.py
from setuptools import setup, find_packages import subprocess with open('README.md') as file: long_description = file.read() setup(name='papaltv', version='0.2.3', description='Interactive shell Apple Tv controller', long_description=long_description, author='Andrew Griffiths', autho...
from setuptools import setup, find_packages import subprocess try: subprocess.check_call('pandoc --from=markdown README.md --to=rst --output=README.rst',shell=True) except Exception, e: print '*** NOTE: this package uses pandoc to generate rst documentation ' print 'from the original markdown and thi...
Python
0
93794e7596a11c3e82ae89cf7ae8699bf456495e
Fix setup.py packaging
setup.py
setup.py
#!/usr/bin/env python import setuptools with open('VERSION') as f: version = f.read().strip() with open('README.md') as f: readme = f.read() setuptools.setup( name="alerta", version=version, description="Alerta unified command-line tool and SDK", long_description=readme, url="http://gith...
#!/usr/bin/env python import setuptools with open('VERSION') as f: version = f.read().strip() with open('README.md') as f: readme = f.read() setuptools.setup( name="alerta", version=version, description="Alerta unified command-line tool and SDK", long_description=readme, license="MIT", ...
Python
0.000001
b52ec0805cff336f3c2e132766bf3b54b4ac2471
Update setup.py
setup.py
setup.py
from setuptools import setup, Distribution from pypandoc import convert_file class BinaryDistribution(Distribution): def has_ext_modules(foo): return True #: Converts the Markdown README in the RST format that PyPi expects. long_description = convert_file('README.md', 'rst') setup(name='pywinsparkle', ...
from setuptools import setup, Distribution #from pypandoc import convert_file class BinaryDistribution(Distribution): def has_ext_modules(foo): return True #: Converts the Markdown README in the RST format that PyPi expects. #long_description = convert_file('README.md', 'rst') setup(name='pywinsparkle'...
Python
0
4106a8ae6d9779ae84ec4036cced05ca0f510ace
fix setup.py
setup.py
setup.py
from setuptools import setup, find_packages import sys import os version = __import__('turbo').version install_requires = [ ] for k in ['pymongo', 'requests', 'redis', 'docopt', 'jinja2']: try: _m = __import__(k) except ImportError: if k == 'pymongo': k = 'pymongo>=3.2' ...
from setuptools import setup, find_packages import sys import os version = __import__('turbo').version install_requires = [ ] for k in ['pymongo', 'requests', 'redis', 'docopt', 'jinja2']: try: _m = __import__(k) except ImportError: if k == 'pymongo': k = 'pymongo>=3.2' ...
Python
0.000001
c26019ee038ee90c7cd39e3d19790ecb3fca75a3
fix __version__ in setup.py
setup.py
setup.py
import os from setuptools import setup from pip.req import parse_requirements from tfinterface import __version__ # parse requirements reqs = [str(r.req) for r in parse_requirements("requirements.txt", session=False)] # Utility function to read the README file. # Used for the long_description. It's nice, because no...
import os from setuptools import setup from pip.req import parse_requirements from tfinterface import __version__ # parse requirements reqs = [str(r.req) for r in parse_requirements("requirements.txt", session=False)] # Utility function to read the README file. # Used for the long_description. It's nice, because no...
Python
0.000092
852ea076e7fc04446aa58650b293a48d2a4089ba
Bump version to 0.2.0
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'bustime', version = '0.2.0', packages = find_packages(), description = 'SDK for the MTA Bus Time API', install_requires = ['requests>=2.0'], author = 'Steve Davis', author_email = 'steve@celery.club', url = 'https://github.com/celeryclub/bustim...
from setuptools import setup, find_packages setup( name = 'bustime', version = '0.1', packages = find_packages(), description = 'SDK for the MTA Bus Time API', install_requires = ['requests>=2.0'], author = 'Steve Davis', author_email = 'steve@celery.club', url = 'https://github.com/celeryclub/bustime'...
Python
0.000001
cc860538eef75b527a209cfc85e24754c7468f5d
Add setuptools-git for setup.
setup.py
setup.py
from setuptools import setup version = "0.1" setup( version=version, description="A plugin for mr.awsome providing support for FreeBSD jails using ezjail.", name="mr.awsome.ezjail", author='Florian Schulze', author_email='florian.schulze@gmx.net', url='http://github.com/fschulze/mr.awsome.ezja...
from setuptools import setup version = "0.1" setup( version=version, description="A plugin for mr.awsome providing support for FreeBSD jails using ezjail.", name="mr.awsome.ezjail", author='Florian Schulze', author_email='florian.schulze@gmx.net', url='http://github.com/fschulze/mr.awsome.ezja...
Python
0
e588d98f451c3cbfbdd3954b5784e8d8f15a1b9d
remove dev in setup.py
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import unicode_literals """ A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # To use a consistent encoding from os import path from codecs import open # Always prefer setuptools over dist...
# -*- coding: utf-8 -*- from __future__ import unicode_literals """ A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # To use a consistent encoding from os import path from codecs import open # Always prefer setuptools over dist...
Python
0
ce8004825bcf9ca41f72abc7535ea5055cd07973
remove pytables from req in setup.py - readthedocs and travis didnt like it
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for PyPI packaging This script is used for creating the PyPI package. python setup.py sdist - create gzip distr (source dist) python setup.py bdist_wheel - create build twine upload dist/* - upload to PyPI """ from setuptools import setup, find_packages imp...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for PyPI packaging This script is used for creating the PyPI package. python setup.py sdist - create gzip distr (source dist) python setup.py bdist_wheel - create build twine upload dist/* - upload to PyPI """ from setuptools import setup, find_packages imp...
Python
0
7a0cfe03fd600c625c361bbcf564ab8e72704a35
Fix package name
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- # This file is part of the pymfony package. # # (c) Alexandre Quercia <alquerci@email.com> # # For the full copyright and license information, please view the LICENSE # file that was distributed with this source code. """ """ from __future__ import absolute_import; from distu...
#!/usr/bin/python # -*- coding: utf-8 -*- # This file is part of the pymfony package. # # (c) Alexandre Quercia <alquerci@email.com> # # For the full copyright and license information, please view the LICENSE # file that was distributed with this source code. """ """ from __future__ import absolute_import; from distu...
Python
0.000079
4f6d177bac356062901d2c699ff6b96b382a3fc5
Change command names
setup.py
setup.py
#!/usr/bin/env python3 from distutils.core import setup from distutils.command.install import install from distutils import dir_util from distutils import file_util import getpass import os import shutil import subprocess import config def setupUser(): import armaadmin.users print() print('Please set up the admin...
#!/usr/bin/env python3 from distutils.core import setup from distutils.command.install import install from distutils import dir_util from distutils import file_util import getpass import os import shutil import subprocess import config def setupUser(): import armaadmin.users print() print('Please set up the admin...
Python
0.000021
34366cacbe90e15fcc7c7c5a627eee868a3e9416
Implement file syncing
sync.py
sync.py
#! /usr/bin/env python import argparse, os, sys, time import dftext verbose = True parser = dftext.Parser() files = [] mtimes = {} class SyncError(Exception): pass def output_wrapper(f): def inner(text): f.write(text) f.flush() return inner pout = output_wrapper(sys.stdout) perr = output_wra...
#! /usr/bin/env python import argparse, os, sys import dftext verbose = True parser = dftext.Parser() files = [] class SyncError(Exception): pass def output_wrapper(f): def inner(text): f.write(text) f.flush() return inner pout = output_wrapper(sys.stdout) perr = output_wrapper(sys.stderr) ...
Python
0.000011
de22bdb895fc3595da615f9d0fa7670789a50ca7
Bump tqdm to fix a blocking bug
setup.py
setup.py
#!/usr/bin/env python import codecs import os.path import re import sys import setuptools here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs...
#!/usr/bin/env python import codecs import os.path import re import sys import setuptools here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs...
Python
0
f411e874bcb33cd9f7f23a3abc23830e3728ccf5
bump to 0.2.2
setup.py
setup.py
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] suds_install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version=...
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] suds_install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version=...
Python
0.000096
c609cc937ab91a634b92a38b78ab86e323deaaf1
Fix setup.py.
setup.py
setup.py
#-*- coding: utf-8 -*- from setuptools import setup, find_packages import YaDiskClient setup( name='YaDiskClient', version=YaDiskClient.__version__, include_package_data=True, py_modules=['YaDiskClient'], url='https://github.com/TyVik/YaDiskClient', license='MIT', author='TyVik', author...
#-*- coding: utf-8 -*- from setuptools import setup, find_packages import YaDiskClient setup( name='YaDiskClient', version=YaDiskClient.__version__, include_package_data=True, py_modules=['YaDiskClient'], url='https://github.com/TyVik/YaDiskClient', license='MIT', author='TyVik', author...
Python
0
89ed956189c220690ff218e6fa93b5d352957b1a
add test_suite on setup
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps install_requires = ["django", "south>=0.7", "Pillow==1.7.8", "thumbor", 'libthumbor', "django-googl==0.1.1", ...
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps install_requires = ["django", "south>=0.7", "Pillow==1.7.8", "thumbor", 'libthumbor', "django-googl==0.1.1", ...
Python
0
39ab58ed009568a3eca0fd168841d5437ee6f7d0
Corrige dependencias do setup.py e numero da versao do Python
setup.py
setup.py
#!/usr/bin/env python import os from codecs import open from setuptools import find_packages, setup version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pysigep', '__version__.py') about = {} with open(version_path, 'r') as f: exec(f.re...
#!/usr/bin/env python import os from codecs import open from setuptools import find_packages, setup version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pysigep', '__version__.py') about = {} with open(version_path, 'r') as f: exec(f.re...
Python
0
544754701e0cd7243e7a7cfc5245bdb91b73d2c5
Fix a bug in setup.py
setup.py
setup.py
""" setup.py """ import sys import subprocess try: from setuptools import setup except ImportError: from distutils.core import setup PYPI_DISTNAME = "pystream-protobuf" PROC = subprocess.run(["git", "log", "-n1", "--pretty=%h"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) if PROC....
""" setup.py """ import sys import subprocess try: from setuptools import setup except ImportError: from distutils.core import setup PROC = subprocess.run(["git", "log", "-n1", "--pretty=%h"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) if PROC.returncode != 0: print("ERROR: wh...
Python
0.000003
87831602727e71f1969499e84aca50385eb9b9ed
Fix bad syntax
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os import platform # Conditional include unittest2 for versions of python < 2.7 tests_require = ['nose', 'pyyaml'] platform_version = list(platform.python_version_tuple())[0:2] if platform_version[0] != '3' and platform_version != ['2', '7']: ...
#!/usr/bin/env python from setuptools import setup, find_packages import os import platform # Conditional include unittest2 for versions of python < 2.7 tests_require = ['nose', 'pyyaml'] platform_version = list(platform.python_version_tuple())[0:2] if platform_version[0] != '3' and platform_version != ['2', '7']: ...
Python
0.999998
93dc1eaa750e6dec8eedad2353fdabba19c829b1
Bump version (2.0.1).
setup.py
setup.py
# -*- coding: utf-8 -*- """ Jump Consistent Hash -------------------- Python implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Requires Python 2.6-2.7 or 3.2+. Usage ````` .. code:: python >>> import jump >>> jump.hash(256, 1024) 520 Or if you want to use the C++ e...
# -*- coding: utf-8 -*- """ Jump Consistent Hash -------------------- Python implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Requires Python 2.6-2.7 or 3.2+. Usage ````` .. code:: python >>> import jump >>> jump.hash(256, 1024) 520 Or if you want to use the C++ e...
Python
0