commit
stringlengths
40
40
subject
stringlengths
4
1.73k
repos
stringlengths
5
127k
old_file
stringlengths
2
751
new_file
stringlengths
2
751
new_contents
stringlengths
1
8.98k
old_contents
stringlengths
0
6.59k
license
stringclasses
13 values
lang
stringclasses
23 values
f153f997740637795e166603eec42f7dee7281fe
update setup.py
pbrisk/unicum
setup.py
setup.py
# -*- coding: utf-8 -*- # unicum # ------------ # Simple object cache and __factory. # # Author: pbrisk <pbrisk_at_github@icloud.com> # Copyright: 2016, 2017 Deutsche Postbank AG # Website: https://github.com/pbrisk/unicum # License: APACHE Version 2 License (see LICENSE file) import codecs try: from set...
# -*- coding: utf-8 -*- # unicum # ------------ # Simple object cache and __factory. # # Author: pbrisk <pbrisk_at_github@icloud.com> # Copyright: 2016, 2017 Deutsche Postbank AG # Website: https://github.com/pbrisk/unicum # License: APACHE Version 2 License (see LICENSE file) import codecs try: from set...
apache-2.0
Python
2d2cf22e40d9091dcf57227b711704834016f1af
Bump to v0.2.0
gisce/esios
setup.py
setup.py
from setuptools import setup, find_packages setup( name='esios', version='0.2.0', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.net', description='Interact with e.sios ...
from setuptools import setup, find_packages setup( name='esios', version='0.1.9', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.net', description='Interact with e.sios ...
mit
Python
75d58aa70a7b6e40d2813747e56564b4d1790521
Fix setup.py
SteelPangolin/flask-oidc,puiterwijk/flask-oidc
setup.py
setup.py
import os.path import io import sys from setuptools import setup # This check is to make sure we checkout docs/_themes before running sdist if not os.path.exists("./docs/_themes/README"): print('Please make sure you have docs/_themes checked out while running setup.py!') if os.path.exists('.git'): pri...
import os.path import io from setuptools import setup # This check is to make sure we checkout docs/_themes before running sdist if not os.path.exists("./docs/_themes/README"): print('Please make sure you have docs/_themes checked out while running setup.py!') if os.path.exists('.git'): print('You see...
bsd-2-clause
Python
5a5e1f4276c713db1e40f19e922f99c06b10b08d
Tweak setup.py to support dependency link
alisaifee/sifr,alisaifee/sifr
setup.py
setup.py
""" setup.py for sifr """ __author__ = "Ali-Akber Saifee" __email__ = "ali@indydevs.org" __copyright__ = "Copyright 2015, Ali-Akber Saifee" from setuptools import setup, find_packages import os, re this_dir = os.path.abspath(os.path.dirname(__file__)) egg = re.compile("\#egg\=(.*?)$") requirements = filter(None, op...
""" setup.py for sifr """ __author__ = "Ali-Akber Saifee" __email__ = "ali@indydevs.org" __copyright__ = "Copyright 2015, Ali-Akber Saifee" from setuptools import setup, find_packages import os this_dir = os.path.abspath(os.path.dirname(__file__)) REQUIREMENTS = filter(None, open( os.path.join(this_dir, 'requir...
mit
Python
600a59890d3791793cf4d02d4bede89a32c2f8d0
Use django 1.11 (LTS).
uw-it-aca/pivot,uw-it-aca/pivot,uw-it-aca/pivot,uw-it-aca/pivot,uw-it-aca/pivot
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='pivot', version='0.1', packages=['pivot'], include_pac...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='pivot', version='0.1', packages=['pivot'], include_pac...
apache-2.0
Python
835cbdd8029e525200534da801170053efb7e9b2
bump version number to 0.9.2
dsacre/pyliblo
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from distutils.command.build_scripts import build_scripts from distutils import util, log try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension if '--with-cython' in sys.argv: from ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from distutils.command.build_scripts import build_scripts from distutils import util, log try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension if '--with-cython' in sys.argv: from ...
lgpl-2.1
Python
1c3a37727649097eb4b9ac467faf9275d6667765
Fix long_description path in setup.py
possel/possel,possel/possel,possel/possel,possel/possel
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 -*- import os.path from setuptools import setup install_requires = ['tornado', 'pyzmq'] classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'Topic :: Communications :: Chat :: Internet Relay Chat', 'License :: OSI Approved :: BSD License', ...
#!/usr/bin/env python # -*- coding: utf8 -*- import os.path from setuptools import setup install_requires = ['tornado', 'pyzmq'] classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'Topic :: Communications :: Chat :: Internet Relay Chat', 'License :: OSI Approved :: BSD License', ...
bsd-3-clause
Python
c797d17948ef95dfc16be82dc5c5c77a13d1c35b
Update setup.py
allelos/vectors
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path cwd = path.abspath(path.dirname(__file__)) with open(path.join(cwd, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name="vectors", version="0.0.9", author="Pantelis Paliagkas", autho...
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="vectors", version="0.0.9", author="Pantelis Paliagkas", author_email="p.paliagkas@gmail.com", description="A simple vector toolkit dealing wi...
mit
Python
ba1f4267a2699432f90d7728009881046416e8e5
Use double quotes.
csdms/bmi-tester
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup, find_packages import versioneer setup( name="bmi-tester", version=versioneer.get_version(), author="Eric Hutton", author_email="eric.hutton@colorado.edu", description="Test Python BMI bindings.", long_description=open("README.md").read(), ...
#! /usr/bin/env python from setuptools import setup, find_packages import versioneer setup(name='bmi-tester', version=versioneer.get_version(), author='Eric Hutton', author_email='eric.hutton@colorado.edu', description='Test Python BMI bindings.', long_description=open('README.md').read...
mit
Python
d61eb73cda5382863eb3ba6307ce4220f50bd293
Bump Version to 2.0.5-dev
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
bsd-2-clause
Python
5be62cb72d4f26ca2f326a80656c08d8de1580b9
include ldapdb.models
crito/django-ldapdb,crito/django-ldapdb,UGentPortaal/django-ldapdb,chronossc/django-ldapdb,UGentPortaal/django-ldapdb-archived
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name = "django-ldapdb", version = "0.1.0", #license = ldapdb.__license__, url = "http://opensource.bolloretelecom.eu/projects/django-ldapdb/", author = "Jeremy Laine", author_email = "jeremy.laine@bolloretelecom.eu", packages = ...
#!/usr/bin/env python from distutils.core import setup setup( name = "django-ldapdb", version = "0.1.0", #license = ldapdb.__license__, url = "http://opensource.bolloretelecom.eu/projects/django-ldapdb/", author = "Jeremy Laine", author_email = "jeremy.laine@bolloretelecom.eu", packages = ...
bsd-3-clause
Python
ede810d080f9b63e093f5db22b5267be53d9ffb9
Update email address
hildensia/bayesian_changepoint_detection
setup.py
setup.py
#!/usr/bin/env python2 from setuptools import setup import bayesian_changepoint_detection setup( name='bayesian_changepoint_detection', version=bayesian_changepoint_detection.__version__, description='Some Bayesian changepoint detection algorithms', author='Johannes Kulick', author_email='mail@jo...
#!/usr/bin/env python2 from setuptools import setup import bayesian_changepoint_detection setup( name='bayesian_changepoint_detection', version=bayesian_changepoint_detection.__version__, description='Some Bayesian changepoint detection algorithms', author='Johannes Kulick', author_email='johanne...
mit
Python
1b6c3c82b18afc5d383944d980133a43ee51aa03
upgrade to base 1.2.2
fcurella/genericclient
setup.py
setup.py
import os from setuptools import setup, find_packages VERSION = '1.0.1' f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) readme = f.read() f.close() setup( name='genericclient', version=VERSION, description='', long_description=readme, author='Flavio Curella', author_email='fl...
import os from setuptools import setup, find_packages VERSION = '1.0.1' f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) readme = f.read() f.close() setup( name='genericclient', version=VERSION, description='', long_description=readme, author='Flavio Curella', author_email='fl...
mit
Python
4c8156f87eb7a23587493784413a001d8ce398af
use spaces
cprogrammer1994/GLWindow,cprogrammer1994/GLWindow
setup.py
setup.py
from setuptools import setup, Extension long_description = ''' `GLWindow on github <https://github.com/cprogrammer1994/GLWindow>`_ `Documentation <http://glwindow.readthedocs.io/>`_ ''' GLWindow = Extension( 'GLWindow.glwnd', libraries = ['User32', 'opengl32', 'gdi32'], sources = [ 'src/GLWindow....
from setuptools import setup, Extension long_description = ''' `GLWindow on github <https://github.com/cprogrammer1994/GLWindow>`_ `Documentation <http://glwindow.readthedocs.io/>`_ ''' GLWindow = Extension( 'GLWindow.glwnd', libraries = ['User32', 'opengl32', 'gdi32'], sources = [ 'src/GLWindow.cpp', 'src/Mo...
mit
Python
25781265021bd8f5b8e38c451da156ad419f0f0c
Bump version to 0.2.1wq.
FloorLamp/python-user-agents,tsouvarev/python-user-agents,zpzgone/python-user-agents,abesto/python-user-agents,Khan/python-user-agents,glogiotatidis/python-user-agents,dirn/python-user-agents,selwin/python-user-agents
setup.py
setup.py
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='user-agents', version='0.2.1', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['user_agents'], url='https://github.com/selwin/python-user-agents', license='MIT', description='A library to identify ...
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='user-agents', version='0.2.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['user_agents'], url='https://github.com/selwin/python-user-agents', license='MIT', description='A library to identify ...
mit
Python
29441b483529da8c999f79cc26eb24ebee227f10
Change version
subeax/grab,kevinlondon/grab,subeax/grab,codevlabs/grab,DDShadoww/grab,maurobaraldi/grab,liorvh/grab,pombredanne/grab-1,SpaceAppsXploration/grab,giserh/grab,liorvh/grab,raybuhr/grab,alihalabyah/grab,giserh/grab,lorien/grab,maurobaraldi/grab,raybuhr/grab,lorien/grab,huiyi1990/grab,kevinlondon/grab,DDShadoww/grab,shaunst...
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'grab', version = '0.3.12', description = 'Pycurl wrapper', url = 'http://bitbucket.org/lorien/grab/', author = 'Grigoriy Petukhov', author_email = 'lorien@lorien.name', packages = find_packages(), include_package_data = True, ...
from setuptools import setup, find_packages setup( name = 'grab', version = '0.3.11', description = 'Pycurl wrapper', url = 'http://bitbucket.org/lorien/grab/', author = 'Grigoriy Petukhov', author_email = 'lorien@lorien.name', packages = find_packages(), include_package_data = True, ...
mit
Python
fb6fabb9ef9cf1ee9d98a5767d9cc2bdb22d39a9
Update setup.py
ewenchou/alexa-client
setup.py
setup.py
from setuptools import setup setup(name='alexa_client', version='0.1', description="Python client for Amazon's Alexa Voice Service", url='', author='Ewen Chou', author_email='ewenchou@gmail.com', license='Apache 2.0', packages=['alexa_client'], install_requires=['request...
from setuptools import setup setup(name='alexa_client', version='0.1', description="Python client for Amazon's Alexa Voice Service", url='', author='Ewen Chou', author_email='ewenchou@gmail.com', license='MIT', packages=['alexa_client'], install_requires=['requests_futur...
apache-2.0
Python
86056d00556909ec8496e268335229b45edb10dc
Add long_description to setup.py
renstrom/python-jump-consistent-hash,renstrom/python-jump-consistent-hash,renstrom/python-jump-consistent-hash
setup.py
setup.py
# -*- coding: utf-8 -*- """ Jump Consistent Hash -------------------- Python (3) implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Usage ````` .. code:: python >>> import jump >>> jump.hash(256, 1024) 520 Or if you want to use the C++ extension: .. code:: python ...
# -*- coding: utf-8 -*- from __future__ import print_function import sys from setuptools import setup, find_packages, Extension if sys.version_info < (3, 2): print('ERROR: jump-consistent-hash requires Python version 3.2 or newer.', file=sys.stderr) sys.exit(1) setup(name='jump_consistent_hash',...
mit
Python
dc40c406c6703221bf09f21330fe14cc3517c5ea
fix ansible-galaxy was not installed when using make install
thaim/ansible,thaim/ansible
setup.py
setup.py
#!/usr/bin/env python import os import sys from glob import glob sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils.core import setup # find library modules from ansible.constants import DEFAULT_MODULE_PATH dirs=os.listdir("./library/") data_files = [] for i in dirs...
#!/usr/bin/env python import os import sys from glob import glob sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils.core import setup # find library modules from ansible.constants import DEFAULT_MODULE_PATH dirs=os.listdir("./library/") data_files = [] for i in dirs...
mit
Python
99770864e5df0f2a6f059cc9618b961809e0d774
Include package data in setup.
ohsu-qin/qidicom
setup.py
setup.py
import os import re import subprocess import glob from setuptools import (setup, find_packages) def version(package): """ Return package version as listed in the `__init.py__` `__version__` variable. """ init_py = open(os.path.join(package, '__init__.py')).read() return re.search("__version__ =...
import os import re import subprocess import glob from setuptools import (setup, find_packages) def version(package): """ Return package version as listed in the `__init.py__` `__version__` variable. """ init_py = open(os.path.join(package, '__init__.py')).read() return re.search("__version__ =...
bsd-2-clause
Python
a7306b7640dccdc3eeec93e9a6f52a9177e8e06f
Bump version to 3.2rc
cloudify-cosmo/cloudify-amqp-influxdb,cloudify-cosmo/cloudify-amqp-influxdb,geokala/cloudify-amqp-influxdb,geokala/cloudify-amqp-influxdb
setup.py
setup.py
######## # Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
######## # Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
apache-2.0
Python
549460a69204bf9a673c5dee249dccb685d24c4c
Update setup.py
xethorn/garcon,pkuong/garcon,someboredkiddo/garcon,theorchard/garcon
setup.py
setup.py
from setuptools import find_packages from setuptools import setup setup( name='Garcon', version='0.1.0', url='https://github.com/xethorn/garcon/', author='Michael Ortali', author_email='hello@xethorn.net', description=( 'Lightweight library for AWS SWF.'), license='MIT', packag...
from setuptools import find_packages from setuptools import setup setup( name='Garcon', version='0.0.7', url='https://github.com/xethorn/garcon/', author='Michael Ortali', author_email='hello@xethorn.net', description=( 'Lightweight library for AWS SWF.'), license='MIT', packag...
mit
Python
393b4cd3ec1d0c6412b0bd106ba3e825689ee9a3
Bump version to 1.2.0
MarkusFreitag/direct-downloader
setup.py
setup.py
"""setup file to install the direct_downloader module.""" from setuptools import setup setup(name='direct-downloader', version='1.2.0', description='Get direct links for files located at different file hoster.', author='Markus Freitag', author_email='fmarkus@mailbox.org', license='MIT', ...
"""setup file to install the direct_downloader module.""" from setuptools import setup setup(name='direct-downloader', version='1.1.0', description='Get direct links for files located at different file hoster.', author='Markus Freitag', author_email='fmarkus@mailbox.org', license='MIT', ...
mit
Python
f34576bcf6106047976ac8b43a03ed8b4b15ab1b
Bump to 0.13
ulule/pybbm,ulule/pybbm,thoas/pybbm,ulule/pybbm,thoas/pybbm,thoas/pybbm
setup.py
setup.py
from setuptools import setup, find_packages setup( version='0.13', description='PyBB Modified. Django forum application', long_description=open('README.rst').read(), author='Pavel Zhukov', author_email='gelios@gmail.com', name='pybbm', packages=find_packages(), include_package_data=True...
from setuptools import setup, find_packages setup( version='0.12.6', description='PyBB Modified. Django forum application', long_description=open('README.rst').read(), author='Pavel Zhukov', author_email='gelios@gmail.com', name='pybbm', packages=find_packages(), include_package_data=Tr...
bsd-2-clause
Python
802fca84d1bd9efdf73320ef8bc299c86b0050ec
Define MIDDLEWARE_CLASSES so that Django 1.7 doesn't complain when running tests
RevolutionTech/django-conditions,RevolutionTech/django-conditions,RevolutionTech/django-conditions
setup.py
setup.py
import os from setuptools import setup, Command with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) class TestCommand(Command): user_options = [] def initialize_options(self): ...
import os from setuptools import setup, Command with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) class TestCommand(Command): user_options = [] def initialize_options(self): ...
isc
Python
3722a1696b9bb913b15ea3ad23aec0ceaf88cad8
Add trove classifiers.
rescrv/firmant
setup.py
setup.py
from distutils.core import setup classifiers = [ 'Development Status :: 4 - Beta' , 'Intended Audience :: Developers' , 'License :: OSI Approved :: BSD License' , 'Operating System :: MacOS :: MacOS X' , 'Operating System :: POSIX :: Linux' , 'Oper...
from distutils.core import setup setup(name='Firmant', version='0.2dev', author='Robert Escriva (rescrv)', author_email='firmant@mail.robescriva.com', packages=['firmant' ,'firmant.parsers' ,'firmant.routing' ,'firmant.templates' ,'fir...
bsd-3-clause
Python
c2b861200333be69787b97691c925f01bc6f5dea
Upgrade tracker
openfisca/openfisca-core,openfisca/openfisca-core
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-Core', version = '18.0.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI ...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-Core', version = '18.0.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI ...
agpl-3.0
Python
6ab9acd1bf098774c432bc4dc7baa500c7ecf116
use pygithub-redux 1.30
pyupio/statuspage,jayfk/statuspage,pyupio/statuspage,jayfk/statuspage
setup.py
setup.py
#!/usr/bin/env python import os import io import sys from setuptools import setup __version__ = "0.5.0" with io.open('README.md', 'r', encoding='utf-8') as readme_file: readme = readme_file.read() with io.open('CHANGELOG.md', 'r', encoding='utf-8') as history_file: history = history_file.read() requirement...
#!/usr/bin/env python import os import io import sys from setuptools import setup __version__ = "0.5.0" with io.open('README.md', 'r', encoding='utf-8') as readme_file: readme = readme_file.read() with io.open('CHANGELOG.md', 'r', encoding='utf-8') as history_file: history = history_file.read() requirement...
mit
Python
42488f64e59165cab114db317145f746882e51b1
correct reference to old github project
arskom/spyne,soaplib/soaplib,arskom/spyne,soaplib/soaplib,martijnvermaat/rpclib,martijnvermaat/rpclib,arskom/spyne,soaplib/soaplib,martijnvermaat/rpclib
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages VERSION = '0.8.1' LONG_DESC = """\ This is a simple, easily extendible soap library that provides several useful tools for creating and publishing soap web services in python. This package features on-demand wsdl generation for the published services,...
#!/usr/bin/env python from setuptools import setup, find_packages VERSION = '0.8.1' LONG_DESC = """\ This is a simple, easily extendible soap library that provides several useful tools for creating and publishing soap web services in python. This package features on-demand wsdl generation for the published services,...
lgpl-2.1
Python
3106ca6ba883c25e5ba81aa64b3a3568a2f508a2
Update setup.py
pyohei/cronquot,pyohei/cronquot
setup.py
setup.py
from setuptools import setup#, find_packages long_desc = '' with open('README.md') as f: logn_desc = f.read() setup(name='cronquot', version='0.0.1', description='Cron scheduler.', long_description=long_desc, classifiers=[ 'Programming Language :: Python', 'Programming ...
from setuptools import setup#, find_packages long_desc = '' with open('README.md') as f: logn_desc = f.read() setup(name='cronquot', version='0.0.1', description='Cron scheduler.', long_description=long_desc, classifiers=[ 'Programming Language :: Python', 'Programming ...
mit
Python
b2314279c7ad665eaa5de5188683f8d473b12d8a
Bump version to 0.5.4
ThiefMaster/maildump,ThiefMaster/maildump,ThiefMaster/maildump,ThiefMaster/maildump
setup.py
setup.py
# coding=utf-8 import os import subprocess import sys from setuptools import setup from setuptools.command.build_py import build_py class build_py_with_assets(build_py): def run(self): if not self.dry_run: self._build_assets() build_py.run(self) def _build_assets(self): ...
# coding=utf-8 import os import subprocess import sys from setuptools import setup from setuptools.command.build_py import build_py class build_py_with_assets(build_py): def run(self): if not self.dry_run: self._build_assets() build_py.run(self) def _build_assets(self): ...
mit
Python
c0029ee04ea4fa270c89ace65ac5e6c616a297b9
install config files too
ikonst/cerbero,GStreamer/cerbero,centricular/cerbero,ikonst/cerbero,jackjansen/cerbero,freedesktop-unofficial-mirror/gstreamer__cerbero,EricssonResearch/cerbero,brion/cerbero,freedesktop-unofficial-mirror/gstreamer__sdk__cerbero,sdroege/cerbero,ylatuya/cerbero,nirbheek/cerbero,BigBrother-International/gst-cerbero,centr...
setup.py
setup.py
import os import sys import shutil from setuptools import setup, find_packages from cerbero.utils import shell sys.path.insert(0, './cerbero') # Utility function to read the README file. def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # Utility function to parse directories ...
import os import sys import shutil from setuptools import setup, find_packages from cerbero.utils import shell sys.path.insert(0, './cerbero') # Utility function to read the README file. def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() # Utility function to parse directories ...
lgpl-2.1
Python
09526e89a5a555d18e99cc21ff9e14897653ed97
add lxml as dependency.
weblyzard/weblyzard_api,weblyzard/weblyzard_api,weblyzard/weblyzard_api
setup.py
setup.py
from setuptools import setup, find_packages from setuptools.command import sdist setup ( name = 'weblyzard_api', version = '0.4.8.2', description= ' Web services for weblyzard', author = 'Heinz-Peter Lang and Albert Weichselbraun', author_email = 'lang@weblyzard.com', packages = find_packages('...
from setuptools import setup, find_packages from setuptools.command import sdist setup ( name = 'weblyzard_api', version = '0.4.8.2', description= ' Web services for weblyzard', author = 'Heinz-Peter Lang and Albert Weichselbraun', author_email = 'lang@weblyzard.com', packages = find_packages('...
apache-2.0
Python
5769b69ecdcb473b0a1143b16b887b29865238b0
update setup.py
openhealthalgorithms/openhealthalgorithms
setup.py
setup.py
import subprocess import sys from os import path from setuptools import setup if sys.version_info[:2] < (3, 0): raise RuntimeError('Python version 3 required.') here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() def find...
import subprocess import sys from os import path from setuptools import setup if sys.version_info[:2] < (3, 0): raise RuntimeError('Python version 3 required.') here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() def find...
apache-2.0
Python
71bbfcc04d0d8d191c41ae7938808600ecc88cf9
Update version in preparation for the next release
amolenaar/gaphas
setup.py
setup.py
"""\ Gaphas is a MVC canvas that uses Cairo_ for rendering. One of the nicer things of this widget is that the user (model) is not bothered with bounding box calculations: this is all done through Cairo. Some more features: - Each item has it's own separate coordinate space (easy when items are rotated). - Items on...
"""\ Gaphas is a MVC canvas that uses Cairo_ for rendering. One of the nicer things of this widget is that the user (model) is not bothered with bounding box calculations: this is all done through Cairo. Some more features: - Each item has it's own separate coordinate space (easy when items are rotated). - Items on...
lgpl-2.1
Python
fa79f1cf7799094e8f69786aba6ed102eda65e3c
bump version to 1.0.6
yahoo/TensorFlowOnSpark,yahoo/TensorFlowOnSpark
setup.py
setup.py
from setuptools import setup setup( name = 'tensorflowonspark', packages = ['tensorflowonspark'], version = '1.0.6', description = 'Deep learning with TensorFlow on Apache Spark clusters', author = 'Yahoo, Inc.', url = 'https://github.com/yahoo/TensorFlowOnSpark', keywords = ['tensorflowonspark', 'tensor...
from setuptools import setup setup( name = 'tensorflowonspark', packages = ['tensorflowonspark'], version = '1.0.5', description = 'Deep learning with TensorFlow on Apache Spark clusters', author = 'Yahoo, Inc.', url = 'https://github.com/yahoo/TensorFlowOnSpark', keywords = ['tensorflowonspark', 'tensor...
apache-2.0
Python
5521105cc738556799b7f5ca3953a8b9a5a97f1f
Use io.open in setup.py to support LANG=C.
kjd/idna
setup.py
setup.py
""" A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5890 et.al. This new methodology, known as IDNA2008, can generate materially different results to the previous standard. The library can act as a drop-in replacement for the "encodings.idna" module. """ impo...
""" A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5890 et.al. This new methodology, known as IDNA2008, can generate materially different results to the previous standard. The library can act as a drop-in replacement for the "encodings.idna" module. """ impo...
bsd-3-clause
Python
3ca0db877906c57117a6d88375cfa2561a514580
Bump parse_this required version
bertrandvidal/outpan_api
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst'), "r") as readme_file: readme = readme_file.read() setup( name = "outpan", version = "1.0.0", description = "Easily use Outpan.com API to get product info from their barcode", ...
#!/usr/bin/env python import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst'), "r") as readme_file: readme = readme_file.read() setup( name = "outpan", version = "1.0.0", description = "Easily use Outpan.com API to get product info from their barcode", ...
mit
Python
566fa441f3864be4f813673dbaf8ffff87d28e17
Add NO_PY_EXT environment variable to disable compilation of the C module, which is not working very well in cross-compile mode.
sobomax/libelperiodic,sobomax/libelperiodic,sobomax/libelperiodic,sobomax/libelperiodic
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Extension import os elp_srcs = ['src/periodic.c', 'src/prdic_math.c', \ 'src/prdic_fd.c', \ 'src/prdic_pfd.c', \ 'src/prdic_main_fd.c', 'src/prdic_main_pfd.c', \ 'src/prdic_main.c', \ 'src/prdic_recfilter.c', 'src/prdic_shmtrig.c', \ 'src/prdic_sign.c'] m...
#!/usr/bin/env python from distutils.core import setup, Extension elp_srcs = ['src/periodic.c', 'src/prdic_math.c', \ 'src/prdic_fd.c', \ 'src/prdic_pfd.c', \ 'src/prdic_main_fd.c', 'src/prdic_main_pfd.c', \ 'src/prdic_main.c', \ 'src/prdic_recfilter.c', 'src/prdic_shmtrig.c', \ 'src/prdic_sign.c'] module1 = E...
bsd-2-clause
Python
927a76726cfbf009832ca56e02234c6f454146c7
prepare next release
smurn/anycall
setup.py
setup.py
# Copyright (c) 2014 Stefan C. Mueller # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, di...
# Copyright (c) 2014 Stefan C. Mueller # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, di...
mit
Python
507c1ce83a7b3eaf5398d66824b537b21ca8c8cf
fix with newest scorer module
buganini/bsdconv,buganini/bsdconv,buganini/bsdconv,buganini/bsdconv
tools/mkbonus.py
tools/mkbonus.py
#!/usr/bin/env python #mkbonus.py src_list char_list phrase_list import sys import re from bsdconv import Bsdconv clist=open(sys.argv[2], "w") plist=open(sys.argv[3], "w") sc=Bsdconv("utf-8:score#with=cjk:null") bcv=Bsdconv("utf-8:insert#after=002c:bsdconv-keyword,bsdconv") bcv_zhtw=Bsdconv("utf-8:zhtw:insert#after...
#!/usr/bin/env python #mkbonus.py src_list char_list phrase_list import sys import re from bsdconv import Bsdconv clist=open(sys.argv[2], "w") plist=open(sys.argv[3], "w") sc=Bsdconv("utf-8:score#default:null") bcv=Bsdconv("utf-8:insert#after=002c:bsdconv-keyword,bsdconv") bcv_zhtw=Bsdconv("utf-8:zhtw:insert#after=...
bsd-2-clause
Python
2dd650e83164c4eb27b4fdc255a0ece47ecc7be5
update trove classifiers and Django dependency
edoburu/django-any-imagefield,edoburu/django-any-imagefield
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from os.path import dirname, join setup( name='django-any-imagefield', version='0.8.0', license='Apache License, Version 2.0', requires=[ 'Django (>=1.3)', # Using staticfiles ], extras_require = { 'filebrowse...
#!/usr/bin/env python from setuptools import setup, find_packages from os.path import dirname, join setup( name='django-any-imagefield', version='0.8.0', license='Apache License, Version 2.0', install_requires=[ 'Django', ], extras_require = { 'filebrowser': ['django-filebrows...
apache-2.0
Python
ce663caacb67a573a6aaf64d3f3f125f5996abc9
rename scripts bin on setup file
avelino/mining,mining/mining,jgabriellima/mining,AndrzejR/mining,seagoat/mining,seagoat/mining,chrisdamba/mining,jgabriellima/mining,mining/mining,mlgruby/mining,mlgruby/mining,AndrzejR/mining,mlgruby/mining,avelino/mining,chrisdamba/mining
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import mining REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines() if not i.startswith("http")] dependency_links = [i.strip() for i in open("requirements.txt").readlines() i...
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import mining REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines() if not i.startswith("http")] dependency_links = [i.strip() for i in open("requirements.txt").readlines() i...
mit
Python
987f8fee47dc3635de256593d82fc2bb1eb742ab
fix setup.py
codedstructure/rpcpdb
setup.py
setup.py
#!/usr/bin/python try: from setuptools import setup except ImportError: from distutils.core import setup setup( name="rpcpdb", version="0.4.1", description="Debug support for RPC servers", long_description=open('README.rst').read(), author="Ben Bass", author_email="benbass@codedstructu...
#!/usr/bin/python try: from setuptools import setup except ImportError: from distutils.core import setup setup( name="rpcpdb", version="0.4.1", description="Debug support for RPC servers", long_description=open('README.txt').read(), author="Ben Bass", author_email="benbass@codedstructu...
mit
Python
994544dc7064e4afdb887d0a137860a71c70a066
Fix bug where cpu is chasing itself
metakirby5/tron-curses
mdp_bot.py
mdp_bot.py
import constants as ct from sys import stderr def build_graph(board): for tile in board.flat: if tile.kind == ct.T_TRAIL: tile.value = ct.REWARDS[tile.kind] continue for dx, dy in ct.MOVE_LIST: x = tile.x + dx y = tile.y + dy width, he...
import constants as ct from sys import stderr def build_graph(board): for tile in board.flat: if tile.kind == ct.T_TRAIL: tile.value = ct.REWARDS[tile.kind] continue for dx, dy in ct.MOVE_LIST: x = tile.x + dx y = tile.y + dy width, he...
mit
Python
5186195735963b0faf396db23240403929ea817d
Change version
govtrack/django-lorien-common,govtrack/django-lorien-common,govtrack/django-lorien-common
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup PACKAGE = 'common' VERSION = '0.1.27' if __name__ == '__main__': # 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 roo...
#!/usr/bin/env python import os from setuptools import setup PACKAGE = 'common' VERSION = '0.1.26' if __name__ == '__main__': # 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 roo...
bsd-3-clause
Python
7261e2daac0205746b1ad9ee6480e95661dc4d40
Fix setup
phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite
setup.py
setup.py
import os import re import sys import platform import subprocess import multiprocessing from setuptools import setup, Extension from setuptools.command.build_ext import build_ext from distutils.version import LooseVersion cores = multiprocessing.cpu_count()*1.25 threads="-j" + str(int(cores)) class CMakeExtension...
import os import re import sys import platform import subprocess import multiprocessing from setuptools import setup, Extension from setuptools.command.build_ext import build_ext from distutils.version import LooseVersion cores = multiprocessing.cpu_count()*1.25 threads="-j" + str(int(cores)) class CMakeExtension...
apache-2.0
Python
9ffd929e200fd5b292a24d990cb549beaef20379
Add the "scipy" and "numpy" packages as dependencies.
naught101/sobol_seq
setup.py
setup.py
from setuptools import setup setup(name='sobol_seq', version='0.1.2', description='Sobol sequence generator', url='https://github.com/naught101/sobol_seq', author='naught101', author_email='naught101@gmail.com', license='MIT', packages=['sobol_seq'], install_requires=[ ...
from setuptools import setup setup(name='sobol_seq', version='0.1.2', description='Sobol sequence generator', url='https://github.com/naught101/sobol_seq', author='naught101', author_email='naught101@gmail.com', license='MIT', packages=['sobol_seq'], zip_safe=False)
mit
Python
5962f12db7d7f57b01398ebe5ac62cf073fe1995
Update long description in setup.py
Kotaimen/awscfncli,Kotaimen/awscfncli
setup.py
setup.py
# -*- encoding: utf-8 -*- import os from setuptools import setup, find_packages __author__ = 'kotaimen' __date__ = '03/01/2017' here = os.path.abspath(os.path.dirname(__file__)) long_description = """ AWS CloudFormation CLI ********************** Introduction ============ ``awscfncli`` is a simple CLI tool that ...
# -*- encoding: utf-8 -*- import os from setuptools import setup, find_packages __author__ = 'kotaimen' __date__ = '03/01/2017' here = os.path.abspath(os.path.dirname(__file__)) long_description = """ AWS CloudFormation CLI ********************** Introduction ============ ``awscfncli`` is a simple CLI tool that ...
mit
Python
03985150e7a67a30d680c73b1ce46734ad434d1e
Bump version number
EDITD/queue_util,sujaymansingh/queue_util
setup.py
setup.py
import setuptools # How do we keep this in sync with requirements.pip? # REQUIREMENTS = [ "kombu==2.3.2", "nose==1.3.0", "requests>=0.14", ] if __name__ == "__main__": setuptools.setup( name="queue_util", version="0.0.2", author="Sujay Mansingh", author_email="sujay.m...
import setuptools # How do we keep this in sync with requirements.pip? # REQUIREMENTS = [ "kombu==2.3.2", "nose==1.3.0", "requests>=0.14", ] if __name__ == "__main__": setuptools.setup( name="queue_util", version="0.0.1", author="Sujay Mansingh", author_email="sujay.m...
mit
Python
b188b64f243c4da945210b359f571a999b1d47e3
bump version for master
imcgreer/simqso
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Command try: # Python 3.x from distutils.command.build_py import build_py_2to3 as build_py except ImportError: # Python 2.x from distutils.command.build_py import build_py setup(name='simqso', version='1.2', description='Simulated Quasar S...
#!/usr/bin/env python from distutils.core import setup, Command try: # Python 3.x from distutils.command.build_py import build_py_2to3 as build_py except ImportError: # Python 2.x from distutils.command.build_py import build_py setup(name='simqso', version='1.1', description='Simulated Quasar S...
bsd-3-clause
Python
1b5f88019aa233f58a35c34a36a099e351ea311b
Bump the version
emedvedev/attention-ocr
setup.py
setup.py
from setuptools import find_packages from setuptools import setup REQUIRED_PACKAGES = ['distance', 'numpy', 'six', 'pillow'] VERSION = '0.2.2' try: import pypandoc README = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): README = open('README.md').read() setup( name='aocr', url...
from setuptools import find_packages from setuptools import setup REQUIRED_PACKAGES = ['distance', 'numpy', 'six', 'pillow'] VERSION = '0.2.1' try: import pypandoc README = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): README = open('README.md').read() setup( name='aocr', url...
mit
Python
6725c5ef35b6ab86136f9b8d65c33b32e1fdb0a9
fix #34 UnicodeEncodeError
ankitsejwal/Lyndor,ankitsejwal/Lyndor,ankitsejwal/Lyndor
message.py
message.py
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' All printing messages and functions ''' import time import sys try: from colorama import * except ImportError: pass ENTER_URL = " 🚀 Paste the url of a Lynda course >>> " NETSCAPE = '# Netscape HTTP Cookie File\n' RENAMING_ERROR = "\nError in renaming file ...
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' All printing messages and functions ''' import time import sys try: from colorama import * except ImportError: pass ENTER_URL = " 🚀 Paste the url of a Lynda course >>> " NETSCAPE = '# Netscape HTTP Cookie File\n' RENAMING_ERROR = "\nError in renaming file ...
mit
Python
fc3ce2847ed549f623d8aed17ec6d09b7454abe2
Revert bumpversion error
mvantellingen/django-healthchecks
setup.py
setup.py
from setuptools import find_packages, setup docs_require = [ 'sphinx>=1.4.1', ] tests_require = [ 'coverage==.4.2', 'pytest==3.0.5', 'pytest-django==3.1.2', 'requests-mock==1.4.0', # Linting 'isort==4.2.5', 'flake8==3.0.3', 'flake8-blind-except==0.1.1', 'flake8-debugger==1.4.1...
from setuptools import find_packages, setup docs_require = [ 'sphinx>=1.4.1', ] tests_require = [ 'coverage==.4.2', 'pytest==3.0.5', 'pytest-django==3.1.2', 'requests-mock==1.4.1', # Linting 'isort==4.2.5', 'flake8==3.0.3', 'flake8-blind-except==0.1.1', 'flake8-debugger==1.4.1...
mit
Python
290183f309327a82af0c1eb8aa7a3a25edfa09f9
Fix app entry point
josuemontano/api-starter,josuemontano/API-platform,josuemontano/pyramid-angularjs-starter,josuemontano/pyramid-angularjs-starter,josuemontano/api-starter,josuemontano/API-platform,josuemontano/pyramid-angularjs-starter,josuemontano/api-starter,josuemontano/API-platform,josuemontano/API-platform
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md')) as f: README = f.read() requires = [ 'pyramid', 'pyramid_jinja2', 'pyramid_debugtoolbar', 'pyramid_tm', 'SQLAlchemy', 'transaction', 'zope...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md')) as f: README = f.read() requires = [ 'pyramid', 'pyramid_jinja2', 'pyramid_debugtoolbar', 'pyramid_tm', 'SQLAlchemy', 'transaction', 'zope...
mit
Python
11d3b2949d97ec615c5b0cc19955e9e4806993f1
Update setup.py
fudanchii/archie
setup.py
setup.py
#! /usr/bin/env python from distutils.core import setup from archie import APPNAME, VERSION setup( name = APPNAME, version = VERSION, description = 'Symlink management for configuration (rc) file.', author = 'Nurahmadie', author_email = 'nurahmadie@gmail.com', url ...
#! /usr/bin/env python from distutils.core import setup from archie import APPNAME, VERSION setup( name = APPNAME, version = VERSION, description = 'Symlink management for configuration (rc) file.', author = 'Nurahmadie', author_email = 'nurahmadie@gmail.com', url ...
mit
Python
76774f6bd12ef1a1558f93a587fb7e0ec574dca1
Bump version so the program works as advertised
lf-/polkadots
setup.py
setup.py
import setuptools import base64 PKG_VERSION = '0.0.3' def read(f): with open(f) as h: return h.read() # put the version in version.py with open('polkadots/version.py', 'w') as h: h.write('version = \'{}\''.format(PKG_VERSION)) setuptools.setup( name='polkadots_dotfile_manager', version=P...
import setuptools import base64 PKG_VERSION = '0.0.2' def read(f): with open(f) as h: return h.read() # put the version in version.py with open('polkadots/version.py', 'w') as h: h.write('version = \'{}\''.format(PKG_VERSION)) setuptools.setup( name='polkadots_dotfile_manager', version=P...
mit
Python
524294ccec43cbc9435b577296da805e4ba4d6d6
bump version for dev
nemesisdesign/django-model-utils,kezabelle/django-model-utils,nemesisdesign/django-model-utils,gregmuellegger/django-model-utils,carljm/django-model-utils,kezabelle/django-model-utils,patrys/django-model-utils,yeago/django-model-utils,yeago/django-model-utils,carljm/django-model-utils,timmygee/django-model-utils,timmyg...
setup.py
setup.py
from setuptools import setup, find_packages import subprocess import os.path try: # don't get confused if our sdist is unzipped in a subdir of some # other hg repo if os.path.isdir('.hg'): p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'], stdout=subprocess...
from setuptools import setup, find_packages import subprocess import os.path try: # don't get confused if our sdist is unzipped in a subdir of some # other hg repo if os.path.isdir('.hg'): p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'], stdout=subprocess...
bsd-3-clause
Python
211f70d06d83112cf1e3e79c71cdea80eaa1876a
bump version
pythonanywhere/helper_scripts
setup.py
setup.py
from pathlib import Path from setuptools import setup here = Path(__file__).parent # Get the long description from the README file with open(here / 'README.md', encoding='utf-8') as f: long_description = f.read() setup( name='pythonanywhere', version='0.0.6', description='PythonAnywhere helper tools ...
from pathlib import Path from setuptools import setup here = Path(__file__).parent # Get the long description from the README file with open(here / 'README.md', encoding='utf-8') as f: long_description = f.read() setup( name='pythonanywhere', version='0.0.5', description='PythonAnywhere helper tools ...
mit
Python
fb6c11ea578ad071c530d2c606656748998b58a4
Bump to v0.1.7
cookbrite/flyingcloud,cookbrite/flyingcloud
setup.py
setup.py
from __future__ import absolute_import from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup(name='flyingcloud', version='0.1.7', description='Build Docker images using SaltStack', author='CookBrite, Inc.', author_email='flyingcloud-admin@cookb...
from __future__ import absolute_import from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup(name='flyingcloud', version='0.1.6', description='Build Docker images using SaltStack', author='CookBrite, Inc.', author_email='flyingcloud-admin@cookb...
apache-2.0
Python
feede928d18d72aa703265694e4fb9f966ccb07f
change version
veltzer/pytsv,veltzer/pytsv
setup.py
setup.py
import setuptools import sys if not sys.version_info[0] == 3: sys.exit("Sorry, only python version 3 is supported") setuptools.setup( name='pytimer', version='0.0.7', description='pytimer is an easy to use timer', long_description='context based timer to easily time your code', url='https://ve...
import setuptools import sys if not sys.version_info[0] == 3: sys.exit("Sorry, only python version 3 is supported") setuptools.setup( name='pytimer', version='0.0.6', description='pytimer is an easy to use timer', long_description='context based timer to easily time your code', url='https://ve...
mit
Python
2861838b359af69a68481218d15e24b7ac0c4f45
update hedgehog-protocol-spec dependency version
PRIArobotics/HedgehogProtocol
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.absp...
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.absp...
agpl-3.0
Python
f5e98ff522baa9420d744f1925cfa1435044359b
Upgrade version of pyoidc to fix 'iat' and 'exp' claims in ID Token.
its-dirg/svs
setup.py
setup.py
from setuptools.command.install import install as install_ from babel.messages.frontend import compile_catalog import pkg_resources from setuptools import setup class compile_all_catalogs(compile_catalog): """Inspired by http://pfacka.binaryparadise.com/articles/localization-of-webapplications-with-babel.html ...
from setuptools.command.install import install as install_ from babel.messages.frontend import compile_catalog import pkg_resources from setuptools import setup class compile_all_catalogs(compile_catalog): """Inspired by http://pfacka.binaryparadise.com/articles/localization-of-webapplications-with-babel.html ...
apache-2.0
Python
e9915fe3f8a838771513d70dcfe55ba1e8d5237b
Tweak changelog generator to not use flexget package
jawilson/Flexget,jawilson/Flexget,asm0dey/Flexget,LynxyssCZ/Flexget,offbyone/Flexget,dsemi/Flexget,sean797/Flexget,antivirtel/Flexget,tarzasai/Flexget,ianstalk/Flexget,patsissons/Flexget,sean797/Flexget,ratoaq2/Flexget,qk4l/Flexget,Danfocus/Flexget,malkavi/Flexget,offbyone/Flexget,ZefQ/Flexget,tvcsantos/Flexget,Pretago...
gen-changelog.py
gen-changelog.py
# Writes a changelog in trac WikiFormatting based on a git log from __future__ import unicode_literals, division, absolute_import import codecs from itertools import ifilter import os import re import subprocess import sys from bs4 import BeautifulSoup import dateutil.parser import requests out_path = 'ChangeLog' if...
# Writes a changelog in trac WikiFormatting based on a git log from __future__ import unicode_literals, division, absolute_import import codecs from itertools import ifilter import os import re import subprocess import sys import dateutil.parser import requests from flexget.utils.soup import get_soup out_path = 'Ch...
mit
Python
a69ff82a02974ec01d9ca503fc03806d9ae6c3d1
Bump version to 0.5.0
mwilliamson/whack
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='whack', version='0.5.0', description='Utility for installing binaries from source with a single command', long_description=read("README...
#!/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='whack', version='0.4.2', description='Utility for installing binaries from source with a single command', long_description=read("README...
bsd-2-clause
Python
2703cbbfc252ba5666712c8ce599b5a684fc0058
Add urllib3>=1.26.0 as a install dependency
olucurious/PyFCM
setup.py
setup.py
""" pyfcm ======== Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web) Project: https://github.com/olucurious/pyfcm """ import os import sys from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ "requests",...
""" pyfcm ======== Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web) Project: https://github.com/olucurious/pyfcm """ import os import sys from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = ['requests'] test...
mit
Python
5ce630f820652c4d4e984e14cf93a4ac49b297aa
Test trigger for Travis CI
grokzen/pykwalify
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup settings = dict() settings.update( name="pykwalify", version="0.1.3", description='Python lib/cli for JSON/YAML schema validation', long_description='Python lib/cli for JSON/YAML schema validation', auth...
try: from setuptools import setup except ImportError: from distutils.core import setup settings = dict() settings.update( name="pykwalify", version="0.1.2", description='Python lib/cli for JSON/YAML schema validation', long_description='Python lib/cli for JSON/YAML schema validation', auth...
mit
Python
007620794feca1595913adc8c455d0a1cf206604
remove open file encoding
kdbdallas/Mopidy-Touchclient,kdbdallas/Mopidy-NowPlayingTouch
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import unicode_literals import re from setuptools import find_packages, setup def get_version(filename): with open(filename) as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) return metadata['version'] setup( name='Mopidy-Tou...
# -*- coding: utf-8 -*- from __future__ import unicode_literals import re from setuptools import find_packages, setup def get_version(filename): with open(filename, 'rt', encoding='utf-8') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) return metadata['version'] set...
apache-2.0
Python
3509e85aac544c85ec7fbd4bc8e13da157c5c135
fix download_url
A425/django-nadmin,A425/django-nadmin,A425/django-nadmin
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup # version_tuple = __import__('xadmin.version').VERSION # version = ".".join([str(v) for v in version_tuple]) setup( name='django-nadmin', version='0.1.1', description='Django xadmin support django version 1.8', long_description=open('README.rst').read...
#!/usr/bin/env python from setuptools import setup # version_tuple = __import__('xadmin.version').VERSION # version = ".".join([str(v) for v in version_tuple]) setup( name='django-nadmin', version='0.1.1', description='Django xadmin support django version 1.8', long_description=open('README.rst').read...
mit
Python
8edf7eed6a9d0a7ededfa5d6ad7a806f7efc2669
Downgrade websockets
d0ugal/discode-server,d0ugal/discode-server,d0ugal/discode-server
setup.py
setup.py
import setuptools setuptools.setup( name="discode-server", version="0.0.1", url="https://github.com/d0ugal/discode-server", license="BSD", description="Quick code review", long_description="TODO", author="Dougal Matthews", author_email="dougal@dougalmatthews.com", keywords='code rev...
import setuptools setuptools.setup( name="discode-server", version="0.0.1", url="https://github.com/d0ugal/discode-server", license="BSD", description="Quick code review", long_description="TODO", author="Dougal Matthews", author_email="dougal@dougalmatthews.com", keywords='code rev...
bsd-2-clause
Python
2a84ab10fd9a69ddf041fd04bdf1e210ca03e122
bump version to indicate new feature
mvcisback/multidim-threshold
setup.py
setup.py
from setuptools import find_packages, setup setup( name='monotone-bipartition', version='0.2.0', description='Compute Monotone Threshold Surfaces and' 'compute distances between surfaces.', url='http://github.com/mvcisback/monotone-bipartition', author='Marcell Vazquez-Chanlatte', author_e...
from setuptools import find_packages, setup setup( name='monotone-bipartition', version='0.1.1', description='Compute Monotone Threshold Surfaces and' 'compute distances between surfaces.', url='http://github.com/mvcisback/monotone-bipartition', author='Marcell Vazquez-Chanlatte', author_e...
mit
Python
cde3d162a6457af89424a6c760acbed48c314d91
bump version
sim0nx/python-openhab,sim0nx/python-openhab
setup.py
setup.py
# -*- coding: utf-8 -*- from os.path import join, dirname from setuptools import setup, find_packages import sys import os VERSION = (2, 1) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) f = open(join(dirname(__file__), 'README.rst')) long_description = f.read().strip() f.close() install_requires...
# -*- coding: utf-8 -*- from os.path import join, dirname from setuptools import setup, find_packages import sys import os VERSION = (2, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) f = open(join(dirname(__file__), 'README.rst')) long_description = f.read().strip() f.close() install_requires...
agpl-3.0
Python
a873a09c6989e80d952f00f37f849fa74231f736
Add py.test runner.
wamonite/packermate
setup.py
setup.py
from setuptools import setup with open('README.rst', 'r') as f: readme = f.read() setup( name = 'wamopacker', version = '0.5.0', description = 'Generate and run Packer build configurations from a simple YAML definition', long_description = readme, license = 'MIT', author = 'Warren Moore', ...
from setuptools import setup with open('README.rst', 'r') as f: readme = f.read() setup( name = 'wamopacker', version = '0.5.0', description = 'Generate and run Packer build configurations from a simple YAML definition', long_description = readme, license = 'MIT', author = 'Warren Moore', ...
mit
Python
adcb490a96a98c142124c6abbb2bdf8feb511baf
Include migrations in package
gsehub/xblock-mentoring,proversity-org/problem-builder,edx-solutions/xblock-mentoring,edx-solutions/xblock-mentoring,gsehub/xblock-mentoring,open-craft/xblock-mentoring,proversity-org/problem-builder,open-craft/xblock-mentoring,gsehub/xblock-mentoring,edx-solutions/xblock-mentoring,open-craft/xblock-mentoring,proversit...
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 Harvard # # Authors: # Xavier Antoviaque <xavier@antoviaque.org> # # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of # the GNU Affero General Public License (AGPL) as publishe...
# -*- coding: utf-8 -*- # # Copyright (C) 2014 Harvard # # Authors: # Xavier Antoviaque <xavier@antoviaque.org> # # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of # the GNU Affero General Public License (AGPL) as publishe...
agpl-3.0
Python
a3580e96dd9d5822e4219256d1ccac1bbf5e8e88
fix tragically mistyped package name
mk270/messytables-jts
setup.py
setup.py
#!/usr/bin/env python #coding: utf-8 from setuptools import setup setup( name = "messytables-jts", author = "Martin Keegan", author_email = "martin.keegan@okfn.org", version = "0.2", license = "Apache Licence v2.0", url = "", download_url = "", description = "Python library for mapping Messytable cell types t...
#!/usr/bin/env python #coding: utf-8 from setuptools import setup setup( name = "messytable-jts", author = "Martin Keegan", author_email = "martin.keegan@okfn.org", version = "0.2", license = "Apache Licence v2.0", url = "", download_url = "", description = "Python library for mapping Messytable cell types to...
apache-2.0
Python
9c6dcf82aab7eff99970d5a9b39e7da16664bb43
change setup.py
telefonicaid/di-py
setup.py
setup.py
from setuptools import setup, find_packages setup( name='di-py', description='Dependency injection library', version='{VERSION}', url='https://www.github.com/telefonicadigital/di-py', author='Telefonica Digital', author_email='connect-dev@tid.es', packages=find_packages(), include_packa...
from setuptools import setup, find_packages setup( name='di', description='Dependency injection library', version='{VERSION}', url='https://www.github.com/telefonicadigital/di', author='Telefonica Digital', author_email='connect-dev@tid.es', packages=find_packages(), include_package_dat...
apache-2.0
Python
03bf63d774e900baea5a103cf81ec0bdc8a2e72c
Bump version to 0.2.3
mwilliamson/mayo
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='mayo', version='0.2.3', description='Thin wrapper around source control systems', long_description=read("README"), author='Michael ...
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='mayo', version='0.2.2', description='Thin wrapper around source control systems', long_description=read("README"), author='Michael ...
bsd-2-clause
Python
eb92e1cbc48d8d906114177ed9b79a6add9448a8
Set version to 0.3.0
toirl/cointrader
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'Click>=6.0', 'sqlalchemy', 'stockstats' # TODO: put package...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'Click>=6.0', 'sqlalchemy', 'stockstats' # TODO: put package...
mit
Python
46f11a813b519c98288eb0dd278715f763bc25e1
Add some classifiers
tchaumeny/PyPoly,tchaumeny/PyPoly
setup.py
setup.py
from distutils.core import setup, Extension import re import sys if sys.version_info[0] < 3: print("PyPoly requires Python >= 3") sys.exit() with open("pypoly/version.py") as f: vfile_content = f.read() match = re.search(r"__version__ = '([^']+)'", vfile_content) assert match __version__ = match.group(...
from distutils.core import setup, Extension import re import sys if sys.version_info[0] < 3: print("PyPoly requires Python >= 3") sys.exit() with open("pypoly/version.py") as f: vfile_content = f.read() match = re.search(r"__version__ = '([^']+)'", vfile_content) assert match __version__ = match.group(...
mit
Python
33dea2b455a01ad83ec7983142bcc084a5d72fb1
install defaults, but to wrong folder
lrvick/rant,lrvick/rant
setup.py
setup.py
from setuptools import setup setup( name='rant', version='0.2.3', author='Lance R. Vick', author_email='lance@lrvick.net', packages=['rant'], scripts=['bin/rant'], url='http://github.com/lrvick/rant', license='LICENSE.md', description=''' A CLI driven blog-aware website generato...
from setuptools import setup import os setup( name='rant', version='0.2.2', author='Lance R. Vick', author_email='lance@lrvick.net', packages=['rant'], scripts=['bin/rant'], url='http://github.com/lrvick/rant', license='LICENSE.md', description='A CLI driven blog-aware website gener...
apache-2.0
Python
9551d9c54e73a4a951e3feb1590ae2a9f422b560
Bump flake8 from 3.8.3 to 3.8.4
glidernet/python-ogn-client
setup.py
setup.py
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages from ogn.client.settings import PACKAGE_VERSION here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f...
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages from ogn.client.settings import PACKAGE_VERSION here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f...
agpl-3.0
Python
f53b4f390bb32d2aa6d6880267a5dcb7138c8322
Update setup.py files for DEV
blancltd/blanc-basic-news
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup setup( name='blanc-basic-news', version='0.3.2', description='Blanc Basic News for Django', long_description=open('README.rst').read(), url='https://github.com/developersociety/blanc-basic-news', maintainer='The Developer Societ...
#!/usr/bin/env python from setuptools import find_packages, setup setup( name='blanc-basic-news', version='0.3.2', description='Blanc Basic News for Django', long_description=open('README.rst').read(), url='https://github.com/developersociety/blanc-basic-news', maintainer='Blanc Ltd', main...
bsd-3-clause
Python
29ff292a753098ecd95cce17c16ce951e244a766
Bump to v1.0.1
ethan-nelson/osm_diff_tool
setup.py
setup.py
from setuptools import setup setup( name = 'osm_diff_tool', version = '1.0.1', description = 'Tool for use with OpenStreetMap planet diffs.', url = 'http://github.com/ethan-nelson/osm_diff_tool', author = 'Ethan Nelson', author_email = 'ethan-nelson@users.noreply.github.com', packages = ['o...
from setuptools import setup setup( name = 'osm_diff_tool', version = '1.0.0', description = 'Tool for use with OpenStreetMap planet diffs.', url = 'http://github.com/ethan-nelson/osm_diff_tool', author = 'Ethan Nelson', author_email = 'ethan-nelson@users.noreply.github.com', packages = ['o...
mit
Python
cd3fc46ef8130616ba670d5c61d6593af7630b2c
Fix setup.py typo
angvp/django-logical-delete,angvp/django-logical-delete
setup.py
setup.py
# coding=utf-8 from setuptools import find_packages, setup VERSION = __import__("logicaldelete").__version__ setup( name='django-logicaldelete', version=VERSION, author=u'Angel Velasquez, Agustín Cangiani', author_email='angvp@archlinux.org, cangiani@gmail.com', url='http://www.routeatlas.com', ...
from setuptools import find_packages, setup VERSION = __import__("logicaldelete").__version__ setup( name = 'django-logicaldelete', version = VERSION, author = u'Angel Velasquez, Agustín Cangiani', author_email = 'angvp@archlinux.org, cangiani@gmail.com', url = 'http://www.routeatlas.com', d...
bsd-3-clause
Python
891c60d1cdad7336d8c38986be314522f218e386
Update version
RocknRoot/Cylon
setup.py
setup.py
from distutils.core import setup setup( name="Cylon", version="0.5", description="XMPP bot", long_description="XMPP bot fur teh lulz", author="Thibaut Deloffre", author_email="tib@rocknroot.org", url="https://github.com/RocknRoot/Cylon", license="BSD", platforms="Unix", package...
from distutils.core import setup setup( name="Cylon", version="0.4", description="XMPP bot", long_description="XMPP bot fur teh lulz", author="Thibaut Deloffre", author_email="tib@rocknroot.org", url="https://github.com/RocknRoot/Cylon", license="BSD", platforms="Unix", package...
bsd-3-clause
Python
1e817a833ae0f86338199635ab2e43c592331d08
Fix issue with path variable
odin-public/osaAPI
setup.py
setup.py
import os from setuptools import setup PACKAGE_VERSION = '0.3' def version(): def version_file(mode='r'): return open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'version.txt'), mode) if os.getenv('TRAVIS'): with version_file('w') as verfile: verfile.write('{0}.{1}'...
import os from setuptools import setup PACKAGE_VERSION = '0.3' def version(): def version_file(mode='r'): return open(os.path.join(os.path.dirname(os.path.abspath(__file__), 'version.txt')), mode) if os.getenv('TRAVIS'): with version_file('w') as verfile: verfile.write('{0}.{1}'...
apache-2.0
Python
5f6e8e9b98c267297a13d840a683a993fc107420
Upgrade Raven 5.32.0 => 6.0.0
PSU-OIT-ARC/django-arcutils,PSU-OIT-ARC/django-arcutils,wylee/django-arcutils,wylee/django-arcutils
setup.py
setup.py
import sys from setuptools import find_packages, setup with open('VERSION') as version_fp: VERSION = version_fp.read().strip() # Base dependencies install_requires = [ 'certifi>=2017.1.23', 'django-local-settings>=1.0b5', 'pytz>=2016.10', 'raven>=6.0.0', 'stashward', ] if sys.version_info[...
import sys from setuptools import find_packages, setup with open('VERSION') as version_fp: VERSION = version_fp.read().strip() # Base dependencies install_requires = [ 'certifi>=2017.1.23', 'django-local-settings>=1.0b5', 'pytz>=2016.10', 'raven>=5.32.0', 'stashward', ] if sys.version_info...
mit
Python
e83875019ef142e0513ae0377eaa335daaf7af8d
Remove empty line that is not required.
OpenCMISS-Bindings/opencmiss.utils
setup.py
setup.py
import io import os import re from setuptools import setup, find_packages # List all of your Python package dependencies in the # requirements.txt file here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'opencmiss', 'utils', '__init__.py')) as fd: version = re.search(r'^__version__\...
import io import os import re from setuptools import setup, find_packages # List all of your Python package dependencies in the # requirements.txt file here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'opencmiss', 'utils', '__init__.py')) as fd: version = re.search(r'^__version__\...
apache-2.0
Python
706ba8888395e50bdd8276ae20f149ecd06310fd
Update the list of keywords
ghisvail/nfft-cffi
setup.py
setup.py
# Copyright (c) 2016-2017, Imperial College London # Copyright (c) 2016-2017, Ghislain Antony Vaillant # All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the BSD license. See the accompanying LICENSE file # or read the terms at https://opensource.org/...
# Copyright (c) 2016-2017, Imperial College London # Copyright (c) 2016-2017, Ghislain Antony Vaillant # All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the BSD license. See the accompanying LICENSE file # or read the terms at https://opensource.org/...
bsd-3-clause
Python
9c0bd7327e8fa323d695dd45094cac87d6b3b7f0
Remove Polish letters from setup.py (#70)
pawelzny/dotty_dict
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import subprocess from setuptools import find_packages, setup from setuptools.command.develop import develop from setuptools.command.install import install from setuptools.command.test import test __author__ = 'Pawel Zadrozny' __copyright__ = 'Copyrigh...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import subprocess from setuptools import find_packages, setup from setuptools.command.develop import develop from setuptools.command.install import install from setuptools.command.test import test __author__ = 'Paweł Zadrożny' __copyright__ = 'Copyrigh...
mit
Python
67cc8db5f636b9d9b647ee157d877f83698d7007
bump version
legnaleurc/wcpan.worker
setup.py
setup.py
import os.path as op from setuptools import setup with open(op.join(op.dirname(__file__), './README.rst')) as fin: long_description = fin.read() setup( name='wcpan.worker', version='4.0.0', description='An asynchronous task queue with priority support.', long_description=long_des...
import os.path as op from setuptools import setup with open(op.join(op.dirname(__file__), './README.rst')) as fin: long_description = fin.read() setup( name='wcpan.worker', version='3.1.1', description='An asynchronous task queue with priority support.', long_description=long_des...
mit
Python
76b39e52e4284425b43eb35785be575aaa82f495
upgrade requests
xeroc/python-graphenelib
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from pip.req import parse_requirements # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') codecs.register(lambda name, enc=ascii: {True: enc}...
#!/usr/bin/env python from setuptools import setup from pip.req import parse_requirements # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') codecs.register(lambda name, enc=ascii: {True: enc}...
mit
Python
72617c7ecfbdf407e0c182b7a5f67cff1ea662f9
Add long description to setup.py
jeremyh/eo-datasets,GeoscienceAustralia/eo-datasets,GeoscienceAustralia/eo-datasets,jeremyh/eo-datasets
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 import pathlib from itertools import chain from setuptools import setup, find_packages import versioneer HERE = pathlib.Path(__file__).parent README = (HERE / "README.md").read_text() tests_require = [ "deepdiff", "flake8", "black", "hypothesis", "mock", ...
#!/usr/bin/env python # coding=utf-8 import pathlib from itertools import chain from setuptools import setup, find_packages import versioneer HERE = pathlib.Path(__file__).parent README = (HERE / "README.md").read_text() tests_require = [ "deepdiff", "flake8", "black", "hypothesis", "mock", ...
apache-2.0
Python
bc71ca6da684cce760825c41c399e5af3acbdbf9
update requirements in setup.py and increase version
idb-project/idbiaas
setup.py
setup.py
from setuptools import setup setup( name="idbiaas", version="0.0.6", description="IDB IAAS adapter", packages=["idbiaas"], author="bytemine GmbH", author_email="schuller@bytemine.net", url="https://github.com/idb-project/idbiaas", install_requires=[ "apache-libcloud", "a...
from setuptools import setup setup( name="idbiaas", version="0.0.5", description="IDB IAAS adapter", packages=["idbiaas"], author="bytemine GmbH", author_email="schuller@bytemine.net", url="https://github.com/idb-project/idbiaas", install_requires=[ "requests", "apache-l...
bsd-2-clause
Python
95a9cd8b6c63960f8c5986e61482431279ba106f
bump version to 0.3.0
Gustavosdo/django-salmonella,lincolnloop/django-salmonella,Gustavosdo/django-salmonella,lincolnloop/django-salmonella,Gustavosdo/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-salmonella", version="0.3.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...
from setuptools import setup, find_packages setup( name="django-salmonella", version="0.2.3", 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...
mit
Python
2e3be5fdbed7e752e9babfc035ce70d285d98e28
Fix setup.py
gwecho/pony,ponyorm/pony,ponyorm/pony,gwecho/pony,gwecho/pony,ponyorm/pony,ponyorm/pony
setup.py
setup.py
from __future__ import print_function from distutils.core import setup import sys name = "pony" version = "0.5.2" description = "Pony Object-Relational Mapper" long_description = """Pony is an object-relational mapper. The most interesting feature of Pony is its ability to write queries to the database using ...
from __future__ import print_function from distutils.core import setup import sys name = "pony" version = "0.5.2" description = "Pony Object-Relational Mapper" long_description = """Pony is an object-relational mapper. The most interesting feature of Pony is its ability to write queries to the database using ...
apache-2.0
Python
b9e9b8e6b397138b481894e594efe007a22a28c8
bump the requirement for remoto v 0.0.20
ktdreyer/ceph-deploy,isyippee/ceph-deploy,SUSE/ceph-deploy,codenrhoden/ceph-deploy,osynge/ceph-deploy,zhouyuan/ceph-deploy,ddiss/ceph-deploy,rtulke/ceph-deploy,zhouyuan/ceph-deploy,ghxandsky/ceph-deploy,jumpstarter-io/ceph-deploy,ceph/ceph-deploy,jumpstarter-io/ceph-deploy,trhoden/ceph-deploy,shenhequnying/ceph-deploy,...
setup.py
setup.py
from setuptools import setup, find_packages import os import sys import ceph_deploy from vendor import vendorize, clean_vendor def read(fname): path = os.path.join(os.path.dirname(__file__), fname) f = open(path) return f.read() install_requires = [] pyversion = sys.version_info[:2] if pyversion < (2, 7)...
from setuptools import setup, find_packages import os import sys import ceph_deploy from vendor import vendorize, clean_vendor def read(fname): path = os.path.join(os.path.dirname(__file__), fname) f = open(path) return f.read() install_requires = [] pyversion = sys.version_info[:2] if pyversion < (2, 7)...
mit
Python
4e0af2a4e1ad7b251c35f5e19769b2138f04a13b
Declare france compatible with core v8
antoinearnoud/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france,sgmap/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '15.1.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OS...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '15.1.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OS...
agpl-3.0
Python
37bd98f77196bb7ceababd6fdff27c42e6bce1b6
bump version 2.5.1
Nexmo/nexmo-python
setup.py
setup.py
import io import os from setuptools import setup, find_packages with io.open( os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8" ) as f: long_description = f.read() setup( name="nexmo", version="2.5.1", description="Vonage Client Library for Python", long_description=long...
import io import os from setuptools import setup, find_packages with io.open( os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8" ) as f: long_description = f.read() setup( name="nexmo", version="2.4.0", description="Nexmo Client Library for Python", long_description=long_...
mit
Python
d7d25d70d418574c0637015b8679928b7af3d75f
add license to setup
solvebio/veppy,solvebio/veppy
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import with_statement import io import sys import warnings from setuptools import setup from setuptools import find_packages VERSION = 'undefined' install_requires = [ 'six', 'intervaltree>=2.1.0', 'pyfast...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import with_statement import io import sys import warnings from setuptools import setup from setuptools import find_packages VERSION = 'undefined' install_requires = [ 'six', 'intervaltree>=2.1.0', 'pyfast...
mit
Python