commit
stringlengths
40
40
subject
stringlengths
4
1.73k
repos
stringlengths
5
127k
old_file
stringlengths
2
751
new_file
stringlengths
2
751
new_contents
stringlengths
1
8.98k
old_contents
stringlengths
0
6.59k
license
stringclasses
13 values
lang
stringclasses
23 values
963d3011e3de5f8a5f2e53ddf75f3f9a9252ca42
Fix https://github.com/pyload/pyload/issues/1471
vuolter/pyload,vuolter/pyload,vuolter/pyload
module/plugins/accounts/CatShareNet.py
module/plugins/accounts/CatShareNet.py
# -*- coding: utf-8 -*- import re import time from module.plugins.internal.Account import Account class CatShareNet(Account): __name__ = "CatShareNet" __type__ = "account" __version__ = "0.07" __description__ = """Catshare.net account plugin""" __license__ = "GPLv3" __authors__ ...
# -*- coding: utf-8 -*- import re import time from module.plugins.internal.Account import Account class CatShareNet(Account): __name__ = "CatShareNet" __type__ = "account" __version__ = "0.06" __description__ = """Catshare.net account plugin""" __license__ = "GPLv3" __authors__ ...
agpl-3.0
Python
2446b7606ec63eed55a312b492e9922feba8c030
Bump minimum 'api_core' version for all GAPIC libs to 1.4.1. (#6391)
googleapis/python-videointelligence,googleapis/python-videointelligence
setup.py
setup.py
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
apache-2.0
Python
dadc6ada4f2ce627859f0d4bf0f9e59305500cc9
convert to json string before writing to disk
Sotera/pst-extraction,Sotera/pst-extraction,Sotera/pst-extraction
spark/attachment_split.py
spark/attachment_split.py
#!/usr/bin/env python from pyspark import SparkContext, SparkConf import sys, os import json import argparse def rmkey(k, o): if k in o: del o[k] return o def extractKeys(keys, o): rtn = {} for k in keys: if k in o: rtn[k] = o[k] return rtn def removeAttac...
#!/usr/bin/env python from pyspark import SparkContext, SparkConf import sys, os import json import argparse def rmkey(k, o): if k in o: del o[k] return o def extractKeys(keys, o): rtn = {} for k in keys: if k in o: rtn[k] = o[k] return rtn def removeAttac...
apache-2.0
Python
f67210cce5ad768b8a3a1c31488cb8901f9aaf97
Bump version
ThiefMaster/maildump,ThiefMaster/maildump,ThiefMaster/maildump,ThiefMaster/maildump
setup.py
setup.py
# coding=utf-8 import os import subprocess import sys from setuptools import setup from setuptools.command.build_py import build_py class build_py_with_assets(build_py): def run(self): if not self.dry_run: self._build_assets() build_py.run(self) def _build_assets(self): ...
# coding=utf-8 import os import subprocess import sys from setuptools import setup from setuptools.command.build_py import build_py class build_py_with_assets(build_py): def run(self): if not self.dry_run: self._build_assets() build_py.run(self) def _build_assets(self): ...
mit
Python
863b22578068617b1770ca91a0f6cceb0633826e
update version to trigger the jenkins
architecture-building-systems/CityEnergyAnalyst,architecture-building-systems/CityEnergyAnalyst,architecture-building-systems/CityEnergyAnalyst
cea/__init__.py
cea/__init__.py
__version__ = "2.26.0a0" class ConfigError(Exception): """Raised when the configuration of a tool contains some invalid values.""" rc = 100 # sys.exit(rc) class CustomDatabaseNotFound(Exception): """Raised when the InputLocator can't find a user-provided database (region=='custom')""" rc = 101 # s...
__version__ = "2.26.0" class ConfigError(Exception): """Raised when the configuration of a tool contains some invalid values.""" rc = 100 # sys.exit(rc) class CustomDatabaseNotFound(Exception): """Raised when the InputLocator can't find a user-provided database (region=='custom')""" rc = 101 # sys...
mit
Python
596e850189e8c8590ac4b8c401de5930ce711929
Add clientversion to graphing facts
puppet-community/puppetboard,johnzimm/xx-puppetboard,tparkercbn/puppetboard,mterzo/puppetboard,stoyansbg/puppetboard,mterzo/puppetboard,holstvoogd/puppetboard,johnzimm/xx-puppetboard,johnzimm/puppetboard,tparkercbn/puppetboard,mterzo/puppetboard,stoyansbg/puppetboard,james-powis/puppetboard,tparkercbn/puppetboard,voxpu...
puppetboard/default_settings.py
puppetboard/default_settings.py
import os PUPPETDB_HOST = 'localhost' PUPPETDB_PORT = 8080 PUPPETDB_SSL_VERIFY = True PUPPETDB_KEY = None PUPPETDB_CERT = None PUPPETDB_TIMEOUT = 20 DEFAULT_ENVIRONMENT = 'production' SECRET_KEY = os.urandom(24) DEV_LISTEN_HOST = '127.0.0.1' DEV_LISTEN_PORT = 5000 DEV_COFFEE_LOCATION = 'coffee' UNRESPONSIVE_HOURS = 2 ...
import os PUPPETDB_HOST = 'localhost' PUPPETDB_PORT = 8080 PUPPETDB_SSL_VERIFY = True PUPPETDB_KEY = None PUPPETDB_CERT = None PUPPETDB_TIMEOUT = 20 DEFAULT_ENVIRONMENT = 'production' SECRET_KEY = os.urandom(24) DEV_LISTEN_HOST = '127.0.0.1' DEV_LISTEN_PORT = 5000 DEV_COFFEE_LOCATION = 'coffee' UNRESPONSIVE_HOURS = 2 ...
apache-2.0
Python
eebb53b955a0af83d4778233346e60f78a2b1686
Fix example import
seiferteric/PySerLCD
examples/status.py
examples/status.py
#!/usr/bin/python from PySerLCD import lcd import time import psutil import serial import struct import socket import datetime CMD_CMD = 0xFE CMD_CLEAR = 0x01 CMD_INVERT = 0x12 CMD_ON = 0x0C CMD_OFF = 0x08 CMD_BOX_CUR_ON = 0x0D CMD_BOX_CUR_OFF= 0x0C CMD_UND_CUR_ON = 0x0E CMD_UND_CUR_OFF=...
#!/usr/bin/python import lcd import time import psutil import serial import struct import socket import datetime CMD_CMD = 0xFE CMD_CLEAR = 0x01 CMD_INVERT = 0x12 CMD_ON = 0x0C CMD_OFF = 0x08 CMD_BOX_CUR_ON = 0x0D CMD_BOX_CUR_OFF= 0x0C CMD_UND_CUR_ON = 0x0E CMD_UND_CUR_OFF= 0x0C CMD_MOV_...
mit
Python
612182b242b001927e92eb3ff18d80e1f722daf8
Correct package metadata in setup.py
MichaelAquilina/s3backup,MichaelAquilina/s3backup
setup.py
setup.py
# !/usr/bin/env python from distutils.core import setup try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup from s4 import VERSION with open('README.rst') as readme_file: readme = readme_file.read() with open('requirements.txt') as requirements_file: ...
# !/usr/bin/env python from distutils.core import setup try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup from s4 import VERSION with open('README.rst') as readme_file: readme = readme_file.read() with open('requirements.txt') as requirements_file: ...
mit
Python
b5164ef9b4b7a20df0ba8481cb5921bb1ece81ed
Bump version
pulkitag/mujoco140-py,pulkitag/mujoco140-py,pulkitag/mujoco140-py
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='mujoco-py', version='0.4.1', description='Python wrapper for Mojoco', author='OpenAI', packages=['mujoco_py'], install_requires=[ 'PyOpenGL>=3.1.0', 'numpy>=1.10.4', 'six', ], tests_requires=[ ...
#!/usr/bin/env python from distutils.core import setup setup( name='mujoco-py', version='0.4.0', description='Python wrapper for Mojoco', author='OpenAI', packages=['mujoco_py'], install_requires=[ 'PyOpenGL>=3.1.0', 'numpy>=1.10.4', 'six', ], tests_requires=[ ...
mit
Python
bd01f8aa063e4f67ab700310a39bae5616733dfa
Revert "Bump flake8 to 3.7.2"
MozillaSecurity/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz
setup.py
setup.py
# coding=utf-8 # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import find_packages from setuptools import setup EX...
# coding=utf-8 # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import find_packages from setuptools import setup EX...
mpl-2.0
Python
b1edce3f53489992181dcd96b41fa48a45bb34ba
bump to 0.4
peterbe/peepin
setup.py
setup.py
import sys from setuptools import setup, find_packages setup( name='peepin', version='0.4', description='Edits your requirements.txt by peep-hashing them', long_description=open('README.rst').read(), author='Peter Bengtsson', author_email='mail@peterbe.com', license='MIT', py_modules=...
import sys from setuptools import setup, find_packages setup( name='peepin', version='0.3', description='Edits your requirements.txt by peep-hashing them', long_description=open('README.rst').read(), author='Peter Bengtsson', author_email='mail@peterbe.com', license='MIT', py_modules=...
mit
Python
22fd074fe72f8601b38337447b57f11b1fe10834
replace nose with pytest
montefra/dodocs
setup.py
setup.py
"""Install the library and the script ``dodoc`` Copyright (c) 2015 Francesco Montesano """ import sys try: from pathlib import Path except ImportError: sys.exit("This code requires ``pathlib`` which is shipped with python 3.4" " or older") from setuptools import setup, find_packages from setuptoo...
"""Install the library and the script ``dodoc`` Copyright (c) 2015 Francesco Montesano """ import sys try: from pathlib import Path except ImportError: sys.exit("This code requires ``pathlib`` which is shipped with python 3.4" " or older") from setuptools import setup, find_packages # import onl...
mit
Python
d07b6d063ba78eefae1f38288faf4d8aa5fae71a
Increment default font size to 11.
RyanMcG/center_dmenu
center_dmenu.py
center_dmenu.py
#!/usr/bin/env python2 # Copyright 2013 Ryan McGowan # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
#!/usr/bin/env python2 # Copyright 2013 Ryan McGowan # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
apache-2.0
Python
f1a203e12bab8a0a0c4d9cdbdcf45076595c844a
build naff properly
adrn/gary,adrn/gala,adrn/gary,adrn/gala,adrn/gala,adrn/gary
setup.py
setup.py
# coding: utf-8 from __future__ import division, print_function __author__ = "adrn <adrn@astro.columbia.edu>" # Standard library import os from distutils.core import setup from distutils.extension import Extension # Third-party import numpy as np from Cython.Distutils import build_ext from Cython.Build import cytho...
# coding: utf-8 from __future__ import division, print_function __author__ = "adrn <adrn@astro.columbia.edu>" # Standard library import os from distutils.core import setup from distutils.extension import Extension # Third-party import numpy as np from Cython.Distutils import build_ext from Cython.Build import cytho...
mit
Python
025f12a1631713eb66641fce50f4ea7553ddbdba
FIX typo
gisce/esios
setup.py
setup.py
from setuptools import setup, find_packages setup( name='esios', version='0.1.8', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.net', description='Interact with e.sios ...
from setuptools import setup, find_packages setup( name='esios', version='0.1.8, packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.net', description='Interact with e.sios A...
mit
Python
eb815b9c3b9623af915e16371c7485c42f29e627
Add specific versions to setup.py
pegasus-isi/pegasus-service,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus-service,pegasus-isi/pegasus-service,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus
setup.py
setup.py
import os import sys from setuptools import setup, find_packages # Utility function to read the README file. def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "pegasus-service", version = "0.1", author = "Pegasus Team", author_email = "pegasus@isi.ed...
import os import sys from setuptools import setup, find_packages # Utility function to read the README file. def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "pegasus-service", version = "0.1", author = "Pegasus Team", author_email = "pegasus@isi.ed...
apache-2.0
Python
7881685604824e59e9301ec05c57df35ea7ac5dd
Fix extremely embarassing bug in fileno (bits vs bytes); closes #1213
iamahuman/angr,schieb/angr,schieb/angr,angr/angr,schieb/angr,angr/angr,iamahuman/angr,angr/angr,iamahuman/angr
angr/procedures/posix/fileno.py
angr/procedures/posix/fileno.py
import angr from angr.sim_type import SimTypeFd, SimTypeTop from ..libc import io_file_data_for_arch import logging l = logging.getLogger("angr.procedures.posix.fileno") ###################################### # fileno ###################################### class fileno(angr.SimProcedure): #pylint:disable=argu...
import angr from angr.sim_type import SimTypeFd, SimTypeTop from ..libc import io_file_data_for_arch import logging l = logging.getLogger("angr.procedures.posix.fileno") ###################################### # fileno ###################################### class fileno(angr.SimProcedure): #pylint:disable=argu...
bsd-2-clause
Python
00cb262e12ada44878848b280e8c459ea2ed4fdc
Add Sentry WSGI Middleware
Dekker1/moore,UTNkar/moore,UTNkar/moore,Dekker1/moore,UTNkar/moore,UTNkar/moore,Dekker1/moore,Dekker1/moore
website/website/wsgi.py
website/website/wsgi.py
""" WSGI config for website project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/ """ from __future__ import absolute_import, unicode_literals import os from django.core.wsgi impor...
""" WSGI config for website project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/ """ from __future__ import absolute_import, unicode_literals import os from django.core.wsgi impor...
agpl-3.0
Python
f261b7b78a6bbfec1bac5096cd549cca5eadae75
Update setup.py with mandatory python modules
volnt/22board,volnt/22board,volnt/22board
setup.py
setup.py
from setuptools import setup, find_packages from os.path import join, dirname from app import __version__ setup( name='22board', version=__version__, packages=find_packages(), long_description=open(join(dirname(__file__), 'README.md')).read(), include_package_data=True, install_requires = [ ...
from setuptools import setup, find_packages from os.path import join, dirname from app import __version__ setup( name='22board', version=__version__, packages=find_packages(), long_description=open(join(dirname(__file__), 'README.md')).read(), include_package_data=True, install_requires = [ ...
mit
Python
77323be1b2c052bcd34dbae5d0a0ba8cc47d6dfb
bump version
praekelt/jmbo-your-words,praekelt/jmbo-your-words
setup.py
setup.py
from setuptools import setup, find_packages def listify(filename): return filter(None, open(filename,'r').read().split('\n')) setup( name = "jmbo-your-words", version = "0.0.3", url = 'http://github.com/praekelt/jmbo-word-suggest', license = 'BSD', description = 'Provides users to submit their...
from setuptools import setup, find_packages def listify(filename): return filter(None, open(filename,'r').read().split('\n')) setup( name = "jmbo-your-words", version = "0.0.2", url = 'http://github.com/praekelt/jmbo-word-suggest', license = 'BSD', description = 'Provides users to submit their...
bsd-3-clause
Python
42905cca45eab4b9e04d75b4738d7c89b462f9d0
Bump dev version
pallets/click,mitsuhiko/click,hackebrot/click,pgkelley4/click,Nudies/click
click/__init__.py
click/__init__.py
# -*- coding: utf-8 -*- """ click ~~~~~ Click is a simple Python module that wraps the stdlib's optparse to make writing command line scripts fun. Unlike other modules, it's based around a simple API that does not come with too much magic and is composable. In case optparse ever gets removed ...
# -*- coding: utf-8 -*- """ click ~~~~~ Click is a simple Python module that wraps the stdlib's optparse to make writing command line scripts fun. Unlike other modules, it's based around a simple API that does not come with too much magic and is composable. In case optparse ever gets removed ...
bsd-3-clause
Python
a65357a535e97f907a288a55c99ed06abed9701c
Correct dependency for Python 3.
SunghanKim/mwparserfromhell,jayvdb/mwparserfromhell,jayvdb/mwparserfromhell,yuvipanda/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,kumasento/mwparserfromhell,yuvipanda/mwparserfromhell,kumasento/mwparserfromhell,yuvipanda/mwparserfromhell,gencer/mwparserfromhell,jayvdb/mwparserfromhell,yuvipanda/m...
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2012-2014 Ben Kurtovic <ben.kurtovic@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, includ...
#! /usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2012-2014 Ben Kurtovic <ben.kurtovic@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, includ...
mit
Python
b112efe17cad9f8b5ddb37c193dca414c9568794
implement capture_payment()
rctay/satchmo-payment-dumb
processor.py
processor.py
from decimal import Decimal from django.utils.translation import ugettext_lazy as _ from livesettings import config_value, config_get_group from payment.modules.base import HeadlessPaymentProcessor, ProcessorResult config = config_get_group('PAYMENT_DUMB') class PaymentProcessor(HeadlessPaymentProcessor): def __...
from payment.modules.base import HeadlessPaymentProcessor class PaymentProcessor(HeadlessPaymentProcessor): def __init__(self, settings): super(PaymentProcessor, self).__init__('dumb', settings)
bsd-3-clause
Python
2727b18434a652915d0bed4f790dc303208d8de6
Add pandagl and p3openal_audio plugins
Moguri/prototype-nitrogen
setup.py
setup.py
from setuptools import setup from game.blenderpanda import pman pman.build() setup( name='nitrogen', options = { 'build_apps': { 'copy_paths': [ ('game', '.'), '.pman', ], 'gui_apps': { 'nitrogen-game': 'game/main.py...
from setuptools import setup from game.blenderpanda import pman pman.build() setup( name='nitrogen', options = { 'build_apps': { 'copy_paths': [ ('game', '.'), '.pman', ], 'gui_apps': { 'nitrogen-game': 'game/main.py...
apache-2.0
Python
e5d1facd4617d7ab16663265fc048acd8503693e
Bump isort from 5.9.1 to 5.9.2
fireeye/flare-floss,fireeye/flare-floss
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2017 FireEye, Inc. All Rights Reserved. import os import setuptools requirements = [ "simplejson==3.17.2", "tabulate==0.8.9", "vivisect==1.0.3", "viv-utils[flirt]==0.6.5", ] # this sets __version__ # via: http://stackoverflow.com/a/707135...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2017 FireEye, Inc. All Rights Reserved. import os import setuptools requirements = [ "simplejson==3.17.2", "tabulate==0.8.9", "vivisect==1.0.3", "viv-utils[flirt]==0.6.5", ] # this sets __version__ # via: http://stackoverflow.com/a/707135...
apache-2.0
Python
5c3c1948c993462c5015a28f9e964e3368202fe2
install django likes, corrected for new setuptest
praekelt/django-moderator
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-moderator', version='0.0.1', description='Django Bayesian inference based comment moderation app.', long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Praeke...
from setuptools import setup, find_packages setup( name='django-moderator', version='0.0.1', description='Django Bayesian inference based comment moderation app.', long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Praeke...
bsd-3-clause
Python
d7aa1561d1075e0ee029147348ff733bf7ed891e
Update setup.py.
tuxlinuxien/TwistedWebsocket
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 = "TwistedWebsoket", version = "0.0.2", author = "Yoann Cerda", author_email = "tuxlinuxien@gmail.com", description = (""), license = "BSD", keywords =...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "TwistedWebsoket", version = "0.0.1", author = "Yoann Cerda", author_email = "tuxlinuxien@gmail.com", description = (""), license = "BSD", keywords =...
mit
Python
1672cfc6f431c46ef207eaa8f3d1b9ee6181c8e0
Prepare v4.0.0+post.1 release
caleb531/automata
setup.py
setup.py
#!/usr/bin/env python """Setup logic for pip.""" from setuptools import setup def get_long_description(): with open('README.md', 'r') as readme_file: return readme_file.read() setup( name='automata-lib', version='4.0.0.post1', description='A Python library for simulating automata and Turing...
#!/usr/bin/env python """Setup logic for pip.""" from setuptools import setup def get_long_description(): with open('README.md', 'r') as readme_file: return readme_file.read() setup( name='automata-lib', version='4.0.0', description='A Python library for simulating automata and Turing machi...
mit
Python
49e3da10dfbef5e1f97ffe4662d3d1fb07d49f58
Bump version for release
Yipit/pyeqs
setup.py
setup.py
# #!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import unicode_literals, absolute_import import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links t...
# #!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import unicode_literals, absolute_import import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links t...
mit
Python
bb602fc4154c616c32ba8794d56b69df4e3cf8b1
Add long_description_content_type argument to setup.py
romanvm/python-web-pdb,romanvm/python-web-pdb,romanvm/python-web-pdb
setup.py
setup.py
# coding: utf-8 # Created on: # Author: Roman Miroshnychenko aka Roman V.M. (roman1972@gmail.com) # # Copyright (c) 2016 Roman Miroshnychenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Softwar...
# coding: utf-8 # Created on: # Author: Roman Miroshnychenko aka Roman V.M. (roman1972@gmail.com) # # Copyright (c) 2016 Roman Miroshnychenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Softwar...
mit
Python
46911e4b0d49f4272cc26a0aaa1cea99c38de228
Update Python version dependencies in setup.py
aylward/ITKTubeTK,thewtex/TubeTK,thewtex/TubeTK,thewtex/TubeTK,aylward/ITKTubeTK,thewtex/TubeTK,aylward/ITKTubeTK,aylward/ITKTubeTK
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import print_function from os import sys import numpy as np try: from skbuild import setup except ImportError: print('scikit-build is required to build from source.', file=sys.stderr) print('Please run:', file=sys.stderr) print('', file=sys.stderr) print(' ...
# -*- coding: utf-8 -*- from __future__ import print_function from os import sys import numpy as np try: from skbuild import setup except ImportError: print('scikit-build is required to build from source.', file=sys.stderr) print('Please run:', file=sys.stderr) print('', file=sys.stderr) print(' ...
apache-2.0
Python
3f7dc503a0ddf6023ddd5b9973b5d4f76fa1f980
bump version
HubSpot/sanetime
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='sanetime', version='2.0.0', description='A Sane date/time/timezone/dateutil/calendar/pytz Wrapping Time Class', author='Michael Prior', author_email='prior@cracklabs.com', url='', packages=['sanetime'], install_requires...
#!/usr/bin/env python from distutils.core import setup setup( name='sanetime', version='1.0.1', description='A Sane date/time/timezone/dateutil/calendar/pytz Wrapping Time Class', author='Michael Prior', author_email='prior@cracklabs.com', url='', packages=['sanetime'], install_requires...
mit
Python
063d274fcb74f6c2c5d42e6e2940bb6ebaff35a3
Correct version
Connexions/cnx-query-grammar
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages install_requires = ( 'parsimonious', ) description = "Connexions project search query parsing library." with open('README.rst', 'r') as fb: readme = fb.read() long_description = readme setup( name='cnx-query-grammar', version='0...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages install_requires = ( 'parsimonious', ) description = "Connexions project search query parsing library." with open('README.rst', 'r') as fb: readme = fb.read() long_description = readme setup( name='cnx-query-grammar', version='0...
agpl-3.0
Python
66d584a32d78f116e81c227412538f24fa75aec1
Bump version to 0.3
django-oscar/django-oscar-testsupport
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages PROJECT_ROOT = os.path.dirname(__file__) setup( name='django-oscar-testsupport', version='0.3', url='https://github.com/tangentlabs/django-oscar-testsupport', author="David Winterbottom", author_email="david.winterbottom@t...
#!/usr/bin/env python import os from setuptools import setup, find_packages PROJECT_ROOT = os.path.dirname(__file__) setup( name='django-oscar-testsupport', version='0.2.1', url='https://github.com/tangentlabs/django-oscar-testsupport', author="David Winterbottom", author_email="david.winterbottom...
bsd-3-clause
Python
fdff962aeb1aa0351fc222e005af3fa9248345fb
Add six as an install requirement
Pokechu22/Burger,mcdevs/Burger
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 -*- from setuptools import setup, find_packages setup( name="Burger", packages=find_packages(), version="0.3.0", description="Extract information from Minecraft bytecode.", author="Tyler Kennedy", author_email="tk@tkte.ch", url="http://github.com/mcd...
#!/usr/bin/env python # -*- coding: utf8 -*- from setuptools import setup, find_packages setup( name="Burger", packages=find_packages(), version="0.3.0", description="Extract information from Minecraft bytecode.", author="Tyler Kennedy", author_email="tk@tkte.ch", url="http://github.com/mcd...
mit
Python
31c8e68f9763748a82af9ce519dd97919cdcf19b
Bump version to 1.1.0
pytest-dev/pytest-faulthandler
setup.py
setup.py
from setuptools import setup with open('README.rst') as f: long_description = f.read() setup( name='pytest-faulthandler', version='1.1.0', py_modules=['pytest_faulthandler'], url='https://github.com/pytest-dev/pytest-faulthandler', license='MIT', install_requires=['pytest>=2.6'], auth...
from setuptools import setup with open('README.rst') as f: long_description = f.read() setup( name='pytest-faulthandler', version='1.0.1', py_modules=['pytest_faulthandler'], url='https://github.com/pytest-dev/pytest-faulthandler', license='MIT', install_requires=['pytest>=2.6'], auth...
mit
Python
2b89437ada60162deabae0d1a0db62f1cde1890c
Fix Pyroma lint issues in setup.py
garg10may/yturl
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name = "yturl", version = "1.15.5", description = "Gets direct media URLs to YouTube media", long_description = """ Gets direct media URLs to YouTube media, freeing you having to view them in your browser. """, url = "https:...
#!/usr/bin/env python from distutils.core import setup setup( name = "yturl", version = "1.15.5", description = "Prints direct URLs to YouTube videos.", url = "https://github.com/cdown/yturl", author = "Chris Down", author_email = "chris@chrisdown.name", scripts = [ "yturl" ], class...
isc
Python
977edcf8440e890afa3c8678bace42e7cb8d2ce0
support python 3.4
clach04/json-rpc,lorehov/json-rpc
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages from jsonrpc import version # # Import multiprocessing to prevent test run problem. In case of nosetests # (not nose2) there is probles, for details see: # https://groups.google.com/forum/#!msg/nose-users/fnJ-kAUbYHQ/_UsLN786ygcJ # http://bugs....
#!/usr/bin/env python import os from setuptools import setup, find_packages from jsonrpc import version # # Import multiprocessing to prevent test run problem. In case of nosetests # (not nose2) there is probles, for details see: # https://groups.google.com/forum/#!msg/nose-users/fnJ-kAUbYHQ/_UsLN786ygcJ # http://bugs....
mit
Python
655db4e1c8aefea1699516339dd80e1c6a75d67d
Revert "Revert "Revert "Changed back due to problems, will fix later"""
rbiswas4/simlib
setup.py
setup.py
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'opsimsummary') versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as...
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as f:...
mit
Python
bc503f30bfb0a3f641f05bf567d73326e5bcdf45
Fix setup.py version
gouthambs/Flask-Blogging,wdm0006/Flask-Blogging,gouthambs/Flask-Blogging,wdm0006/Flask-Blogging
setup.py
setup.py
from setuptools import setup, find_packages import os import flask_blogging """ Flask-Blogging -------------- Flask-Blogging is a Flask extension for adding blogging support to your web application. Flask-Login comes with the following features out of the box: - Bootstrap based site - Markdown based blog editor - Mod...
from setuptools import setup, find_packages import os """ Flask-Blogging -------------- Flask-Blogging is a Flask extension for adding blogging support to your web application. Flask-Login comes with the following features out of the box: - Bootstrap based site - Markdown based blog editor - Models to store blog - Au...
mit
Python
db56528fb699c40c1a517d5de7f99de9abb2298a
update msgpack-python dependency to msgpack
LuminosoInsight/wordfreq
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import sys import os if sys.version_info[0] < 3: print("Sorry, but wordfreq no longer supports Python 2.") sys.exit(1) classifiers = [ 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT Lic...
#!/usr/bin/env python from setuptools import setup import sys import os if sys.version_info[0] < 3: print("Sorry, but wordfreq no longer supports Python 2.") sys.exit(1) classifiers = [ 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT Lic...
mit
Python
d09005d9961f43470f08b5312ddcd116189a006a
Bump to 0.10.2
srittau/rouver
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="rouver", version="0.10.2, description="A microframework", long_description=read("README.rst"), author="Sebastian Rittau", author...
#!/usr/bin/env python import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="rouver", version="0.10.1", description="A microframework", long_description=read("README.rst"), author="Sebastian Rittau", autho...
mit
Python
142371bd2affa2a274173ab1cfa78b727954ccb5
set zip_safe to false.
weblyzard/weblyzard_api,weblyzard/weblyzard_api,weblyzard/weblyzard_api
setup.py
setup.py
from setuptools import setup, find_packages from setuptools.command import sdist setup ( name = 'weblyzard_api', version = '0.4.8.2', description= ' Web services for weblyzard', author = 'Heinz-Peter Lang and Albert Weichselbraun', author_email = 'lang@weblyzard.com', packages = find_packages('...
from setuptools import setup, find_packages from setuptools.command import sdist setup ( name = 'weblyzard_api', version = '0.4.8.2', description= ' Web services for weblyzard', author = 'Heinz-Peter Lang and Albert Weichselbraun', author_email = 'lang@weblyzard.com', packages = find_packages('...
apache-2.0
Python
c204248345f8e2838c5151212de17569211dc747
Fix version for 1.3.34 release
Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey
setup.py
setup.py
import sys from os import path import setuptools if sys.version_info < (3, 6): sys.exit("Sorry, Python < 3.6 is not supported") DESCRIPTION = ( "A django survey app, based on and compatible with " '"django-survey". You will be able to migrate your data from an ancient ' "version of django-survey, but...
import sys from os import path import setuptools if sys.version_info < (3, 6): sys.exit("Sorry, Python < 3.6 is not supported") DESCRIPTION = ( "A django survey app, based on and compatible with " '"django-survey". You will be able to migrate your data from an ancient ' "version of django-survey, but...
agpl-3.0
Python
f8fb6bc86316605328aeebdc5882769f5f852e87
Bump version to 0.3.4
yunojuno/django-package-monitor,yunojuno/django-package-monitor
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name="django-package-monitor", version="0.3.4", packages=[ ...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name="django-package-monitor", version="0.3.3", packages=[ ...
mit
Python
9f92c6955f080f19a4bf8b41f5e426d849881ba5
bump version
brennerm/check-mk-web-api
setup.py
setup.py
from setuptools import setup setup( name='check_mk_web_api', packages=['check_mk_web_api'], version='1.6', description='Library to talk to Check_Mk Web API', author='Max Brenner', author_email='xamrennerb@gmail.com', url='https://github.com/brennerm/check-mk-web-api', download_url='http...
from setuptools import setup setup( name='check_mk_web_api', packages=['check_mk_web_api'], version='1.5', description='Library to talk to Check_Mk Web API', author='Max Brenner', author_email='xamrennerb@gmail.com', url='https://github.com/brennerm/check-mk-web-api', download_url='http...
mit
Python
4a6b2b12770674d2ffc2cdf8439886ce3e386662
Add python_requires to setup.py
Empiria/matador
setup.py
setup.py
from setuptools import setup, find_packages # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs') codecs.register(func) setup( ...
from setuptools import setup, find_packages # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs') codecs.register(func) setup( ...
mit
Python
14224df3ad30d9505872a0a6054dada6376dceb0
Bump version
hellysmile/django-activeurl,zakdoek/django-activeurl,zakdoek/django-activeurl,hellysmile/django-activeurl
setup.py
setup.py
import codecs from setuptools import setup classifiers = '''\ Framework :: Django Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP License :: OSI Approved :: Apache Software License Development Status :: 4 - Beta Natural Language :: English Programming Language :: Python ::...
import codecs from setuptools import setup classifiers = '''\ Framework :: Django Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP License :: OSI Approved :: Apache Software License Development Status :: 4 - Beta Natural Language :: English Programming Language :: Python ::...
apache-2.0
Python
0d12203b18e44bc898494abb2bd26c321a46a9b4
upgrade version
alingse/jsoncsv
setup.py
setup.py
# coding=utf-8 # author@alingse # 2016.10.07 import io from setuptools import setup with io.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( name='jsoncsv', version='2.2.5', url='https://github.com/alingse/jsoncsv', description='A command tool easily convert json file to csv ...
# coding=utf-8 # author@alingse # 2016.10.07 import io from setuptools import setup with io.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( name='jsoncsv', version='2.2.4', url='https://github.com/alingse/jsoncsv', description='A command tool easily convert json file to csv ...
apache-2.0
Python
37423143886da59ef4fb0d2c609f1b3faa98e98f
bump version
kmike/ruscorpora-tools
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup __version__ = '0.2' setup( name = 'ruscorpora-tools', version = __version__, author = 'Mikhail Korobov', author_email = 'kmike84@gmail.com', url = 'https://github.com/kmike/ruscorpora-tools/', description = 'Python interface to a free cor...
#!/usr/bin/env python from distutils.core import setup __version__ = '0.1' setup( name = 'ruscorpora-tools', version = __version__, author = 'Mikhail Korobov', author_email = 'kmike84@gmail.com', url = 'https://github.com/kmike/ruscorpora-tools/', description = 'Python interface to a free cor...
mit
Python
f3c69597410119d2c88beb80a5a0ed3c8b884668
Update flake8 requirement from <3.6.0,>=3.5.0 to >=3.5.0,<3.8.0
openfisca/country-template,openfisca/country-template
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-Country-Template", version = "3.9.1", author = "OpenFisca Team", author_email = "contact@openfisca.org", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approve...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-Country-Template", version = "3.9.1", author = "OpenFisca Team", author_email = "contact@openfisca.org", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approve...
agpl-3.0
Python
290ead5bbc57e526f0fe12d161fa5fb684ab4edf
Update meta version so that documentation looks good in pypi
florent1933/django-materializecss-form,florent1933/django-materializecss-form
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import materializecssform with open("README.md", "r") as fh: long_description = fh.read() setup( name='django-materializecss-form', version=materializecssform.__version__, packages=find_packages(), auth...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import materializecssform setup( name='django-materializecss-form', version=materializecssform.__version__, packages=find_packages(), author="Kal Walkden", author_email="kal@walkden.us", descriptio...
mit
Python
b7ebd0b362d56bac115a2c908ff277f586b76c84
Correct version during installation.
SalvusHub/pyexodus,SalvusHub/pyexodus
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup script for the pyexodus module. :copyright: Lion Krischer (krischer@geophysik.uni-muenchen.de), 2016 :license: MIT License """ import inspect import os import sys from setuptools import setup, find_packages # Import the version string. path = os.path.j...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup script for the pyexodus module. :copyright: Lion Krischer (krischer@geophysik.uni-muenchen.de), 2016 :license: MIT License """ import inspect import os from setuptools import setup, find_packages def get_package_data(): """ Returns a list of al...
mit
Python
bb8f98655154c3ad604ef18cf3c3c2a70012e75b
add pywin32 dep for windows platforms
planetlabs/planet-client-python,planetlabs/planet-client-python
setup.py
setup.py
# Copyright 2015 Planet Labs, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writ...
# Copyright 2015 Planet Labs, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writ...
apache-2.0
Python
0e77921d25c62e105728a64662887b6174be05bb
add python 3.5 category
UDST/orca,jiffyclub/orca,jiffyclub/orca,synthicity/orca,synthicity/orca,synthicity/orca,synthicity/orca
setup.py
setup.py
from __future__ import print_function import subprocess # Install setuptools if not installed. try: import setuptools except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.sdist import sdist # these make sure the js ...
from __future__ import print_function import subprocess # Install setuptools if not installed. try: import setuptools except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.sdist import sdist # these make sure the js ...
bsd-3-clause
Python
1ba283e6536db3ce2c502ef2af153ee1ad44836c
Add requests_security to extras_require
bcb/jsonrpcclient
setup.py
setup.py
"""setup.py""" from codecs import open as codecs_open from setuptools import setup with codecs_open('README.rst', 'r', 'utf-8') as f: __README = f.read() with codecs_open('HISTORY.rst', 'r', 'utf-8') as f: __HISTORY = f.read() setup( name='jsonrpcclient', version='2.2.4', description='Send JSON-R...
"""setup.py""" from codecs import open as codecs_open from setuptools import setup with codecs_open('README.rst', 'r', 'utf-8') as f: __README = f.read() with codecs_open('HISTORY.rst', 'r', 'utf-8') as f: __HISTORY = f.read() setup( name='jsonrpcclient', version='2.2.4', description='Send JSON-R...
mit
Python
483ab84922bfe89a10cd4931ec1b865f7332d24b
bump version. fix versioning
sigmavirus24/requests-ntlm,mujiansu/requests-ntlm,trezorg/requests-ntlm,requests/requests-ntlm,Zitrax/requests-ntlm,blockbomb/requests-ntlm
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='requests_ntlm', version='0.0.3', packages=[ 'requests_ntlm' ], install_requires=[ 'requests>=1.0.0', 'python-ntlm' ], provides=[ 'requests_ntlm' ], author='Ben Toews', author_email='mastahyeti@gmail.com', d...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='requests_ntlm', version='0.0.2.4', packages=[ 'requests_ntlm' ], install_requires=[ 'requests>=1.0.0', 'python-ntlm' ], provides=[ 'requests_ntlm' ], author='Ben Toews', author_email='mastahyeti@gmail.com', ...
isc
Python
6a83c795b9ff8c2d77b2f165e69a564079233812
Bump version to support Django 3.0
sergei-maertens/django-choices,bigjason/django-choices
setup.py
setup.py
from os import path from setuptools import find_packages, setup with open(path.join(path.dirname(__file__), 'README.rst')) as f: readme = f.read() setup( name="django-choices", version='1.7.1', license="MIT", description="Sanity for the django choices functionality.", long_description=readme,...
from os import path from setuptools import find_packages, setup with open(path.join(path.dirname(__file__), 'README.rst')) as f: readme = f.read() setup( name="django-choices", version='1.7.0', license="MIT", description="Sanity for the django choices functionality.", long_description=readme,...
mit
Python
74cb442eb8f1cc220cd1c358afe72ae63e1d768a
Bump version
ProDG/django-redis-sessions-fork,hellysmile/django-redis-sessions-fork
setup.py
setup.py
from setuptools import setup import sys # no with statement for python 2.5 def long_description(): f = open('README.rst') rst = f.read() f.close() return rst packages = ['redis_sessions'] install_requires = [ 'redis>=2.4.10', 'django>=1.4' ] if not "__pypy__" in sys.builtin_module_names: ...
from setuptools import setup import sys # no with statement for python 2.5 def long_description(): f = open('README.rst') rst = f.read() f.close() return rst packages = ['redis_sessions'] install_requires = [ 'redis>=2.4.10', 'django>=1.4' ] if not "__pypy__" in sys.builtin_module_names: ...
bsd-3-clause
Python
d76ca5851bf3e9a82cad9436624c8eb6807239a4
update name to django-core-models
ajaniv/django-core-models,ajaniv/django-core-models
setup.py
setup.py
""" .. module:: setup :synopsis: A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html """ import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be ...
""" .. module:: setup :synopsis: A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html """ import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be ...
mit
Python
42e6a2117cb39720b3c14d2bd5197beebab3244e
modifica setup
hugobarzano/IV_hugobarzano,hugobarzano/IV_hugobarzano,hugobarzano/osl-computer-management,hugobarzano/IV_hugobarzano,hugobarzano/IV_hugobarzano,hugobarzano/osl-computer-management,hugobarzano/osl-computer-management,hugobarzano/IV_hugobarzano,hugobarzano/osl-computer-management,hugobarzano/osl-computer-management
setup.py
setup.py
from setuptools import setup setup(name='ComputerManagement', version='0.0.1', description='Plataforma para automatizar el proceso de recogida y catalogacion de equipos informaticos', url='https://github.com/hugobarzano/osl-computer-management', author='Hugo Barzano Cruz', author_email='hugobarzano@gmail.com', l...
from setuptools import setup setup(name='ComputerManagement', version='0.0.1', description='Plataforma para automatizar el proceso de recogida y catalogacion de equipos informaticos', url='https://github.com/hugobarzano/osl-computer-management', author='Hugo Barzano Cruz', author_email='hugobarzano@gmail.com', l...
artistic-2.0
Python
110146b832614177d3c1cc61d25f87f25a85144a
update pip tags
vektorlab/slacksocket,graywizardx/slacksocket,bcicen/slacksocket,hfwang/slacksocket,srikalyan/slacksocket
setup.py
setup.py
import os import sys from setuptools import setup exec(open('slacksocket/version.py').read()) setup(name='slacksocket', version=version, packages=['slacksocket'], description='Slack RTM API Websocket client', author='Bradley Cicenas', author_email='bradley.cicenas@gmail.com', url='...
import os import sys from setuptools import setup exec(open('slacksocket/version.py').read()) setup(name='slacksocket', version=version, packages=['slacksocket'], description='Slack RTM API Websocket client', author='Bradley Cicenas', author_email='bradley.cicenas@gmail.com', url='...
mit
Python
c50ecca4558d76ad9a5cdcdb14530ced0c30d8c4
Increment version.
chevah/pocket-lint,chevah/pocket-lint
setup.py
setup.py
#!/usr/bin/python import subprocess from distutils.core import setup from distutils.command.sdist import sdist class SignedSDistCommand(sdist): """Sign the source archive with a detached signature.""" description = "Sign the source archive after it is generated." def run(self): sdist.run(self)...
#!/usr/bin/python import subprocess from distutils.core import setup from distutils.command.sdist import sdist class SignedSDistCommand(sdist): """Sign the source archive with a detached signature.""" description = "Sign the source archive after it is generated." def run(self): sdist.run(self)...
mit
Python
6e007047bc0b6fa5bf97301c4b7bf9252ceb6393
update version
crunchyroll/ef-open
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='ef-open', version='0.1.2', packages=['efopen'], install_requires=[ "boto3", "PyYAML" ], entry_points={ 'console_scripts': [ 'ef-cf=efopen.ef_cf:main', 'ef-check-config=efopen.ef_chec...
#!/usr/bin/env python from setuptools import setup setup( name='ef-open', version='0.1.1', packages=['efopen'], install_requires=[ "boto3", "PyYAML" ], entry_points={ 'console_scripts': [ 'ef-cf=efopen.ef_cf:main', 'ef-check-config=efopen.ef_chec...
apache-2.0
Python
f14c04c807b36f09f267c419159eb95de7f772e9
Normalize all setup.py files (#4909)
googleapis/python-error-reporting,googleapis/python-error-reporting
setup.py
setup.py
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
# Copyright 2016 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
apache-2.0
Python
9035243a7429cb4b00ab7528e910b009c52ecef3
switch to README.md
pprett/sparklingpandas,sparklingpandas/sparklingpandas,michalmonselise/sparklingpandas,holdenk/sparklingpandas,pprett/sparklingpandas,michalmonselise/sparklingpandas,sparklingpandas/sparklingpandas,jhlch/sparklingpandas,jhlch/sparklingpandas,holdenk/sparklingpandas
setup.py
setup.py
from distutils.core import setup setup( name='pandaspark', version='0.0.1', author='Holden Karau', author_email='holden@pigscanfly.ca', packages=['pandaspark', 'pandaspark.test'], url='https://github.com/holdenk/PandaSpark', license='LICENSE.txt', description='Enable Pandas on PySpark',...
from distutils.core import setup setup( name='pandaspark', version='0.0.1', author='Holden Karau', author_email='holden@pigscanfly.ca', packages=['pandaspark', 'pandaspark.test'], url='https://github.com/holdenk/PandaSpark', license='LICENSE.txt', description='Enable Pandas on PySpark',...
apache-2.0
Python
e798b4931699b9744853d8f7487033958ccee27d
set dev version
fiduswriter/fiduswriter-books,fiduswriter/fiduswriter-books
setup.py
setup.py
import os from glob import glob from setuptools import find_namespace_packages, setup from setuptools.command.build_py import build_py as _build_py # From https://github.com/pypa/setuptools/pull/1574 class build_py(_build_py): def find_package_modules(self, package, package_dir): modules = super().find_pac...
import os from glob import glob from setuptools import find_namespace_packages, setup from setuptools.command.build_py import build_py as _build_py # From https://github.com/pypa/setuptools/pull/1574 class build_py(_build_py): def find_package_modules(self, package, package_dir): modules = super().find_pac...
agpl-3.0
Python
47596501b0da920151848afd3fb467f7bb810919
Update setup
FRidh/ism
setup.py
setup.py
from setuptools import setup from Cython.Build import cythonize import numpy as np setup( name='ism', version='0.1', description="Implementation of Image Source Method.", #long_description=open('README').read(), author='Frederik Rietdijk', author_email='fridh@fridh.nl', licens...
from setuptools import setup from Cython.Build import cythonize import numpy as np setup( name='ism', version='0.1', description="Implementation of Image Source Method.", #long_description=open('README').read(), author='Frederik Rietdijk', author_email='fridh@fridh.nl', licens...
bsd-3-clause
Python
44a9275aeeae4415bf6414de0fb0d897f748cca0
fix deps
ANR-kamoulox/Telemeta,Parisson/Telemeta,Parisson/Telemeta,ANR-kamoulox/Telemeta,Parisson/Telemeta,ANR-kamoulox/Telemeta,ANR-kamoulox/Telemeta,Parisson/Telemeta
setup.py
setup.py
# -*- coding: utf-8 -*- import multiprocessing from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.in...
# -*- coding: utf-8 -*- import multiprocessing from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.in...
agpl-3.0
Python
0fce198896ec3806fbd59b694227b372279938f6
Remove version numbers from setup.py
jwass/geojsonio.py
setup.py
setup.py
from __future__ import unicode_literals from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='geojsonio', version='0.0.3', d...
from __future__ import unicode_literals from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='geojsonio', version='0.0.2', d...
bsd-2-clause
Python
80dfed998405acbcfdee3f8c15a6ece54cd69424
Bump version
cloudify-cosmo/cloudify-rest-client
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
apache-2.0
Python
fbdb66a64ebc96c7e67935f8b58a076591c26463
Update pypi setup.py
arthurtyukayev/python-safer
setup.py
setup.py
from setuptools import setup setup( name='python-safer', version='1.2', packages=['safer'], description="A web scraping API written in Python for the Department of Transportation's Safety and Fitness Electronic Records System http://www.safersys.org/", url='https://github.com/arthurtyukayev/python-...
from setuptools import setup setup( name='python-safer', version='1.1', packages=['safer'], description="Web scraping API wrapping for the Department of Transportation's Safety and Fitness Electronic Records (SAFER) System", url='https://github.com/arthurtyukayev/python-safer', keywords='SAFER ...
mit
Python
3d1e06c6b37431ed4f6c9d426b10682be4ddc5db
Remove 3.4 and 3.7 tags
fsspec/s3fs
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='s3fs', version='0.1.5', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', ...
#!/usr/bin/env python from setuptools import setup setup(name='s3fs', version='0.1.5', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', ...
bsd-3-clause
Python
bcabcaaf47c2222cdf054408ffc81bf3d58b2584
Bump version to 1.26.0
jadolg/rocketchat_API
setup.py
setup.py
# -*-coding:utf-8-*- from setuptools import setup setup( name="rocketchat_API", version="1.26.0", packages=[ "rocketchat_API", "rocketchat_API.APIExceptions", "rocketchat_API.APISections", ], url="https://github.com/jadolg/rocketchat_API", license="MIT", author="Jor...
# -*-coding:utf-8-*- from setuptools import setup setup( name="rocketchat_API", version="1.25.0", packages=[ "rocketchat_API", "rocketchat_API.APIExceptions", "rocketchat_API.APISections", ], url="https://github.com/jadolg/rocketchat_API", license="MIT", author="Jor...
mit
Python
c6dbbc2da5e05b395a7f3d4116415da0e24cda44
Add pypi URL.
yangacer/simpletag
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup import simpletag __clsfrs__ = [ "Programming Language :: Python :: 2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Libraries", "Topic ::...
try: from setuptools import setup except ImportError: from distutils.core import setup import simpletag __clsfrs__ = [ "Programming Language :: Python :: 2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Libraries", "Topic ::...
mit
Python
89e2276fcc5b9bb582e594dd513c84b0a3d7fc7c
bump version to 1.9.903
msabramo/_pymssql_2013-09-09,msabramo/_pymssql_2013-09-09,msabramo/_pymssql_2013-09-09
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup, Extension from Cython.Distutils import build_ext _extra_compile_args = [ '-DMSDBLIB' ] if sys.platform == 'win32': print ('ERROR: This version of pymssql is not support on windows') sys.exit(1) else: include_dirs = [ '/...
#!/usr/bin/env python import os import sys from setuptools import setup, Extension from Cython.Distutils import build_ext _extra_compile_args = [ '-DMSDBLIB' ] if sys.platform == 'win32': print ('ERROR: This version of pymssql is not support on windows') sys.exit(1) else: include_dirs = [ '/...
lgpl-2.1
Python
358ddf71e10c268c6f59cb724f26eb7978f7e413
fix requirements in setup.py
aldryn/aldryn-button,aldryn/aldryn-button
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from aldryn_button import __version__ REQUIREMENTS = [ 'django-filer', 'easy-thumbnails', ] CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: ...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from aldryn_button import __version__ REQUIREMENTS = [ 'filer', 'easy_thumbnails', ] CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Develop...
bsd-3-clause
Python
ea0094c555b499a2ad77c8b7af02d796dd5b4d92
Bump vers for uppercase Beta Code conversion
kylepjohnson/cltk,LBenzahia/cltk,TylerKirby/cltk,diyclassics/cltk,LBenzahia/cltk,TylerKirby/cltk,D-K-E/cltk,cltk/cltk
setup.py
setup.py
"""Config for PyPI.""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MI...
"""Config for PyPI.""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MI...
mit
Python
ca29a2464c8d08c89fac80f17eeb517c8514ff44
bump setup.py version number
jimrthy/funktown,emprovements/funktown,zhemao/funktown
setup.py
setup.py
from setuptools import setup setup(name="funktown", version="0.1.1", description="Functional Data Structures for Python", author="Zhehao Mao", author_email="zhehao.mao@gmail.com", url="http://github.com/zhemao/funktown", packages=["funktown"] )
from setuptools import setup setup(name="funktown", version="0.1.0", description="Functional Data Structures for Python", author="Zhehao Mao", author_email="zhehao.mao@gmail.com", url="http://github.com/zhemao/funktown", packages=["funktown"] )
mit
Python
8295fd7de5f6b4858b1f040cdf94509ffc72cb9e
bump version to v0.0.2
eiiches/pigrate
setup.py
setup.py
# coding: utf-8 from setuptools import setup setup(name='pigrate', version='0.0.2', description='Database schema migration tool written in Python', author='Eiichi Sato', author_email='sato.eiichi@gmail.com', url='https://github.com/eiiches/pigrate', download_url='https://github.co...
# coding: utf-8 from setuptools import setup setup(name='pigrate', version='develop', description='Database schema migration tool written in Python', author='Eiichi Sato', author_email='sato.eiichi@gmail.com', url='https://github.com/eiiches/pigrate', download_url='https://github....
mit
Python
73857891607649f657eee095faf63bd1c120000f
Use HTTPS for project URL
stefanfoulis/django-phonenumber-field
setup.py
setup.py
# -*- coding: utf-8 -*- from phonenumber_field import __version__ from setuptools import find_packages, setup setup( name="django-phonenumber-field", version=__version__, url='https://github.com/stefanfoulis/django-phonenumber-field', license='BSD', platforms=['OS Independent'], description="A...
# -*- coding: utf-8 -*- from phonenumber_field import __version__ from setuptools import find_packages, setup setup( name="django-phonenumber-field", version=__version__, url='http://github.com/stefanfoulis/django-phonenumber-field', license='BSD', platforms=['OS Independent'], description="An...
mit
Python
a2035ba8da309537858dff0ef299cddb1d03b0b2
Add session parameter to parse_requirements method
python-cn/flask-social-blueprint,maxtortime/flask-social-blueprint,ligthyear/flask-social-blueprint,python-cn/flask-social-blueprint,halfcrazy/flask-social-blueprint,ligthyear/flask-social-blueprint,wooyek/flask-social-blueprint,halfcrazy/flask-social-blueprint,wooyek/flask-social-blueprint,maxtortime/flask-social-blue...
setup.py
setup.py
# coding=utf-8 # Copyright 2014 Janusz Skonieczny import sys import os import uuid from setuptools import setup, find_packages from pip.req import parse_requirements ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) SRC_DIR = os.path.join(ROOT_DIR, 'src') sys.path.append(SRC_DIR) install_requires = pa...
# coding=utf-8 # Copyright 2014 Janusz Skonieczny import sys import os from setuptools import setup, find_packages from pip.req import parse_requirements ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) SRC_DIR = os.path.join(ROOT_DIR, 'src') sys.path.append(SRC_DIR) install_requires = parse_requireme...
mit
Python
63eaf50044cb6c8c611812fd30ec05bf39527c19
Update to dev version
thijstriemstra/pyamf,hydralabs/pyamf,thijstriemstra/pyamf,hydralabs/pyamf
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) The PyAMF Project. # See LICENSE.txt for details. # import ordering is important import setupinfo from setuptools import setup, find_packages version = (0, 7, 1, 'dev') name = "PyAMF" description = "AMF support for Python" long_description = setupinfo.read('README.rst') url = ...
#!/usr/bin/env python # Copyright (c) The PyAMF Project. # See LICENSE.txt for details. # import ordering is important import setupinfo from setuptools import setup, find_packages version = (0, 7, 1) name = "PyAMF" description = "AMF support for Python" long_description = setupinfo.read('README.rst') url = "http:/...
mit
Python
24444ddef5df90a7932b7274efd482f4b830acb0
fix typo
bcicen/slackn,bcicen/slack-notify
setup.py
setup.py
from setuptools import setup exec(open('slackn/version.py').read()) requirements = [ 'redis>=2.10.5' ] setup( name='slackn', version=version, packages=['slackn'], description='Nagios batch notifier for Slack', author='Bradley Cicenas', author_email='bradley.cicenas@gmail.com', url='https:...
from setuptools import setup exec(open('slackn/version.py').read()) requirements = [ 'redis>=2.10.5' ] setup( name='slackn', version=version, packages=['slackn'], description='Nagios batch notifier for Slack', author='Bradley Cicenas', author_email='bradley.cicenas@gmail.com', url='https:...
mit
Python
abd45f60796480c515a4a89a3f932a0efd518cdd
Upgrade infosystem version
samueldmq/infosystem
setup.py
setup.py
from setuptools import setup, find_packages setup( name='infosystem', version='0.1.47', summary='Infosystem Framework', url='https://github.com/samueldmq/infosystem', author='Samuel de Medeiros Queiroz, Francois Oliveira', author_email='samueldmq@gmail.com, oliveira.francois@gmail.com', li...
from setuptools import setup, find_packages setup( name='infosystem', version='0.1.46', summary='Infosystem Framework', url='https://github.com/samueldmq/infosystem', author='Samuel de Medeiros Queiroz, Francois Oliveira', author_email='samueldmq@gmail.com, oliveira.francois@gmail.com', li...
apache-2.0
Python
323fcb55cf22bfecefd43bc5670f76ddf69fb462
Bump to 0.1.9
loicgasser/gatilegrid
setup.py
setup.py
# -*- coding: utf-8 -*- # HACK for `nose.collector` to work on python 2.7.3 and earlier import multiprocessing import os from setuptools import setup try: from pypandoc import convert README = convert('README.md', 'rst') except ImportError: README = open(os.path.join(os.path.dirname(__file__), 'README.md...
# -*- coding: utf-8 -*- # HACK for `nose.collector` to work on python 2.7.3 and earlier import multiprocessing import os from setuptools import setup try: from pypandoc import convert README = convert('README.md', 'rst') except ImportError: README = open(os.path.join(os.path.dirname(__file__), 'README.md...
mit
Python
0579da9a2cc9b8696d8071c4f1e07140d940b386
Fix (and test coverage) for base64 encoding issue.
ad-m/flanker,EthanBlackburn/flanker,glyph/flanker,alex/flanker,aroberts/flanker,nylas/flanker,EncircleInc/addresslib,mailgun/flanker,xjzhou/flanker,smokymountains/flanker,stefanw/flanker
setup.py
setup.py
# coding:utf-8 import sys from setuptools import setup, find_packages setup(name='flanker', version='0.4.13', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.co...
# coding:utf-8 import sys from setuptools import setup, find_packages setup(name='flanker', version='0.3.13', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.co...
apache-2.0
Python
cc33ab5a946acb9173cfcdaedcf1195b7fc79b7b
Bump version
KyleJamesWalker/yamlsettings
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() requirements = [ "PyYAML", ] test_requirements = [ "nose", "mock", ] setup( name='yamlsettings', version='0.2.7', description='Yaml Settings Configuration Module'...
try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() requirements = [ "PyYAML", ] test_requirements = [ "nose", "mock", ] setup( name='yamlsettings', version='0.2.6', description='Yaml Settings Configuration Module'...
mit
Python
853481c6c6f6c27e8805c62b77bd85bec0f1535c
Convert README.md file into .rst
raviqqe/shakyo
setup.py
setup.py
#!/usr/bin/env python import setuptools import shutil import sys if not ((sys.version_info.major >= 3 and sys.version_info.minor >= 5) or sys.version_info.major > 3): exit("Sorry, Python's version must be later than 3.5.") import shakyo try: import pypandoc with open("README.rst", "w") as f: f.write(...
#!/usr/bin/env python import setuptools import sys if not ((sys.version_info.major >= 3 and sys.version_info.minor >= 5) or sys.version_info.major > 3): exit("Sorry, Python's version must be later than 3.5.") import shakyo setuptools.setup( name=shakyo.__name__, version=shakyo.__version__, descri...
unlicense
Python
db996b137a0a2ed63e76d3c5d72cef93de914b2d
Update short descripton + keywords
eddie-dunn/swytcher
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # pylint: disable=missing-docstring # pylint: disable=invalid-name # pylint: disable=fixme from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() r...
#!/usr/bin/env python # -*- coding: utf-8 -*- # pylint: disable=missing-docstring # pylint: disable=invalid-name # pylint: disable=fixme from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() r...
mit
Python
be49b2c8404fe2394104b761f6e77ea69b82c57b
fix package name
universalcore/unicore.comments,universalcore/unicore.comments
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'requirements.txt')) as f: requires = filter(None, f.readlines()) with open(os.path.join(here, 'VERSION')) ...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'requirements.txt')) as f: requires = filter(None, f.readlines()) with open(os.path.join(here, 'VERSION')) ...
bsd-2-clause
Python
a08249979419215ba91cb982bc476ca9d1eff77a
Bump version
mfichman/winbrew
setup.py
setup.py
from setuptools import setup setup( name = 'winbrew', version = '1.0.1', author = 'Matt Fichman', author_email = 'matt.fichman@gmail.com', description = ('Native package installer for Windows'), license = 'MIT', keywords = ('installer', 'windows', 'package'), url = 'http://github.com/mf...
from setuptools import setup setup( name = 'winbrew', version = '1.0.0', author = 'Matt Fichman', author_email = 'matt.fichman@gmail.com', description = ('Native package installer for Windows'), license = 'MIT', keywords = ('installer', 'windows', 'package'), url = 'http://github.com/mf...
mit
Python
9faf418fb6bf546f41d7fdefcf871dadbd9a73a4
switch wikipedia library
RaymondKlass/entity-extract
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup setup(name="entity-extractor", version="0.01", author="Raymond Klass", author_email="raymondklass@gmail.com", description="Entity Extraction, Recognition, and Translation to RDF", license="MIT", packages=["entity_extract"], i...
#! /usr/bin/env python from setuptools import setup setup(name="entity-extractor", version="0.01", author="Raymond Klass", author_email="raymondklass@gmail.com", description="Entity Extraction, Recognition, and Translation to RDF", license="MIT", packages=["entity_extract"], i...
mit
Python
4a11a206fbcf88ee18cbed2d01041e61c20a9a48
Add max supported pytest version to < 5.4.0 to prevent fails until #141 is fixed.
pytest-dev/pytest-asyncio
setup.py
setup.py
import re from pathlib import Path from setuptools import setup, find_packages def find_version(): version_file = ( Path(__file__) .parent.joinpath("pytest_asyncio", "__init__.py") .read_text() ) version_match = re.search( r"^__version__ = ['\"]([^'\"]*)['\"]", version_fil...
import re from pathlib import Path from setuptools import setup, find_packages def find_version(): version_file = ( Path(__file__) .parent.joinpath("pytest_asyncio", "__init__.py") .read_text() ) version_match = re.search( r"^__version__ = ['\"]([^'\"]*)['\"]", version_fil...
apache-2.0
Python
50d488249b67a052e64c3766ac7f583abc54cc2a
Bump to version 0.5.0.
craigahobbs/chisel
setup.py
setup.py
# # Copyright (C) 2012-2013 Craig Hobbs # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, ...
# # Copyright (C) 2012-2013 Craig Hobbs # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, ...
mit
Python
e9441a059283f873fb9058621a02a6ec557d2d0f
Add Python version classifiers.
Affirm/pyrollbar,rollbar/pyrollbar
setup.py
setup.py
import re import os.path from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) README_PATH = os.path.join(HERE, 'README.md') try: with open(README_PATH) as fd: README = fd.read() except IOError: README = '' INIT_PATH = os.path.join(HERE, 'rollbar/__init__.py') ...
import re import os.path from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) README_PATH = os.path.join(HERE, 'README.md') try: with open(README_PATH) as fd: README = fd.read() except IOError: README = '' INIT_PATH = os.path.join(HERE, 'rollbar/__init__.py') ...
mit
Python
5edff65ee48847a71cef3bacdd9a8da9e7200aed
Bump the version
gmr/rejected,gmr/rejected
setup.py
setup.py
from setuptools import setup setup(name='rejected', version='3.19.9', description='Rejected is a Python RabbitMQ Consumer Framework and ' 'Controller Daemon', long_description=open('README.rst').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', ...
from setuptools import setup setup(name='rejected', version='3.19.8', description='Rejected is a Python RabbitMQ Consumer Framework and ' 'Controller Daemon', long_description=open('README.rst').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', ...
bsd-3-clause
Python
c326b1c2487712b605f663b5fb1e9d76e146af2f
simplify pkgconfig() to match how it's called
alexsilva/lunatic-python,albanD/lunatic-python,alexsilva/lunatic-python,hughperkins/lunatic-python,alexsilva/lunatic-python,hughperkins/lunatic-python,bastibe/lunatic-python,greatwolf/lunatic-python,bastibe/lunatic-python,albanD/lunatic-python,greatwolf/lunatic-python
setup.py
setup.py
#!/usr/bin/python import sys import os import commands from distutils.core import setup, Extension from distutils.sysconfig import get_python_lib, get_python_version if os.path.isfile("MANIFEST"): os.unlink("MANIFEST") # You may have to change these PYLIBS = ["python" + get_python_version(), "pthread", "util"] ...
#!/usr/bin/python import sys import os import commands from distutils.core import setup, Extension from distutils.sysconfig import get_python_lib, get_python_version if os.path.isfile("MANIFEST"): os.unlink("MANIFEST") # You may have to change these PYLIBS = ["python" + get_python_version(), "pthread", "util"] ...
lgpl-2.1
Python
f9afefcfc108fe2696b5d374e6a0b2d88e9c0f58
Fix the rely setting
ligyxy/DictMySQL,ligyxy/DictMySQLdb
setup.py
setup.py
#!/usr/bin/python # -*-coding:UTF-8 -*- from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) setup(name='dictmysqldb', version='0.3.5', description='A mysql package on the top of MySQL-python for more convenient database manipulations with Python dictionary.', ...
#!/usr/bin/python # -*-coding:UTF-8 -*- from setuptools import setup, find_packages from os import path import sys if sys.version_info[0] >= 3: install_requires = ["PyMySQL"] else: install_requires = ["MySQL-python"] here = path.abspath(path.dirname(__file__)) setup( name='dictmysqldb', version='0....
mit
Python
5dd39629ceaaaf20189a0f7f64ed2a850f028ce1
Update pytest-xdist requirement from <2.3,>=1.30 to >=1.30,<2.4 (#679)
larq/larq
setup.py
setup.py
from setuptools import find_packages, setup def readme(): with open("README.md", "r") as f: return f.read() setup( name="larq", version="0.12.0", python_requires=">=3.6", author="Plumerai", author_email="opensource@plumerai.com", description="An Open Source Machine Learning Libra...
from setuptools import find_packages, setup def readme(): with open("README.md", "r") as f: return f.read() setup( name="larq", version="0.12.0", python_requires=">=3.6", author="Plumerai", author_email="opensource@plumerai.com", description="An Open Source Machine Learning Libra...
apache-2.0
Python