commit
stringlengths
40
40
old_file
stringlengths
4
150
new_file
stringlengths
4
150
old_contents
stringlengths
0
3.26k
new_contents
stringlengths
1
4.43k
subject
stringlengths
15
501
message
stringlengths
15
4.06k
lang
stringclasses
4 values
license
stringclasses
13 values
repos
stringlengths
5
91.5k
diff
stringlengths
0
4.35k
e3aea0f6edbb477b22ebed1f769ff684fddd31a1
setup.py
setup.py
from distutils.core import setup setup( name='wunderclient', packages=['wunderclient'], version='0.0.1', description='A Wunderlist API client', author='Kevin LaFlamme', author_email='k@lamfl.am', url='https://github.com/lamflam/wunderclient', download_url='https://github.com/lamflam/wun...
import os from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) requires = [] with open(os.path.join(here, 'requirements.txt')) as f: for line in f.read().splitlines(): if line.find('--extra-index-url') == -1: requires.append(line) setup( name='wunderclient',...
Make sure the dependencies get installed
Make sure the dependencies get installed
Python
mit
lamflam/wunderclient
--- +++ @@ -1,13 +1,24 @@ +import os from distutils.core import setup + +here = os.path.abspath(os.path.dirname(__file__)) + +requires = [] +with open(os.path.join(here, 'requirements.txt')) as f: + for line in f.read().splitlines(): + if line.find('--extra-index-url') == -1: + requires.append(l...
90e614755370c3aafcf55cb76292f2848c797bd6
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function from codecs import open from setuptools import setup setup(name="abzer", author="Wieland Hoffmann", author_email="themineo@gmail.com", packages=["abzer"], package_dir={"abzer": "abzer"}, download_url="https://github.com/mineo/ab...
#!/usr/bin/env python from __future__ import print_function from codecs import open from setuptools import setup setup(name="abzer", author="Wieland Hoffmann", author_email="themineo@gmail.com", packages=["abzer"], package_dir={"abzer": "abzer"}, download_url="https://github.com/mineo/ab...
Revert an accidental requirement bump to python 3.7
Revert an accidental requirement bump to python 3.7
Python
mit
mineo/abzer,mineo/abzer
--- +++ @@ -24,7 +24,7 @@ install_requires=["aiohttp"], extras_require={ 'docs': ['sphinx', 'sphinxcontrib-autoprogram']}, - python_requires='>=3.7', + python_requires='>=3.5', entry_points={ 'console_scripts': ['abzer=abzer.__main__:main'] }
7c88ecf10c3197c337990c7f92c7ace6a85d316e
setup.py
setup.py
from distutils.core import setup from distutils.core import Extension setup(name = 'wrapt', version = '0.9.0', description = 'Module for decorators, wrappers and monkey patching.', author = 'Graham Dumpleton', author_email = 'Graham.Dumpleton@gmail.com', license = 'BSD', url = 'http...
import os from distutils.core import setup from distutils.core import Extension with_extensions = os.environ.get('WRAPT_EXTENSIONS', 'true') with_extensions = (with_extensions.lower() != 'false') setup_kwargs = dict( name = 'wrapt', version = '0.9.0', description = 'Module for decorators, wrappers ...
Make compilation of extensions optional through an environment variable.
Make compilation of extensions optional through an environment variable.
Python
bsd-2-clause
akash1808/wrapt,github4ry/wrapt,wujuguang/wrapt,akash1808/wrapt,wujuguang/wrapt,pombredanne/wrapt,pombredanne/wrapt,GrahamDumpleton/wrapt,pombredanne/python-lazy-object-proxy,ionelmc/python-lazy-object-proxy,linglaiyao1314/wrapt,GrahamDumpleton/wrapt,linglaiyao1314/wrapt,pombredanne/python-lazy-object-proxy,ionelmc/pyt...
--- +++ @@ -1,7 +1,13 @@ +import os + from distutils.core import setup from distutils.core import Extension -setup(name = 'wrapt', +with_extensions = os.environ.get('WRAPT_EXTENSIONS', 'true') +with_extensions = (with_extensions.lower() != 'false') + +setup_kwargs = dict( + name = 'wrapt', version = '...
bbf92b251203bc3556a6e91c25209fc14046ca50
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages setup( name = 'cloudsizzle', fullname = 'CloudSizzle', version = '0.1', author = '', author_email = '', license = 'MIT', url = 'http://cloudsizzle.cs.hut.fi', description = 'Social study...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages setup( name = 'cloudsizzle', fullname = 'CloudSizzle', version = '0.1', author = '', author_email = '', license = 'MIT', url = 'http://cloudsizzle.cs.hut.fi', description = 'Social study...
Include data files in package
Include data files in package
Python
mit
jpvanhal/cloudsizzle,jpvanhal/cloudsizzle
--- +++ @@ -20,6 +20,7 @@ 'asi >= 0.9', ], packages = find_packages(), + include_package_data = True, test_suite = 'cloudsizzle.tests.suite', dependency_links = [ 'http://public.futurice.com/~ekan/eggs',
f5f95550af953fc9f2875f40ba7f89df468485fc
prompt_toolkit/focus_stack.py
prompt_toolkit/focus_stack.py
""" Push/pop stack of buffer names. The top buffer of the stack is the one that currently has the focus. Note that the stack can contain `None` values. This means that none of the buffers has the focus. """ from __future__ import unicode_literals from six import string_types from prompt_toolkit.enums import DEFAULT_B...
""" Push/pop stack of buffer names. The top buffer of the stack is the one that currently has the focus. Note that the stack can contain `None` values. This means that none of the buffers has the focus. """ from __future__ import unicode_literals from six import string_types from prompt_toolkit.enums import DEFAULT_B...
Use IndexError instead of more general Exception.
Use IndexError instead of more general Exception.
Python
bsd-3-clause
jonathanslenders/python-prompt-toolkit,ddalex/python-prompt-toolkit,melund/python-prompt-toolkit,amjith/python-prompt-toolkit,ALSchwalm/python-prompt-toolkit,niklasf/python-prompt-toolkit
--- +++ @@ -31,7 +31,7 @@ if len(self._stack) > 1: self._stack.pop() else: - raise Exception('Cannot pop last item from the focus stack.') + raise IndexError('Cannot pop last item from the focus stack.') def replace(self, buffer_name): assert buffer...
a55f5c1229e67808560b3b55c65d524a737294fa
experiment/consumers.py
experiment/consumers.py
import datetime import json from channels.generic.websocket import JsonWebsocketConsumer from auth_API.helpers import get_or_create_user_information from experiment.models import ExperimentAction class ExperimentConsumer(JsonWebsocketConsumer): ##### WebSocket event handlers def connect(self): """ ...
import datetime import json from channels.generic.websocket import JsonWebsocketConsumer from auth_API.helpers import get_or_create_user_information from experiment.models import ExperimentAction class ExperimentConsumer(JsonWebsocketConsumer): ##### WebSocket event handlers def connect(self): """ ...
Send what state is saved
Send what state is saved
Python
mit
seakers/daphne_brain,seakers/daphne_brain
--- +++ @@ -39,5 +39,5 @@ experiment_context.current_state = json.dumps(content['state']) experiment_context.save() self.send_json({ - "state": content["state"] + "state": json.loads(experiment_context.current_state) ...
20adc2fa2a15f122d5093da2bbfc9625bb2ed772
exercise1.py
exercise1.py
#!/usr/bin/env python """ Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion This module prints the amount of money that Lakshmi has remaining after the stock transactions. """ __author__ = 'Susan Sim' __email__ = "ses@drsusansim.org" __copyright__ = "2015 Susan Sim" __license__ = "MIT License" ...
#!/usr/bin/env python """ Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion This module prints the amount of money that Lakshmi has remaining after the stock transactions """ __author__ = 'Susan Sim' __email__ = "ses@drsusansim.org" __copyright__ = "2015 Susan Sim" __license__ = "MIT License" ...
Revert "Added period to line 6"
Revert "Added period to line 6" This reverts commit 66ca87943111e5c117578b7407c4e3e752fd195d.
Python
mit
Momomelo/inf1340_2015_asst1
--- +++ @@ -3,7 +3,7 @@ """ Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion This module prints the amount of money that Lakshmi has remaining -after the stock transactions. +after the stock transactions """
b8de193d6d0ca5ef00bebb9c375df141335a1f95
apps/codrspace/views.py
apps/codrspace/views.py
"""Main codrspace views""" from django.shortcuts import render, redirect from settings import GITHUB_CLIENT_ID import requests def index(request, slug=None, template_name="base.html"): return render(request, template_name) def edit(request, slug=None, template_name="edit.html"): """Edit Your Post""" r...
"""Main codrspace views""" from django.shortcuts import render, redirect from settings import GITHUB_CLIENT_ID import requests def index(request, slug=None, template_name="base.html"): return render(request, template_name) def edit(request, slug=None, template_name="edit.html"): """Edit Your Post""" r...
Use all of content in redirect from oauth callback
Use all of content in redirect from oauth callback
Python
mit
durden/dash,durden/dash
--- +++ @@ -36,5 +36,5 @@ raise Exception('code: %u content: %s' % (resp.status_code, resp.content)) - token = resp.content['access_token'] + token = resp.content return redirect('http://www.codrspace.com/%s' % (token))
dae46d466f84ab8694094214b15315e657d80d54
setup.py
setup.py
#!/usr/bin/env python from __future__ import unicode_literals from wagtail_mvc import __version__ from setuptools import setup, find_packages setup( name='wagtail_mvc', version=__version__, description='Allows better separation between ' 'models and views in Wagtail CMS', auth...
#!/usr/bin/env python from __future__ import unicode_literals from wagtail_mvc import __version__ from setuptools import setup, find_packages setup( name='wagtail_mvc', version=__version__, description='Allows better separation between ' 'models and views in Wagtail CMS', auth...
Exclude app dir from package
Exclude app dir from package
Python
mit
fatboystring/Wagtail-MVC,fatboystring/Wagtail-MVC
--- +++ @@ -12,7 +12,7 @@ author_email='dan.stringer1983@googlemail.com', url='https://github.com/fatboystring/Wagtail-MVC/', download_url='https://github.com/fatboystring/Wagtail-MVC/tarball/0.1.0', - packages=find_packages(), + packages=find_packages(exclude=['app']), license='...
808a71ae547348f5ed39b71a261c69f98a211838
akvo/api/serializers.py
akvo/api/serializers.py
# -*- coding: utf-8 -*- # Akvo RSR is covered by the GNU Affero General Public License. # See more details in the license.txt file located at the root folder of the Akvo RSR module. # For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >. from lxml import etree import os from ...
# -*- coding: utf-8 -*- # Akvo RSR is covered by the GNU Affero General Public License. # See more details in the license.txt file located at the root folder of the Akvo RSR module. # For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >. from lxml import etree import os from ...
Fix IATISerializer.from_etree() so it uses iati-xslt.xsl
Fix IATISerializer.from_etree() so it uses iati-xslt.xsl
Python
agpl-3.0
akvo/akvo-rsr,akvo/akvo-rsr,akvo/akvo-rsr,akvo/akvo-rsr
--- +++ @@ -11,10 +11,10 @@ class IATISerializer(Serializer): def from_etree(self, data): - """ transform the iati-activity XML into "tastypie compliant" XML using the 'iati-xslt.xml' stylesheet + """ transform the iati-activity XML into "tastypie compliant" XML using the 'iati-xslt.xsl' stylesh...
0901477d231091e72b4e47e0f5a59a49cb31414d
paystackapi/tests/test_subaccount.py
paystackapi/tests/test_subaccount.py
import httpretty from paystackapi.tests.base_test_case import BaseTestCase from paystackapi.subaccount import SubAccount class TestSubAccount(BaseTestCase): @httpretty.activate def test_subaccount_create(self): pass
import httpretty from paystackapi.tests.base_test_case import BaseTestCase from paystackapi.subaccount import SubAccount class TestSubAccount(BaseTestCase): @httpretty.activate def test_subaccount_create(self): pass """Method defined to test subaccount creation.""" httpretty.registe...
Add test subaccount test creation
Add test subaccount test creation
Python
mit
andela-sjames/paystack-python
--- +++ @@ -9,3 +9,18 @@ @httpretty.activate def test_subaccount_create(self): pass + + """Method defined to test subaccount creation.""" + httpretty.register_uri( + httpretty.POST, + self.endpoint_url("/subaccount"), + content_type='text/json', + ...
0ca502644e66c40089382d13a780a6edc78ddafc
lib/py/src/metrics.py
lib/py/src/metrics.py
import os import datetime import tornado.gen import statsd if os.environ.get("STATSD_URL", None): ip, port = os.environ.get("STATSD_URL").split(':') statsd_client = statsd.StatsClient(host=ip, port=int(port), prefix=os.environ.get('STATSD_PREFIX', ...
import os import datetime import tornado.gen import statsd if os.environ.get("STATSD_URL", None): ip, port = os.environ.get("STATSD_URL").split(':') statsd_client = statsd.StatsClient(host=ip, port=int(port), prefix=os.environ.get('STATSD_PREFIX', ...
Create a statsd_client anyway, even if there is no STATSD_URL env variable set
Create a statsd_client anyway, even if there is no STATSD_URL env variable set
Python
apache-2.0
upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift
--- +++ @@ -9,7 +9,7 @@ prefix=os.environ.get('STATSD_PREFIX', None)) else: - statsd_client = None + statsd_client = statsd.StatsClient() def instrument(name):
0670b48b74dddd05a67f63983f7208f1c0c5efed
fskintra.py
fskintra.py
#! /usr/bin/env python # # # import skoleintra.config import skoleintra.pgContactLists import skoleintra.pgDialogue import skoleintra.pgDocuments import skoleintra.pgFrontpage import skoleintra.pgWeekplans import skoleintra.schildren SKOLEBESTYELSE_NAME = 'Skolebestyrelsen' cnames = skoleintra.schildren.skoleGetChil...
#! /usr/bin/env python # # # import skoleintra.config import skoleintra.pgContactLists import skoleintra.pgDialogue import skoleintra.pgDocuments import skoleintra.pgFrontpage import skoleintra.pgWeekplans import skoleintra.schildren SKOLEBESTYELSE_NAME = 'Skolebestyrelsen' cnames = skoleintra.schildren.skoleGetChil...
Fix last commit: use config.log()
Fix last commit: use config.log()
Python
bsd-2-clause
bennyslbs/fskintra
--- +++ @@ -15,7 +15,7 @@ cnames = skoleintra.schildren.skoleGetChildren() if cnames.count(SKOLEBESTYELSE_NAME): - config.log(u'Ignorerer ['+SKOLEBESTYELSE_NAME+']') + skoleintra.config.log(u'Ignorerer ['+SKOLEBESTYELSE_NAME+']') cnames.remove(SKOLEBESTYELSE_NAME) for cname in cnames:
ce6951b1e5f878ba69ff3f55c500c4309f8f4672
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import versioneer setup(name='s3fs', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: B...
#!/usr/bin/env python from setuptools import setup import versioneer with open('requirements.txt') as file: aiobotocore_version_suffix = '' for line in file: parts = line.rstrip().split('aiobotocore') if len(parts) == 2: aiobotocore_version_suffix = parts[1] break setu...
Add version requirements to extras_require
Add version requirements to extras_require Otherwise, they'll just grab latest-and-greatest.
Python
bsd-3-clause
fsspec/s3fs
--- +++ @@ -2,6 +2,14 @@ from setuptools import setup import versioneer + +with open('requirements.txt') as file: + aiobotocore_version_suffix = '' + for line in file: + parts = line.rstrip().split('aiobotocore') + if len(parts) == 2: + aiobotocore_version_suffix = parts[1] + ...
fdf8e5d872bb6579d7ae6ef7ac4c93040db3f71c
setup.py
setup.py
import os from setuptools import setup, find_packages import subprocess here = os.path.abspath(os.path.dirname(__file__)) def get_version(version=None): "Returns a version number with commit id if the git repo is present" with open(os.path.join(here, 'VERSION')) as version_file: version = version...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'VERSION')) as version_file: version = version_file.read().strip() setup( name='django-geonode-client', version=version, author='Mila Frerichs', author_email='mi...
Revert commit hash in get_version
Revert commit hash in get_version
Python
mit
GeoNode/geonode-client,GeoNode/geonode-client,GeoNode/geonode-client,GeoNode/geonode-client
--- +++ @@ -1,34 +1,13 @@ import os from setuptools import setup, find_packages -import subprocess here = os.path.abspath(os.path.dirname(__file__)) - - -def get_version(version=None): - "Returns a version number with commit id if the git repo is present" - with open(os.path.join(here, 'VERSION')) as versi...
df0c2093366a8f6c4d7d8117d3168303fe39c085
setup.py
setup.py
import subprocess import sys from setuptools import Command, setup class RunTests(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes...
import subprocess import sys from setuptools import Command, setup class RunTests(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes...
Increment version in preparation for release
Increment version in preparation for release
Python
bsd-3-clause
consbio/parserutils
--- +++ @@ -22,7 +22,7 @@ name='parserutils', description='A collection of performant parsing utilities', keywords='parser,parsing,utils,utilities,collections,dates,elements,numbers,strings,url,xml', - version='0.2.4', + version='0.3.0', packages=[ 'parserutils', 'parserutils.tests'...
9bbe3dfa75f5fa91f526ebccdacf4b8e5220e42b
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='Partner Feeds', version=__import__('partner_feeds').__version__, author_email='ATMOprogrammers@theatlantic.com'...
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='django-partner-feeds', version=__import__('partner_feeds').__version__, author_email='ATMOprogrammers@theatlant...
Use more standard package name django-partner-feeds
Use more standard package name django-partner-feeds
Python
bsd-2-clause
theatlantic/django-partner-feeds
--- +++ @@ -7,7 +7,7 @@ setup( - name='Partner Feeds', + name='django-partner-feeds', version=__import__('partner_feeds').__version__, author_email='ATMOprogrammers@theatlantic.com', packages=find_packages(),
ef81b053e0e32546354dfc86be2c5d4b1e0f74ac
setup.py
setup.py
from setuptools import setup, find_packages setup( name='panoptescli', version='1.0.1', url='https://github.com/zooniverse/panoptes-cli', author='Adam McMaster', author_email='adam@zooniverse.org', description=( 'A command-line client for Panoptes, the API behind the Zooniverse' ), ...
from setuptools import setup, find_packages setup( name='panoptescli', version='1.0.1', url='https://github.com/zooniverse/panoptes-cli', author='Adam McMaster', author_email='adam@zooniverse.org', description=( 'A command-line client for Panoptes, the API behind the Zooniverse' ), ...
Update pyyaml requirement to >=3.12,<4.2
Update pyyaml requirement to >=3.12,<4.2 Updates the requirements on [pyyaml](https://github.com/yaml/pyyaml) to permit the latest version. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](https://github.com/yaml/pyyaml/commits/4.1...
Python
apache-2.0
zooniverse/panoptes-cli
--- +++ @@ -13,7 +13,7 @@ include_package_data=True, install_requires=[ 'Click>=6.7,<6.8', - 'PyYAML>=3.12,<3.13', + 'PyYAML>=3.12,<4.2', 'panoptes-client>=1.0,<2.0', ], entry_points='''
24bda30926d06a6fdc457c61c26fd5a48b4b0755
setup.py
setup.py
from setuptools import setup setup( name = "django-safe-project", version = "0.0.3", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = ("Start Django projects with sensitive data outside of the " "global settings module"), url...
from setuptools import setup setup( name = "django-safe-project", version = "0.0.4", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = ("Start Django projects with sensitive data outside of the " "global settings module"), url...
Bump version due to failed markdown/rST conversion in README
Bump version due to failed markdown/rST conversion in README
Python
mit
nocarryr/django-safe-project
--- +++ @@ -2,7 +2,7 @@ setup( name = "django-safe-project", - version = "0.0.3", + version = "0.0.4", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = ("Start Django projects with sensitive data outside of the "
dd0d4854e59e85e101612057d4681aa77c5fde65
setup.py
setup.py
import codecs from setuptools import setup import pypandoc long_desc = '' with codecs.open('README.md', 'r', 'utf-8') as f: logn_desc_md = f.read() with codecs.open('README.rst', 'w', 'utf-8') as rf: long_desc = pypandoc.convert('README.md', 'rst') rf.write(long_desc) setup(name='cronquot', ...
import codecs from setuptools import setup try: import pypandoc is_travis = False except ImportError as e: import os if not 'TRAVIS' in os.environ: raise ImportError(e) else: is_travis = True def _create_log_desc(travis): if is_travis: return '' _long_desc = '' ...
Fix testing error in travis.
Fix testing error in travis.
Python
mit
pyohei/cronquot,pyohei/cronquot
--- +++ @@ -1,13 +1,25 @@ import codecs from setuptools import setup -import pypandoc +try: + import pypandoc + is_travis = False +except ImportError as e: + import os + if not 'TRAVIS' in os.environ: + raise ImportError(e) + else: + is_travis = True -long_desc = '' -with codecs.open(...
341d8bf56a6664be931549566f809ea69427d67a
setup.py
setup.py
from setuptools import setup, find_packages import sys execfile('yas3fs/_version.py') requires = ['setuptools>=2.2', 'boto>=2.25.0'] # Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all # include this as the replacement for optparse. if sys.version_info[:2] < (2, 7): requires.append("argpar...
from setuptools import setup, find_packages import sys exec(open('yas3fs/_version.py').read()) requires = ['setuptools>=2.2', 'boto>=2.25.0'] # Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all # include this as the replacement for optparse. if sys.version_info[:2] < (2, 7): requires.appen...
Replace `execfile()` with `exec(open().read())` for python3
Replace `execfile()` with `exec(open().read())` for python3
Python
mit
danilop/yas3fs,danilop/yas3fs
--- +++ @@ -2,7 +2,7 @@ import sys -execfile('yas3fs/_version.py') +exec(open('yas3fs/_version.py').read()) requires = ['setuptools>=2.2', 'boto>=2.25.0']
3f0f1d8202a26916dfcab616c1bec02f31da330b
setup.py
setup.py
""" 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...
""" Setup file for distutils """ from distutils.core import setup from setuptools import find_packages setup( name='python-gdrive', version='0.2', author='Tony Sanchez', author_email='mail.tsanchez@gmail.com', url='https://github.com/tsanch3z/python-gdrive', download_url='https://github.com/t...
Change version 0.1 -> 0.2
Change version 0.1 -> 0.2
Python
apache-2.0
cogniteev/python-gdrive
--- +++ @@ -7,7 +7,7 @@ setup( name='python-gdrive', - version='0.1', + version='0.2', author='Tony Sanchez', author_email='mail.tsanchez@gmail.com', url='https://github.com/tsanch3z/python-gdrive',
6081ffcbf587352ede305e34d78c32f9ed78f44f
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-theherk-events', version='1.8', packages=find_packages(), include_package_data=True, install_requires=[ 'django-cms>=2.4.1', ...
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-theherk-events', version='1.8.1', packages=find_packages(), include_package_data=True, install_requires=[ 'django-cms>=2.4.1', ...
Update for new version 1.8.1
Update for new version 1.8.1
Python
bsd-3-clause
theherk/django-theherk-events
--- +++ @@ -7,7 +7,7 @@ setup( name='django-theherk-events', - version='1.8', + version='1.8.1', packages=find_packages(), include_package_data=True, install_requires=[ @@ -18,7 +18,7 @@ description='Django CMS plugin to track events on multiple calendars', long_description=read...
a45fa05bc1f8c5f8c72db54484f8a18d2c53dadc
ibmcnx/doc/DataSources.py
ibmcnx/doc/DataSources.py
###### # Check ExId (GUID) by Email through JDBC # # Author: Christoph Stoettner # Mail: christoph.stoettner@stoeps.de # Documentation: http://scripting101.stoeps.de # # Version: 2.0 # Date: 2014-06-04 # # License: Apache 2.0 # # Check ExId of a User in all Connections Appli...
###### # Check ExId (GUID) by Email through JDBC # # Author: Christoph Stoettner # Mail: christoph.stoettner@stoeps.de # Documentation: http://scripting101.stoeps.de # # Version: 2.0 # Date: 2014-06-04 # # License: Apache 2.0 # # Check ExId of a User in all Connections Appli...
Create documentation of DataSource Settings
: Create documentation of DataSource Settings Task-Url:
Python
apache-2.0
stoeps13/ibmcnx2,stoeps13/ibmcnx2
--- +++ @@ -19,6 +19,6 @@ cellid = AdminConfig.getid( cell ) dbs = AdminConfig.list( 'DataSource', str(cellid) ) -for db in dbs: +for db in dbs.splitlines(): t1 = ibmcnx.functions.getDSId( db ) AdminConfig.list( t1 )
4559acc15b009be5d853dfdad0fdc9d3184370df
ibmcnx/doc/DataSources.py
ibmcnx/doc/DataSources.py
###### # Check ExId (GUID) by Email through JDBC # # Author: Christoph Stoettner # Mail: christoph.stoettner@stoeps.de # Documentation: http://scripting101.stoeps.de # # Version: 2.0 # Date: 2014-06-04 # # License: Apache 2.0 # # Check ExId of a User in all Connections Appli...
###### # Check ExId (GUID) by Email through JDBC # # Author: Christoph Stoettner # Mail: christoph.stoettner@stoeps.de # Documentation: http://scripting101.stoeps.de # # Version: 2.0 # Date: 2014-06-04 # # License: Apache 2.0 # # Check ExId of a User in all Connections Appli...
Create documentation of DataSource Settings
: Create documentation of DataSource Settings Task-Url:
Python
apache-2.0
stoeps13/ibmcnx2,stoeps13/ibmcnx2
--- +++ @@ -21,3 +21,4 @@ AdminConfig.show( t1 ) print '\n\n' AdminConfig.showall( t1 ) + AdminConfig.showAttribute(t1,'[[statementCacheSize]]' )
c297b882cbe5139062672dbb295c2b42adfc1ed8
setup.py
setup.py
from setuptools import setup setup( name='bwapi', version='3.2.0', description='A software development kit for the Brandwatch API', url='https://github.com/BrandwatchLtd/api_sdk', author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden', author_email='amyb@brandwatch.com, paul@br...
from setuptools import setup setup( name='bwapi', version='3.2.0', description='A software development kit for the Brandwatch API', url='https://github.com/BrandwatchLtd/api_sdk', author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden', author_email='amyb@brandwatch.com, paul@br...
Add authenticate.py to installed scripts
Add authenticate.py to installed scripts
Python
mit
anthonybu/api_sdk,BrandwatchLtd/api_sdk
--- +++ @@ -31,6 +31,8 @@ py_modules=['bwproject', 'bwresources', 'bwdata', 'filters'], + scripts=['authenticate.py'], + install_requires=['requests'], tests_require=['responses']
af0b2b4ae205adb59e9e1922ca6ec10d491ebf2a
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='tequila-sessions', version='1.0.0', description='Requests session for Tequila (EPFL login manager)', author='Antoine Albertelli', author_email='antoine.albertelli+github@gmail.com', url='https://github.com/antoinealb/pyth...
#!/usr/bin/env python from distutils.core import setup setup(name='tequila-sessions', version='1.0.1', description='Requests session for Tequila (EPFL login manager)', author='Antoine Albertelli', author_email='antoine.albertelli+github@gmail.com', url='https://github.com/antoinealb/pyth...
Use BeautifulSoup 4.x instead of 3.x
Use BeautifulSoup 4.x instead of 3.x BS 3.x is obsolete, switch to more recent version
Python
bsd-3-clause
antoinealb/python-tequila
--- +++ @@ -3,11 +3,11 @@ from distutils.core import setup setup(name='tequila-sessions', - version='1.0.0', + version='1.0.1', description='Requests session for Tequila (EPFL login manager)', author='Antoine Albertelli', author_email='antoine.albertelli+github@gmail.com', ur...
d404b6d606aff840819f9e811a429bd472a72e56
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==0.24.2', 'cvxopt==1.2.3', ...
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==0.24.2', 'cvxopt==1.2.3', ...
Bump statsmodels from 0.9.0 to 0.10.1
Bump statsmodels from 0.9.0 to 0.10.1 Bumps [statsmodels](https://github.com/statsmodels/statsmodels) from 0.9.0 to 0.10.1. - [Release notes](https://github.com/statsmodels/statsmodels/releases) - [Changelog](https://github.com/statsmodels/statsmodels/blob/master/CHANGES.md) - [Commits](https://github.com/statsmodels/...
Python
apache-2.0
bugra/l1
--- +++ @@ -11,7 +11,7 @@ packages=['l1'], install_requires=['pandas==0.24.2', 'cvxopt==1.2.3', - 'statsmodels==0.9.0', + 'statsmodels==0.10.1', ] )
229c71fd33956e27fc70468f3ff3d6c87796b574
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='django-post_office', version='1.1.1', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['post_office'], url='https://github.com/ui/django-post_office', license='MIT', description='A Django app to monitor...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='django-post_office', version='1.1.1', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['post_office'], url='https://github.com/ui/django-post_office', license='MIT', description='A Django app to monitor...
Include six as a requirement.
Include six as a requirement.
Python
mit
RafRaf/django-post_office,yprez/django-post_office,ekohl/django-post_office,fapelhanz/django-post_office,ui/django-post_office,JostCrow/django-post_office,ui/django-post_office,jrief/django-post_office
--- +++ @@ -14,7 +14,7 @@ zip_safe=False, include_package_data=True, package_data={'': ['README.rst']}, - install_requires=['django>=1.4', 'jsonfield'], + install_requires=['django>=1.4', 'jsonfield', 'six', ], classifiers=[ 'Development Status :: 5 - Production/Stable', 'E...
8b6429173e177acf3b1303e71ef717a2f26d950b
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='wafw00f', version=__import__('wafw00f').__version__, description=('WAFW00F identifies and fingerprints ' 'Web Application Firewall (WAF) products.'), author='sandrogauci', author_email='sandro@enables...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='wafw00f', version=__import__('wafw00f').__version__, description=('WAFW00F identifies and fingerprints ' 'Web Application Firewall (WAF) products.'), author='sandrogauci', author_email='sandro@enables...
Add classifiers and Keywords per PyPi sample
Add classifiers and Keywords per PyPi sample https://github.com/pypa/sampleproject/blob/master/setup.py
Python
bsd-3-clause
EnableSecurity/wafw00f,sandrogauci/wafw00f
--- +++ @@ -19,6 +19,17 @@ 'beautifulsoup4==4.6.0', 'pluginbase==0.3', ], + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: System Administrators', + 'Intended Audience :: Information Technology', + 'Topic :: Internet', + ...
a101321fecca49754cf3a640fbfac19953fd56fb
setup.py
setup.py
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def _read_file(name, encoding='utf-8'): """ Read the contents of a file. :param name: The name of the file in the current directory. :param encoding: The encoding of the file; defaults to utf-8. :return: The content...
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def _read_file(name, encoding='utf-8'): """ Read the contents of a file. :param name: The name of the file in the current directory. :param encoding: The encoding of the file; defaults to utf-8. :return: The content...
Make chandl available directly on the command line
Make chandl available directly on the command line
Python
mit
gebn/chandl,gebn/chandl
--- +++ @@ -36,5 +36,10 @@ 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Utilities' - ] + ], + entry_points={ + 'console_scripts': [ + 'chandl = chandl.__main__:main', + ] + } )
6cd2a721d90c991b7c7dde221affd6ebecf70e95
setup.py
setup.py
from distutils.core import setup, Extension setup(name="fastcache", version="0.1", packages = ["fastcache", "fastcache.tests"], ext_modules= [Extension("fastcache._lrucache", ["src/_lrucache.c"], ), ] )
from distutils.core import setup, Extension setup(name="fastcache", version="0.1", packages = ["fastcache", "fastcache.tests"], ext_modules= [Extension("fastcache._lrucache", ["src/_lrucache.c"], extra_compile_args=['-std=c99']), ] )
Fix travis build error by specifying compiler arg -std=c99
Fix travis build error by specifying compiler arg -std=c99
Python
mit
pbrady/fastcache,pbrady/fastcache,pbrady/fastcache
--- +++ @@ -3,7 +3,7 @@ packages = ["fastcache", "fastcache.tests"], ext_modules= [Extension("fastcache._lrucache", ["src/_lrucache.c"], - ), + extra_compile_args=['-std=c99']), ] )
42ba81023397eb7bdf9361e981102aec0dd65a0b
setup.py
setup.py
#/usr/bin/env python from setuptools import setup try: readme = open("README.rst") long_description = str(readme.read()) finally: readme.close() setup( name='pyziptax', version='1.0', description='Python API for accessing sales tax information from Zip-Tax.com', long_description=long_descr...
#/usr/bin/env python from setuptools import setup try: readme = open("README.rst") long_description = str(readme.read()) finally: readme.close() setup( name='pyziptax', version='1.1', description='Python API for accessing sales tax information from Zip-Tax.com', long_description=long_descr...
Update package to version 1.1
Update package to version 1.1
Python
apache-2.0
albertyw/pyziptax
--- +++ @@ -9,7 +9,7 @@ setup( name='pyziptax', - version='1.0', + version='1.1', description='Python API for accessing sales tax information from Zip-Tax.com', long_description=long_description, author='Albert Wang',
b2f1c1c54f3ebb3c95de0032fc13fc03997d222c
setup.py
setup.py
from setuptools import setup import sys import cozify with open('README.rst') as file: long_description = file.read() setup( name='cozify', version=cozify.__version__, python_requires='>=3.5', author='artanicus', author_email='python-cozify@nocturnal.fi', url='https://github.com/Artanicus...
from setuptools import setup import sys import cozify with open('README.rst') as file: long_description = file.read() setup( name='cozify', version=cozify.__version__, python_requires='>=3.6', author='artanicus', author_email='python-cozify@nocturnal.fi', url='https://github.com/Artanicus...
Fix python version syntax errors, bump minimum to 3.6 [no ci]
Fix python version syntax errors, bump minimum to 3.6 [no ci]
Python
mit
Artanicus/python-cozify,Artanicus/python-cozify
--- +++ @@ -9,7 +9,7 @@ setup( name='cozify', version=cozify.__version__, - python_requires='>=3.5', + python_requires='>=3.6', author='artanicus', author_email='python-cozify@nocturnal.fi', url='https://github.com/Artanicus/python-cozify', @@ -27,8 +27,8 @@ 'Topic :: Utilitie...
10fc032aafb22801fbb73accc7930cb57636e10c
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except: return '' setup( name='todoist-python', version='0.2.8', packages=['todoist', 'todoist.managers'], author='Doist Team'...
# -*- coding: utf-8 -*- import os from setuptools import setup def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except: return '' setup( name='todoist-python', version='0.2.9', packages=['todoist', 'todoist.managers'], author='Doist Team'...
Update the PyPI version to 0.2.9
Update the PyPI version to 0.2.9
Python
mit
Doist/todoist-python,electronick1/todoist-python
--- +++ @@ -10,7 +10,7 @@ setup( name='todoist-python', - version='0.2.8', + version='0.2.9', packages=['todoist', 'todoist.managers'], author='Doist Team', author_email='info@todoist.com',
03dc8e57616984631cf48fa91cee9ae2292dc067
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...
Add explanatory note for the req-unixsockets version dependency
Add explanatory note for the req-unixsockets version dependency
Python
apache-2.0
lxc/pylxd,lxc/pylxd
--- +++ @@ -28,6 +28,7 @@ setup_requires=[ 'pbr>=1.8', 'requests!=2.8.0,>=2.5.2', + # >= 0.1.5 needed for HTTP_PROXY support 'requests-unixsocket>=0.1.5', ], pbr=True)
cb59ed68e390d92b8ba2d6aaeece998bd389d64b
setup.py
setup.py
from setuptools import setup, find_packages try: from pyqt_distutils.build_ui import build_ui cmdclass={'build_ui': build_ui} except ImportError: cmdclass={} pass setup( name='gauges', version='0.1', description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo', url='http://gi...
from setuptools import setup, find_packages try: from pyqt_distutils.build_ui import build_ui cmdclass={'build_ui': build_ui} except ImportError: cmdclass={} setup( name='gauges', version='0.1', description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo', url='http://github.com/...
Remove unneeded `pass` in except block.
Remove unneeded `pass` in except block.
Python
mit
estan/gauges
--- +++ @@ -5,7 +5,6 @@ cmdclass={'build_ui': build_ui} except ImportError: cmdclass={} - pass setup( name='gauges',
6eff80bcf12357e943d705b8812822b1c0c0e409
tests/sentry/metrics/test_datadog.py
tests/sentry/metrics/test_datadog.py
from __future__ import absolute_import import socket from mock import patch from sentry.metrics.datadog import DatadogMetricsBackend from sentry.testutils import TestCase class DatadogMetricsBackendTest(TestCase): def setUp(self): self.backend = DatadogMetricsBackend(prefix='sentrytest.') @patch('...
from __future__ import absolute_import import socket from mock import patch from sentry.metrics.datadog import DatadogMetricsBackend from sentry.testutils import TestCase class DatadogMetricsBackendTest(TestCase): def setUp(self): self.backend = DatadogMetricsBackend(prefix='sentrytest.') @patch('...
Remove no longer valid test
Remove no longer valid test
Python
bsd-3-clause
pauloschilling/sentry,pauloschilling/sentry,pauloschilling/sentry
--- +++ @@ -17,7 +17,6 @@ self.backend.incr('foo', instance='bar') mock_incr.assert_called_once_with( 'sentrytest.foo', 1, - sample_rate=1, tags=['instance:bar'], host=socket.gethostname(), )
1a9c9b60d8e0b69b5d196ff8323befd6d9e330aa
make_mozilla/events/models.py
make_mozilla/events/models.py
from django.contrib.gis.db import models from django.contrib.gis import geos from datetime import datetime class Venue(models.Model): name = models.CharField(max_length=255) street_address = models.TextField() country = models.CharField(max_length=255) location = models.PointField(blank=True) obj...
from django.contrib.gis.db import models from django.contrib.gis import geos from datetime import datetime class Venue(models.Model): name = models.CharField(max_length=255) street_address = models.TextField() country = models.CharField(max_length=255) location = models.PointField(blank=True) obj...
Allow blank source_id in event, tweak formatting of the code
Allow blank source_id in event, tweak formatting of the code
Python
bsd-3-clause
mozilla/make.mozilla.org,mozilla/make.mozilla.org,mozilla/make.mozilla.org,mozilla/make.mozilla.org
--- +++ @@ -32,13 +32,13 @@ self.location.y = value class Event(models.Model): - name = models.CharField(max_length=255) - event_url = models.CharField(max_length=255, blank = True) + name = models.CharField(max_length = 255) + event_url = models.CharField(max_length = 255, blank = True) ...
5eb67411a44366ed90a6078f29f1977013c1a39c
awx/main/migrations/0017_v300_prompting_migrations.py
awx/main/migrations/0017_v300_prompting_migrations.py
# -*- coding: utf-8 -*- from __future__ import unicode_literals from awx.main.migrations import _ask_for_variables as ask_for_variables from awx.main.migrations import _migration_utils as migration_utils from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('main', '0...
# -*- coding: utf-8 -*- from __future__ import unicode_literals from awx.main.migrations import _rbac as rbac from awx.main.migrations import _ask_for_variables as ask_for_variables from awx.main.migrations import _migration_utils as migration_utils from django.db import migrations class Migration(migrations.Migrati...
Rebuild role hierarchy after making changes in migrations
Rebuild role hierarchy after making changes in migrations Signals don't fire in migrations, so gotta do this step manually
Python
apache-2.0
snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx
--- +++ @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals +from awx.main.migrations import _rbac as rbac from awx.main.migrations import _ask_for_variables as ask_for_variables from awx.main.migrations import _migration_utils as migration_utils from django.db import migrations @@ ...
bb90fe7c59435d1bef361b64d4083710ffadcf7f
common/apps.py
common/apps.py
from django.apps import AppConfig from django.conf import settings from common.helpers.db import db_is_initialized class CommonConfig(AppConfig): name = 'common' def ready(self): self.display_missing_environment_variables() from common.helpers.tags import import_tags_from_csv if db_is...
from django.apps import AppConfig from django.conf import settings from common.helpers.db import db_is_initialized class CommonConfig(AppConfig): name = 'common' def ready(self): self.display_missing_environment_variables() from common.helpers.tags import import_tags_from_csv if db_is...
Stop server startup when required environment variables are missing
Stop server startup when required environment variables are missing
Python
mit
DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange
--- +++ @@ -15,4 +15,7 @@ def display_missing_environment_variables(self): for key, value in settings.ENVIRONMENT_VARIABLE_WARNINGS.items(): if not hasattr(settings, key): - print(value['message']) + if value['error']: + raise EnvironmentErro...
8cadb30e1c1f4d8e6302a3960408823179a263c8
account_invoice_partner/__openerp__.py
account_invoice_partner/__openerp__.py
# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>). # # This program is free software: you can redistribute it and/or modify # it under the term...
# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>). # # This program is free software: you can redistribute it and/or modify # it under the term...
Add OCA as author of OCA addons
Add OCA as author of OCA addons In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association.
Python
agpl-3.0
OCA/account-invoicing,OCA/account-invoicing
--- +++ @@ -21,7 +21,7 @@ { "name": "Automatically select invoicing partner on invoice", "version": "0.2", - "author": "Therp BV", + "author": "Therp BV,Odoo Community Association (OCA)", "category": 'Accounting & Finance', 'website': 'https://github.com/OCA/account-invoicing', 'licens...
442b083e9d1618569aa96a653ed2c0e4dfc27e59
saleor/search/forms.py
saleor/search/forms.py
from django import forms from .backends import get_search_backend class SearchForm(forms.Form): q = forms.CharField(label='Query', required=True) def search(self, model_or_queryset): backend = get_search_backend('default') query = self.cleaned_data['q'] results = backend.search(query...
from django import forms from django.utils.translation import pgettext from .backends import get_search_backend class SearchForm(forms.Form): q = forms.CharField(label=pgettext('Search form label', 'Query'), required=True) def search(self, model_or_queryset): backend = get_search_backend('default') ...
Add contextual marker for search app
Add contextual marker for search app
Python
bsd-3-clause
jreigel/saleor,car3oon/saleor,KenMutemi/saleor,HyperManTT/ECommerceSaleor,itbabu/saleor,UITools/saleor,HyperManTT/ECommerceSaleor,UITools/saleor,maferelo/saleor,tfroehlich82/saleor,mociepka/saleor,mociepka/saleor,UITools/saleor,maferelo/saleor,UITools/saleor,tfroehlich82/saleor,UITools/saleor,jreigel/saleor,itbabu/sale...
--- +++ @@ -1,10 +1,11 @@ from django import forms +from django.utils.translation import pgettext from .backends import get_search_backend class SearchForm(forms.Form): - q = forms.CharField(label='Query', required=True) + q = forms.CharField(label=pgettext('Search form label', 'Query'), required=True)...
6faf5a38083fd21fbf7ed80d785873c977b8de09
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "P...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "P...
Update install_requires: pycopg2 >= 2.5
Update install_requires: pycopg2 >= 2.5
Python
apache-2.0
lpsinger/testing.postgresql,tk0miya/testing.postgresql
--- +++ @@ -16,7 +16,7 @@ "Topic :: Software Development :: Testing", ] -install_requires = ['psycopg2'] +install_requires = ['psycopg2 >= 2.5'] if sys.version_info < (2, 7): install_requires.append('unittest2')
e9cd60485ebfbe0afee60a70aea318e3e820f948
setup.py
setup.py
#!/usr/bin/env python3 import os from setuptools import setup, find_packages def get_readme(): return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup( author="Julio Gonzalez Altamirano", author_email='devjga@gmail.com', classifiers=[ 'Intended Audience :: Developers',...
#!/usr/bin/env python3 import os from setuptools import setup, find_packages def get_readme(): return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup( author="Julio Gonzalez Altamirano", author_email='devjga@gmail.com', classifiers=[ 'Intended Audience :: Developers',...
Add table generation console script.
Add table generation console script.
Python
mit
jga/capmetrics-etl,jga/capmetrics-etl
--- +++ @@ -20,6 +20,7 @@ entry_points={ 'console_scripts': [ 'capmetrics=capmetrics_etl.cli:run', + 'capmetrics-tables=capmetrics_etl.cli.tables' ], }, install_requires=['click', 'pytz', 'sqlalchemy', 'xlrd'],
52b481e77756530ae14de2e55a977dfac269f6b5
model/hss/__init__.py
model/hss/__init__.py
# -*- coding: utf-8 -*- from flask.ext.babel import gettext from ..division import Division from database_utils import init_db from ldap_utils import init_ldap from ipaddress import IPv4Network import user def init_context(app): init_db(app) init_ldap(app) division = Division( name='hss', display_n...
# -*- coding: utf-8 -*- from flask.ext.babel import gettext from ..division import Division from database_utils import init_db from ldap_utils import init_ldap from ipaddress import IPv4Network import user def init_context(app): init_db(app) init_ldap(app) division = Division( name='hss', display_n...
Make data source module for hss division debug-only, until it is fixed
Make data source module for hss division debug-only, until it is fixed
Python
mit
MarauderXtreme/sipa,fgrsnau/sipa,agdsn/sipa,lukasjuhrich/sipa,agdsn/sipa,agdsn/sipa,lukasjuhrich/sipa,MarauderXtreme/sipa,lukasjuhrich/sipa,agdsn/sipa,fgrsnau/sipa,MarauderXtreme/sipa,fgrsnau/sipa,lukasjuhrich/sipa
--- +++ @@ -25,5 +25,6 @@ IPv4Network(u'141.30.215.128/25'), # HSS 48 IPv4Network(u'141.30.219.0/24'), # HSS 50 ], - init_context=init_context + init_context=init_context, + debug_only=True )
61b5bc8a7e81225a83d195e016bc4adbd7ca1db5
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pymediainfo', version='2.1.5', author='Louis Sautier', author_email='sautier.louis@gmail.com', url='https://github.com/sbraz/pymediainfo', description="""A Python wrapper for the mediainfo library.""", packages=find_packages(), na...
from setuptools import setup, find_packages setup( name='pymediainfo', version='2.1.5', author='Louis Sautier', author_email='sautier.louis@gmail.com', url='https://github.com/sbraz/pymediainfo', description="""A Python wrapper for the mediainfo library.""", packages=find_packages(), na...
Add Python 2.6 to classifiers
Add Python 2.6 to classifiers
Python
mit
paltman/pymediainfo,paltman-archive/pymediainfo
--- +++ @@ -16,6 +16,7 @@ test_suite="nose.collector", classifiers=[ "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language ::...
1c9feb7b2d9a4ac1a1d3bef42139ec5a7f26b95e
jsonrpcclient/__init__.py
jsonrpcclient/__init__.py
"""__init__.py""" import logging logger = logging.getLogger('jsonrpcclient') logger.addHandler(logging.StreamHandler()) from jsonrpcclient.server import Server
"""__init__.py""" import logging logger = logging.getLogger('jsonrpcclient') logger.addHandler(logging.StreamHandler()) logger.setLevel(logging.WARNING) from jsonrpcclient.server import Server
Set the loglevel again, seems like in certain situations, the default log level is 0
Set the loglevel again, seems like in certain situations, the default log level is 0
Python
mit
bcb/jsonrpcclient
--- +++ @@ -4,5 +4,6 @@ logger = logging.getLogger('jsonrpcclient') logger.addHandler(logging.StreamHandler()) +logger.setLevel(logging.WARNING) from jsonrpcclient.server import Server
b20c1f0c5a71d46b80b405b6561869dfd52307c1
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as f: return f.read() setup( name='botnet', version='0.1.0', author='boreq', description = ('IRC bot.'), long_description=read('README.md'), url='https...
import os from setuptools import setup, find_packages def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as f: return f.read() setup( name='botnet', version='0.1.0', author='boreq', description = ('IRC bot.'), long_description=read('README.md'), url='https...
Fix pip developers beliving that they know what is the best for everyone else
Fix pip developers beliving that they know what is the best for everyone else
Python
mit
boreq/botnet
--- +++ @@ -23,13 +23,10 @@ 'protobuf>=3.0', 'requests-oauthlib>=0.7.0', 'beautifulsoup4>=4.6.0', - 'markov==0.0.0', + 'markov @ git+https://github.com/boreq/markov#egg=markov-0.0.0', ], entry_points=''' [console_scripts] botnet=botnet.cli:cli - ...
e38fae5f5115b0707c16afe6b796609338da9bca
setup.py
setup.py
import codecs from setuptools import setup def read_lines_from_file(filename): with codecs.open(filename, encoding='utf-8') as f: return [line.rstrip('\n') for line in f] long_description = read_lines_from_file('README.rst') setup( name='Weitersager', version='0.2-dev', description='A pro...
import codecs from setuptools import setup def read_lines_from_file(filename): with codecs.open(filename, encoding='utf-8') as f: return [line.rstrip('\n') for line in f] long_description = read_lines_from_file('README.rst') requirements = read_lines_from_file('requirements.txt') setup( name='Wei...
Read installation requirements from dedicated file
Read installation requirements from dedicated file Removes duplication.
Python
mit
homeworkprod/weitersager
--- +++ @@ -9,6 +9,7 @@ long_description = read_lines_from_file('README.rst') +requirements = read_lines_from_file('requirements.txt') setup( @@ -39,8 +40,5 @@ 'Topic :: Utilities', ], packages=['weitersager'], - install_requires=[ - 'blinker==1.4', - 'irc==12.3', - ],...
26d063cd78140d69160e16364a6cdda1e26516d2
setup.py
setup.py
# coding=utf-8 import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '1.0-a' install_requires = [ 'jnius>=1.0', ] setup( name='engerek', ...
# coding=utf-8 import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '1.0-a' install_requires = [ 'jnius==1.1-dev', 'Cython==0.19.2', ] setup...
Use github master for pyjnius
Use github master for pyjnius
Python
apache-2.0
cilekagaci/engerek
--- +++ @@ -10,7 +10,8 @@ version = '1.0-a' install_requires = [ - 'jnius>=1.0', + 'jnius==1.1-dev', + 'Cython==0.19.2', ] setup( @@ -34,5 +35,6 @@ install_requires=install_requires, entry_points={ #'console_scripts': ['engerek=engerek:main'], - } + }, + dependency_links =...
80019f7d0b1ef1d8624e6e9739c069af38a2ed5c
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.2.1dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oe...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.2.1dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oe...
Add matplotlib as dev dependency
Add matplotlib as dev dependency
Python
mit
wind-python/windpowerlib
--- +++ @@ -24,4 +24,4 @@ 'requests < 3.0'], extras_require={ 'dev': ['pytest', 'jupyter', 'sphinx_rtd_theme', 'nbformat', - 'numpy']}) + 'numpy', 'matplotlib']})
c79b729a5dda5661a5eb2e640aa402aab6f397a2
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name="segfault", version="0.0.1", author="Sean Kelly", author_email="sean.kelly.2992@gmail.com", description="A library that makes the Python interpreter segfault.", license="MIT", keywords="segfault", py_modules=['segfault'], )
#!/usr/bin/env python from setuptools import setup setup( name="segfault", version="0.0.1", author="Sean Kelly", author_email="sean.kelly.2992@gmail.com", description="A library that makes the Python interpreter segfault.", license="MIT", keywords="segfault", py_modules=['segfault', 'sat...
Add 'satire' tag to escape orange website ridicule
Add 'satire' tag to escape orange website ridicule
Python
mit
cbgbt/segfault,cbgbt/segfault
--- +++ @@ -8,5 +8,5 @@ description="A library that makes the Python interpreter segfault.", license="MIT", keywords="segfault", - py_modules=['segfault'], + py_modules=['segfault', 'satire'], )
45e8df4123926f56391809f78ef22d4e012a4bf8
setup.py
setup.py
import sys try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() import setuptools from pip import req from setuptools.command import test REQ = set([dep.name for dep in req.parse_requirements('requirements/base.txt')]) TREQ = set([dep.name ...
import sys try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() import setuptools from pip import req from setuptools.command import test REQ = set([dep.name for dep in req.parse_requirements('requirements/base.txt')]) TREQ = set([dep.name ...
Add PyYAML to ``ssl`` extras_require
Add PyYAML to ``ssl`` extras_require
Python
bsd-3-clause
rafaduran/python-mcollective,rafaduran/python-mcollective,rafaduran/python-mcollective,rafaduran/python-mcollective
--- +++ @@ -36,6 +36,6 @@ setuptools.setup(setup_requires=('d2to1',), install_requires=REQ, tests_require=TREQ, - extras_require={'ssl': ('pycrypto',)}, + extras_require={'ssl': ('pycrypto', 'PyYAML')}, cmdclass={'test': PyTest}, ...
b43e6636932d34743b4680898b235dfdcc1cd934
setup.py
setup.py
#!/usr/bin/python2.4 from distutils.core import setup setup(name='mox', version='0.5.1', py_modules=['mox', 'stubout'], url='http://code.google.com/p/pymox/', maintainer='pymox maintainers', maintainer_email='mox-discuss@googlegroups.com', license='Apache License, Version 2.0', ...
#!/usr/bin/python2.4 from distutils.core import setup setup(name='mox', version='0.5.2', py_modules=['mox', 'stubout'], url='http://code.google.com/p/pymox/', maintainer='pymox maintainers', maintainer_email='mox-discuss@googlegroups.com', license='Apache License, Version 2.0', ...
Increment version number to 0.5.2 for new release.
Increment version number to 0.5.2 for new release.
Python
apache-2.0
glasser/pymox,JustinAtPsycle/pymox,arne-cl/pymox,githubashto/pymox,shraddha-pandhe/pymox,MarkBerlin78/pymox,qin/pymox,ivancrneto/pymox,jackxiang/pymox
--- +++ @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='mox', - version='0.5.1', + version='0.5.2', py_modules=['mox', 'stubout'], url='http://code.google.com/p/pymox/', maintainer='pymox maintainers',
6c03cb4e97ddd06b51d8cdb553a552ce49e9fad4
setup.py
setup.py
from setuptools import setup, find_packages setup(name="153957-theme", version="1.0.0", packages=find_packages(), url="http://github.com/153957/153957-theme/", bugtrack_url='http://github.com/153957/153957-theme/issues', license='MIT', author="Arne de Laat", author_email="arne...
from setuptools import setup, find_packages setup( name="153957-theme", version="1.0.0", packages=find_packages(), url="http://github.com/153957/153957-theme/", bugtrack_url='http://github.com/153957/153957-theme/issues', license='MIT', author="Arne de Laat", author_email="arne@delaat.n...
Add theme templates and static as package_data.
Add theme templates and static as package_data.
Python
mit
153957/153957-theme,153957/153957-theme
--- +++ @@ -1,21 +1,30 @@ from setuptools import setup, find_packages -setup(name="153957-theme", - version="1.0.0", - packages=find_packages(), - url="http://github.com/153957/153957-theme/", - bugtrack_url='http://github.com/153957/153957-theme/issues', - license='MIT', - author="Ar...
8846415aa0a362ceee1e8c07f35310cff00223c0
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup py_files = [ "ansible/module_utils/hashivault", "ansible/plugins/lookup/hashivault", "ansible/plugins/action/hashivault_read_to_file", "ansible/plugins/action/hashivault_write_from_file", ] files = [ "ansible/modules/hashivault", ] long_descriptio...
#!/usr/bin/env python from setuptools import setup py_files = [ "ansible/module_utils/hashivault", "ansible/plugins/lookup/hashivault", "ansible/plugins/action/hashivault_read_to_file", "ansible/plugins/action/hashivault_write_from_file", ] files = [ "ansible/modules/hashivault", ] long_descriptio...
Upgrade hvac to have latest fix on the consul secret engine
Upgrade hvac to have latest fix on the consul secret engine Signed-off-by: Damien Goldenberg <153f528c345216f3d6a78cf62c6dd7299da883e1@gmail.com>
Python
mit
TerryHowe/ansible-modules-hashivault,TerryHowe/ansible-modules-hashivault
--- +++ @@ -26,7 +26,7 @@ packages=files, install_requires=[ 'ansible>=2.0.0', - 'hvac>=0.9.2', + 'hvac>=0.9.5', 'requests', ], )
ebe23ee92bb72d9daa756925694cc2cda2e53df0
setup.py
setup.py
from setuptools import setup setup( name='django-gcs', packages=['django_gcs'], version='0.1', description='Django file storage backend for Google Cloud Storage', author='Bogdan Radko', author_email='bodja.rules@gmail.com', install_requires=[ 'django', 'gcloud == 0.11.0' ...
from setuptools import setup setup( name='django-gcs', packages=['django_gcs'], version='0.1.0', description='Django file storage backend for Google Cloud Storage', author='Bogdan Radko', author_email='bodja.rules@gmail.com', install_requires=[ 'django', 'gcloud == 0.11.0' ...
Change version to be able resubmit to pypi
Change version to be able resubmit to pypi
Python
mit
bodja/django-gcs
--- +++ @@ -4,7 +4,7 @@ setup( name='django-gcs', packages=['django_gcs'], - version='0.1', + version='0.1.0', description='Django file storage backend for Google Cloud Storage', author='Bogdan Radko', author_email='bodja.rules@gmail.com',
84d87a3dab6eecc65f8b04276a1fa7dab3d43461
setup.py
setup.py
from django_rocket import __version__, __author__, __email__, __license__ from setuptools import setup, find_packages README = open('README.rst').read() # Second paragraph has the short description description = README.split('\n')[1] setup( name='django-rocket', version=__version__, description=descripti...
from django_rocket import __version__, __author__, __email__, __license__ from setuptools import setup, find_packages README = open('README.rst').read() # Second paragraph has the short description description = README.split('\n')[1] setup( name='django-rocket', version=__version__, description=descripti...
Upgrade to support Django 1.7
Upgrade to support Django 1.7
Python
mit
mariocesar/django-rocket,mariocesar/django-rocket
--- +++ @@ -18,12 +18,11 @@ download_url='https://pypi.python.org/pypi/django-rocket', packages=find_packages(exclude=['tests', 'tests.*', 'example', 'docs', 'env']), install_requires=[ - 'django>1.5,<1.7', + 'django>1.5,<1.8', 'wheel', ], extras_require={ - 'Doc...
214685d155164565be308f6b2714c03557c9b774
setup.py
setup.py
import os from setuptools import setup, find_packages long_description = ( open('README.rst').read() + '\n' + open('CHANGES.txt').read()) tests_require = [ 'pytest >= 2.0', 'pytest-cov', 'pytest-remove-stale-bytecode', ] setup(name='reg', version='0.9.3.dev0', description="Gen...
import io from setuptools import setup, find_packages long_description = '\n'.join(( io.open('README.rst', encoding='utf-8').read(), io.open('CHANGES.txt', encoding='utf-8').read() )) tests_require = [ 'pytest >= 2.0', 'pytest-cov', 'pytest-remove-stale-bytecode', ] setup(name='reg', ve...
Use io.open with encoding='utf-8' and flake8 compliance
Use io.open with encoding='utf-8' and flake8 compliance
Python
bsd-3-clause
taschini/reg,morepath/reg
--- +++ @@ -1,10 +1,10 @@ -import os +import io from setuptools import setup, find_packages -long_description = ( - open('README.rst').read() - + '\n' + - open('CHANGES.txt').read()) +long_description = '\n'.join(( + io.open('README.rst', encoding='utf-8').read(), + io.open('CHANGES.txt', encoding='...
1d729ada6c81cdf75c6f76b996337e46d7b679a0
setup.py
setup.py
#!/usr/bin/env python # encoding: utf8 import platform import os system = platform.system() from distutils.core import setup setup( name='matlab2cpp', version='0.2', packages=['matlab2cpp', 'matlab2cpp.translations', 'matlab2cpp.testsuite', 'matlab2cpp.inlines'], package_dir={'': 'src'...
#!/usr/bin/env python # encoding: utf8 import platform import os system = platform.system() from distutils.core import setup setup( name='matlab2cpp', version='0.2', packages=['matlab2cpp', 'matlab2cpp.translations', 'matlab2cpp.testsuite', 'matlab2cpp.inlines'], package_dir={'': 'src'...
Change mode of mconvert to be globaly executable
Change mode of mconvert to be globaly executable
Python
bsd-3-clause
jonathf/matlab2cpp,jonathf/matlab2cpp,jonathf/matlab2cpp
--- +++ @@ -33,3 +33,6 @@ mconvert = "cp mconvert.py /usr/local/bin/mconvert" print mconvert os.system(mconvert) + chmod = "chmod 755 /usr/local/bin/mconvert" + print chmod + os.system(chmod)
052cac696f044119efc34424b0e1778c77b90399
setup.py
setup.py
from setuptools import setup from tcxparser import __version__ setup( name='python-tcxparser', version=__version__, author='Vinod Kurup', author_email='vinod@kurup.com', py_modules=['tcxparser', ], url='https://github.com/vkurup/python-tcxparser/', license='BSD', description='Simple par...
from setuptools import setup from tcxparser import __version__ setup( name='python-tcxparser', version=__version__, author='Vinod Kurup', author_email='vinod@kurup.com', py_modules=['tcxparser', 'test_tcxparser'], url='https://github.com/vkurup/python-tcxparser/', license='BSD', descrip...
Add test suite to the distribution
Add test suite to the distribution
Python
bsd-2-clause
vkurup/python-tcxparser,SimonArnu/python-tcxparser,vkurup/python-tcxparser
--- +++ @@ -6,7 +6,7 @@ version=__version__, author='Vinod Kurup', author_email='vinod@kurup.com', - py_modules=['tcxparser', ], + py_modules=['tcxparser', 'test_tcxparser'], url='https://github.com/vkurup/python-tcxparser/', license='BSD', description='Simple parser for Garmin TCX...
f65ab66bd34cdd47d1d0958aa3a136292b9d1f2b
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( version='0.10', name="amcatscraping", description="Scrapers for AmCAT", author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink", author_email="wouter@vanatteveldt.com", packages=["amcatscraping"], classifiers=[ "Li...
#!/usr/bin/env python from distutils.core import setup setup( version='0.10', name="amcatscraping", description="Scrapers for AmCAT", author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink", author_email="wouter@vanatteveldt.com", packages=["amcatscraping"], classifiers=[ "Li...
Add version number to egg, will it blend?
Add version number to egg, will it blend?
Python
agpl-3.0
amcat/amcat-scraping,amcat/amcat-scraping
--- +++ @@ -23,6 +23,6 @@ "amcatclient", ], dependency_links = [ - "https://github.com/amcat/amcatclient#egg=amcatclient", + "https://github.com/amcat/amcatclient#egg=amcatclient-0.10", ] )
02ff4dd9434b4ff8f72128550fc70b8ba94ca506
setup.py
setup.py
from setuptools import setup, find_packages INSTALL_REQUIRES = [ 'BTrees', 'zope.component', 'zodbpickle', 'ZODB', 'zope.index', 'repoze.catalog', 'lz4-cffi', 'zc.zlibstorage', 'pycryptodome', 'click', 'flask-cors', 'flask', 'requests', 'jsonpickle', 'pyellip...
from setuptools import setup, find_packages INSTALL_REQUIRES = [ 'BTrees', 'zope.component', 'zodbpickle', 'ZODB', 'zope.index', 'repoze.catalog', 'lz4-cffi', 'zc.zlibstorage', 'pycryptodome', 'click', 'flask-cors', 'flask', 'requests', 'jsonpickle', 'pyellip...
Change license from Proprietary to AGPLv3
Change license from Proprietary to AGPLv3
Python
agpl-3.0
zero-db/zerodb,zerodb/zerodb,zerodb/zerodb,zero-db/zerodb
--- +++ @@ -24,7 +24,7 @@ description="End-to-end encrypted database", author="ZeroDB Inc.", author_email="michael@zerodb.io", - license="Proprietary", + license="AGPLv3", url="http://zerodb.io", packages=find_packages(), install_requires=INSTALL_REQUIRES,
a0a8dfcd74e18917c1795f59cc7101295ba5b067
setup.py
setup.py
import os from setuptools import setup kwds = {} # Read the long description from the README.txt thisdir = os.path.abspath(os.path.dirname(__file__)) f = open(os.path.join(thisdir, 'README.txt')) kwds['long_description'] = f.read() f.close() setup( name = 'grin', version = '1.1.1', author = 'Robert Kern...
import os from setuptools import setup kwds = {} # Read the long description from the README.txt thisdir = os.path.abspath(os.path.dirname(__file__)) f = open(os.path.join(thisdir, 'README.txt')) kwds['long_description'] = f.read() f.close() setup( name = 'grin', version = '1.1.1', author = 'Robert Kern...
Update the required argparse version since the version change is not backwards-compatible.
BUG: Update the required argparse version since the version change is not backwards-compatible. git-svn-id: 228151c6c098cf6fb629a8cadc3a43437d5f10bd@69 b5260ef8-a2c4-4e91-82fd-f242746c304a
Python
bsd-3-clause
mindw/grin,while0pass/grin,cpcloud/grin,lecheel/grin,LuizCentenaro/grin
--- +++ @@ -35,7 +35,7 @@ ], ), install_requires = [ - 'argparse', + 'argparse >= 1.1', ], tests_require = [ 'nose >= 0.10',
ac63e960270d0594e1db6d257008b9035344c57e
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read...
Use a new version number
Use a new version number
Python
bsd-3-clause
reincubate/pytest-django,hoh/pytest-django,ktosiek/pytest-django,tomviner/pytest-django,pelme/pytest-django,thedrow/pytest-django,bforchhammer/pytest-django,felixonmars/pytest-django,davidszotten/pytest-django,pombredanne/pytest_django,RonnyPfannschmidt/pytest_django,ojake/pytest-django,aptivate/pytest-django
--- +++ @@ -15,7 +15,7 @@ setup( name='pytest-django', - version='1.3.2', + version='1.5', description='A Django plugin for py.test.', author='Andreas Pelme', author_email='andreas@pelme.se',
5b050589639c21aecfa5f9dffc8c739920bbd05c
setup.py
setup.py
from setuptools import setup, find_packages import os packagename = 'documenteer' description = 'Tools for LSST DM documentation projects' author = 'Jonathan Sick' author_email = 'jsick@lsst.org' license = 'MIT' url = 'https://github.com/lsst-sqre/documenteer' version = '0.1.7' def read(filename): full_filename...
from setuptools import setup, find_packages import os packagename = 'documenteer' description = 'Tools for LSST DM documentation projects' author = 'Jonathan Sick' author_email = 'jsick@lsst.org' license = 'MIT' url = 'https://github.com/lsst-sqre/documenteer' version = '0.1.7' def read(filename): full_filename...
Add lsst-dd-rtd-theme as explicit dependency
Add lsst-dd-rtd-theme as explicit dependency This is needed since lsst-dd-rtd-theme is configured via the ddconfig module. I'm pinning the theme version to 0.1 so that documenteer's version effectively controls the version of the theme as well.
Python
mit
lsst-sqre/documenteer,lsst-sqre/sphinxkit,lsst-sqre/documenteer
--- +++ @@ -43,7 +43,8 @@ 'PyYAML', 'sphinx-prompt', 'sphinxcontrib-bibtex', - 'GitPython'], + 'GitPython', + 'lsst-dd-rtd-theme==0.1.0'], tests_require=['pytest', ...
2cf406b6542b5a518f302925cf61a2ee957cb5db
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup with open("README.rst") as file: long_description = file.read() setup( name="tvnamer", version="1.0.0-dev", description="Utility to rename lots of TV video files using the TheTVDB.", long_description=long_description, author="Tom Leese", ...
#!/usr/bin/env python3 from setuptools import setup with open("README.rst") as file: long_description = file.read() setup( name="tvnamer", version="1.0.0", description="Utility to rename lots of TV video files using the TheTVDB.", long_description=long_description, author="Tom Leese", au...
Remove dev suffix from version
Remove dev suffix from version It is not a valid Python version specifier.
Python
mit
tomleese/tvnamer,thomasleese/tvnamer
--- +++ @@ -5,9 +5,10 @@ with open("README.rst") as file: long_description = file.read() + setup( name="tvnamer", - version="1.0.0-dev", + version="1.0.0", description="Utility to rename lots of TV video files using the TheTVDB.", long_description=long_description, author="Tom Leese...
428ce0c6d1d90eea1fb6e5fea192b92f2cd4ea36
setup.py
setup.py
from distutils.core import setup setup( name='PAWS', version='0.1.0', description='Python AWS Tools for Serverless', author='Curtis Maloney', author_email='curtis@tinbrain.net', url='https://github.com/funkybob/paws', packages=['paws', 'paws.contrib', 'paws.views'], )
from distutils.core import setup with open('README.md') as fin: readme = fin.read() setup( name='PAWS', version='0.1.0', description='Python AWS Tools for Serverless', long_description=readme, author='Curtis Maloney', author_email='curtis@tinbrain.net', url='https://github.com/funkybob...
Include readme as long description
Include readme as long description
Python
bsd-3-clause
funkybob/paws
--- +++ @@ -1,10 +1,13 @@ from distutils.core import setup +with open('README.md') as fin: + readme = fin.read() setup( name='PAWS', version='0.1.0', description='Python AWS Tools for Serverless', + long_description=readme, author='Curtis Maloney', author_email='curtis@tinbrain.ne...
508c7049cc4d3f0d933907db289c8557c359b4d0
setup.py
setup.py
import setuptools setuptools.setup(name='pytest-cov', version='1.6', description='py.test plugin for coverage reporting with ' 'support for both centralised and distributed testing, ' 'including subprocesses and multiprocessing', long...
import setuptools setuptools.setup(name='pytest-cov', version='1.6', description='py.test plugin for coverage reporting with ' 'support for both centralised and distributed testing, ' 'including subprocesses and multiprocessing', long...
Set cov-core dependency to 1.10
Set cov-core dependency to 1.10
Python
mit
pytest-dev/pytest-cov,moreati/pytest-cov,schlamar/pytest-cov,ionelmc/pytest-cover,opoplawski/pytest-cov,wushaobo/pytest-cov
--- +++ @@ -11,7 +11,7 @@ url='https://github.com/schlamar/pytest-cov', py_modules=['pytest_cov'], install_requires=['pytest>=2.5.2', - 'cov-core>=1.9'], + 'cov-core>=1.10'], ent...
2756239ccb9976a93d8c19a1ff071c64f211980c
setup.py
setup.py
#!/usr/bin/env python """ Erply-API --------- Python wrapper for Erply API """ from distutils.core import setup setup( name='ErplyAPI', version='0.2015.01.16-dev', description='Python wrapper for Erply API', license='BSD', author='Priit Laes', author_email='plaes@plaes.org', long_descripti...
#!/usr/bin/env python """ Erply-API --------- Python wrapper for Erply API """ from distutils.core import setup setup( name='ErplyAPI', version='0.2015.01.16-dev', description='Python wrapper for Erply API', license='BSD', author='Priit Laes', author_email='plaes@plaes.org', long_descripti...
Add Python 3.x versions to classifiers
Add Python 3.x versions to classifiers Things seem to be working with 3.x too.
Python
bsd-3-clause
tteearu/python-erply-api
--- +++ @@ -23,6 +23,9 @@ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: ...
1312426276465a16f7e490a4d78a73fb5a92f58c
setup.py
setup.py
#!/bin/env python from setuptools import setup setup( name='pypugly', use_scm_version=True, author='Alexandre Andrade', author_email='kaniabi@gmail.com', url='https://github.com/zerotk/pypugly', description='Another HTML generator based on JADE.', long_description='''Another HTML genera...
#!/bin/env python from setuptools import setup setup( name='pypugly', use_scm_version=True, author='Alexandre Andrade', author_email='kaniabi@gmail.com', url='https://github.com/zerotk/pypugly', description='Another HTML generator based on JADE.', long_description='''Another HTML genera...
Fix tests: pypugly has two packages: pypugly and zerotk.
Fix tests: pypugly has two packages: pypugly and zerotk.
Python
mit
zerotk/pypugly,zerotk/pypugly
--- +++ @@ -38,7 +38,7 @@ include_package_data=True, - packages=['pypugly'], + packages=['pypugly', 'zerotk'], keywords=['generator', 'html', 'jade'],
e0feb54b337260476dd87a9c03b6835986cd7ba9
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup try: import multiprocessing except ImportError: pass setup( setup_requires=['pbr'], pbr=True, )
#!/usr/bin/env python from setuptools import setup try: import multiprocessing except ImportError: pass setup( setup_requires=['pbr>=0.10.0'], pbr=True, )
Add version constraint to pbr
Add version constraint to pbr
Python
mit
CloudBrewery/docrane
--- +++ @@ -8,6 +8,6 @@ pass setup( - setup_requires=['pbr'], + setup_requires=['pbr>=0.10.0'], pbr=True, )
a04a8c7d8e1087df39025d6e798d83438ac35f77
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='hpswitch', version='0.1', description="A library for interacting with HP Networking switches", packages=['hpswitch', ], url='https://github.com/leonhandreke/hpswitch', license="MIT License", )
#!/usr/bin/env python from distutils.core import setup setup(name='hpswitch', version='0.1', description="A library for interacting with HP Networking switches", packages=['hpswitch', ], url='https://github.com/leonhandreke/hpswitch', license="MIT License", requires=['p...
Add pysnmp as a dependency
Add pysnmp as a dependency
Python
mit
leonhandreke/hpswitch,thechristschn/hpswitch
--- +++ @@ -8,4 +8,5 @@ packages=['hpswitch', ], url='https://github.com/leonhandreke/hpswitch', license="MIT License", + requires=['pysnmp'] )
5a214907e61548d38606f09721b0d3ff4a7458a6
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", "SQLAlchemy", "transaction", "pyramid_tm", "pyramid_debug...
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", "SQLAlchemy", "transaction", "pyramid_tm", "pyramid_debug...
Add model for certificate signing request (CSR)
Add model for certificate signing request (CSR) Clean out view/db_init code from scaffold. Replace routes from scaffold. Add pyOpenSSL dependancy to setup.py.
Python
agpl-3.0
ModioAB/caramel-client,ModioAB/caramel-client
--- +++ @@ -14,6 +14,7 @@ "pyramid_debugtoolbar", "zope.sqlalchemy", "waitress", + "pyOpenSSL" ] setup(name="caramel",
ba54f2aa487c1a719a133ab761bd7be5af43e447
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os import sys from haloanalysis.version import get_git_version setup(name='haloanalysis', version=get_git_version(), license='BSD', packages=find_packages(exclude='tests'), include_package_data = True, classifiers...
#!/usr/bin/env python from setuptools import setup, find_packages import os import sys from haloanalysis.version import get_git_version setup(name='haloanalysis', version=get_git_version(), license='BSD', packages=find_packages(exclude='tests'), include_package_data = True, classifiers...
Add new script for running IGMF analysis.
Add new script for running IGMF analysis.
Python
bsd-3-clause
woodmd/haloanalysis,woodmd/haloanalysis
--- +++ @@ -21,12 +21,13 @@ 'Topic :: Scientific/Engineering :: Astronomy', 'Development Status :: 4 - Beta', ], - entry_points= {'console_scripts': [ - 'run-region-analysis = haloanalysis.scripts.region_analysis:main', - 'run-halo-analysis = haloanalysis.script...
2b74737db827a4ddc6e4ba678c31304d6f857b47
setup.py
setup.py
from distutils.core import setup, Extension setup(name="java_random", version="1.0.1", description="Provides a fast implementation of the Java random number generator", author="Matthew Bradbury", license="MIT", url="https://github.com/MBradbury/python_java_random", ext_modules=[Extension("...
from distutils.core import setup, Extension setup(name="java_random", version="1.0.1", description="Provides a fast implementation of the Java random number generator", author="Matthew Bradbury", license="MIT", url="https://github.com/MBradbury/python_java_random", ext_modules=[Extension("...
Mark as for CPython only
Mark as for CPython only
Python
mit
MBradbury/python_java_random,MBradbury/python_java_random,MBradbury/python_java_random
--- +++ @@ -6,5 +6,6 @@ url="https://github.com/MBradbury/python_java_random", ext_modules=[Extension("java_random", ["src/java_random_module.c", "src/java_random.c"])], classifiers=["Programming Language :: Python :: 2", - "Programming Language :: Python :: 3"] + ...
c21c286b56dec481eb36d72a60560606e1d70768
setup.py
setup.py
from distutils.core import setup setup( name='python-varnish', version='0.2.2', long_description=open('README.rst').read(), description='Simple Python interface for the Varnish management port', author='Justin Quick', author_email='justquick@gmail.com', url='http://github.com/justquick/pyth...
from distutils.core import setup setup( name='python-varnish', version='0.2.2', long_description=open('README.rst').read(), description='Simple Python interface for the Varnish management port', author='Justin Quick', author_email='justquick@gmail.com', url='http://github.com/justquick/pyth...
Install varnishadm instead of varnish
Install varnishadm instead of varnish
Python
bsd-3-clause
ByteInternet/python-varnishadm
--- +++ @@ -9,7 +9,7 @@ author_email='justquick@gmail.com', url='http://github.com/justquick/python-varnish', scripts=['bin/varnish_manager'], - py_modules=['varnish'], + py_modules=['varnishadm'], classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: ...
83598d24c46683b7d2eb3e99d39cbd5babba5073
tests/api/views/clubs/create_test.py
tests/api/views/clubs/create_test.py
from skylines.model import Club from tests.api import basic_auth def test_create(db_session, client, test_user): headers = basic_auth(test_user.email_address, test_user.original_password) res = client.put('/clubs', headers=headers, json={ 'name': 'LV Aachen', }) assert res.status_code == 200 ...
from skylines.model import Club from tests.api import basic_auth from tests.data import add_fixtures, clubs def test_create(db_session, client, test_user): headers = basic_auth(test_user.email_address, test_user.original_password) res = client.put('/clubs', headers=headers, json={ 'name': 'LV Aachen'...
Add more "PUT /clubs" tests
tests/api: Add more "PUT /clubs" tests
Python
agpl-3.0
RBE-Avionik/skylines,Harry-R/skylines,shadowoneau/skylines,skylines-project/skylines,Harry-R/skylines,shadowoneau/skylines,Turbo87/skylines,Turbo87/skylines,RBE-Avionik/skylines,Harry-R/skylines,Turbo87/skylines,skylines-project/skylines,skylines-project/skylines,Turbo87/skylines,shadowoneau/skylines,RBE-Avionik/skylin...
--- +++ @@ -1,5 +1,6 @@ from skylines.model import Club from tests.api import basic_auth +from tests.data import add_fixtures, clubs def test_create(db_session, client, test_user): @@ -9,4 +10,46 @@ 'name': 'LV Aachen', }) assert res.status_code == 200 - assert Club.get(res.json['id']) + ...
f381d7f83fa86c1b7777f3fe8bad00c70b917937
kobo_playground/celery.py
kobo_playground/celery.py
# http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html from __future__ import absolute_import import os from celery import Celery # Attempt to determine the project name from the directory containing this file PROJECT_NAME = os.path.basename(os.path.dirname(__file__)) # Set the default Django s...
# http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html from __future__ import absolute_import import os from celery import Celery # Attempt to determine the project name from the directory containing this file PROJECT_NAME = os.path.basename(os.path.dirname(__file__)) # Set the default Django s...
Fix Celery configuration for AppConfig in INSTALLED_APPS
Fix Celery configuration for AppConfig in INSTALLED_APPS
Python
agpl-3.0
onaio/kpi,onaio/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,onaio/kpi,kobotoolbox/kpi,onaio/kpi
--- +++ @@ -17,7 +17,17 @@ # Using a string here means the worker will not have to # pickle the object when using Windows. app.config_from_object('django.conf:settings') -app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) + +# The `app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)` technique +# describe...
89d9a8a7d6eb5e982d1728433ea2a9dfbd9d1259
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name = 'i2py', version = '0.2', description = 'Tools to work with i2p.', author = 'contributors.txt', author_email = 'Anonymous', classifiers = [ 'Development Status :: 3 - Alpha', #'Development Status :: 5 - Production/Stable', '...
#!/usr/bin/env python from setuptools import setup setup(name = 'i2py', version = '0.3', description = 'Tools to work with i2p.', author = 'See contributors.txt', author_email = 'Anonymous', classifiers = [ 'Development Status :: 3 - Alpha', #'Development Status :: 5 - Production/Stable', ...
Change version to 0.3 due to functions changing name.
Change version to 0.3 due to functions changing name.
Python
mit
chris-barry/i2py
--- +++ @@ -2,9 +2,9 @@ from setuptools import setup setup(name = 'i2py', - version = '0.2', + version = '0.3', description = 'Tools to work with i2p.', - author = 'contributors.txt', + author = 'See contributors.txt', author_email = 'Anonymous', classifiers = [ 'Development Status...
06c17c0ecd01b4dccc8495785532ce6a377eb99f
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="feedinlib", version="0.1.0rc1", description="Creating time series from pv or wind power plants.", url="http://github.com/oemof/feedinlib", author="oemof dev...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="feedinlib", version="0.1.0rc1", description="Creating time series from pv or wind power plants.", url="http://github.com/oemof/feedinlib", author="oemof dev...
Add `".dev0"` suffix to lower `"oedialect"` bound
Add `".dev0"` suffix to lower `"oedialect"` bound Readthedocs still picked up version 0.0.4, even with 0.0.5 being specified as the lower bound. Maybe it's because `oedialect` only has `.dev0` releases in which case adding the explicit suffix fixes that. Fingers crossed.
Python
mit
oemof/feedinlib
--- +++ @@ -21,7 +21,7 @@ install_requires=[ "cdsapi >= 0.1.4", "numpy >= 1.7.0", - "oedialect >= 0.0.5", + "oedialect >= 0.0.6.dev0", "open_FRED-cli", "pandas >= 0.13.1", "pvlib >= 0.6.0",
9fea1ab22a4d89c975767527e0d83ca224734d34
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='gobblegobble', versi...
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='gobblegobble', versi...
Add reconnect backoff and refactor for easier testing
Add reconnect backoff and refactor for easier testing
Python
mit
ejesse/gobblegobble
--- +++ @@ -9,7 +9,7 @@ setup( name='gobblegobble', - version='0.1.2', + version='0.1.3', packages=find_packages(), include_package_data=True, license='BSD License', # example license
7e44bb64bfabce3fde77a774c8d13df094f8e0a2
setup.py
setup.py
from setuptools import setup, find_packages with open('description.txt') as f: long_description = ''.join(f.readlines()) def get_requirements(): with open("requirements.txt") as f: return f.readlines() setup( author="Martin Chovanec", author_email="chovamar@fit.cvut.cz", classifiers=[ ...
from setuptools import setup, find_packages with open('description.txt') as f: long_description = ''.join(f.readlines()) def get_requirements(): with open("requirements.txt") as f: return f.readlines() setup( author="Martin Chovanec", author_email="chovamar@fit.cvut.cz", classifiers=[ ...
Increase version number to 0.1.2b
Increase version number to 0.1.2b
Python
mit
chovanecm/sacredboard,chovanecm/sacredboard,chovanecm/sacredboard
--- +++ @@ -38,5 +38,5 @@ install_requires=get_requirements(), setup_requires=["pytest-runner"], tests_require=["pytest"], - version="0.1.1" + version="0.1.2b" )
51b60dc34f9ce2c613e3c79275ccb2495faaf180
setup.py
setup.py
import glob from setuptools import setup, find_packages __version__ = open('version.txt').read() __doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.' requires = ['pydicom'] setup( name = 'qipipe', version = __version__, author = 'Fred Loney', author_email...
import glob from setuptools import setup, find_packages __version__ = open('version.txt').read() __doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.' requires = ['pydicom', 'envoy'] setup( name = 'qipipe', version = __version__, author = 'Fred Loney', aut...
Use envoy to wrap commands.
Use envoy to wrap commands.
Python
bsd-2-clause
ohsu-qin/qipipe
--- +++ @@ -5,7 +5,7 @@ __doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.' -requires = ['pydicom'] +requires = ['pydicom', 'envoy'] setup( name = 'qipipe',
a1e18385c2c5df9db8390b2da4d5baa2465f150e
webcomix/tests/test_comic_availability.py
webcomix/tests/test_comic_availability.py
import pytest from webcomix.comic import Comic from webcomix.supported_comics import supported_comics from webcomix.util import check_first_pages @pytest.mark.slow def test_supported_comics(): for comic_name, comic_info in supported_comics.items(): comic = Comic(comic_name, *comic_info) first_pag...
import pytest from webcomix.comic import Comic from webcomix.supported_comics import supported_comics from webcomix.util import check_first_pages @pytest.mark.slow @pytest.mark.parametrize("comic_name", list(supported_comics.keys())) def test_supported_comics(comic_name): comic = Comic(comic_name, *supported_com...
Test comic availability of all supported comics independently through parametrization
Test comic availability of all supported comics independently through parametrization
Python
mit
J-CPelletier/webcomix,J-CPelletier/WebComicToCBZ,J-CPelletier/webcomix
--- +++ @@ -6,8 +6,8 @@ @pytest.mark.slow -def test_supported_comics(): - for comic_name, comic_info in supported_comics.items(): - comic = Comic(comic_name, *comic_info) - first_pages = comic.verify_xpath() - check_first_pages(first_pages) +@pytest.mark.parametrize("comic_name", list(sup...
43cb656c5318d656fdff6d7bc3a2d6f69861c714
setup.py
setup.py
from setuptools import setup, find_packages long_description = ( open('README.rst').read() + '\n' + open('CHANGES.txt').read()) setup(name='dectate', version='0.11.dev0', description="A configuration engine for Python frameworks", long_description=long_description, author="Martijn ...
import io from setuptools import setup, find_packages long_description = '\n'.join(( io.open('README.rst', encoding='utf-8').read(), io.open('CHANGES.txt', encoding='utf-8').read() )) setup( name='dectate', version='0.11.dev0', description="A configuration engine for Python frameworks", long_d...
Use io.open with encoding='utf-8' and flake8 compliance
Use io.open with encoding='utf-8' and flake8 compliance
Python
bsd-3-clause
morepath/dectate
--- +++ @@ -1,38 +1,41 @@ +import io from setuptools import setup, find_packages -long_description = ( - open('README.rst').read() - + '\n' + - open('CHANGES.txt').read()) +long_description = '\n'.join(( + io.open('README.rst', encoding='utf-8').read(), + io.open('CHANGES.txt', encoding='utf-8').rea...
0ea95fa57419b77150bb8e4ba264aa56cf51da86
setup.py
setup.py
__doc__ = """ Manipulate audio with an simple and easy high level interface. See the README file for details, usage info, and a list of gotchas. """ from setuptools import setup setup( name='pydub', version='0.18.0', author='James Robert', author_email='jiaaro@gmail.com', description='Manipulate ...
__doc__ = """ Manipulate audio with an simple and easy high level interface. See the README file for details, usage info, and a list of gotchas. """ from setuptools import setup setup( name='pydub', version='0.19.0', author='James Robert', author_email='jiaaro@gmail.com', description='Manipulate ...
Increment version for multichannel splitting
Increment version for multichannel splitting
Python
mit
jiaaro/pydub
--- +++ @@ -8,7 +8,7 @@ setup( name='pydub', - version='0.18.0', + version='0.19.0', author='James Robert', author_email='jiaaro@gmail.com', description='Manipulate audio with an simple and easy high level interface',
ba942aa988e049779a717c41d068547f5bce8b0b
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 import glob as _glob import setuptools as _st import tues as _tues if __name__ == '__main__': _st.setup( name='tues', version=_tues.__version__, url='https://github.com/wontfix-org/tues/', license='MIT', author='Michael van Bracht', ...
#!/usr/bin/env python # coding: utf-8 import glob as _glob import setuptools as _st import tues as _tues if __name__ == '__main__': _st.setup( name='tues', version=_tues.__version__, url='https://github.com/wontfix-org/tues/', license='MIT', author='Michael van Bracht', ...
Move to native markdown parsing
packaging: Move to native markdown parsing setuptools-markdown is deprecated
Python
mit
wontfix-org/tues
--- +++ @@ -19,12 +19,13 @@ scripts=_glob.glob('scripts/tues*'), include_package_data=True, platforms='any', - setup_requires=['setuptools-markdown'], - long_description_markdown_filename='README.md', + long_description=open("README.md").read(), + long_descriptio...
334b805fce8b7924aa4b812964165f1d93f07d69
setup.py
setup.py
# -*- coding: utf-8 -*- # from __future__ import (absolute_import, division, print_function, unicode_literals) from setuptools import setup, find_packages setup( name='pysteps', version='1.0', packages=find_packages(), license='LICENSE', description='Python framework for sh...
# -*- coding: utf-8 -*- # from __future__ import (absolute_import, division, print_function, unicode_literals) from setuptools import setup, find_packages setup( name='pysteps', version='1.0', packages=find_packages(), license='LICENSE', description='Python framework for sh...
Remove Python 2/2.7 because they are no longer supported
Remove Python 2/2.7 because they are no longer supported
Python
bsd-3-clause
pySTEPS/pysteps
--- +++ @@ -17,8 +17,6 @@ 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Atmospheric Science', 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :...
b4ea08a378bd12c823b6e68f4b72f3a6b327f8e1
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import os def get_build(): path = "./.build" if os.path.exists(path): fp = open(path, "r") build = eval(fp.read()) if os.path.exists("./.increase_build"): build += 1 fp.close() else: build = 1 ...
#!/usr/bin/env python from distutils.core import setup import os def get_build(): path = "./.build" if os.path.exists(path): fp = open(path, "r") build = eval(fp.read()) if os.path.exists("./.increase_build"): build += 1 fp.close() else: build = 1 ...
Change URL, add classifiers and keywords
Change URL, add classifiers and keywords
Python
apache-2.0
knockoutMice/pylast,yanggao1119/pylast,knockoutMice/pylast,hugovk/pylast,pylast/pylast,yanggao1119/pylast
--- +++ @@ -29,7 +29,20 @@ author="Amr Hassan <amr.hassan@gmail.com>", description="A Python interface to Last.fm (and other API compatible social networks)", author_email="amr.hassan@gmail.com", - url="https://github.com/hugovk/pylast", + url="https://github.com/pylast/pylast", + classifiers=...
46deed1aa739b3fbd6b86972807e03d54a7fc085
setup.py
setup.py
from setuptools import setup, find_packages import os version = '0.0.1' here = os.path.abspath(os.path.dirname(__file__)) try: README = open(os.path.join(here, 'README.rst')).read() except IOError: README = '' setup(name='filedepot', version=version, description="Toolkit for storing files and att...
from setuptools import setup, find_packages import os version = '0.0.1' here = os.path.abspath(os.path.dirname(__file__)) try: README = open(os.path.join(here, 'README.rst')).read() except IOError: README = '' setup(name='filedepot', version=version, description="Toolkit for storing files and att...
Add sqlalchemy to the test dependencines
Add sqlalchemy to the test dependencines
Python
mit
miraculixx/depot,eprikazc/depot,amol-/depot,miraculixx/depot,rlam3/depot
--- +++ @@ -27,7 +27,7 @@ license='MIT', packages=find_packages(exclude=['ez_setup']), include_package_data=True, - tests_require = ['mock', 'pymongo >= 2.7', 'boto'], + tests_require = ['mock', 'pymongo >= 2.7', 'boto', 'sqlalchemy'], test_suite='nose.collector', zip_safe...
979aa0a98ac92ed08d10b81602b070bdfefaf4e1
setup.py
setup.py
from distutils.core import setup setup( name='udiskie', version='0.4.0', description='Removable disk automounter for udisks', author='Byron Clark', author_email='byron@theclarkfamily.name', url='http://bitbucket.org/byronclark/udiskie', license='MIT', packages=[ 'udiskie', ]...
from distutils.core import setup setup( name='udiskie', version='0.4.1', description='Removable disk automounter for udisks', author='Byron Clark', author_email='byron@theclarkfamily.name', url='http://bitbucket.org/byronclark/udiskie', license='MIT', packages=[ 'udiskie', ]...
Prepare for next development cycle.
Prepare for next development cycle.
Python
mit
coldfix/udiskie,mathstuf/udiskie,pstray/udiskie,khardix/udiskie,pstray/udiskie,coldfix/udiskie
--- +++ @@ -2,7 +2,7 @@ setup( name='udiskie', - version='0.4.0', + version='0.4.1', description='Removable disk automounter for udisks', author='Byron Clark', author_email='byron@theclarkfamily.name',
f61ab3c58981806581eb2efaa1e5efe1bff21a16
setup.py
setup.py
# encoding: utf8 from setuptools import setup setup( name='correlation-toolbox', version='0.0.1', author='Jakob Jordan, David Dahmen', author_email='j.jordan@fz-juelich.de', description=('Collection of functions to investigate correlations in ' 'spike trains and membrane potentials...
# encoding: utf8 from setuptools import setup setup( name='correlation-toolbox', version='0.0.1', author='Jakob Jordan, David Dahmen, Hannah Bos, Maximilian Schmidt', author_email='j.jordan@fz-juelich.de', description=('Collection of functions to investigate correlations in ' 'spik...
Add H.Bos and M.Schmidt to list of authors
Add H.Bos and M.Schmidt to list of authors
Python
mit
INM-6/correlation-toolbox
--- +++ @@ -4,7 +4,7 @@ setup( name='correlation-toolbox', version='0.0.1', - author='Jakob Jordan, David Dahmen', + author='Jakob Jordan, David Dahmen, Hannah Bos, Maximilian Schmidt', author_email='j.jordan@fz-juelich.de', description=('Collection of functions to investigate correlations ...
0e82fba1c9769f71c162c8364fe783d2cc3cda17
setup.py
setup.py
#!/usr/bin/env python3 try: from setuptools import setup except ImportError: from distutils.core import setup from sys import platform import subprocess import glob import os ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'], stdout=subprocess.PIPE).stdout.decode().strip() setup...
#!/usr/bin/env python3 try: from setuptools import setup except ImportError: from distutils.core import setup from sys import platform import subprocess import glob import os ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'], stdout=subprocess.PIPE).stdout.decode().strip() setup(...
Fix templates building on OS X
Fix templates building on OS X
Python
mit
KnightOS/sdk,KnightOS/sdk,KnightOS/sdk
--- +++ @@ -10,7 +10,6 @@ ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'], stdout=subprocess.PIPE).stdout.decode().strip() - setup( name = 'knightos', packages = ['knightos', 'knightos.commands'], @@ -22,11 +21,12 @@ install_requires = ['requests', 'pyyaml', 'pystach...
fdc8f5068e9e3ccf44eb223aabf088336777db2c
setup.py
setup.py
#!/usr/bin/env python try: from setuptools.core import setup except ImportError: from distutils.core import setup setup(name='djeasyroute', version='0.0.1', description='A simple class based route system for django similar to flask', author='Ryan Goggin', author_email='info@ryangoggin....
#!/usr/bin/env python try: from setuptools.core import setup except ImportError: from distutils.core import setup setup(name='djeasyroute', version='0.0.1', description='A simple class based route system for django similar to flask', author='Ryan Goggin', author_email='info@ryangoggin....
Fix MIT classification for pypi
Fix MIT classification for pypi
Python
mit
Goggin/djeasyroute
--- +++ @@ -15,7 +15,7 @@ classifiers=[ "Development Status :: 3 - Alpha", "Framework :: Django", - "License :: OSI Approved :: MIT", + "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Intended Audience ::...
969559c6eb94405ecf470b310e752a80736aeeef
setup.py
setup.py
try: from setuptools import setup except ImportError: from disutils.core import setup try: from pypandoc import convert long_description = convert('README.md', 'rst') except: """ Don't fail if pandoc or pypandoc are not installed. However, it is better to publish the package with a form...
try: from setuptools import setup except ImportError: from disutils.core import setup try: from pypandoc import convert long_description = convert('README.md', 'rst') except: """ Don't fail if pandoc or pypandoc are not installed. However, it is better to publish the package with a form...
Add warning for missing pandoc
Add warning for missing pandoc
Python
mit
chargehound/chargehound-python
--- +++ @@ -12,6 +12,10 @@ However, it is better to publish the package with a formatted README. """ + print(""" +Warning: Missing pandoc, which is used to format \ +the README. Install pypandoc and pandoc before publishing \ +a new version.""") long_description = open('README.md').read() fr...
238022485a66c6d6920b81d0a6235ab314188a9b
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'Pokedex', version = '0.1', packages = find_packages(), package_data = { '': 'data' }, install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'], entry_points = { 'console_scripts': [ 'pokedex = pokedex:main', ...
from setuptools import setup, find_packages setup( name = 'Pokedex', version = '0.1', packages = find_packages(), package_data = { '': 'data' }, install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'], entry_points = { 'console_scripts': [ 'pokedex = pokedex:main', ...
Fix whoosh version so Nidoran search works.
Fix whoosh version so Nidoran search works.
Python
mit
RK905/pokedex-1,mschex1/pokedex,xfix/pokedex,DaMouse404/pokedex,veekun/pokedex,veekun/pokedex
--- +++ @@ -4,7 +4,7 @@ version = '0.1', packages = find_packages(), package_data = { '': 'data' }, - install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'], + install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'], entry_points = { 'console_scripts': [
09f784d459f22eec41cb720f5e1945f8fca48e6e
setup.py
setup.py
from setuptools import setup setup( name="ftfy", version='3.3.0', maintainer='Luminoso Technologies, Inc.', maintainer_email='info@luminoso.com', license="MIT", url='http://github.com/LuminosoInsight/python-ftfy', platforms=["any"], description="Fixes some problems with Unicode text aft...
from setuptools import setup setup( name="ftfy", version='3.3.0', maintainer='Luminoso Technologies, Inc.', maintainer_email='info@luminoso.com', license="MIT", url='http://github.com/LuminosoInsight/python-ftfy', platforms=["any"], description="Fixes some problems with Unicode text aft...
Stop claiming support for 2.6
Stop claiming support for 2.6 I don't even have a Python 2.6 interpreter.
Python
mit
rspeer/python-ftfy
--- +++ @@ -13,7 +13,6 @@ package_data={'ftfy': ['char_classes.dat']}, classifiers=[ "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Langu...
034c5baf82b425459b0c3c4025b3f0d5838ec127
setup.py
setup.py
from setuptools import setup, find_packages from bot import project_info setup( name=project_info.name, use_scm_version=True, description=project_info.description, long_description=project_info.description, url=project_info.url, author=project_info.author_name, author_email=project_inf...
from setuptools import setup, find_packages from bot import project_info setup( name=project_info.name, use_scm_version=True, description=project_info.description, long_description=project_info.description, url=project_info.url, author=project_info.author_name, author_email=project_inf...
Add pytimeparse as an install dependency
Add pytimeparse as an install dependency
Python
agpl-3.0
alvarogzp/telegram-bot,alvarogzp/telegram-bot
--- +++ @@ -27,7 +27,8 @@ 'sqlite-framework', 'requests', 'pytz', - 'psutil' + 'psutil', + 'pytimeparse' ], python_requires='>=3',