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
b215a117c0a90048f2cff71d872816359fef2b32
Add help for purge_deleted command age argument
dims/heat,miguelgrinberg/heat,pratikmallya/heat,openstack/heat,maestro-hybrid-cloud/heat,takeshineshiro/heat,openstack/heat,gonzolino/heat,pshchelo/heat,miguelgrinberg/heat,cwolferh/heat-scratch,jasondunsmore/heat,takeshineshiro/heat,pratikmallya/heat,NeCTAR-RC/heat,dragorosson/heat,noironetworks/heat,rh-s/heat,noirone...
heat/cmd/manage.py
heat/cmd/manage.py
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # 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 # # Unle...
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # 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 # # Unle...
apache-2.0
Python
94d46c7bda9f7c81b4231add6ca8111b6203bb25
fix setup.py for python3 compatability
rfk/regobj
setup.py
setup.py
# # This is the regobj setuptools script. # Originally developed by Ryan Kelly, 2009. # # This script is placed in the public domain. # from distutils.core import setup # Safely extract the docstring and version info from the module. # If we did a straight `import regobj` here we wouldn't be able # to build on ...
# # This is the regobj setuptools script. # Originally developed by Ryan Kelly, 2009. # # This script is placed in the public domain. # from distutils.core import setup # If we did a straight `import regobj` here we wouldn't be able # to build on non-win32 machines. regobj = {} try: execfile("regobj.py",rego...
mit
Python
6a66f74a9558ef766e5a4b73b1e75396fb8d760f
bump version
veltzer/pyawskit
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 setuptools.setup( name='awskit', version='0.1.5', description='awskit is a collection of utilities to help interact with aws', long_descriptio...
""" A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import setuptools setuptools.setup( name='awskit', version='0.1.4', description='awskit is a collection of utilities to help interact with aws', long_descriptio...
mit
Python
2ceaf843010ecbfa630250995d9961fe88264d35
Update our opentracing dependency to be >=1.21 and < 2.0. (#27)
opentracing/basictracer-python
setup.py
setup.py
from setuptools import setup setup( name='basictracer', version='2.2.1.dev0', author='The OpenTracing Authors', author_email='info@opentracing.io', license='MIT', url='https://github.com/opentracing/basictracer-python', keywords=['basictracer', 'opentracing'], classifiers=[ 'Dev...
from setuptools import setup setup( name='basictracer', version='2.2.1.dev0', author='The OpenTracing Authors', author_email='info@opentracing.io', license='MIT', url='https://github.com/opentracing/basictracer-python', keywords=['basictracer', 'opentracing'], classifiers=[ 'Dev...
apache-2.0
Python
d05421741d54adf309d3487e428b07ccf95d74e8
Bump for 0.1.8
aphistic/copilot,aphistic/copilot
setup.py
setup.py
from distutils.core import setup setup( name = 'copilot', packages = ['copilot'], version = '0.1.8', description = 'Application to manage files on external USB drives', author = 'Erik Davidson', author_email = 'erik@erikd.org', url = 'https://github.com/aphistic/copilot', download_url = ...
from distutils.core import setup setup( name = 'copilot', packages = ['copilot'], version = '0.1.7', description = 'Application to manage files on external USB drives', author = 'Erik Davidson', author_email = 'erik@erikd.org', url = 'https://github.com/aphistic/copilot', download_url = ...
mit
Python
8e9462f735c8e198bf6e62167a99f4a7e881dde9
change license in setup
trichter/yam
setup.py
setup.py
# Copyright 2017-2018 Tom Eulenfeld, GPLv3 import os.path import re from setuptools import find_packages, setup def find_version(*paths): fname = os.path.join(os.path.dirname(__file__), *paths) with open(fname) as fp: code = fp.read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code,...
# Copyright 2017-2018 Tom Eulenfeld, GPLv3 import os.path import re from setuptools import find_packages, setup def find_version(*paths): fname = os.path.join(os.path.dirname(__file__), *paths) with open(fname) as fp: code = fp.read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code,...
mit
Python
1722194435f617eb3f113b7ecca3752bedbefdc2
Fix repository url
nok/resp,nok/resp
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup from setuptools import find_packages path = os.path.abspath(os.path.dirname(__file__)) setup( name='resp', packages=find_packages(exclude=["tests.*", "tests"]), include_package_data=True, version='0.1.0', description='Making the Redis...
# -*- coding: utf-8 -*- import os from setuptools import setup from setuptools import find_packages path = os.path.abspath(os.path.dirname(__file__)) setup( name='resp', packages=find_packages(exclude=["tests.*", "tests"]), include_package_data=True, version='0.1.0', description='Making the Redis...
mit
Python
c10a7bbbdff7bad0c5d3917b5bef2783f44434f2
Fix PyPI rendering
sloria/ped,sloria/ped
setup.py
setup.py
# -*- coding: utf-8 -*- import re from setuptools import setup def find_version(fname): """Attempts to find the version number in the file names fname. Raises RuntimeError if not found. """ version = '' with open(fname, 'r') as fp: reg = re.compile(r'__version__ = [\'"]([^\'"]*)[\'"]') ...
# -*- coding: utf-8 -*- import re from setuptools import setup def find_version(fname): """Attempts to find the version number in the file names fname. Raises RuntimeError if not found. """ version = '' with open(fname, 'r') as fp: reg = re.compile(r'__version__ = [\'"]([^\'"]*)[\'"]') ...
mit
Python
72231b26afd6f0da8b113e3e9e0312434d6d31ea
Add Federal Senate module to setup.py
datasciencebr/serenata-toolbox
setup.py
setup.py
from setuptools import setup REPO_URL = 'http://github.com/datasciencebr/serenata-toolbox' setup( author='Serenata de Amor', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Programming Language...
from setuptools import setup REPO_URL = 'http://github.com/datasciencebr/serenata-toolbox' setup( author='Serenata de Amor', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Programming Language...
mit
Python
1f898b17db562b2a12025899daefd87e625d1a09
Bump version 2.1.3
arteria/django-hijack,arteria/django-hijack,arteria/django-hijack
hijack/__init__.py
hijack/__init__.py
# -*- coding: utf-8 -*- __version__ = '2.1.3' # pragma: no cover default_app_config = 'hijack.apps.HijackConfig'
# -*- coding: utf-8 -*- __version__ = '2.1.2' # pragma: no cover default_app_config = 'hijack.apps.HijackConfig'
mit
Python
b53c1b49f4e914a4ca404009ba542fd3199e46ac
update version to 0.3
kazenniy/atapt
setup.py
setup.py
from distutils.core import setup setup( name = 'atapt', packages = ['atapt'], version = '0.3', description = 'ATA Pass-Through library', author = 'Seregy Kazenniy', author_email = 'kazenniy@gmail.com', url = 'https://github.com/kazenniy/atapt', download_url = 'https://github.com/kazenniy...
from distutils.core import setup setup( name = 'atapt', packages = ['atapt'], version = '0.2', description = 'ATA Pass-Through library', author = 'Seregy Kazenniy', author_email = 'kazenniy@gmail.com', url = 'https://github.com/kazenniy/atapt', download_url = 'https://github.com/kazenniy...
mit
Python
9c0fb4e759c2e1be17abf8b9201ca3318f86bc86
bump version
eriktaubeneck/spotifytracker
setup.py
setup.py
from setuptools import setup setup( name='spotifytracker', version='0.0.9', packages=['spotify_tracker'], url='http://github.com/eriktaubeneck/spotifytracker', license='MIT', author='Erik Taubeneck', author_email='erik.taubeneck@gmail.com', description='Track your Spotify play history.'...
from setuptools import setup setup( name='spotifytracker', version='0.0.8', packages=['spotify_tracker'], url='http://github.com/eriktaubeneck/spotifytracker', license='MIT', author='Erik Taubeneck', author_email='erik.taubeneck@gmail.com', description='Track your Spotify play history.'...
mit
Python
e80dc692f5419c4f893a524ae2902c2bc966366a
update setup.py
danbradham/psforms,danbradham/psforms
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from setuptools import setup, find_packages import os import sys def get_info(pyfile): '''Retrieve dunder values from a pyfile''' info = {} info_re = re.compile(r"^__(\w+)__ = ['\"](.*)['\"]") with open(pyfile, 'r') as f: for line in f....
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from setuptools import setup, find_packages import os import sys def get_info(pyfile): '''Retrieve dunder values from a pyfile''' info = {} info_re = re.compile(r"^__(\w+)__ = ['\"](.*)['\"]") with open(pyfile, 'r') as f: for line in f....
mit
Python
5bcb594e0b2f421ffcd158dd148f17ddda9cb8a1
Bump to 0.0.5
vimalloc/flask-jwt-extended
setup.py
setup.py
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='0.0.5', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='0.0.4', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
mit
Python
b388bdb14c77e314d2bbf5516fa1e5180fcc80d7
Disable auto discovery
openstack/heat,openstack/heat
setup.py
setup.py
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # 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 applica...
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # 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 applica...
apache-2.0
Python
88ad9d342d35d2c797bf6ef5015e1307470d141d
update setup
cogniteev/python-gdrive
setup.py
setup.py
""" Setup file for distutils """ from distutils.core import setup setup( name='python-gdrive', version='0.1', author='Tony Sanchez', author_email='mail.tsanchez@gmail.com', url='https://github.com/tsanch3z/python-gdrive', download_url='https://github.com/tsanch3z/python-gdrive/archive/master....
""" Setup file for distutils """ from distutils.core import setup from setuptools import find_packages setup( name='python-gdrive', version='0.1', author='Tony Sanchez', author_email='mail.tsanchez@gmail.com', url='https://github.com/tsanch3z/python-gdrive', download_url='https://github.com/t...
apache-2.0
Python
63410e9de224857d927242f9bf08d837941dd442
Prepare for 0.6 release
collinstocks/eventlet,tempbottle/eventlet,lindenlab/eventlet,tempbottle/eventlet,lindenlab/eventlet,collinstocks/eventlet,lindenlab/eventlet
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup setup( name='eventlet', version='0.6', description='Coroutine-based networking library', author='Linden Lab', author_email='eventletdev@lists.secondlife.com', url='http://wiki.secondlife.com/wiki/Eventlet', packages=find_p...
#!/usr/bin/env python from setuptools import find_packages, setup setup( name='eventlet', version='0.6pre', description='Coroutine-based networking library', author='Linden Lab', author_email='eventletdev@lists.secondlife.com', url='http://wiki.secondlife.com/wiki/Eventlet', packages=fin...
mit
Python
40d92c2490c4e7a575596341b77ab397c76a4ddc
Fix broken paths
schae234/Camoco,schae234/Camoco
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages, Extension from Cython.Distutils import build_ext import os pccup = Extension( 'PCCUP', sources=['camoco/PCCUP.pyx'] ) refgendist = Extension( 'RefGenDist', sources=['camoco/RefGenDist.pyx'] ) setup( name = 'camoco', version =...
#!/usr/bin/env python3 from setuptools import setup, find_packages, Extension from Cython.Distutils import build_ext import os pccup = Extension( 'PCCUP', sources=['PCCUP.pyx'] ) refgendist = Extension( 'RefGenDist', sources=['RefGenDist.pyx'] ) setup( name = 'camoco', version = '0.1.8', ...
mit
Python
3a87c8d1d40fe46d09ae773bb4e6cdf373d91ce8
Remove debugging code. (transplanted from 3cbd0dc66ab69e0c9ba215c414a81a6b7b061109)
mitsuhiko/solace,mitsuhiko/solace
setup.py
setup.py
# -*- coding: utf-8 -*- """ Solace ====== *a multilingual support system* Solace is a multilingual support system developed at Plurk for end user support. The application design is heavily influenced by bulletin boards like phpBB and the new stackoverflow programming community site. For more information consult th...
# -*- coding: utf-8 -*- """ Solace ====== *a multilingual support system* Solace is a multilingual support system developed at Plurk for end user support. The application design is heavily influenced by bulletin boards like phpBB and the new stackoverflow programming community site. For more information consult th...
bsd-3-clause
Python
e91e84e33849b847b6228cc5fade8a8528219e59
Update version number
iLampard/WindAdapter
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup PACKAGE = 'WindAdapter' NAME = 'WindAdapter' VERSION = '0.0.11' DESCRIPTION = 'Windpy data adapter' AUTHOR = 'iLampard, RoxanneYang' URL = 'https://github.com/iLampard/WindAdapter' LICENSE = 'MIT' setup(name=NAME, version...
# -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup PACKAGE = 'WindAdapter' NAME = 'WindAdapter' VERSION = '0.0.10' DESCRIPTION = 'Windpy data adapter' AUTHOR = 'iLampard, RoxanneYang' URL = 'https://github.com/iLampard/WindAdapter' LICENSE = 'MIT' setup(name=NAME, version...
mit
Python
18cded9ff5872365bcbcb473dd20c7fc922eb250
Fix setup.py on python 2.7
totokaka/pySpaceGDN
setup.py
setup.py
""" Setup.py for pySpaceGDN. """ from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst')) as f: long_description = f.read() setup( name='pySpaceGDN', version='2.0.1-dev', description='Python Module for the SpaceGDN JSON API'...
""" Setup.py for pySpaceGDN. """ from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='pySpaceGDN', version='2.0.1-dev', description='Python Module for the ...
mit
Python
882ea5cb70f75d51cc0c8305baf7380a1d7d7954
Put back the __version__ technique
edx/i18n-tools
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import i18n setup( name='edx-i18n-tools', version=i18n.__version__, description='edX Internationalization Tools', author='edX', author_email='oscm@edx.org', url='https://github.com/edx/i18n-tools', packages=[ 'i18n', ], in...
#!/usr/bin/env python from setuptools import setup import i18n setup( name='edx-i18n-tools', version='0.3.3', description='edX Internationalization Tools', author='edX', author_email='oscm@edx.org', url='https://github.com/edx/i18n-tools', packages=[ 'i18n', ], install_req...
apache-2.0
Python
910dcef9ae20e32c3256af7282e5fdce04f4f14e
add stuff to setup.py
orezpraw/estimate-charm
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup, find_packages from estimatecharm import __version__ with open('requirements.txt') as f: requires = [l.strip() for l in f.readlines()] with open('test-requirements.txt') as f: tests_require = [l.strip() for l in f.readlines()] setup( name = "...
#!/usr/bin/env python import sys from setuptools import setup, find_packages from estimatecharm import __version__ with open('requirements.txt') as f: requires = [l.strip() for l in f.readlines()] with open('test-requirements.txt') as f: tests_require = [l.strip() for l in f.readlines()] setup( name = "...
agpl-3.0
Python
f0797ebcd8adfa6585a3c3453bd47ae72c894c61
Remove unused direct dependencies.
goodtune/vitriolic,goodtune/vitriolic,goodtune/vitriolic,goodtune/vitriolic
setup.py
setup.py
from setuptools import find_packages, setup try: with open('README.rst') as fp: long_description = fp.read() except IOError: long_description = None setup( name='vitriolic', version='1.2.0', author='Gary Reynolds', author_email='gary@touch.asn.au', license='BSD', description=( ...
from setuptools import find_packages, setup try: with open('README.rst') as fp: long_description = fp.read() except IOError: long_description = None setup( name='vitriolic', version='1.2.0', author='Gary Reynolds', author_email='gary@touch.asn.au', license='BSD', description=( ...
bsd-3-clause
Python
0b2629e99c41030c55d1bad729543f3b698a0cfb
add missing non python files
ckaus/EpiPy
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") if sys.version_info[:2] > (2, 7): raise RuntimeError("Python version 2.6, 2.7 required.") def read(fname): return open(os.path.join(os.path.dirname...
#!/usr/bin/env python import os import sys try: from setuptools import setup, find_packages except ImportError: raise ImportError("Install setup tools") if sys.version_info[:2] > (2, 7): raise RuntimeError("Python version 2.6, 2.7 required.") def read(fname): return open(os.path.join(os.path.dirname...
mit
Python
989b38aaf4080af3735fcb51584e67f1468f7aea
add argparse requirement for Python 2.6
stanford-rc/sasutils,stanford-rc/sasutils
setup.py
setup.py
#!/usr/bin/python # # Copyright (C) 2016 # The Board of Trustees of the Leland Stanford Junior University # Written by Stephane Thiell <sthiell@stanford.edu> # # 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 cop...
#!/usr/bin/python # # Copyright (C) 2016 # The Board of Trustees of the Leland Stanford Junior University # Written by Stephane Thiell <sthiell@stanford.edu> # # 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 cop...
apache-2.0
Python
a4d2ffd301de3c74aff0e958d9cfedbc9b00733e
fix setup.py so couchdb is correctly installed
couchapp/couchapp,flimzy/couchapp,benoitc/erica,dustin/couchapp,couchapp/couchapp,dustin/couchapp,couchapp/couchapp,diderson/couchapp,h4ki/couchapp,couchapp/couchapp,perplexes/couchapp,h4ki/couchapp,dustin/couchapp,diderson/couchapp,benoitc/erica,diderson/couchapp,h4ki/couchapp,perplexes/couchapp,h4ki/couchapp,perplexe...
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright 2009 Benoit Chesneau <benoitc@e-engura.org> # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. import os import sys from setuptools import setup data_files = [] root_dir = os.path....
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright 2009 Benoit Chesneau <benoitc@e-engura.org> # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. import os import sys from setuptools import setup data_files = [] root_dir = os.path....
apache-2.0
Python
5518fc3b07ce1407856465d291bed965670bbf5c
Bump to version 0.6.10
kellerza/pysma
setup.py
setup.py
#!/usr/bin/env python """pysma library setup.""" from pathlib import Path from setuptools import setup VERSION = "0.6.10" URL = "https://github.com/kellerza/pysma" setup( name="pysma", version=VERSION, description="Library to interface an SMA Solar WebConnect module", long_description=Path("README.md...
#!/usr/bin/env python """pysma library setup.""" from pathlib import Path from setuptools import setup VERSION = "0.6.9" URL = "https://github.com/kellerza/pysma" setup( name="pysma", version=VERSION, description="Library to interface an SMA Solar WebConnect module", long_description=Path("README.md"...
mit
Python
0388c41cafeb3d2e8f307f230bcb645a51ac0152
Update to latest
adtac/exterminate
setup.py
setup.py
import codecs import setuptools import os import sys here = os.path.abspath(os.path.dirname(__file__)) setuptools.setup( name='exterminate', version='0.2.0', description='Break Python programs with a simple import.', url='https://github.com/adtac/exterminate', author='Adhityaa Chandrasekar', ...
import codecs import setuptools import os import sys here = os.path.abspath(os.path.dirname(__file__)) setuptools.setup( name='destruction', version='0.1.3', description='Destroy Python programs with a simple import.', url='https://github.com/adtac/destruction', author='Adhityaa Chandrasekar',...
mit
Python
199e32e76760f723542464ba50dcd6e6bd0eed23
Change to hard-coded release
jmenglund/pandas-charm
setup.py
setup.py
from setuptools import setup, find_packages from os.path import join, dirname setup( name='pandas-charm', version='0.1.0', description=( 'A small Python library for getting character matrices ' '(alignments) into and out of pandas'), long_description=open( join(dirname(__file__...
from setuptools import setup, find_packages from os.path import join, dirname setup( name='pandas-charm', version=__import__('pandascharm').__version__, description=( 'A small Python library for getting character matrices ' '(alignments) into and out of pandas'), long_description=open(...
mit
Python
74e9a4405d329da126957561cf8de73ea0c45b6b
Update P4_PDFbreaker.py added docstring and wrapped in main function
JoseALermaIII/python-tutorials,JoseALermaIII/python-tutorials
pythontutorials/books/AutomateTheBoringStuff/Ch13/Projects/P4_PDFbreaker.py
pythontutorials/books/AutomateTheBoringStuff/Ch13/Projects/P4_PDFbreaker.py
"""PDF breaker Say you have an encrypted PDF that you have forgotten the password to, but you remember it was a single English word. Trying to guess your forgotten password is quite a boring task. Instead you can write a program that will decrypt the PDF by trying every possible English word until it finds one that wo...
# Say you have an encrypted PDF that you have forgotten the password to, but you # remember it was a single English word. Trying to guess your forgotten password # is quite a boring task. Instead you can write a program that will decrypt the # PDF by trying every possible English word until it finds one that works. # #...
mit
Python
feb729101a29bb235c921fd72b45c91506dfd3c6
fix bug
BGmi/BGmi,Trim21/BGmi,Trim21/BGmi,codysk/BGmi,BGmi/BGmi,codysk/BGmi
setup.py
setup.py
# coding=utf-8 import codecs from setuptools import setup, find_packages from bgmi import __version__, __author__, __email__ with open('requirements.txt', 'r') as f: requirements = f.read().splitlines() def long_description(): with codecs.open('README.md', 'r') as f: return f.read() setup( name=...
# coding=utf-8 from setuptools import setup, find_packages from bgmi import __version__, __author__, __email__ with open('requirements.txt', 'r') as f: requirements = f.read().splitlines() def long_description(): with open('README.md', 'r') as f: return f.read() setup( name='bgmi', version=__...
mit
Python
62ba824ca11e979b381c12b96d18d2f285cc6fd4
Bump version number.
analyzere/analyzere-python,analyzere/analyzere-python
setup.py
setup.py
from codecs import open from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: readme = f.read() with open(path.join(here, 'requirements', 'install.txt'), encoding='utf-8') as f: install_requires ...
from codecs import open from os import path from setuptools import setup here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: readme = f.read() with open(path.join(here, 'requirements', 'install.txt'), encoding='utf-8') as f: install_requires ...
mit
Python
f9d527e34dd06e33933eeb342e430f6b88c97c92
Update pycodestyle requirement from <2.4.0,>=2.3.0 to >=2.3.0,<2.6.0
openfisca/country-template,openfisca/country-template
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-Country-Template", version = "3.9.1", author = "OpenFisca Team", author_email = "contact@openfisca.org", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approve...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-Country-Template", version = "3.9.1", author = "OpenFisca Team", author_email = "contact@openfisca.org", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approve...
agpl-3.0
Python
7632d0236758178555bbd5343282d044f677990d
bump version
cactus/siphashc,cactus/siphashc
setup.py
setup.py
from setuptools import setup, find_packages, Extension long_description = """ siphashc ======== python c-module for `siphash`_, based on `floodberry's version`_. Usage ~~~~~ .. code:: python >>> from siphashc import siphash >>> siphash('sixteencharstrng', 'i need a hash of this') 10796923698683394048L ...
from setuptools import setup, find_packages, Extension long_description = """ siphashc ======== python c-module for `siphash`_, based on `floodberry's version`_. Usage ~~~~~ .. code:: python >>> from siphashc import siphash >>> siphash('sixteencharstrng', 'i need a hash of this') 10796923698683394048L ...
isc
Python
7884abe0b0d81d20d3e1ca284e0a78f65feb3c95
Install icons
Aldenis2112/qutepart,Aldenis2112/qutepart,hlamer/qutepart,andreikop/qutepart,andreikop/qutepart,Aldenis2112/qutepart,Aldenis2112/qutepart,andreikop/qutepart,andreikop/qutepart,hlamer/qutepart,hlamer/qutepart,hlamer/qutepart,hlamer/qutepart,Aldenis2112/qutepart,Aldenis2112/qutepart,hlamer/qutepart,Aldenis2112/qutepart,a...
setup.py
setup.py
#!/usr/bin/env python import sys from distutils.core import setup, Extension import distutils.ccompiler packages=['qutepart', 'qutepart/syntax'] package_data={'qutepart' : ['icons/*.png'], 'qutepart/syntax' : ['data/*.xml', 'data/syntax_db.json'] } exte...
#!/usr/bin/env python import sys from distutils.core import setup, Extension import distutils.ccompiler packages=['qutepart', 'qutepart/syntax'] package_data={'qutepart/syntax' : ['data/*.xml', 'data/syntax_db.json'] } extension = Extension('qutepart.syntax.cParser',...
lgpl-2.1
Python
93fbe76a7a736a4e6304ec51151e8b2b43b719fe
Bump to version 0.3.
eliteraspberries/hipshot
hipshot/hipshot.py
hipshot/hipshot.py
#!/usr/bin/env python2 '''Hipshot converts a video file into a single image file simulating a long-exposure photograph. ''' __author__ = 'Mansour Moufid' __copyright__ = 'Copyright 2013, Mansour Moufid' __license__ = 'ISC' __version__ = '0.3' __email__ = 'mansourmoufid@gmail.com' __status__ = 'Development' if __nam...
#!/usr/bin/env python2 '''Hipshot converts a video file into a single image file simulating a long-exposure photograph. ''' __author__ = 'Mansour Moufid' __copyright__ = 'Copyright 2013, Mansour Moufid' __license__ = 'ISC' __version__ = '0.2' __email__ = 'mansourmoufid@gmail.com' __status__ = 'Development' if __nam...
isc
Python
27dd826bbfe886c7bb1726cbc146ae8583fe8209
Use https instaed of http
spoqa/tsukkomi,spoqa/tsukkomi
setup.py
setup.py
import ast from setuptools import find_packages, setup def readme(): try: with open('README.rst') as f: return f.read() except (IOError, OSError): return def get_version(): filename = 'tsukkomi/__init__.py' version = None with open(filename, 'r') as f: tree = ...
import ast from setuptools import find_packages, setup def readme(): try: with open('README.rst') as f: return f.read() except (IOError, OSError): return def get_version(): filename = 'tsukkomi/__init__.py' version = None with open(filename, 'r') as f: tree = ...
mit
Python
579e350842dca20e9296224d837dae451324d16a
Update plotly/raster.py to fix Raster for plotly (#2824)
ioam/holoviews,ioam/holoviews,basnijholt/holoviews,basnijholt/holoviews,basnijholt/holoviews,ioam/holoviews
holoviews/plotting/plotly/raster.py
holoviews/plotting/plotly/raster.py
import numpy as np import plotly.graph_objs as go from ...core.options import SkipRendering from ...element import Image, Raster from .element import ColorbarPlot class RasterPlot(ColorbarPlot): style_opts = ['cmap'] graph_obj = go.Heatmap def graph_options(self, element, ranges): opts = super...
import numpy as np import plotly.graph_objs as go from ...core.options import SkipRendering from ...element import Image from .element import ColorbarPlot class RasterPlot(ColorbarPlot): style_opts = ['cmap'] graph_obj = go.Heatmap def graph_options(self, element, ranges): opts = super(RasterP...
bsd-3-clause
Python
a4e2868ec5fd9c15814897a98e256bf662d1c4e9
Tag eve version more precisly
rs/eve-auth-jwt
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst', 'r') as f: readme = f.read() setup( name='eve-auth-jwt', version='1.0.1', description='Eve JWT authentication', long_description=readme, author='Olivier...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst', 'r') as f: readme = f.read() setup( name='eve-auth-jwt', version='1.0.1', description='Eve JWT authentication', long_description=readme, author='Olivier...
mit
Python
e6b278c75b452fa46de98a069a426c966ef283be
Remove branch specifier in setup.py
SymbiFlow/symbiflow-xc-fasm2bels
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="fasm2bels", version="0.0.1", author="SymbiFlow Authors", author_email="symbiflow@lists.librecores.org", description="fasm2bels libraries", long_description=long_description, long_d...
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="fasm2bels", version="0.0.1", author="SymbiFlow Authors", author_email="symbiflow@lists.librecores.org", description="fasm2bels libraries", long_description=long_description, long_d...
isc
Python
ec7dbdc6007b13ff95e98267fbaf8ffce3e523ce
Fix versions in setup.py
9seconds/iblocklist2ipset
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from setuptools.command.test import test ############################################################################## REQUIREMENTS = ( "netaddr==0.7.12", "requests==2.3.0", "docopt==0.6.2", "six==1.7.3" ) ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from setuptools.command.test import test ############################################################################## REQUIREMENTS = ( "netaddr==0.7.12", "requests==2.3.0" ) with open("README.rst", "r") as resour...
mit
Python
741f60a665f12b931961e33d3b289ab70c64ec0f
Add Django to install_requires.
zatarus/django-ckeditor,MarcJoan/django-ckeditor,Josephpaik/django-ckeditor,sergey-romanov/django-ckeditor,stkrp/django-ckeditor,gushedaoren/django-ckeditor,stkrp/django-ckeditor,uhuramedia/django-ckeditor,luzfcb/django-ckeditor,gushedaoren/django-ckeditor,jonny5532/django-ckeditor,sergey-romanov/django-ckeditor,MarcJo...
setup.py
setup.py
import os.path from setuptools import setup, find_packages def get_source_files(): for dirname, _, files in os.walk('ckeditor/static/ckeditor/ckeditor/_source'): for filename in files: yield os.path.join('/'.join(dirname.split('/')[1:]), filename) setup( name='django-ckeditor-updated', ...
import os.path from setuptools import setup, find_packages def get_source_files(): for dirname, _, files in os.walk('ckeditor/static/ckeditor/ckeditor/_source'): for filename in files: yield os.path.join('/'.join(dirname.split('/')[1:]), filename) setup( name='django-ckeditor-updated', ...
bsd-3-clause
Python
65d8ecd6fdbb6f93c013d71b6c1cf232d861b3b5
Prepare push-hub 0.5.
ucla/PushHubCore
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
bsd-3-clause
Python
aa7e6dad9304f3b75b0cfa6f89b54cb79f67a3db
update install_requires
guyingbo/cowfish
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup import os.path import re VERSION_RE = re.compile(r"""__version__ = ['"]([-a-z0-9.]+)['"]""") BASE_PATH = os.path.dirname(__file__) with open(os.path.join(BASE_PATH, "cowfish", "__init__.py")) as f: try: version...
try: from setuptools import setup except ImportError: from distutils.core import setup import os.path import re VERSION_RE = re.compile(r"""__version__ = ['"]([-a-z0-9.]+)['"]""") BASE_PATH = os.path.dirname(__file__) with open(os.path.join(BASE_PATH, "cowfish", "__init__.py")) as f: try: version...
mit
Python
cbee16221cac2255eb5bd260eeac3b6e8bb4ee15
Bump to 0.8.0 (drop dev tag) for release
GriceTurrble/python-amazon-mws,Bobspadger/python-amazon-mws
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup short_description = 'Python library for interacting with the Amazon MWS API' try: from pypandoc import convert long_description = convert("README.md", 'rst') except (ImportError, OSError): # either pypandoc or pandoc isn't installed long_description = ...
# -*- coding: utf-8 -*- from setuptools import setup short_description = 'Python library for interacting with the Amazon MWS API' try: from pypandoc import convert long_description = convert("README.md", 'rst') except (ImportError, OSError): # either pypandoc or pandoc isn't installed long_description = ...
unlicense
Python
0a7e71bd658366d115e867b46f31209ba16ba3ca
update jira to version that works with 3.7
Yelp/elastalert
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) setup( name='elastalert', version='0.2.1', description='Runs custom filters on Elasticsearch and alerts on matches', author='Quentin Long', author_email='qlo@ye...
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) setup( name='elastalert', version='0.2.1', description='Runs custom filters on Elasticsearch and alerts on matches', author='Quentin Long', author_email='qlo@ye...
apache-2.0
Python
af41413644340f3c5db98a221001010909e13336
include bin/ scripts
qmsk/pngtile,qmsk/pngtile,qmsk/pngtile,qmsk/pngtile,qmsk/pngtile
setup.py
setup.py
from distutils.core import setup from distutils.extension import Extension import os.path try : from Cython.Build import cythonize CYTHON = True except ImportError : CYTHON = False if CYTHON and os.path.exists('python/pypngtile.pyx'): pypngtile_sources = [ 'python/pypngtile.pyx' ] elif os.path.exist...
from distutils.core import setup from distutils.extension import Extension import os.path try : from Cython.Build import cythonize CYTHON = True except ImportError : CYTHON = False if CYTHON and os.path.exists('python/pypngtile.pyx'): pypngtile_sources = [ 'python/pypngtile.pyx' ] elif os.path.exist...
mpl-2.0
Python
71bd0ed9b8c454b942bed61a5a54abe2982212cb
bump version: 0.2.0 -> 0.3.0
petergardfjall/garminexport
setup.py
setup.py
"""Setup information for the Garmin Connect activity exporter.""" from setuptools import setup, Extension from os import path # needed for Python 2.7 (ensures open() defaults to text mode with universal # newlines, and accepts an argument to specify the text encoding. from io import open here = path.abspath(path.dirn...
"""Setup information for the Garmin Connect activity exporter.""" from setuptools import setup, Extension from os import path # needed for Python 2.7 (ensures open() defaults to text mode with universal # newlines, and accepts an argument to specify the text encoding. from io import open here = path.abspath(path.dirn...
apache-2.0
Python
14c0dda1412978356998cafeb17375f0913cece2
Bump version number
Laodicean/harvest-python3,bmon/harvest-python3
setup.py
setup.py
from codecs import open as codecs_open from setuptools import setup, find_packages with codecs_open("README.md", encoding="utf-8") as f: long_description = f.read() setup( name="harvest-python3", version="0.0.4", description=u"Python3 wrapper for harvest API", long_description=long_description, ...
from codecs import open as codecs_open from setuptools import setup, find_packages with codecs_open("README.md", encoding="utf-8") as f: long_description = f.read() setup( name="harvest-python3", version="0.0.3", description=u"Python3 wrapper for harvest API", long_description=long_description, ...
mit
Python
f3dbdeeb422eec264db8c7bdc69a98df2e10569a
update the version 0.1.2
michiya/azure-storage-logging
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup CLASSIFIERS=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Pyth...
try: from setuptools import setup except ImportError: from distutils.core import setup CLASSIFIERS=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Pyth...
apache-2.0
Python
7c717e16254602ab6b179b2d500b703ef0211361
Add long description to the setup file
bogdal/django-gcm,johnofkorea/django-gcm,bogdal/django-gcm,johnofkorea/django-gcm
setup.py
setup.py
from setuptools import setup, find_packages from gcm import VERSION setup( name='django-gcm', version=VERSION, description='Google Cloud Messaging Server', long_description=open('README.md').read(), author='Adam Bogdal', author_email='adam@bogdal.pl', url='https://github.com/bogdal/django-g...
from setuptools import setup, find_packages from gcm import VERSION setup( name='django-gcm', version=VERSION, description='Google Cloud Messaging Server', author='Adam Bogdal', author_email='adam@bogdal.pl', url='https://github.com/bogdal/django-gcm', download_url='https://github.com/bogda...
bsd-2-clause
Python
f7f81583b0038b9abefcd9a171e27f7c6ccb6f52
Revert "automating the way we define dependencies at setup.py. Now changing only the REQUEREMENTS file will do it"
marcelometal/pyvows,heynemann/pyvows
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # pyVows testing engine # https://github.com/heynemann/pyvows # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2011 Bernardo Heynemann heynemann@gmail.com from setuptools import setup from pyvows.version import __version_...
#!/usr/bin/env python # -*- coding: utf-8 -*- # pyVows testing engine # https://github.com/heynemann/pyvows # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license # Copyright (c) 2011 Bernardo Heynemann heynemann@gmail.com from setuptools import setup from pyvows.version import __version_...
mit
Python
3e8d398c8e9febe3642cefb963c338c846079895
Remove Python 3.4 from setup.py classifiers.
jjkester/django-auditlog
setup.py
setup.py
import os from setuptools import setup # Readme as long description with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as readme_file: long_description = readme_file.read() setup( name="django-auditlog", use_scm_version={"version_scheme": "post-release"}, setup_requires=["setuptools...
import os from setuptools import setup # Readme as long description with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as readme_file: long_description = readme_file.read() setup( name="django-auditlog", use_scm_version={"version_scheme": "post-release"}, setup_requires=["setuptools...
mit
Python
b5948b1ea375cf7cd0f49c8e3887ecea133f7460
Fix requirement
jawilson/pmxbot,jawilson/pmxbot
setup.py
setup.py
# -*- coding: utf-8 -*- # vim:ts=4:sw=4:noexpandtab # c-basic-indent: 4; tab-width: 4; indent-tabs-mode: true; import sys import setuptools py26reqs = ['importlib'] if sys.version_info < (2, 7) else [] setup_params = dict( name="pmxbot", use_hg_version=True, packages=setuptools.find_packages(), include_package_d...
# -*- coding: utf-8 -*- # vim:ts=4:sw=4:noexpandtab # c-basic-indent: 4; tab-width: 4; indent-tabs-mode: true; import sys import setuptools py26reqs = ['importlib'] if sys.version_info < (2, 7) else [] setup_params = dict( name="pmxbot", use_hg_version=True, packages=setuptools.find_packages(), include_package_d...
bsd-3-clause
Python
1b559967f2322efc62bcdd38b290b2f3983419b1
fix package
arnaldorusso/apissah
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.rst').read() history = open('HISTORY.rst...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() readme = open('README.rst').read() history = open('HISTORY.rst...
bsd-3-clause
Python
0b1817467747aabf7d164072b672a85a5ebfcff8
Bump release version
consbio/tablo
setup.py
setup.py
from setuptools import setup setup( name='tablo', description='A PostGIS table to feature service app for Django', keywords='feature service, map server, postgis, django', version='0.1.4.2', packages=['tablo', 'tablo.migrations', 'tablo.interfaces', 'tablo.interfaces.arcgis'], install_requires=...
from setuptools import setup setup( name='tablo', description='A PostGIS table to feature service app for Django', keywords='feature service, map server, postgis, django', version='0.1.4.1', packages=['tablo', 'tablo.migrations', 'tablo.interfaces', 'tablo.interfaces.arcgis'], install_requires=...
bsd-3-clause
Python
74a932b631d883252bce6b49ca6bf1ba56ca3e29
Prepare 6.7.0 release
cqse/teamscale-client-python
setup.py
setup.py
from setuptools import setup setup( name="teamscale-client", version="6.7.0", author="Thomas Kinnen - CQSE GmbH", author_email="kinnen@cqse.eu", description=("A simple service client to interact with Teamscale's REST API."), license="Apache", keywords="rest api teamscale", url="https://...
from setuptools import setup setup( name="teamscale-client", version="5.9.1", author="Thomas Kinnen - CQSE GmbH", author_email="kinnen@cqse.eu", description=("A simple service client to interact with Teamscale's REST API."), license="Apache", keywords="rest api teamscale", url="https://...
apache-2.0
Python
2e4e66643bba30c01d25194eaea8271030bd64a7
Bump version (minor)
noahmorrison/chevron,noahmorrison/chevron
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc readme = pypandoc.convert('README.md', 'rest') except (ImportError, RuntimeError): print('\n\n!!!\npypandoc not loaded\n!!!\n') readme = '' setup(name='chevron', ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc readme = pypandoc.convert('README.md', 'rest') except (ImportError, RuntimeError): print('\n\n!!!\npypandoc not loaded\n!!!\n') readme = '' setup(name='chevron', ...
mit
Python
262d3642ef05b12fceb7f5b0d945a1b812969e26
comment out change for testing with python setup.py test
kalxas/OWSLib,datagovuk/OWSLib,kwilcox/OWSLib,jachym/OWSLib,gfusca/OWSLib,daf/OWSLib,ocefpaf/OWSLib,datagovuk/OWSLib,daf/OWSLib,tomkralidis/OWSLib,bird-house/OWSLib,robmcmullen/OWSLib,b-cube/OWSLib,dblodgett-usgs/OWSLib,jaygoldfinch/OWSLib,daf/OWSLib,QuLogic/OWSLib,KeyproOy/OWSLib,datagovuk/OWSLib,menegon/OWSLib,Jensel...
setup.py
setup.py
from setuptools import setup, find_packages import owslib from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): ...
from setuptools import setup, find_packages import owslib from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): ...
bsd-3-clause
Python
70f0c6f139ab843a42b636fed011a585b5658f10
Remove requests specific version
rfarley3/Kibana
setup.py
setup.py
from setuptools import setup setup( name='kibana', version='0.1', description='Kibana configuration index (.kibana in v4) command line interface and python API (visualization import/export and mappings refresh)', author='Ryan Farley', author_email='rfarley@mitre.org', packages=['kibana'], i...
from setuptools import setup setup( name='kibana', version='0.1', description='Kibana configuration index (.kibana in v4) command line interface and python API (visualization import/export and mappings refresh)', author='Ryan Farley', author_email='rfarley@mitre.org', packages=['kibana'], i...
mit
Python
e4d02d43e9c48f0f3823039d7b501e72543d1a69
Change cli command name
virtru-ops/masterless,virtru-ops/masterless
setup.py
setup.py
from setuptools import setup, find_packages VERSION = '0.1.0' LONG_DESCRIPTION = open('README.rst').read() setup( name='salt-masterless-prep', version=VERSION, description="Salt masterless preparer", long_description=LONG_DESCRIPTION, keywords='', author='Reuven V. Gonzales', author_email...
from setuptools import setup, find_packages VERSION = '0.1.0' LONG_DESCRIPTION = open('README.rst').read() setup( name='salt-masterless-prep', version=VERSION, description="Salt masterless preparer", long_description=LONG_DESCRIPTION, keywords='', author='Reuven V. Gonzales', author_email...
mit
Python
78780265230ae493de89901b8fa640b54b190a91
Bump zipa version 0.3.6
PressLabs/zipa
setup.py
setup.py
from setuptools import setup setup(name='zipa', version="0.3.6", platforms='any', description='General purpose REST API client', author='Presslabs SRL', author_email='support@presslabs.com', url='https://github.com/Presslabs/zipa', packages=['zipa'], include_package_dat...
from setuptools import setup setup(name='zipa', version="0.3.5", platforms='any', description='General purpose REST API client', author='Presslabs SRL', author_email='support@presslabs.com', url='https://github.com/Presslabs/zipa', packages=['zipa'], include_package_dat...
apache-2.0
Python
2026811331d1ad58563c030a16b1ba5b0a43ac43
Add note about py 3 support
caseman/noise,antiface/noise,antiface/noise,caseman/noise,nixterrimus/noise,nixterrimus/noise
setup.py
setup.py
# $Id: setup.py 532 2009-01-29 04:32:33Z casey.duncan $ import sys from distutils.core import setup, Extension if sys.platform != 'win32': compile_args = ['-funroll-loops'] else: # XXX insert win32 flag to unroll loops here compile_args = [] setup( name='noise', version='1.1.0', description='Perlin noise fo...
# $Id: setup.py 532 2009-01-29 04:32:33Z casey.duncan $ import sys from distutils.core import setup, Extension if sys.platform != 'win32': compile_args = ['-funroll-loops'] else: # XXX insert win32 flag to unroll loops here compile_args = [] setup( name='noise', version='1.1.0', description='Perlin noise fo...
mit
Python
cc24fdfe14e0dc65334312893f1cca0d3a879a40
Remove nonexistent packages from find_packages
Yelp/pyramid_zipkin,bplotnick/pyramid_zipkin
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup __version__ = "0.13.0" setup( name='pyramid_zipkin', version=__version__, provides=["pyramid_zipkin"], author='Yelp, Inc.', author_email='opensource+pyramid-zipkin@yelp.com', license='C...
#!/usr/bin/python # -*- coding: utf-8 -*- from setuptools import find_packages from setuptools import setup __version__ = "0.13.0" setup( name='pyramid_zipkin', version=__version__, provides=["pyramid_zipkin"], author='Yelp, Inc.', author_email='opensource+pyramid-zipkin@yelp.com', license='C...
apache-2.0
Python
28c748e7c88eef068b47113f603743c3ec147ca1
declare version as separate variable (#450)
googleapis/python-spanner-django,googleapis/python-spanner-django
setup.py
setup.py
# Copyright 2020 Google LLC # # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file or at # https://developers.google.com/open-source/licenses/bsd from setuptools import find_packages, setup version = '2.2a0' install_requires = [ 'sqlparse >= 0.3.0', 'google-clo...
# Copyright 2020 Google LLC # # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file or at # https://developers.google.com/open-source/licenses/bsd from setuptools import find_packages, setup install_requires = [ 'sqlparse >= 0.3.0', 'google-cloud >= 0.34.0', ...
bsd-3-clause
Python
778df45d99bcfcea67556d7e054c07d344fddfca
Fix a bug where a unicode char in README.rst would fail install (#481)
IDSIA/sacred,IDSIA/sacred
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 import codecs from setuptools import setup classifiers = """ Development Status :: 5 - Production/Stable Intended Audience :: Science/Research Natural Language :: English Operating System :: OS Independent Programming Language :: Python :: 2.7 Programming Language :: Python :: 3....
#!/usr/bin/env python # coding=utf-8 from setuptools import setup classifiers = """ Development Status :: 5 - Production/Stable Intended Audience :: Science/Research Natural Language :: English Operating System :: OS Independent Programming Language :: Python :: 2.7 Programming Language :: Python :: 3.4 Programming La...
mit
Python
52b2838453242f0ae400fd5ce003702f3720748a
Bump version
joaduo/xpathwebdriver,joaduo/xpathwebdriver
setup.py
setup.py
import sys from setuptools import setup, find_packages name = 'xpathwebdriver' reqs = '''pyvirtualdisplay>=0.2.1 selenium>=3.0.2 rel_imp>=0.2.4'''.splitlines() if sys.version_info < (2,7): # importlib comes in python 2.7 and on reqs.append('importlib>=1.0.4') def in_python3(): return sys.version_info[0...
import sys from setuptools import setup, find_packages name = 'xpathwebdriver' reqs = '''pyvirtualdisplay>=0.2.1 selenium>=3.0.2 rel_imp>=0.2.4'''.splitlines() if sys.version_info < (2,7): # importlib comes in python 2.7 and on reqs.append('importlib>=1.0.4') def in_python3(): return sys.version_info[0...
mit
Python
9d3ba36b2ae150f8252d907ee2c3ee9c7a7e2ea5
Update download link
steveYeah/PyBomb
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'name': 'pybomb', 'description': 'Client for the Giant Bomb API', 'version': '0.2', 'author': 'Steve Hutchins', 'author_email': 'hutchinsteve@gmail.com', 'url': 'https://github.com/steveYea...
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'name': 'pybomb', 'description': 'Client for the Giant Bomb API', 'version': '0.2', 'author': 'Steve Hutchins', 'author_email': 'hutchinsteve@gmail.com', 'url': 'https://github.com/steveYea...
mit
Python
ad6046ad7790906ba7996e39f9f4c06137f28af4
fix setup
elegantandrogyne/rpi2casterd
setup.py
setup.py
from setuptools import setup from rpi2caster_driver import __version__, __author__, __author_email__, __github_url__ with open('README.rst', 'r') as readme_file: long_description = readme_file.read() setup(name='rpi2caster_driver', version=__version__, description='Raspberry Pi GPIO setup utility for ...
from setuptools import setup from .rpi2caster_driver import __version__, __author__, __author_email__, __github_url__ with open('README.rst', 'r') as readme_file: long_description = readme_file.read() setup(name='rpi2caster_driver', version=__version__, description='Raspberry Pi GPIO setup utility for...
mit
Python
f193279cef23b6f19b1f12b592b20e767d59464c
Change version in setup
gpetukhov/pybb,gpetukhov/pybb,gpetukhov/pybb
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): ...
bsd-3-clause
Python
9d590f494984f2b4783b203ec83054e129e1177a
update keywords for pypi
MSeifert04/iteration_utilities,MSeifert04/iteration_utilities,MSeifert04/iteration_utilities,MSeifert04/iteration_utilities
setup.py
setup.py
from setuptools import setup, Extension from glob import glob from os import path import sys def readme(): with open('README.rst') as f: return f.read() def version(): with open('iteration_utilities/__init__.py') as f: for line in f: if line.startswith('__version__'): ...
from setuptools import setup, Extension from glob import glob from os import path import sys def readme(): with open('README.rst') as f: return f.read() def version(): with open('iteration_utilities/__init__.py') as f: for line in f: if line.startswith('__version__'): ...
apache-2.0
Python
07d19abd60504bfad33b8eb47a169b7f235bf00b
fix setup.py to install requirements
openworm/PyOpenWorm,gsarma/PyOpenWorm,openworm/PyOpenWorm,gsarma/PyOpenWorm,kaustubhcs/PyOpenWorm,travs/PyOpenWorm,hnunner/PyOpenWorm
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() long_description = open("README.md").read() setup( #data_files=[("",['neuroml/test/Purk2M9s.nml'])], install_requires=required, name = "PyOpenWorm", version = '0.5', pack...
# -*- coding: utf-8 -*- from distutils.core import setup with open('requirements.txt') as f: required = f.read().splitlines() long_description = open("README.md").read() setup( #data_files=[("",['neuroml/test/Purk2M9s.nml'])], install_requires=required, name = "PyOpenWorm", version = '0.0.1', ...
mit
Python
39c24a78ea235ee9efcb9db42483118be8f83f80
change 10.2.0 to rc tag (#100)
Swimlane/sw-python-client
setup.py
setup.py
from setuptools import setup, find_packages def parse_requirements(requirement_file): with open(requirement_file) as f: return f.readlines() with open('./README.rst') as f: long_description = f.read() setup( version="10.2.0rc1", name="swimlane", author="Swimlane", author_email="inf...
from setuptools import setup, find_packages def parse_requirements(requirement_file): with open(requirement_file) as f: return f.readlines() with open('./README.rst') as f: long_description = f.read() setup( version="10.2.0", name="swimlane", author="Swimlane", author_email="info@s...
mit
Python
846408ecfd55990093e8a8d833e8b77d24974876
Read version from source file in setup.py
trendels/braceexpand
setup.py
setup.py
import re from setuptools import setup with open('braceexpand.py') as f: version = re.findall(r"^__version__ = '(.*)'", f.read(), re.M)[0] with open('README.rst') as f: README = f.read() setup( name='braceexpand', version=version, author='Stanis Trendelenburg', author_email='stanis.trendelen...
import os from setuptools import setup version = '0.1' with open('README.rst') as f: README = f.read() setup( name='braceexpand', version=version, author='Stanis Trendelenburg', author_email='stanis.trendelenburg@gmail.com', py_modules=['braceexpand'], url='https://github.com/trendels/br...
mit
Python
0b175b3b64807d1c7d79826d19e2dac1c39dea8c
Replace dependency on scapy3k library with native scapy with Python2/3 support
nids-io/ampt-generator
setup.py
setup.py
''' ampt-generator setup ''' # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README....
''' ampt-generator setup ''' # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README....
bsd-2-clause
Python
13a2ac52170f4c180879b1341ec251d5e2e8eafd
Update setup.py
HurricaneLabs/machinae
setup.py
setup.py
import subprocess from setuptools import setup, find_packages def get_long_description(): cmd = 'pandoc -f markdown_github -t rst README.md --no-wrap' try: return subprocess.check_output(cmd, shell=True, universal_newlines=True) except: return "" VERSION = '1.4.2' setup( name='machin...
import subprocess from setuptools import setup, find_packages def get_long_description(): cmd = 'pandoc -f markdown_github -t rst README.md --no-wrap' try: return subprocess.check_output(cmd, shell=True, universal_newlines=True) except: return "" VERSION = '1.4.1' setup( name='machin...
mit
Python
6c54791dd878e73b6cdfb345aff18590dd912338
Bump to 0.3.27
cookbrite/flyingcloud,cookbrite/flyingcloud
setup.py
setup.py
from __future__ import absolute_import from setuptools import setup, find_packages setup( name='flyingcloud', version='0.3.27', description='Build Docker images using SaltStack', author='MetaBrite, Inc.', author_email='flyingcloud-admin@metabrite.com', license='Apache Software License 2.0', ...
from __future__ import absolute_import from setuptools import setup, find_packages setup( name='flyingcloud', version='0.3.26', description='Build Docker images using SaltStack', author='MetaBrite, Inc.', author_email='flyingcloud-admin@metabrite.com', license='Apache Software License 2.0', ...
apache-2.0
Python
ab135892ec0d4cd6bdd3a7af3543a06fcd472099
delete unused method and add a format method to meet the standard of html5lib
jose-zama/HTML5ParserComparator,Prin4/HTML5ParserComparator,jose-zama/HTML5ParserComparator,jose-zama/HTML5ParserComparator,HTML5MSc/HTML5ParserComparator,Prin4/HTML5ParserComparator,HTML5MSc/HTML5ParserComparator,Prin4/HTML5ParserComparator,HTML5MSc/HTML5ParserComparator,HTML5MSc/HTML5ParserComparator,Prin4/HTML5Parse...
html5lib/parser.py
html5lib/parser.py
from contextlib import closing from urllib2 import urlopen import sys from html5lib import html5parser def format(data): a = [] a = data.split("\n") b = [] for line in a: if line[0] == "|": line = "| "+line[1:] b.append(line) return "\n".join(b) p = html5parser.HTMLParser(namespaceHTMLElements=False...
from contextlib import closing from urllib2 import urlopen import sys from html5lib import html5parser def convert(stripChars): def convertData(data): """convert the output of str(document) to the format used in the testcases""" data = data.split("\n") rv = [] for line in data: ...
mit
Python
d450525fc6d094caadd11c46223fd37708fac5c3
Bump for v0.1.3
aphistic/copilot,aphistic/copilot
setup.py
setup.py
from distutils.core import setup setup( name = 'copilot', packages = ['copilot'], version = '0.1.3', description = 'Application to manage files on external USB drives', author = 'Erik Davidson', author_email = 'erik@erikd.org', url = 'https://github.com/aphistic/copilot', download_url = ...
from distutils.core import setup setup( name = 'copilot', packages = ['copilot'], version = '0.1.2', description = 'Application to manage files on external USB drives', author = 'Erik Davidson', author_email = 'erik@erikd.org', url = 'https://github.com/aphistic/copilot', download_url = ...
mit
Python
47e6fef97497e98e56be20b72c690c86fe14bdc9
add include directory to setup file
noxdafox/clipspy,noxdafox/clipspy
setup.py
setup.py
# Copyright (c) 2016-2017, Matteo Cafasso # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and ...
# Copyright (c) 2016-2017, Matteo Cafasso # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and ...
bsd-3-clause
Python
99a33333a579c04ba884d63f9a0cc84c5fef56f5
Bump version
pinax/pinax-types
setup.py
setup.py
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="", author_email="", description="", name="pinax-ty...
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="", author_email="", description="", name="pinax-ty...
mit
Python
81990e23a6d4a222a3ff13c7eaf091ecb3b84044
include static files
peluche/jiongtu,peluche/jiongtu,peluche/jiongtu
setup.py
setup.py
from setuptools import setup setup( name = 'jiongtu', packages = ['jiongtu'], version = '0.1.0', description = '囧', author = 'peluche', author_email = '', url = 'https://github.com/peluche/jiongtu', download_url = 'https://github.com/peluche/jiongtu/tarball/0.1', install_requires = ...
from setuptools import setup setup( name = 'jiongtu', packages = ['jiongtu'], version = '0.1', description = '囧', author = 'peluche', author_email = '', url = 'https://github.com/peluche/jiongtu', download_url = 'https://github.com/peluche/jiongtu/tarball/0.1', install_requires = ['...
mit
Python
4ffab92845e532e338d92f7937e45e99181635f0
Update setup.py
rmariano/compr,rmariano/compr
setup.py
setup.py
from setuptools import setup from compressor import VERSION with open('Readme.rst', 'r') as readme: LONG_DESC = readme.read() setup( name='trenzalore', version=VERSION, description='Py3 text compression application', long_description=LONG_DESC, author='Mariano Anaya', author_email='maria...
from setuptools import setup from compressor import VERSION with open('Readme.rst', 'r') as readme: LONG_DESC = readme.read() setup( name='trenzalore', version=VERSION, description='Py3 text compression application', long_description=LONG_DESC, author='Mariano Anaya', author_email='maria...
mit
Python
a1711bc4b225e3bce588eb0d7ff790906eb9be4b
Test relase
23andMe/djdt-flamegraph,23andMe/djdt-flamegraph,23andMe/djdt-flamegraph
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
mit
Python
fe958839718486ebf8d929b6d7d57c51878d3365
Update classifiers
crehana/django-stripe-payments,ZeevG/django-stripe-payments,boxysean/django-stripe-payments,ZeevG/django-stripe-payments,alexhayes/django-stripe-payments,pinax/django-stripe-payments,boxysean/django-stripe-payments,jawed123/django-stripe-payments,crehana/django-stripe-payments,jamespacileo/django-stripe-payments,jamesp...
setup.py
setup.py
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() PACKAGE = "payments" NAME = "django-stripe-payments" DESCRIPTION = "a payments Dj...
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() PACKAGE = "payments" NAME = "django-stripe-payments" DESCRIPTION = "a payments Dj...
mit
Python
7caa8ab79efab4c7dcfefc4e75bee903435cc725
update download url [ci skip]
geelweb/laposte-python-sdk
setup.py
setup.py
from setuptools import setup setup( name='lapostesdk', version='0.1.2', author='Guillaume Luchet', author_email='guillaume@geelweb.org', packages=['lapostesdk', 'lapostesdk.apis', 'lapostesdk.entities'], url='https://github.com/geelweb/laposte-python-sdk', download_url='https://github.com/g...
from setuptools import setup setup( name='lapostesdk', version='0.1.2', author='Guillaume Luchet', author_email='guillaume@geelweb.org', packages=['lapostesdk', 'lapostesdk.apis', 'lapostesdk.entities'], url='https://github.com/geelweb/laposte-python-sdk', download_url='https://github.com/g...
mit
Python
3f945eacea38445e3efd78a6a76c191f131ebfa2
Fix setup.py metadata
nephila/django-html5-appcache
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages import os CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Inde...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages import os CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python'...
bsd-3-clause
Python
d2be4fbcc22a5f5e9c97ee492913d0748a302c58
Add Python3 identifiers
redouane/django-fontawesome,redouane/django-fontawesome
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-fontawesome', version='0.2.6', packages=['fontawes...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-fontawesome', version='0.2.6', packages=['fontawes...
bsd-2-clause
Python
44ae5399d8e9b9c083f049a1cbdde7074b8c2fc6
Bump download URL.
ubernostrum/django-flashpolicies
setup.py
setup.py
from distutils.core import setup import os setup(name='django-flashpolicies', version='1.2', description='Flash cross-domain policies for Django sites', long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(), author='James Bennett', author_email='james@b-list...
from distutils.core import setup import os setup(name='django-flashpolicies', version='1.2', description='Flash cross-domain policies for Django sites', long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(), author='James Bennett', author_email='james@b-list...
bsd-3-clause
Python
5faaec19306c1f2c3df5adeb41df87fc34ea5192
Build 0.1.dev1
InfinityCliff/kivyic
setup.py
setup.py
from distutils.core import setup setup( name='kivyic', version='0.1.dev1', packages=['kivyic'], package_data={'': ['*.kv']}, include_package_data=True, url='https://github.com/InfinityCliff/kivyic', license='MIT', author='Infinity Cliff', author_e...
from distutils.core import setup setup( name='kivyic', version='0.0', packages=['kivyic'], url='https://github.com/InfinityCliff/kivyic', license='MIT', author='Infinity Cliff', author_email='kevin.williams@InfinityCliff.com', description='Implementation ...
mit
Python
b9277c09e92dbcf260a9960fa1d268a53cb13a0a
Fix setup.py comma screwup and reorder the packages
satish-suradkar/pyresttest,netjunki/pyresttest,svanoort/pyresttest,svanoort/pyresttest,netjunki/pyresttest,satish-suradkar/pyresttest
setup.py
setup.py
import sys try: from setuptools import setup except ImportError: from distutils.core import setup dependencies = ['pyyaml', 'pycurl'] test_dependencies = ['django==1.6.5','django-tastypie==0.12.1','jsonpath','jmespath'] # Add additional compatibility shims if sys.version_info[0] > 2: dependencies.append('fu...
import sys try: from setuptools import setup except ImportError: from distutils.core import setup dependencies = ['pyyaml', 'pycurl'] test_dependencies = ['django==1.6.5','django-tastypie==0.12.1','jsonpath','jmespath'] # Add additional compatibility shims if sys.version_info[0] > 2: dependencies.append('fu...
apache-2.0
Python
b5f180a5ee377b2e066250cf5d770f09c936ca25
Fix plugins ImportError described at https://github.com/jkbr/httpie/issues/166#issuecomment-24905910
rgordeev/httpie,wandec/first,danieldc/httpie,Bogon/httpie,MiteshShah/httpie,kevinlondon/httpie,zerodark/httpie,tylertebbs20/Practice-httpie,insionng/httpie,jakubroztocil/httpie,lingtalfi/httpie,jakubroztocil/httpie,keita1314/httpie,alfcrisci/httpie,lingtalfi/httpie,fontenele/httpie,zerodark/httpie,zerin108/httpie,Batte...
setup.py
setup.py
import os import sys import codecs from setuptools import setup import httpie if sys.argv[-1] == 'test': status = os.system('python tests/tests.py') sys.exit(1 if status > 127 else status) requirements = [ 'requests>=1.2.3', 'Pygments>=1.5' ] try: #noinspection PyUnresolvedReferences import ...
import os import sys import codecs from setuptools import setup import httpie if sys.argv[-1] == 'test': status = os.system('python tests/tests.py') sys.exit(1 if status > 127 else status) requirements = [ 'requests>=1.2.3', 'Pygments>=1.5' ] try: #noinspection PyUnresolvedReferences import ...
bsd-3-clause
Python
4a75ca039832d8f2daef8d01ee5ab1ff1f8514d6
Update setup.py.
tjcorona/PyFR,Aerojspark/PyFR,BrianVermeire/PyFR,tjcorona/PyFR,iyer-arvind/PyFR,tjcorona/PyFR
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import sys # Python version if sys.version_info[:2] < (2,7): print('PyFR requires Python 2.7 or newer. Python {}.{} detected'\ .format(*sys.version_info[:2])) sys.exit(-1) # Modules modules = [ 'pyfr.backends', 'py...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import sys # Python version if sys.version_info[:2] < (2,7): print('PyFR requires Python 2.7 or newer. Python {}.{} detected'\ .format(*sys.version_info[:2])) sys.exit(-1) # Modules modules = [ 'pyfr.backends', 'py...
bsd-3-clause
Python
3498475ff576dc0c0b9a4cd5ed25be874e79b11a
remove dependance on setuptools. Now just use stdlib distutils.
msabramo/colorama,msabramo/colorama
setup.py
setup.py
#!/usr/bin/env python from os.path import dirname, join from distutils.core import setup from colorama import __version__ name = 'colorama' def get_long_description(filename): readme = join(dirname(__file__), filename) return open(readme).read() setup( name=name, version=__version__, descriptio...
#!/usr/bin/env python from os.path import dirname, join from setuptools import setup, find_packages from colorama import __version__ name = 'colorama' def get_long_description(filename): readme = join(dirname(__file__), filename) return open(readme).read() setup( name=name, version=__version__, ...
bsd-3-clause
Python
4bc7f9a6b9d743d5ed75ac55d8bfc009b3fe93c6
Update NodeConductor dependency version.
opennode/nodeconductor-openstack
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2', ] install_requires = [ 'iptools>=0.6.1', 'nodeconductor>=0.101.0', 'python-ceilometerclient==2.3.0', 'python-cinderclient==1.6.0', 'python-glanceclient==2.0.0', 'python-keystoneclient==2.3....
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2', ] install_requires = [ 'iptools>=0.6.1', 'nodeconductor>=0.100.0', 'python-ceilometerclient==2.3.0', 'python-cinderclient==1.6.0', 'python-glanceclient==2.0.0', 'python-keystoneclient==2.3....
mit
Python
df8ed68c08bcab2688d0f5d5179c8cd61c066e01
Use pyvcloud v10
geokala/tosca-vcloud-plugin,kemiz/tosca-vcloud-plugin,denismakogon/tosca-vcloud-plugin,vmware/tosca-vcloud-plugin,nmishkin/tosca-vcloud-plugin,cloudify-cosmo/tosca-vcloud-plugin
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
b3790d249b4448de38054a93e1c9f468a8fce17c
Bump version
andrewgross/pyrelic
setup.py
setup.py
# #!/usr/bin/env python # -*- coding: utf-8 -*- import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links to pass them to the `install_requires` and `dependency...
# #!/usr/bin/env python # -*- coding: utf-8 -*- import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links to pass them to the `install_requires` and `dependency...
mit
Python
95b6ee1ce2f0540f5a40201f83f5fcec670292db
bump version
fhirschmann/Flask-FlatPages-Pandoc
setup.py
setup.py
from os import path from setuptools import setup setup( name="Flask-FlatPages-Pandoc", version="0.2", description="Pandoc rendering for Flask-FlatPages", long_description=open(path.join(path.dirname(__file__), "README.rst")).read(), url="http://github.com/fhirschmann/Flask-FlatPages-Pandoc", a...
from os import path from setuptools import setup setup( name="Flask-FlatPages-Pandoc", version="0.1", description="Pandoc rendering for Flask-FlatPages", long_description=open(path.join(path.dirname(__file__), "README.rst")).read(), url="http://github.com/fhirschmann/Flask-FlatPages-Pandoc", a...
mit
Python
18be74b12ab324fca2f043b0aaf8c7d8ff805c62
Update test to reflect ETM implementation
numenta/htmresearch-core,numenta/htmresearch-core,numenta/htmresearch-core,numenta/htmresearch-core
bindings/py/tests/extended_temporal_memory_test.py
bindings/py/tests/extended_temporal_memory_test.py
# ---------------------------------------------------------------------- # Numenta Platform for Intelligent Computing (NuPIC) # Copyright (C) 2017, Numenta, Inc. Unless you have an agreement # with Numenta, Inc., for a separate license for this software code, the # following terms and conditions apply: # # This progra...
# ---------------------------------------------------------------------- # Numenta Platform for Intelligent Computing (NuPIC) # Copyright (C) 2017, Numenta, Inc. Unless you have an agreement # with Numenta, Inc., for a separate license for this software code, the # following terms and conditions apply: # # This progra...
agpl-3.0
Python