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 |
|---|---|---|---|---|---|---|---|---|
baa1866e7b91dcda9369e90c6758110d4ad17732 | Add tensorflow as dependency. | delftrobotics/keras-retinanet | setup.py | setup.py | import setuptools
setuptools.setup(
name='keras-retinanet',
version='0.0.1',
url='https://github.com/delftrobotics/keras-retinanet',
author='Hans Gaiser',
author_email='j.c.gaiser@delftrobotics.com',
maintainer='Hans Gaiser',
maintainer_email='j.c.gaiser@delftrobotics.com',
packages=set... | import setuptools
setuptools.setup(
name='keras-retinanet',
version='0.0.1',
url='https://github.com/delftrobotics/keras-retinanet',
author='Hans Gaiser',
author_email='j.c.gaiser@delftrobotics.com',
maintainer='Hans Gaiser',
maintainer_email='j.c.gaiser@delftrobotics.com',
packages=set... | apache-2.0 | Python |
2ee08b66284143c1e07929725171c321d481a878 | Set version to 1.0.0 | AgileVisionCompany/lambda_deploy | setup.py | setup.py | """AWS Lambda functions deployment tool
See:
https://github.com/AgileVisionCompany/lambda_deploy
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rs... | """AWS Lambda functions deployment tool
See:
https://github.com/AgileVisionCompany/lambda_deploy
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rs... | mit | Python |
64c4c3329f25ed4ee565ce8cbd2db1b3141605b2 | Configure to run tests under pytest runner | yougov/librarypaste,yougov/librarypaste | setup.py | setup.py | import sys
import setuptools
py26_reqs = ['argparse', 'importlib'] if sys.version_info < (2,7) else []
setuptools.setup(
name='librarypaste',
use_hg_version=dict(increment='0.1'),
author='Jamie Turner',
author_email='jamie@jamwt.com',
url='http://bitbucket.org/chmullig/librarypaste/',
descrip... | import sys
import setuptools
py26_reqs = ['argparse', 'importlib'] if sys.version_info < (2,7) else []
setuptools.setup(
name='librarypaste',
use_hg_version=dict(increment='0.1'),
author='Jamie Turner',
author_email='jamie@jamwt.com',
url='http://bitbucket.org/chmullig/librarypaste/',
descrip... | mit | Python |
c3264d3c4abcb6d382400ecb1f496ffce818c43d | Bump autopep8 from 1.4.4 to 1.5 | 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.6",
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.6",
author = "OpenFisca Team",
author_email = "contact@openfisca.org",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approve... | agpl-3.0 | Python |
0931f7c5ee8b4e70650cf1635c130e9088110d7b | Add version attribute | tyrannosaurus/termformat | setup.py | setup.py | from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'termformat',
version = '0.1',
description = 'Erlang External Term Format (de)serialization module',
license = 'MIT',
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension... | from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'termformat',
description = 'Erlang External Term Format (de)serialization module',
license = 'MIT',
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension('termformat', ['te... | mit | Python |
5b9e0136197ad84485aa85431eeb978b95f8fd88 | Bump to v1.1.0 | gisce/markdown-i18n | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='markdown-i18n',
version='1.1.0',
packages=find_packages(),
url='https://github.com/gisce/markdown-i18n',
license='MIT',
install_requires=['Markdown', 'babel'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
test_sui... | from setuptools import setup, find_packages
setup(
name='markdown-i18n',
version='1.0.0',
packages=find_packages(),
url='https://github.com/gisce/markdown-i18n',
license='MIT',
install_requires=['Markdown', 'babel'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
test_sui... | mit | Python |
5640b2851910998952502281f6dd6ef454c019aa | Bump version. | Nextdoor/nose-leak-detector | setup.py | setup.py | import sys
import codecs
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
extra_setup = {}
if sys.version_info >= (3,):
extra_setu... | import sys
import codecs
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
extra_setup = {}
if sys.version_info >= (3,):
extra_setu... | bsd-2-clause | Python |
484f94dc8117ba79e5f6e6d3b1014969bf5c709f | Bump version (#4) | jaymed/python-blessclient | setup.py | setup.py | """
"""
from setuptools import setup, find_packages
setup(
name="blessclient",
version="0.2.0",
packages=find_packages(exclude=["test*"]),
install_requires=[
'boto3>=1.4.0,<2.0.0',
'psutil>=4.3',
'kmsauth>=0.1.8'
],
author="Chris Steipp",
author_email="csteipp@lyft... | """
"""
from setuptools import setup, find_packages
setup(
name="blessclient",
version="0.1.1",
packages=find_packages(exclude=["test*"]),
install_requires=[
'boto3>=1.4.0,<2.0.0',
'psutil>=4.3',
'kmsauth>=0.1.8'
],
author="Chris Steipp",
author_email="csteipp@lyft... | apache-2.0 | Python |
394d6c49834e2f617b9693276bfb7e18fa259962 | Prepare openprocurement.edge v1.0.0dev7 | openprocurement/openprocurement.edge,openprocurement/openprocurement.edge,openprocurement/openprocurement.edge | 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()
requires = [
'cornice',
'gevent',
'pyramid_exclog',
'setuptools',
'couchdb',
'couchapp',
'pycrypto',
'openpro... | 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()
requires = [
'cornice',
'gevent',
'pyramid_exclog',
'setuptools',
'couchdb',
'couchapp',
'pycrypto',
'openpro... | apache-2.0 | Python |
fc0c3fdc990fe2787a7e4babff140c4a89049b6c | Modify project URL | Moliholy/cvmfs-browser,cvmfs/cvmfs-browser,Moliholy/cvmfs-browser,cvmfs/cvmfs-browser,cvmfs/cvmfs-browser,Moliholy/cvmfs-browser | setup.py | setup.py | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) 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='cvmfs-browser',
ve... | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) 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='cvmfs-browser',
ve... | bsd-3-clause | Python |
d5eb50a95145e0e9995af28b976474e9c5486a50 | Update version. | gracenote/django-health-monitor,seanchon/django-health-monitor,seanchon/django-health-monitor,gracenote/django-health-monitor | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
version = '0.1.2'
if sys.argv[-1] == 'publish':
try:
import wheel
print("Wheel version: ", wheel.... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
version = '0.1.1'
if sys.argv[-1] == 'publish':
try:
import wheel
print("Wheel version: ", wheel.... | apache-2.0 | Python |
6bfcfaffcb1695f142c11b6864951f9471e52d60 | Add suggestion box script to PATH | remiolsen/status,remiolsen/status,ewels/genomics-status,ewels/genomics-status,SciLifeLab/genomics-status,SciLifeLab/genomics-status,Galithil/status,Galithil/status,remiolsen/status,ewels/genomics-status,Galithil/status,kate-v-stepanova/genomics-status,kate-v-stepanova/genomics-status,kate-v-stepanova/genomics-status,Sc... | setup.py | setup.py | #!/usr/bin/env python
"""Setup file and install script SciLife python scripts.
"""
from setuptools import setup, find_packages
try:
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
except IOError:
install_requires = []
setup(name="status",
author="Sc... | #!/usr/bin/env python
"""Setup file and install script SciLife python scripts.
"""
from setuptools import setup, find_packages
try:
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
except IOError:
install_requires = []
setup(name="status",
author="Sc... | mit | Python |
6d42599e4dcee8b29641c77366f79267c5df1fc8 | Increase version to 0.4.0 | iustin/pyxattr,iustin/pyxattr | setup.py | setup.py | #!/usr/bin/python
#import distutils
#from distutils.core import setup, Extension
from setuptools import setup, Extension
long_desc = """This is a C extension module for Python which
implements extended attributes manipulation. It is a wrapper on top
of the attr C library - see attr(5)."""
version = "0.4.0"
author = "... | #!/usr/bin/python
#import distutils
#from distutils.core import setup, Extension
from setuptools import setup, Extension
long_desc = """This is a C extension module for Python which
implements extended attributes manipulation. It is a wrapper on top
of the attr C library - see attr(5)."""
version = "0.3.0"
author = "... | lgpl-2.1 | Python |
259067bc3a4e47335123ecb29d150d2fc776e839 | Add qemu registration | NeblioTeam/neblio,NeblioTeam/neblio,NeblioTeam/neblio,NeblioTeam/neblio,NeblioTeam/neblio | ci_scripts/test_rpi-daemon-gui-ccache.py | ci_scripts/test_rpi-daemon-gui-ccache.py | import os
import urllib2
import multiprocessing as mp
import neblio_ci_libs as nci
working_dir = os.getcwd()
deploy_dir = os.path.join(os.environ['TRAVIS_BUILD_DIR'],'deploy', '')
build_cache_name = 'rpi-build-ccache-' + os.environ['TRAVIS_BRANCH'] + '.tar.gz'
nci.mkdir_p(deploy_dir)
os.chdir(deploy_dir)
# Download ... | import os
import urllib2
import multiprocessing as mp
import neblio_ci_libs as nci
working_dir = os.getcwd()
deploy_dir = os.path.join(os.environ['TRAVIS_BUILD_DIR'],'deploy', '')
build_cache_name = 'rpi-build-ccache-' + os.environ['TRAVIS_BRANCH'] + '.tar.gz'
nci.mkdir_p(deploy_dir)
os.chdir(deploy_dir)
# Download ... | mit | Python |
159fa2109285c461b0834d3a29477ca139d01419 | Add event-list | boundary/pulse-api-cli,jdgwartney/pulse-api-cli,wcainboundary/boundary-api-cli,boundary/boundary-api-cli,boundary/pulse-api-cli,jdgwartney/boundary-api-cli,jdgwartney/pulse-api-cli,wcainboundary/boundary-api-cli,jdgwartney/boundary-api-cli,boundary/boundary-api-cli | setup.py | setup.py | from distutils.core import setup
setup(
name='boundary',
version='0.1.0',
url="https://github.com/boundary/boundary-api-cli",
author='David Gwartney',
author_email='davidg@boundary.com',
packages=['boundary',],
scripts=[
'bin/alarm-create',
'bin/alarm-delete',
'bin/alarm-ge... | from distutils.core import setup
setup(
name='boundary',
version='0.1.0',
url="https://github.com/boundary/boundary-api-cli",
author='David Gwartney',
author_email='davidg@boundary.com',
packages=['boundary',],
scripts=[
'bin/alarm-create',
'bin/alarm-delete',
'bin/alarm-ge... | apache-2.0 | Python |
5e905d28bba10e316e1f76d74cb92acd2be849d0 | Bump minor version and upload to PyPI. | chrwen-omicron/pypcapfile,kisom/pypcapfile,douglaskastle/pypcapfile | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pypcapfile',
version='0.8.2',
description=('Pure Python package for reading and parsing libpcap '
'savefiles.'),
... | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pypcapfile',
version='0.8.1',
description=('Pure Python package for reading and parsing libpcap '
'savefiles.'),
... | isc | Python |
8036fcbb01da2c0649d55048549eb91fdd783591 | update comments | martindale/letsencrypt,hlieberman/letsencrypt,Bachmann1234/letsencrypt,bsmr-misc-forks/letsencrypt,dietsche/letsencrypt,tdfischer/lets-encrypt-preview,solidgoldbomb/letsencrypt,kuba/letsencrypt,goofwear/letsencrypt,PeterMosmans/letsencrypt,sjerdo/letsencrypt,letsencrypt/letsencrypt,bsmr-misc-forks/letsencrypt,riseofthe... | client-webserver/client.py | client-webserver/client.py | #!/usr/bin/env python
from chocolate_protocol_pb2 import chocolatemessage
from Crypto.Hash import SHA256
import CSR
from CSR import M2Crypto
import urllib2, os, sys, time, random, sys
# CSR.py here should be a symlink to ../server-ca/CSR.py
def sha256(m):
return SHA256.new(m).hexdigest()
try:
upstream = "htt... | #!/usr/bin/env python
from chocolate_protocol_pb2 import chocolatemessage
from Crypto.Hash import SHA256
import CSR
from CSR import M2Crypto
import urllib2, os, sys, time, random, sys
# CSR.py here should be a symlink to ../server-ca/CSR.py
def sha256(m):
return SHA256.new(m).hexdigest()
try:
upstream = "htt... | apache-2.0 | Python |
1f450f7ecc32d715c8b2277362a4edf9cfe14e14 | Bump version to 1.0.17 | bdupharm/falcon-autocrud | setup.py | setup.py | from setuptools import setup
version = '1.0.17'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | from setuptools import setup
version = '1.0.16'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | mit | Python |
04d0b69412d75e1f5eb190f88959b485971980d5 | fix bug | cloudorz/apple | utils/sp.py | utils/sp.py | # coding: utf-8
from tornado import httpclient, escape, ioloop
__all__ = ['sms_send', 'ret_code2desc']
errors = {
-1: u"没有该用户账户",
-2: u"密钥不正确(不是用户密码)",
-3: u"短信数量不足",
-11: u"该用户被禁用",
-14: u"短信内容出现非法字符",
-41: u"手机号码为空",
-42: u"短信内容为空",
}
def handler_sms... | # coding: utf-8
import tornado
__all__ = ['sms_send', 'ret_code2desc']
errors = {
-1: u"没有该用户账户",
-2: u"密钥不正确(不是用户密码)",
-3: u"短信数量不足",
-11: u"该用户被禁用",
-14: u"短信内容出现非法字符",
-41: u"手机号码为空",
-42: u"短信内容为空",
}
def handler_sms_reqeust(response):
if respo... | bsd-3-clause | Python |
f7e0d1da782b55ec4a3d426d5418e737a032fc51 | Update setup.py | chakki-works/seqeval,chakki-works/seqeval | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import sys
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'seqeval'
DESCRIPTION = 'Testing framework for sequence labeling'
URL = 'https://github.com/chakki-works/seqeval'
EMAIL = 'hiroki.nakayama.py@gmail.com'
AUTHOR = 'Hirons... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import sys
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'seqeval'
DESCRIPTION = 'Testing framework for sequence labeling'
URL = 'https://github.com/chakki-works/seqeval'
EMAIL = 'hiroki.nakayama.py@gmail.com'
AUTHOR = 'Hirons... | mit | Python |
a7fcb2cbcd4178acff03a6c6bd67117c8236bb10 | bump version | bargulg/multicache | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
tests_require = [
'pytest'
]
setup(
name='multicache',
packages=['multicache'],
version='0.1.6',
description='Simple caching mechanisms',
author='Michal Ovciarik',
author_email='movciari@gmail.com',
url='https://github.com/bargulg... | #!/usr/bin/env python
from distutils.core import setup
tests_require = [
'pytest'
]
setup(
name='multicache',
packages=['multicache'],
version='0.1.5',
description='Simple caching mechanisms',
author='Michal Ovciarik',
author_email='movciari@gmail.com',
url='https://github.com/bargulg... | mit | Python |
fe1e5effa02d8348aece7881c3952f8dc7554ee7 | install phpsh.1 into /usr/local/man/man1 | rhee/phpsh,terrorbox/phpsh,chooaya/phpsh,terrorbox/phpsh,facebookarchive/phpsh,rjmi004/phpsh,rhee/phpsh,rjmi004/phpsh,AsafMah/phpsh,rhee/phpsh,rjmi004/phpsh,terrorbox/phpsh,AsafMah/phpsh,facebookarchive/phpsh,chooaya/phpsh,AsafMah/phpsh,chooaya/phpsh | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from subprocess import Popen
import sys
import os
if len(sys.argv) > 1 and sys.argv[1] == 'build':
build_root = os.path.dirname(os.path.realpath(__file__))
make_dir = os.path.join(build_root, "src/xdebug-clients/geben")
p = Popen(['make', '-C', make_dir])
... | #!/usr/bin/env python
from setuptools import setup
from subprocess import Popen
import sys
import os
if len(sys.argv) > 1 and sys.argv[1] == 'build':
build_root = os.path.dirname(os.path.realpath(__file__))
make_dir = os.path.join(build_root, "src/xdebug-clients/geben")
p = Popen(['make', '-C', make_dir])
... | bsd-3-clause | Python |
51034f15b1882a08b3a511742deff3c2bc5ce169 | Fix missing package is setup.py | JcDelay/pycr | setup.py | setup.py | #! /usr/bin/env python
"""
Setup configuration file for Gerrit Code Review - Command Line Tools
"""
import os
from distutils.core import setup
# Ensure execution from the root directory
ROOT_DIR = os.path.dirname(__file__)
if ROOT_DIR != '':
os.chdir(ROOT_DIR)
# Dynamically calculate the version based on libp... | #! /usr/bin/env python
"""
Setup configuration file for Gerrit Code Review - Command Line Tools
"""
import os
from distutils.core import setup
# Ensure execution from the root directory
ROOT_DIR = os.path.dirname(__file__)
if ROOT_DIR != '':
os.chdir(ROOT_DIR)
# Dynamically calculate the version based on libp... | apache-2.0 | Python |
ccdc6ca80b8ca84de7a9438eb822f36f18bd072a | Make friendly for old python | pydanny/whichcraft | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = "0.5.1"
if sys.argv[-1] == "publish":
try:
import wheel
except ImportError:
raise ImportError("Fix: pip install wheel")
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = "0.5.1"
if sys.argv[-1] == "publish":
try:
import wheel
except ImportError:
raise ImportError("Fix: pip install wheel")
... | bsd-3-clause | Python |
cf78a68f6b356d9c3053a157052cf4cab0b9f1b4 | add pytoml | yjpark/lnkr | setup.py | setup.py | from __future__ import print_function
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import io
import codecs
import os
import sys
__version__ = "0.0.1"
here = os.path.abspath(os.path.dirname(__file__))
def read(*filenames, **kwargs):
encoding = kwargs.get('enc... | from __future__ import print_function
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import io
import codecs
import os
import sys
__version__ = "0.0.1"
here = os.path.abspath(os.path.dirname(__file__))
def read(*filenames, **kwargs):
encoding = kwargs.get('enc... | mit | Python |
36f909d7883fe2b8d637dac92ad2121683bb695c | Add runtime requirements to setup.py (#20) | ajtulloch/sklearn-compiledtrees | setup.py | setup.py | from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
import os
def configuration(parent_package='', top_path=None):
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
config = Configuration(None, parent_package, top_path)
config.set_options(ignore_setup_xxx... | from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
import os
def configuration(parent_package='', top_path=None):
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
config = Configuration(None, parent_package, top_path)
config.set_options(ignore_setup_xxx... | mit | Python |
3f87a41f9d6aa4bdc07672c00afb3b1f38c5c1cb | bump version | blockcypher/bwallet,blockcypher/bcwallet | setup.py | setup.py | # https://youtu.be/kNke39OZ2k0?t=65
from setuptools import setup
setup(
name='bwallet',
version='1.0.11',
description='Simple BIP32 HD cryptocurrecy command line wallet',
author='Michael Flaxman',
author_email='mflaxman+blockcypher@gmail.com',
url='https://github.com/bl... | # https://youtu.be/kNke39OZ2k0?t=65
from setuptools import setup
setup(
name='bwallet',
version='1.0.10',
description='Simple BIP32 HD cryptocurrecy command line wallet',
author='Michael Flaxman',
author_email='mflaxman+blockcypher@gmail.com',
url='https://github.com/bl... | apache-2.0 | Python |
faa7b021d4f081561fa47f2556852b60f0bc25a3 | Revert "corrects module name" | gini/gini_sphinx_theme_vision,gini/gini_sphinx_theme_vision,gini/gini_sphinx_theme_vision,gini/gini_sphinx_theme_vision | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
gini_sphinx theme
=================
Mainly based on the `sphinx_rtd_theme` by Dave Snider.
.. _github: https://www.github.com/snide/sphinx_rtd_theme
"""
from setuptools import setup
from gini_sphinx_theme import __version__
setup(
name='gini_sphinx_theme',
version=__version__,
... | # -*- coding: utf-8 -*-
"""
gini_sphinx theme
=================
Mainly based on the `sphinx_rtd_theme` by Dave Snider.
.. _github: https://www.github.com/snide/sphinx_rtd_theme
"""
from setuptools import setup
from gini_sphinx_theme_vision import __version__
setup(
name='gini_sphinx_theme',
version=__versio... | mit | Python |
f2c2c14ae6f445f8bba0481f6a43e529c14d5992 | Update classifiers. | alexsilva/django-xadmin,alexsilva/django-xadmin,alexsilva/django-xadmin,alexsilva/django-xadmin | setup.py | setup.py | #!/usr/bin/env python
from io import open
from setuptools import setup
# version_tuple = __import__('xadmin').VERSION
# version = ".".join([str(v) for v in version_tuple])
setup(
name='xadmin',
version='2.0.1',
description='Drop-in replacement of Django admin comes with lots of goodies, fully extensible wi... | #!/usr/bin/env python
from io import open
from setuptools import setup
# version_tuple = __import__('xadmin').VERSION
# version = ".".join([str(v) for v in version_tuple])
setup(
name='xadmin',
version='2.0.1',
description='Drop-in replacement of Django admin comes with lots of goodies, fully extensible wi... | bsd-3-clause | Python |
8ccb0e98ce127ee7798b6a7e56ce995aefcb5c3c | update version code | muchu1983/bennu,muchu1983/united,muchu1983/bennu | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
Copyright (C) 2015, MuChu Hsu
Contributed by Muchu Hsu (muchu1983@gmail.com)
This file is part of BSD license
<https://opensource.org/licenses/BSD-3-Clause>
"""
from setuptools import setup,find_packages
with open("README.txt") as file:
long_description = file.read()
setup(
name =... | # -*- coding: utf-8 -*-
"""
Copyright (C) 2015, MuChu Hsu
Contributed by Muchu Hsu (muchu1983@gmail.com)
This file is part of BSD license
<https://opensource.org/licenses/BSD-3-Clause>
"""
from setuptools import setup,find_packages
with open("README.txt") as file:
long_description = file.read()
setup(
name =... | bsd-3-clause | Python |
45dd321ae3326c1805ee04f9cccf4fe841117a20 | fix version and deps in setup. | andrewguy9/farmfs,andrewguy9/farmfs | setup.py | setup.py | from setuptools import setup
tests_require = ['tox', 'pytest']
setup(name='farmfs',
version='0.1.2',
description='tool which de-duplicates files in a filesystem by checksum.',
url='http://github.com/andrewguy9/farmfs',
author='andrew thomson',
author_email='athomsonguy@gmail.com',
... | from setuptools import setup
tests_require = ['tox', 'pytest']
setup(name='farmfs',
version='0.1',
description='tool which de-duplicates files in a filesystem by checksum.',
url='http://github.com/andrewguy9/farmfs',
author='andrew thomson',
author_email='athomsonguy@gmail.com',
li... | mit | Python |
3fc7f86f94e89ed6db1fb53e98e59be8c8f1dce1 | modify the setup.py | markshao/pagrant | setup.py | setup.py | from __future__ import with_statement
import os
from setuptools import setup, find_packages
README = os.path.join(os.path.dirname(__file__), 'README.md')
REQUIREMENT = os.path.join(os.path.dirname(__file__), 'requirements.txt')
def dependency():
with open(REQUIREMENT) as f:
filter(lambda x: x != '', f... | from __future__ import with_statement
import os
from setuptools import setup, find_packages
README = os.path.join(os.path.dirname(__file__), 'README.md')
REQUIREMENT = os.path.join(os.path.dirname(__file__), 'requirements.txt')
def dependency():
with open(REQUIREMENT) as f:
filter(lambda x: x != '', f... | mit | Python |
35902f394f228a9ace580387bc607a83a78d9400 | Set version to 2.4.0 | zero323/pyspark-stubs | setup.py | setup.py | """
Setup for PySpark type annotations.
Notes:
- To avoid manual PYTHONPATH modification the package installation will overlay PySpark installation. If this is not acceptable please download source and add it to PYTHONPATH manually.
"""
from setuptools import setup
import os
import sys
# find_packages doesn't see... | """
Setup for PySpark type annotations.
Notes:
- To avoid manual PYTHONPATH modification the package installation will overlay PySpark installation. If this is not acceptable please download source and add it to PYTHONPATH manually.
"""
from setuptools import setup
import os
import sys
# find_packages doesn't see... | apache-2.0 | Python |
ffda9501794657377f34c6dc51145beb1086e959 | Update setup.py to version 2.1 | pyxll/pyxll-utils | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='pyxll_utils',
version='2.0',
author='PyXLL Ltd, Enthought Inc.',
license='BSD 2-Clause "Simplified" License',
long_description=open('README.md').read(),
packages=find_packages(),
setup_requires=[
'pypiwin32',
... | from setuptools import setup, find_packages
setup(name='pyxll_utils',
version='2.0',
author='PyXLL Ltd, Enthought Inc.',
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
# Provides a namespace for extension points to contribute to. This
# f... | bsd-2-clause | Python |
a56a3aa9493052ae1954d10c5222ce2d707936c4 | Update setup.py | ylteq/dj-import-export,PetrDlouhy/django-import-export,ericdwang/django-import-export,daniell/django-import-export,ylteq/dj-import-export,ylteq/dj-import-export,SalahAdDin/django-import-export,daniell/django-import-export,manelclos/django-import-export,brillgen/django-import-export,rhunwicks/django-import-export,Akoten... | setup.py | setup.py | from setuptools import setup, find_packages
VERSION = __import__("import_export").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
]
install_requi... | from setuptools import setup, find_packages
VERSION = __import__("import_export").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
]
install_requi... | bsd-2-clause | Python |
b4b5ce2b2eae287327b0a992c09b3121e9d4b1b0 | Add toml as keyword | bkabrda/anymarkup,pombredanne/anymarkup | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='anymarkup',
version='0.6.0',
description='Parse/serialize any markup format',
long_description=''.join(open('README.rst').readlines()),
keywords='xml, yaml, toml, json, ini',
author='Slavek ... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='anymarkup',
version='0.6.0',
description='Parse/serialize any markup format',
long_description=''.join(open('README.rst').readlines()),
keywords='xml, yaml, json, ini',
author='Slavek Kabrda... | bsd-3-clause | Python |
a7aa264479f1d567b6ae9c5326f4dae89f0de8b1 | Update setup.py | inkmonk/flask-sqlalchemy-booster | setup.py | setup.py | """
Flask-SQLAlchemy-Booster
------------------------
Adds further methods to Flask-SQLAlchemy by subclassing the
Model class and adding
1. Class methods to enable easy querying
2. Methods to convert the model object to a JSON convertible
dictionary.
"""
from setuptools import setup
setup(
name='F... | """
Flask-SQLAlchemy-Booster
------------------------
Adds further methods to Flask-SQLAlchemy by subclassing the
Model class and adding
1. Class methods to enable easy querying
2. Methods to convert the model object to a JSON convertible
dictionary.
"""
from setuptools import setup
setup(
name='F... | mit | Python |
14bd9edfba8925b2b241c655f05b3f813eb97373 | remove unused dependency | serverscope/serverscope-benchmark,serverscope/serverscope-benchmark | setup.py | setup.py | import os
from setuptools import setup, find_packages
import serverscope_benchmark
# 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='serverscope_benchmark',
version=serverscope_benchmark.__version__,
author='ServerScope',
... | import os
from setuptools import setup, find_packages
import serverscope_benchmark
# 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='serverscope_benchmark',
version=serverscope_benchmark.__version__,
author='ServerScope',
... | mit | Python |
1510053d4e82e6ddc7cbe031e0198f8d729690be | bump ver | theelous3/asks | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup
from sys import version_info
if version_info < (3, 5, 2):
# 3.5.2 is when __aiter__ became a synchronous function
raise SystemExit('Sorry! asks requires python 3.5.2 or later.')
setup(
name='asks',
description='asks - async http',
long_descripti... | #!/usr/bin/env python3
from setuptools import setup
from sys import version_info
if version_info < (3, 5, 2):
# 3.5.2 is when __aiter__ became a synchronous function
raise SystemExit('Sorry! asks requires python 3.5.2 or later.')
setup(
name='asks',
description='asks - async http',
long_descripti... | mit | Python |
a236cb35cd8885ac8acc55b3e51daebfcbb71649 | Add documentation for pypi | knowledge-point/dj_anonymizer | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='dj_anonymizer',
packages=['dj_anonymizer'],
version='0.1.3',
description='This project hel... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='dj_anonymizer',
packages=['dj_anonymizer'],
version='0.1.3',
description='This project hel... | mit | Python |
c419eb8ec42468af1d01cf9326442f7adc48c0f6 | Switch to PyTest and flesh out. | Storj/upstream,hanjae/upstream | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# The MIT License (MIT)
#
# Copyright (c) 2014 Paul Durivage for Storj Labs
#
# 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 restrictio... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# The MIT License (MIT)
#
# Copyright (c) 2014 Paul Durivage for Storj Labs
#
# 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 restrictio... | mit | Python |
3765f5245b762ea103d212db8757fe2c5f10c644 | Remove django bootstrap breadcrumbs, not bootstrap | AASHE/django-bulletin,AASHE/django-bulletin,AASHE/django-bulletin | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-bulletin',
version='3.0.1',
description="A simple newsletter application.",
author='Bob Erb'... | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-bulletin',
version='3.0',
description="A simple newsletter application.",
author='Bob Erb',
... | mit | Python |
a14bd2ac1b3dd9d29e4148a01db117dd97d2aaf5 | fix typo | mmalter/dlstats,MichelJuillard/dlstats,mmalter/dlstats,MichelJuillard/dlstats,mmalter/dlstats,Widukind/dlstats,MichelJuillard/dlstats,Widukind/dlstats | setup.py | setup.py | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
from dlstats import version
import os
setup(name='dlstats',
version=version.version,
description='A python module that provides an interface between statistics providers and pandas.',
author='Widukind team',
author_email='dev@mic... | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
from dlstats import version
import os
setup(name='dlstats',
version=version.version,
description='A python module that provides an interface between statistics providers and pandas.',
author='Widukind team',
author_email='dev@mic... | agpl-3.0 | Python |
25fa9cec8e744374dc224bf4eaedd2906ac6e20e | Increase protobuf version requirement | magenta/note-seq,magenta/note-seq,magenta/note-seq | setup.py | setup.py | # Copyright 2022 The Magenta Authors.
#
# 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 ... | # Copyright 2022 The Magenta Authors.
#
# 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 ... | apache-2.0 | Python |
7b4fdd498525a8a1fc061e642bb3753940d2b2df | Fix namespace issue | palankai/pyrs,palankai/pyrs | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pyrs',
author='Csaba Palankai',
author_email='csaba.palankai@gmail.com',
packages=find_packages(),
include_package_data... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pyrs',
author='Csaba Palankai',
author_email='csaba.palankai@gmail.com',
packages=find_packages(),
include_package_data... | mit | Python |
cc4c86c9a6fec344130f0fd54d224cada6b64397 | Bump version to 0.2 | jonls/torque-slack | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
# Read long description
with open('README.rst') as f:
long_description = f.read()
setup(
name='torque-slack',
version='0.2',
license='GPLv3+',
url='http://jonls.dk',
author='Jon Lund Steffensen',
author_email='jonlst@gmail.com',
desc... | #!/usr/bin/env python
from setuptools import setup
# Read long description
with open('README.rst') as f:
long_description = f.read()
setup(
name='torque-slack',
version='0.1',
license='GPLv3+',
url='http://jonls.dk',
author='Jon Lund Steffensen',
author_email='jonlst@gmail.com',
desc... | mit | Python |
3ad6c57f861f08531e14c945163adc46b0a3181d | Bump version | innolitics/natural-neighbor-interpolation,innolitics/natural-neighbor-interpolation,innolitics/natural-neighbor-interpolation | setup.py | setup.py | from distutils.core import setup, Extension
import numpy.distutils.misc_util
module = Extension(
'cnaturalneighbor',
include_dirs=numpy.distutils.misc_util.get_numpy_include_dirs(),
library_dirs=['/usr/local/lib'],
extra_compile_args=['--std=c++11', '-O3'],
sources=[
'naturalneighbor/cnat... | from distutils.core import setup, Extension
import numpy.distutils.misc_util
module = Extension(
'cnaturalneighbor',
include_dirs=numpy.distutils.misc_util.get_numpy_include_dirs(),
library_dirs=['/usr/local/lib'],
extra_compile_args=['--std=c++11', '-O3'],
sources=[
'naturalneighbor/cnat... | mit | Python |
834e4e5554fa87fd19e2b353961bcee8cf6cdef7 | change email in setup.py to my redhat address | fedora-infra/fedimg,fedora-infra/fedimg | setup.py | setup.py | # This file is part of fedimg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedimg is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
#... | # This file is part of fedimg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedimg is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
#... | agpl-3.0 | Python |
2df0c2a710c29e6920e15825d0fe52ace5865049 | Update setup.py | mailosaurapp/mailosaur-python,mailosaur/mailosaur-python,mailosaur/mailosaur-python | setup.py | setup.py | from setuptools import setup
setup(name='mailosaur',
version='3.0.4',
description='Python client library for Mailosaur',
url='https://mailosaur.com',
author='Mailosaur Ltd',
author_email='support@mailosaur.com',
keywords='email automation testing selenium robot framework',
lic... | from setuptools import setup
setup(name='mailosaur',
version='3.0.3',
description='Python client library for Mailosaur',
url='https://mailosaur.com',
author='Mailosaur Ltd',
author_email='support@mailosaur.com',
keywords='email automation testing selenium robot framework',
lic... | mit | Python |
3055924475093757a17e6877fcfa48e5b33da70d | Bump version to 0.1.0-dev | praekeltfoundation/docker-ci-deploy | setup.py | setup.py | from setuptools import setup
setup(
name='docker-ci-deploy',
version='0.1.0-dev',
license='MIT',
url='https://github.com/praekeltfoundation/docker-ci-deploy',
description='Python script to help push Docker images to a registry using '
'CI services',
author='Jamie Hewland',
a... | from setuptools import setup
setup(
name='docker-ci-deploy',
version='0.0.1',
license='MIT',
url='https://github.com/praekeltfoundation/docker-ci-deploy',
description='Python script to help push Docker images to a registry using '
'CI services',
author='Jamie Hewland',
autho... | mit | Python |
22657f7bbb28e603e7d35c306c8643a7ed2488db | Add pypy classifier. | 5amfung/simpleflake | setup.py | setup.py | from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='simpleflake',
author='Mali Akmanalp (Custommade Ventures)',
description='Twitter snowflake compatible super-simple distributed ID generator.',
url='https://github.com/SawdustSoftware/simpl... | from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='simpleflake',
author='Mali Akmanalp (Custommade Ventures)',
description='Twitter snowflake compatible super-simple distributed ID generator.',
url='https://github.com/SawdustSoftware/simpl... | mit | Python |
8614136308ed12385a119e2b5c29c61f774bf890 | Add dependencies for pip | Appdynamics/python-langutil,Appdynamics/python-langutil | setup.py | setup.py | from distutils.core import setup
setup(
name='LangUtil',
version='0.1.4',
author='Andrew Udvare',
author_email='audvare@gmail.com',
packages=['langutil'],
url='http://pypi.python.org/pypi/LangUtil/',
license='LICENSE.txt',
description='Helpers for generating code.',
long_description... | from distutils.core import setup
setup(
name='LangUtil',
version='0.1.4',
author='Andrew Udvare',
author_email='audvare@gmail.com',
packages=['langutil'],
url='http://pypi.python.org/pypi/LangUtil/',
license='LICENSE.txt',
description='Helpers for generating code.',
long_description... | mit | Python |
e9d5825029d31ca124908a39191220ac6d0f1725 | Implement basic very-variadicity | jacquev6/variadic,jacquev6/variadic | variadic.py | variadic.py | #!/usr/bin/env python
# Copyright 2015 Vincent Jacques <vincent@vincent-jacques.net>
import itertools
import unittest
def variadic(typ):
"""
Make a function very-variadic.
"""
def flatten(args):
flat = []
for arg in args:
if isinstance(arg, typ):
flat.appe... | #!/usr/bin/env python
# Copyright 2015 Vincent Jacques <vincent@vincent-jacques.net>
import unittest
if __name__ == "__main__":
unittest.main()
| mit | Python |
db76777575162aab69aec9429455f2e7d841a605 | Fix loading of map from environment variables | wellcometrust/platform-api,wellcometrust/platform-api,wellcometrust/platform-api,wellcometrust/platform-api | lambdas/dynamo_to_sns/dynamo_to_sns.py | lambdas/dynamo_to_sns/dynamo_to_sns.py | #!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
"""
import os
from sns_utils import publish_sns_message
def main(event, _):
print(f'Received event:\n{event}')
stream_topic_map = os.environ["STREAM_TOPIC_MAP"]
new_image = event['Records'][0]['dynamodb']['NewImage']
topic_arn = stream_topic_map[ev... | #!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
"""
import json
import os
from sns_utils import publish_sns_message
def main(event, _):
print(f'Received event:\n{event}')
stream_topic_map = json.loads(os.environ["STREAM_TOPIC_MAP"])
new_image = event['Records'][0]['dynamodb']['NewImage']
topic_a... | mit | Python |
b3dc129502ed7b819551d22f9d661bca8bdbe78b | Update dependencies | pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus-service,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus-service,pegasus-isi/pegasus-service,pegasus-isi/pegasus,pegasus-isi/pegasus,pegasus-isi/pegasus,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-suppor... | 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()
# The packages we depend on
dependencies = [
"Flask==0.9",
"MySQL-python==1.2.4c1",
"WTForms==1.0.3",
"re... | apache-2.0 | Python |
138ee5ef0fcefcbf510d7be028420b5c398c9940 | test wip | cmshobe/landlab,landlab/landlab,amandersillinois/landlab,cmshobe/landlab,landlab/landlab,cmshobe/landlab,amandersillinois/landlab,landlab/landlab | landlab/values/tests/test_synthetic.py | landlab/values/tests/test_synthetic.py |
import numpy as np
from numpy.testing import assert_array_equal
import pytest
from landlab import RasterModelGrid, CORE_NODE, CLOSED_NODE
from landlab.values import random, plane, constant, sine
from landlab.values.synthetic import _plane_function
_NORMAL = (1, 1, 1)
_POINT = (0, 0, 0)
def test_bad_grid_element_n... |
import numpy as np
import pytest
from landlab import RasterModelGrid, CORE_NODE
# test all grid elements
# test bad grid elements
# where is size of elements
# where is list of types
# where is list but use patches (raises value error)
#
# vertical plane
# x and y of multiple types of grid elements
# ask for... | mit | Python |
7af1cee815991171ed59c241b22a5fe1529ebdd9 | Bump Python version | peter1000/mkdocs-bootstrap,peter1000/mkdocs-bootstrap,mkdocs/mkdocs-bootstrap,mkdocs/mkdocs-bootstrap,peter1000/mkdocs-bootstrap | setup.py | setup.py | from setuptools import setup, find_packages
VERSION = '0.1.1'
setup(
name="mkdocs-bootstrap",
version=VERSION,
url='http://www.mkdocs.org',
license='BSD',
description='Bootstrap theme for MkDocs',
author='Dougal Matthews',
author_email='dougal@dougalmatthews.com.com',
packages=find_pa... | from setuptools import setup, find_packages
VERSION = '0.1.0'
setup(
name="mkdocs-bootstrap",
version=VERSION,
url='http://www.mkdocs.org',
license='BSD',
description='Bootstrap theme for MkDocs',
author='Dougal Matthews',
author_email='dougal@dougalmatthews.com.com',
packages=find_pa... | bsd-2-clause | Python |
88eb14dc817ec57e579c7120ade5cae0db125d5e | Bump coverage from 6.4.3 to 6.4.4 (#102) | macbre/mobify | setup.py | setup.py | from setuptools import setup, find_packages
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name='mobify',
version='0.1.0',
author='Maciej Brencz',
author_email='maciej.brencz@gmail.com',
description='Download a webpage as an e-book',
url='https://github.com/macbre/mobi... | from setuptools import setup, find_packages
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name='mobify',
version='0.1.0',
author='Maciej Brencz',
author_email='maciej.brencz@gmail.com',
description='Download a webpage as an e-book',
url='https://github.com/macbre/mobi... | mit | Python |
c77af1d17cfec34189d97d4ce1df8e3fe6752304 | Update version | Krukov/amocrm_api,N-litened/amocrm_api | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='amocrm_api',
version='0.1.0',
packages=['amocrm'],
url='https://github.com/Krukov/amocrm_api',
download_url='https://github.com/Krukov/amocrm_api/tarball/0.1',
license='MIT license',
author='Dmitry Krukov',
author_email='fr... | #!/usr/bin/env python
from setuptools import setup
setup(
name='amocrm_api',
version='0.0.1',
packages=['amocrm'],
url='https://github.com/Krukov/amocrm_api',
license='MIT license',
author='Dmitry Krukov',
author_email='frog-king69@yandex.ru',
description='Python (Django like) API for A... | mit | Python |
d36953d3f18ca646a4ed6e0295585ccc24df457c | Add more PyPI classifiers | groveco/django-sql-explorer,epantry/django-sql-explorer,enstrategic/django-sql-explorer,enstrategic/django-sql-explorer,grantmcconnaughey/django-sql-explorer,enstrategic/django-sql-explorer,dsanders11/django-sql-explorer,guilhermemaba/django-sql-explorer,tzangms/django-sql-explorer,epantry/django-sql-explorer,dsanders1... | setup.py | setup.py | import os
from setuptools import setup
from explorer import __version__
# 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(fname):
r... | import os
from setuptools import setup
from explorer import __version__
# 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(fname):
r... | mit | Python |
11565323dd2fb89cfe942d7e372df675f0218434 | Add `scandir` to install_requires. | informatics-isi-edu/deriva-py | setup.py | setup.py | #
# Copyright 2017 University of Southern California
# Distributed under the Apache License, Version 2.0. See LICENSE for more info.
#
""" Installation script for the deriva package.
"""
from setuptools import setup, find_packages
import re
import io
__version__ = re.search(
r'__version__\s*=\s*[\'"]([^\'"]*)[\'... | #
# Copyright 2017 University of Southern California
# Distributed under the Apache License, Version 2.0. See LICENSE for more info.
#
""" Installation script for the deriva package.
"""
from setuptools import setup, find_packages
import re
import io
__version__ = re.search(
r'__version__\s*=\s*[\'"]([^\'"]*)[\'... | apache-2.0 | Python |
0d24fb2128bf9375aaea306a2800ea012befae7b | fix stupid bug | shadowgamefly/news-Digest,shadowgamefly/news-Digest,shadowgamefly/news-Digest,shadowgamefly/news-Digest,shadowgamefly/news-Digest | web/web/views.py | web/web/views.py | from django.shortcuts import render
import urllib.request, json
from django.http import HttpResponse, JsonResponse
def _get_request(url):
req = urllib.request.Request(url)
resp_json = urllib.request.urlopen(req).read().decode('utf-8')
return json.loads(resp_json)
def _success(stat, data):
return Jso... | from django.shortcuts import render
import urllib.request, json
from django.http import HttpResponse, JsonResponse
def _get_request(url):
req = urllib.request.Request(url)
resp_json = urllib.request.urlopen(req).read().decode('utf-8')
return json.loads(resp_json)
def _success(stat, data):
return Json... | mit | Python |
f83b7cec472d9808013010f190b5c5803d0dca22 | bump version to 1.8.1 | singer-io/tap-mysql | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='tap-mysql',
version='1.8.1',
description='Singer.io tap for extracting data from MySQL',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mysql'],
... | #!/usr/bin/env python
from setuptools import setup
setup(name='tap-mysql',
version='1.8.0',
description='Singer.io tap for extracting data from MySQL',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mysql'],
... | agpl-3.0 | Python |
e6bed87948d0048a918962a4a2e4520a54320d54 | add new links | marl/medleydb_manager,marl/medleydb_manager,marl/medleydb_manager | webapp/webapp.py | webapp/webapp.py | #!/usr/bin/env python
import os
import sys
import shutil
import logging
import tempfile
import operator
import sqlite3
from flask import Flask, jsonify, render_template, request, redirect
APP = Flask(__name__)
APP.config.update(dict(
DATABASE=os.path.join(APP.root_path, 'test.db')
))
def connect_db():
rv ... | #!/usr/bin/env python
import os
import sys
import shutil
import logging
import tempfile
import operator
import sqlite3
from flask import Flask, jsonify, render_template, request
APP = Flask(__name__)
APP.config.update(dict(
DATABASE=os.path.join(APP.root_path, 'test.db')
))
def connect_db():
rv = sqlite3.c... | mit | Python |
a4dc421112cfa0e81e5500af93d8cf80def8de75 | Fix a ResourceWarning: unclosed file in setup.py | devsnd/tinytag | setup.py | setup.py | from os.path import join
from setuptools import setup, find_packages
import sys
import os
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
def get_version():
with open(join('tinytag', '__init__.py')) as f:
for line in f:
if line.start... | from os.path import join
from setuptools import setup, find_packages
import sys
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def get_version():
with open(join('tinytag', '__init__.py')) as f:
for line in f:
if line.startswith('__version__ ='... | mit | Python |
abb79148a513559cc0f044e88ae74ab8ade4b113 | Add requirements.txt to setup.py | abraia/abraia-python | setup.py | setup.py | import pathlib
import pkg_resources
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [str(requirement) for requirement
in pkg_resources.parse_requirements(requirements_txt)]
setu... | from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='abraia',
version='0.7.0',
description='Abraia Python SDK',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/abraia/abraia-python',
... | mit | Python |
b7fb899ec2c2c96da18ba73404e44c1deaed4928 | add loginform in required packages | hanicker/portia,chennqqi/portia,verylasttry/portia,livepy/portia,livepy/portia,NoisyText/portia,nju520/portia,PrasannaVenkadesh/portia,sntran/portia,Youwotma/portia,chennqqi/portia,naveenvprakash/portia,NoisyText/portia,NicoloPernigo/portia,nju520/portia,hanicker/portia,Youwotma/portia,Suninus/portia,Youwotma/portia,CE... | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='slybot',
version='0.9',
license='BSD',
description='Slybot crawler',
author='Scrapy project',
author_email='info@scrapy.org',
url='http://github.com/scrapy/slybot',
packa... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='slybot',
version='0.9',
license='BSD',
description='Slybot crawler',
author='Scrapy project',
author_email='info@scrapy.org',
url='http://github.com/scrapy/slybot',
packa... | bsd-3-clause | Python |
4032313a33811b49b6bdd96f1351fddae07a6dfb | update various dependencies | pyannote/pyannote-metrics | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2014 CNRS
# 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 ... | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2014 CNRS
# 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 ... | mit | Python |
63f43b8b938c39d7c74ed033e97a6b216b1b92cb | Upgrade version to 0.0.15.post1 | lebrice/SimpleParsing | setup.py | setup.py | import sys
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_namespace_packages(include=['simple_parsing*'])
print("PACKAGES FOUND:", packages)
print(sys.version_info)
setuptools.setup(
name="simple_parsing",
version="0.0.15.post1",
author="Fa... | import sys
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_namespace_packages(include=['simple_parsing*'])
print("PACKAGES FOUND:", packages)
print(sys.version_info)
setuptools.setup(
name="simple_parsing",
version="0.0.15",
author="Fabrice ... | mit | Python |
2b6f5099a2569f604c27d6a676055569208892e3 | Increase version number. (#41) | google-research/batch-ppo | setup.py | setup.py | # Copyright 2017 The TensorFlow Agents Authors.
#
# 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 ag... | # Copyright 2017 The TensorFlow Agents Authors.
#
# 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 ag... | apache-2.0 | Python |
8f270356bbc9f17b60c57bff7cfec255ec9b3f1d | Fix release | xeBuz/Flask-Validator | setup.py | setup.py | import re
import os
from setuptools import setup, find_packages
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
LONG_DESCRIPTION = ''
setup(
name='Flask-Validator',
version='1.2.2',
license='Mozilla Public License',
author='Jesus ... | import re
import os
from setuptools import setup, find_packages
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
LONG_DESCRIPTION = ''
with open('requirements.txt') as f:
REQUIRED = f.read().splitlines()
setup(
name='Flask-Validator',
... | mpl-2.0 | Python |
8b3b00b30d947876a1cdeeadce2b09e39d0dc775 | Change minimum IPython version | astrofrog/reducer,StuartLittlefair/reducer,mwcraig/reducer,StuartLittlefair/reducer,astrofrog/reducer | setup.py | setup.py | from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytes... | from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytes... | bsd-3-clause | Python |
f69b1bb86f721c44dc8076bcb8c7e66f0d7fd7ff | Update dependencies | alexandermendes/Flask-Z3950,alexandermendes/Flask-Z3950 | setup.py | setup.py | # -*- coding: utf8 -*-
"""
Flask-Z3950
-----------
Z39.50 integration for Flask applications.
"""
import re
import os
from setuptools import setup
version = re.search('^__version__\s*=\s*"(.*)"',
open('flask_z3950/__init__.py').read(),
re.M).group(1)
try:
here = os.path... | # -*- coding: utf8 -*-
"""
Flask-Z3950
-----------
Z39.50 integration for Flask applications.
"""
import re
import os
from setuptools import setup
version = re.search('^__version__\s*=\s*"(.*)"',
open('flask_z3950/__init__.py').read(),
re.M).group(1)
try:
here = os.path... | bsd-3-clause | Python |
4bc1810f6f04a639726f68b06273722b5fc6e87f | Add *.mplstyle as package data | JosPolfliet/pandas-profiling,JosPolfliet/pandas-profiling | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pandas-profiling',
version='0.1.0',
author='Jos Polfliet',
author_email='jos.polfliet+panpro@gmail.com',
packages=['pandas_profiling'],
url='http://github.com/jospolfliet/pandas-profiling... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pandas-profiling',
version='0.1.0',
author='Jos Polfliet',
author_email='jos.polfliet+panpro@gmail.com',
packages=['pandas_profiling'],
url='http://github.com/jospolfliet/pandas-profiling... | mit | Python |
8e7eb5dec20ee75d34b566341af3c22b57503dcb | Include test_setquery module in distribution | icio/evil | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="setquery",
version="0.1",
description="Set arithmetic evaluator",
author="Paul Scott",
author_email="paul@duedil.com",
url="https://github.com/icio/setquery",
download_url="https://github.com/icio/setquery/tarball/0.1",
set... | #!/usr/bin/env python
from setuptools import setup
setup(
name="setquery",
version="0.1",
description="Set arithmetic evaluator",
author="Paul Scott",
author_email="paul@duedil.com",
url="https://github.com/icio/setquery",
download_url="https://github.com/icio/setquery/tarball/0.1",
set... | mit | Python |
2ee14d9f003173df36bcb143cfee44f2e759dd2c | Set long description to empty string if README not present | mwilliamson/jq.py | setup.py | setup.py | #!/usr/bin/env python
import os
import subprocess
from setuptools import setup
from distutils.extension import Extension
from distutils.command.build_ext import build_ext
def path_in_dir(relative_path):
return os.path.join(os.path.dirname(__file__), relative_path)
def read_or_empty_string(fname):
path = pa... | #!/usr/bin/env python
import os
import subprocess
from setuptools import setup
from distutils.extension import Extension
from distutils.command.build_ext import build_ext
def path_in_dir(relative_path):
return os.path.join(os.path.dirname(__file__), relative_path)
def read(fname):
return open(path_in_dir(f... | bsd-2-clause | Python |
94c9a3e34c6611cef0b67f2783ba38261d16b73d | Bump to version 1.1.0 | getcircle/protobuf-to-dict | setup.py | setup.py | from setuptools import setup
setup(
name='protobuf-to-dict',
description='A teeny Python library for creating Python dicts from '
'protocol buffers and the reverse. Useful as an intermediate step '
'before serialisation (e.g. to JSON).',
version='1.1.0',
author='Ben Hodgson',
author... | from setuptools import setup
setup(
name='protobuf-to-dict',
description='A teeny Python library for creating Python dicts from '
'protocol buffers and the reverse. Useful as an intermediate step '
'before serialisation (e.g. to JSON).',
version='1.0.0',
author='Ben Hodgson',
author... | unlicense | Python |
3caead02edce7434592d81f2559b6f490499b932 | Bump Version to 2.0.23-dev | ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | bsd-2-clause | Python |
fd4ee8ee81fbfd4d04f732e22ba0d852d971e17f | bump version for install issues | ecohealthalliance/EpiTator | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='annie',
version='0.1.10',
packages=['annotator', ],
install_requires=['lazy', ]
) | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='annie',
version='0.1.3',
packages=['annotator', ],
install_requires=['lazy', ]
) | apache-2.0 | Python |
3f959a13d83e1ad37d74b11949afbfaec2e145b2 | Fix setup file | joshblum/django-kronos,jeanbaptistelab/django-kronos,joshblum/django-kronos,jeanbaptistelab/django-kronos,jgorset/django-kronos,jgorset/django-kronos | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from kronos.version import __version__
setup(
name = 'kronos',
version = __version__,
description = '',
author = 'Johannes Gorset',
author_email = 'jgorset@gmail.com',
url = '',
packages = ['kronos']
)
| #!/usr/bin/env python
from setuptools import setup
from kronos.version import __version__
setup(
name = 'kronos',
version = __version__,
description = ''
author = 'Johannes Gorset',
author_email = 'jgorset@gmail.com',
url = '',
packages = ['libraryname']
)
| mit | Python |
6ec22c6489642395f5501eedd0eb6b39c6010938 | split extra dependencies from required ones | RedFT/Hexy | setup.py | setup.py | from distutils.core import setup
setup(
name = 'Hexy',
packages = ['hexy'],
version = '1.3',
license='MIT',
description = 'A library that makes working with a hexagonal lattice easier.',
author = 'Norbu Tsering',
author_email = 'norbu.tsering.cs@gmail.com', ... | from distutils.core import setup
setup(
name = 'Hexy',
packages = ['hexy'],
version = '1.3',
license='MIT',
description = 'A library that makes working with a hexagonal lattice easier.',
author = 'Norbu Tsering',
author_email = 'norbu.tsering.cs@gmail.com', ... | mit | Python |
ab6c3fe99923094b92add963779b3b325c5b3d10 | Add flake8 rule to setup.py | trozamon/hadmin | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='hadmin',
version='0.1',
packages=find_packages(),
author='Alec Ten Harmsel',
author_email='alec@alectenharmsel.com',
description='A Hadoop configuration manager',
url='http://github.com/trozamon/hadmin',
license='MIT',
test_su... | from setuptools import setup, find_packages
setup(
name='hadmin',
version='0.1',
packages=find_packages(),
author='Alec Ten Harmsel',
author_email='alec@alectenharmsel.com',
description='A Hadoop configuration manager',
url='http://github.com/trozamon/hadmin',
license='MIT',
test_su... | mit | Python |
7c5d1379b9b6b5e5c246567f24bce6ad1a7a2c1d | increase version number | TimKam/compound-word-splitter | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs, setuptools
setuptools.setup(
name='compound-word-splitter',
packages=['splitter'],
version='0.4',
description='Splits compound words, like German "Effektivitätsberechnung',
author='Timotheus Kampik',
author_email='timotheus.kampik@gmail.com',
url='ht... | # -*- coding: utf-8 -*-
import codecs, setuptools
setuptools.setup(
name='compound-word-splitter',
packages=['splitter'],
version='0.3',
description='Splits compound words, like German "Effektivitätsberechnung',
author='Timotheus Kampik',
author_email='timotheus.kampik@gmail.com',
url='ht... | mit | Python |
ad2f0e229d7293589b1cbcc1aa992a1545e10a1b | Bump upper bound for coverage | prophile/circle-asset | setup.py | setup.py | import sys
import re
if sys.version < '3.3':
print('Sorry, this is not a compatible version of Python. Use 3.3 or later.')
exit(1)
from setuptools import setup, find_packages
with open('README.rst') as f:
description = f.read()
from circle_asset.version import VERSION, SHORT_DESCRIPTION
setup(name='cir... | import sys
import re
if sys.version < '3.3':
print('Sorry, this is not a compatible version of Python. Use 3.3 or later.')
exit(1)
from setuptools import setup, find_packages
with open('README.rst') as f:
description = f.read()
from circle_asset.version import VERSION, SHORT_DESCRIPTION
setup(name='cir... | mit | Python |
015ec3ef761d827ca22e56726ccad69fbceae99d | Update setup.py for trove classifiers. | handroll/handroll | setup.py | setup.py | # Copyright (c) 2014, Matt Layman
'''
handroll development is on `GitHub <https://github.com/mblayman/handroll>`_.
handroll is a static website generator that uses Markdown as the source format.
'''
from setuptools import find_packages, setup
import sys
__version__ = '1.0'
if __name__ == '__main__':
install_req... | # Copyright (c) 2014, Matt Layman
'''
handroll development is on `GitHub <https://github.com/mblayman/handroll>`_.
'''
from setuptools import find_packages, setup
import sys
__version__ = '1.0'
if __name__ == '__main__':
install_requires = [
'argparse',
'Markdown',
]
# Add some developer... | bsd-2-clause | Python |
2dd5aa26e1a9c43d2c0a96a9c34d8e9c5f01aca0 | bump version | gawel/WSGIProxy2 | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2'
def read(name):
try:
with open(name) as fd:
return fd.read()
except:
return ''
setup(name='WSGIProxy2',
version=version,
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
classifiers=[
... | from setuptools import setup, find_packages
version = '0.1'
def read(name):
try:
with open(name) as fd:
return fd.read()
except:
return ''
setup(name='WSGIProxy2',
version=version,
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
classifiers=[
... | mit | Python |
c1ce60a964a1ef46b7d971fe91f007f3cf94d558 | Upgrade the development status to beta. | kalekundert/autoprop | setup.py | setup.py | #!/usr/bin/env python3
# encoding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='autoprop',
version='0.0.0',
author='Kale Kundert',
author_email='kale@thekunderts.net',
long_description=open('README.rst').read(),
url='https://... | #!/usr/bin/env python3
# encoding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='autoprop',
version='0.0.0',
author='Kale Kundert',
author_email='kale@thekunderts.net',
long_description=open('README.rst').read(),
url='https://... | mit | Python |
94e077ea9fe6bb61acf634ef1ad7df271504bf43 | Clean setup.py | nephila/djangocms-blog,nephila/djangocms-blog,skirsdeda/djangocms-blog,skirsdeda/djangocms-blog,skirsdeda/djangocms-blog,nephila/djangocms-blog | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import djangocms_blog
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = djangocms_blog.__version__
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
n... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import djangocms_blog
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = djangocms_blog.__version__
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelo... | bsd-3-clause | Python |
2c6ebef00c51eadca252036f979ff870151e79bf | Update version | Fatal1ty/amqpipe | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name='amqpipe',
version='0.2.5',
description='Twisted based pipeline framework for AMQP',
long_description=open('README.rst').read(),
platforms='all',
classifiers=[
'Development Status :: 5 - Production/Stable',
... | #!/usr/bin/env python
from distutils.core import setup
setup(
name='amqpipe',
version='0.2.4',
description='Twisted based pipeline framework for AMQP',
long_description=open('README.rst').read(),
platforms='all',
classifiers=[
'Development Status :: 5 - Production/Stable',
... | mit | Python |
ce042ae4948acd1a0bb52f841d20a5fe053ba88b | Bump to v1.3 | gogoair/gogo-utils | setup.py | setup.py | # gogo-utils - Utility generating application details
#
# Copyright 2016 Gogo, 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... | # gogo-utils - Utility generating application details
#
# Copyright 2016 Gogo, 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... | apache-2.0 | Python |
8c6455e61fe50a08a456575128bc16e173742e90 | bump to version 0.1.4 | enricobacis/wos | setup.py | setup.py | from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.4',
description='Web of Science client using API v3.',
long_description=long_description... | from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.3',
description='Web of Science client using API v3.',
long_description=long_description... | mit | Python |
50e0088740015494bc174d9780fbe30330088dd9 | Tag new release | Floobits/flootty | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='Flootty',
version='0.07',
description='Floobits collaborative terminal',
author='Floobits',
author_email='info@floobits.com',
url='https://floobits.com/',
license="Apache2",
py_modules=['flootty'],
entry_poi... | #!/usr/bin/env python
from setuptools import setup
setup(name='Flootty',
version='0.06',
description='Floobits collaborative terminal',
author='Floobits',
author_email='info@floobits.com',
url='https://floobits.com/',
license="Apache2",
py_modules=['flootty'],
entry_poi... | apache-2.0 | Python |
57a2dfcbc309ec4c217ade4b434747a75edb684e | use correct attribute to propagate SystemExit exception | cigroup-ol/metaopt,cigroup-ol/metaopt,cigroup-ol/metaopt | setup.py | setup.py | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages, Extension
from setuptools.command.test import test as TestCommand
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_t... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages, Extension
from setuptools.command.test import test as TestCommand
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_t... | bsd-3-clause | Python |
b5ed4c97665a6dfaaee046f161a3158f9ebbb9c8 | add pytz dependency | FlorianLudwig/rueckenwind,FlorianLudwig/rueckenwind | setup.py | setup.py | # -*- coding: utf-8 -*-
from distutils.command.sdist import sdist
from setuptools import setup, find_packages
import sys
version_suffix = ''
def get_version_suffix():
from git import Repo
from datetime import datetime
repo = Repo()
committed_date = repo.head.commit.committed_date
return '.git' + ... | # -*- coding: utf-8 -*-
from distutils.command.sdist import sdist
from setuptools import setup, find_packages
import sys
version_suffix = ''
def get_version_suffix():
from git import Repo
from datetime import datetime
repo = Repo()
committed_date = repo.head.commit.committed_date
return '.git' + ... | apache-2.0 | Python |
24a85e38a9636c5a0c35aaa56a1924e02b8dfc2d | update version | holyslon/flask_bowler | setup.py | setup.py | """
Flask-Bowler
--------------
Integration for Flask-Assets to automaticly discover all
Bower packages and files as asset
Links
`````
* `Twitter Bower <http://twitter.github.com/bower/>
"""
import sys
from setuptools import setup
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
# exi... | """
Flask-Bowler
--------------
Integration for Flask-Assets to automaticly discover all
Bower packages and files as asset
Links
`````
* `Twitter Bower <http://twitter.github.com/bower/>
"""
import sys
from setuptools import setup
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
# exi... | bsd-3-clause | Python |
d5626703a1d3aa0c4588e330994cf77ec0fce8b6 | Update setup.py | pauarge/django-sns-redis | setup.py | setup.py | from distutils.core import setup
setup(
name='django-sns-redis',
version='0.1.2',
packages=['snsredis',],
license='MIT License',
description='Simple package for sending push notifications through AWS SNS using Django and Redis',
long_description=open('README.md').read(),
)
| from distutils.core import setup
setup(
name='django-sns-redis',
version='0.1.2',
packages=['snsredis',],
license='MIT License',
long_description=open('README.md').read(),
)
| mit | Python |
2ff1288e86ee8ff88ba353f865eac38d977c0695 | bump version | HireIQ/opsworks-easy-deploy | setup.py | setup.py | from setuptools import setup
setup(
name='opsworks-easy-deploy',
version='1.2.0',
packages=['easy_deploy'],
install_requires=[
'botocore==1.2.0',
'click==5.1',
'arrow==0.6.0',
],
entry_points={
'console_scripts': [
'opsworks-easy-deploy = easy_deploy... | from setuptools import setup
setup(
name='opsworks-easy-deploy',
version='1.1.0',
packages=['easy_deploy'],
install_requires=[
'botocore==1.2.0',
'click==5.1',
'arrow==0.6.0',
],
entry_points={
'console_scripts': [
'opsworks-easy-deploy = easy_deploy... | apache-2.0 | Python |
0dc0c58ff8214c14c393d0b7399c1f79c7cb41d0 | add help_text to the private boolean to note what exactly it is for | dstufft/jutils | crate_project/apps/lists/models.py | crate_project/apps/lists/models.py | from django.db import models
from django.utils.translation import ugettext_lazy as _
from model_utils.models import TimeStampedModel
class List(TimeStampedModel):
user = models.ForeignKey("auth.User")
# Translators: This is used to allow naming a specific list of packages.
name = models.CharField(_("Name... | from django.db import models
from django.utils.translation import ugettext_lazy as _
from model_utils.models import TimeStampedModel
class List(TimeStampedModel):
user = models.ForeignKey("auth.User")
# Translators: This is used to allow naming a specific list of packages.
name = models.CharField(_("Name... | bsd-2-clause | Python |
0ec185ab57f24239719ccf92e1621ea710c0cc0d | fix typo | hhatto/sphinxcontrib-gruffygen | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_desc = '''
This package contains the Gruffy_ Sphinx_ extension.
.. _Sphinx: http://sphinx.pocoo.org/
.. _Gruffy: http://pypi.python.org/pypi/gruffy
Gruffy is Graphing Library.
This extension adds the ``gruffy`` directive that automatically se... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_desc = '''
This package contains the Gruffy_ Sphinx_ extension.
.. _Sphinx: http://sphinx.pocoo.org/
.. _Gruffy: https://pypi.python.org/pypi/gruffy
Gruffy is Graphing Library.
This extension adds the ``gruffy`` directive that automatically s... | bsd-3-clause | Python |
1b1d103730bb333a2b55a70138968c2d99fdf96e | Fix license property in setup.py. | cilekagaci/engerek | 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 = [
'Cython>=0.19.2',
'jnius>=1.1-dev',
'reg... | # 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 = [
'Cython>=0.19.2',
'jnius>=1.1-dev',
'reg... | apache-2.0 | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.