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 |
|---|---|---|---|---|---|---|---|---|
9b4837d371a4cd94ab9f3497f8915b0cda142dfd | Fix setup.py | City-of-Helsinki/djangosaml2,City-of-Helsinki/djangosaml2 | setup.py | setup.py | # Copyright (C) 2011-2012 Yaco Sistemas <lgs@yaco.es>
#
# 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 applicab... | # Copyright (C) 2011-2012 Yaco Sistemas <lgs@yaco.es>
#
# 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 applicab... | apache-2.0 | Python |
e808b65299c6c0fb4280e7377afacead9179c50c | Bump to release | texastribune/tx_salaries,texastribune/tx_salaries | setup.py | setup.py | from distutils.core import setup
import os
# Stolen from django-registration
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, filenames in os.... | from distutils.core import setup
import os
# Stolen from django-registration
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, filenames in os.... | apache-2.0 | Python |
fceec439741d925ab40f749d62fd06b9d8bbc78b | update httplib2 to v0.18.1 | 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 |
ff6eff1671fa70f2fc360fdc16dac281374cfdb4 | Bump to 4.2.0 | guoguo12/billboard-charts,jameswenzel/billboard-charts,guoguo12/billboard-charts,jameswenzel/billboard-charts | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='billboard.py',
version='4.2.0',
description='Unofficial Python API for accessing Billboard.com charts',
author='Allen Guo',
author_email='guoguo12@gmail.com',
url='https://github.com/guoguo12/billboard-charts',
py_modul... | #!/usr/bin/env python
from setuptools import setup
setup(name='billboard.py',
version='4.1.0',
description='Unofficial Python API for accessing Billboard.com charts',
author='Allen Guo',
author_email='guoguo12@gmail.com',
url='https://github.com/guoguo12/billboard-charts',
py_modul... | mit | Python |
241c56aa950c9ac3bad37e837f521cce4cb960e0 | Move to http | texastribune/tx_salaries,texastribune/tx_salaries | tx_salaries/utils/transformers/allen_isd.py | tx_salaries/utils/transformers/allen_isd.py | from . import base
from . import mixins
from datetime import date
from .. import cleaver
class TransformedRecord(mixins.GenericCompensationMixin,
mixins.GenericDepartmentMixin, mixins.GenericIdentifierMixin,
mixins.GenericJobTitleMixin, mixins.GenericPersonMixin,
mixins.MembershipMixin, mixin... | from . import base
from . import mixins
from datetime import date
from .. import cleaver
class TransformedRecord(mixins.GenericCompensationMixin,
mixins.GenericDepartmentMixin, mixins.GenericIdentifierMixin,
mixins.GenericJobTitleMixin, mixins.GenericPersonMixin,
mixins.MembershipMixin, mixin... | apache-2.0 | Python |
ede0bb3f2d8ca9796d9739d395244ddba12362ac | Add asyncio trove classifier | aio-libs/janus | setup.py | setup.py | import codecs
from setuptools import setup, find_packages
import os
import re
import sys
from setuptools.command.test import test as TestCommand
PY_33 = sys.version_info < (3, 4)
PY_35 = sys.version_info >= (3, 5)
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
... | import codecs
from setuptools import setup, find_packages
import os
import re
import sys
from setuptools.command.test import test as TestCommand
PY_33 = sys.version_info < (3, 4)
PY_35 = sys.version_info >= (3, 5)
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
... | apache-2.0 | Python |
48be42d3aa6d4f08bd05af1be047581461cd992f | Bump version | avidity/racconto | setup.py | setup.py | from distutils.core import setup
setup(
name='Racconto',
version='0.0.2',
# FIXME: walk directories instead of hard coding package names
packages=['racconto','racconto.hooks'],
license='MIT',
long_description='Static blog generator',
url='http://github.com/avidity/racconto',
author='Fel... | from distutils.core import setup
setup(
name='Racconto',
version='0.0.1',
# FIXME: walk directories instead of hard coding package names
packages=['racconto','racconto.hooks'],
license='MIT',
long_description='Static blog generator',
url='http://github.com/avidity/racconto',
author='Fel... | mit | Python |
195e412c7427aac0cc6e49ece20742830f929d7f | update version | ivanprjcts/sdklib,ivanprjcts/sdklib | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='sdklib',
version='0.5.1.1',
description = 'SDK helper library',
author='Ivan Martin',
author_email='ivanmar_91@hotmail.com',
url='https://github.com/ivanprjcts/sdklib',
classifiers=[... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='sdklib',
version='0.5.1',
description = 'SDK helper library',
author='Ivan Martin',
author_email='ivanmar_91@hotmail.com',
url='https://github.com/ivanprjcts/sdklib',
classifiers=[
... | bsd-2-clause | Python |
1d19161bd54cf193c002900ae286132286a2a912 | Make dependency imports consistent | acrisci/i3ipc-python,chrsclmn/i3ipc-python,xenomachina/i3ipc-python,nicoe/i3ipc-python | setup.py | setup.py | from setuptools import setup
from os import path
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
long_description = open(readme_path).read()
install_requires = ['python3-xlib', 'enum34']
setup(
name='i3ipc',
version='1.1.3',
description='An improved Python library for i3wm ext... | from setuptools import setup
from os import path
import sys
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
long_description = open(readme_path).read()
install_requires = []
if sys.version_info >= (3,):
install_requires.append('python3-xlib')
else:
install_requires.append('python-x... | bsd-3-clause | Python |
7b68b57b523ab4eac2278e82490e6e276f2cd963 | Bump version to 1.2.1 | sdelements/django-multi-import | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ""
install_requires = ... | import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ""
install_requires = ... | mit | Python |
40ae15e23746708f08866b6662eaf1c31b6ccd8e | Update to v0.1.8 | starkbank/ecdsa-python | setup.py | setup.py | from os import path
from setuptools import setup, find_packages
with open(path.join(path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setup(
name="starkbank-ecdsa",
packages=find_packages(),
include_package_data=True,
description="A lightweight and fast pure python ECDSA li... | from os import path
from setuptools import setup, find_packages
with open(path.join(path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setup(
name="starkbank-ecdsa",
packages=find_packages(),
include_package_data=True,
description="A lightweight and fast pure python ECDSA li... | mit | Python |
4f133cb1c9bb389156175268eb1b989d76e4d280 | Adjust minidump dependency to >= 0.0.10 | angr/cle | setup.py | setup.py | try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')... | try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')... | bsd-2-clause | Python |
f61cd314d2011013a59ef57c7d4047a1fd277572 | Bump version | Dentosal/python-sc2 | setup.py | setup.py | from setuptools import setup, find_packages
from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip
pfile = Project(chdir=False).parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)
test_requirements = convert_deps_to_pip(pfile['dev-packages'], r=False)
setup(
nam... | from setuptools import setup, find_packages
from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip
pfile = Project(chdir=False).parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)
test_requirements = convert_deps_to_pip(pfile['dev-packages'], r=False)
setup(
nam... | mit | Python |
6f5c88b5ce2e479a6fe4ff291067683edc93395e | upgrade version | hubo1016/aiogrpc,hubo1016/aiogrpc | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
version = "1.7"
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ""
setup(
name="aiogrpc",
version=version,
author="Hu Bo",
author_email="hubo1016@126.com",
... | #!/usr/bin/env python
from setuptools import setup
version = "1.6"
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ""
setup(
name="aiogrpc",
version=version,
author="Hu Bo",
author_email="hubo1016@126.com",
... | apache-2.0 | Python |
2c64b65d78709003431b780785fd4dfcaa372b7b | Increment version trying to fix tox | revsys/django-test-plus,revsys/django-test-plus | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
os.environ['DJANGO_SETTINGS_MODULE'] = 'test_project.settings'
# Add test_plus to Python path
BASE_DIR = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(BASE_DIR, 'test_project'))
f = open(os.path.join(BASE_DIR, 'README.md'))
readme = f.read(... | import os
import sys
from setuptools import setup, find_packages
os.environ['DJANGO_SETTINGS_MODULE'] = 'test_project.settings'
# Add test_plus to Python path
BASE_DIR = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(BASE_DIR, 'test_project'))
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))... | bsd-3-clause | Python |
cc229fc4fc4b2ed12c25babe7c877e9a1ae3c431 | Update email. | shakefu/pyconfig | setup.py | setup.py | import multiprocessing, logging # Fix atexit bug
import os
from setuptools import setup
import pyconfig
def README():
try:
return open(os.path.join(os.path.dirname(__file__),
'README.rst')).read()
except:
pass
setup(
name='pyconfig',
version=pyconfig.__version__,... | import multiprocessing, logging # Fix atexit bug
import os
from setuptools import setup
import pyconfig
def README():
try:
return open(os.path.join(os.path.dirname(__file__),
'README.rst')).read()
except:
pass
setup(
name='pyconfig',
version=pyconfig.__version__,... | mit | Python |
a8eff6324aecf41593b2f96eb9557666655c3628 | Bump version for release | mdshw5/fastqp | setup.py | setup.py | from setuptools import setup
setup(
name = 'fastqp',
provides = 'fastqp',
version = "0.2",
author = 'Matthew Shirley',
author_email = 'mdshw5@gmail.com',
url = 'http://mattshirley.com',
description = 'Simple NGS read quality assessment using Python',
lic... | from setuptools import setup
setup(
name = 'fastqp',
provides = 'fastqp',
version = "0.1.9.1",
author = 'Matthew Shirley',
author_email = 'mdshw5@gmail.com',
url = 'http://mattshirley.com',
description = 'Simple NGS read quality assessment using Python',
... | mit | Python |
e6e65f7825ad5df5bfb1fe3f6166cb0044f58ce0 | Bump version to 0.2 | mauricekoster/gherkin2robotframework | setup.py | setup.py | from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="gherkin2robotframework",
version="0.2",
packages=["gherkin2robotframework"],
install_requires=["gherkin3==3.1.2", "pyyaml"],
author="Maurice Koster",
author_email="maurice@mauricekost... | from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="gherkin2robotframework",
version="0.1",
packages=["gherkin2robotframework"],
install_requires=["gherkin3==3.1.2", "pyyaml"],
author="Maurice Koster",
author_email="maurice@mauricekost... | mit | Python |
304699be3e204c03ab1ad8cb2b702d0ffd39b8b2 | Fix bug in install | erikreppel/otpad | setup.py | setup.py | """
A library for securely saving and loading images to S3
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
s... | """
A library for securely saving and loading images to S3
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
w... | mit | Python |
ce15e7abcbbd5909c9bf83de96646d337900e156 | Change version. | dstdnk/simple-photo-library | setup.py | setup.py | from setuptools import setup
setup(name='simpholib',
version='1.0.b1',
description='Simple Photo Library',
long_description='Tool for ordering unsorted photos and arrange them in a directories by dates.',
url='https://github.com/dstdnk/simple-photo-library',
author='Dmitry Stadnik',
... | from setuptools import setup
setup(name='simpholib',
version='0.1',
description='Simple Photo Library',
long_description='Tool for ordering unsorted photos and arrange them in a directories by dates.',
url='https://github.com/dstdnk/simple-photo-library',
author='Dmitry Stadnik',
au... | mit | Python |
db9ab18ec3d68e53420c62b4f1aceee56a9a909d | update biryani version | openfisca/openfisca-france-indirect-taxation,antoinearnoud/openfisca-france-indirect-taxation,thomasdouenne/openfisca-france-indirect-taxation,benjello/openfisca-france-indirect-taxation | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <contact@openfisca.fr>
#
# Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redistribute... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <contact@openfisca.fr>
#
# Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redistribute... | agpl-3.0 | Python |
e879c9a19147278ade4e10701a1b3ccc8eae12ae | update setup.py to v0.1.1 | izilly/izdvd,izilly/izdvd | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013 William Adams
# Distributed under the terms of the Modified BSD License.
# The full license is in the file LICENSE, distributed with this software.
from distutils.core import setup
with open('README.rst') as f:
long_description = f.read()
s... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013 William Adams
# Distributed under the terms of the Modified BSD License.
# The full license is in the file LICENSE, distributed with this software.
from distutils.core import setup
with open('README.rst') as f:
long_description = f.read()
s... | bsd-3-clause | Python |
a8d05f7fb2e657a40e071563b59d842a8be9f9e0 | Bump Python package version to v3.3.0 | InsightSoftwareConsortium/ITKTextureFeatures,InsightSoftwareConsortium/ITKTextureFeatures | setup.py | setup.py | from __future__ import print_function
from os import sys, path
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(' python -m pip install scikit-build')
... | from __future__ import print_function
from os import sys, path
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(' python -m pip install scikit-build')
... | apache-2.0 | Python |
d5eeab52fbbc40864d12366ec604faf44ca3eca3 | Upgrade version following @saschalalala fix | 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 |
ad51d375901beaaf698905810f1fe564a33f207b | add correct package to setup.py | shreyb/gracc-request,shreyb/gracc-request | setup.py | setup.py | from setuptools import setup, find_packages
import os
setup(name='graccreq',
version='2.3',
description='GRACC Request Daemon',
author_email='dweitzel@cse.unl.edu',
author='Derek Weitzel',
url='https://opensciencegrid.github.io/gracc',
package_dir={'': 'src'},
packages=['grac... | from setuptools import setup, find_packages
import os
setup(name='graccreq',
version='2.2',
description='GRACC Request Daemon',
author_email='dweitzel@cse.unl.edu',
author='Derek Weitzel',
url='https://opensciencegrid.github.io/gracc',
package_dir={'': 'src'},
packages=['grac... | apache-2.0 | Python |
953a6bf2dd01872b86dd12e7212a652f90d738db | Remove upper version bound for the python requirement | davesque/django-rest-framework-simplejwt,davesque/django-rest-framework-simplejwt | setup.py | setup.py | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | mit | Python |
11e59e41a0039763ca4c540801bde11adfac9b9b | update version number | emitter-io/python | setup.py | setup.py | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="emitter-io",
version="2.1.0",
author="Florimond Husquinet",
author_email="florimond@emitter.io",
description="A Python library to interact with the Emitter API.",
long_description=long... | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="emitter-io",
version="2.0.3",
author="Florimond Husquinet",
author_email="florimond@emitter.io",
description="A Python library to interact with the Emitter API.",
long_description=long... | epl-1.0 | Python |
ed7b7ea04c3eb6ecaca657fb68c14c7b8f68cbb2 | increment version number | Mego/Seriously | setup.py | setup.py | #!/usr/bin/env python3
"""Seriously - a Python-based golfing language"""
from setuptools import setup, find_packages
setup(
name='seriously',
version='2.0.54',
description='A Python-based golfing language',
long_description='Seriously is a Python-based golfing language. See the GitHub pag... | #!/usr/bin/env python3
"""Seriously - a Python-based golfing language"""
from setuptools import setup, find_packages
setup(
name='seriously',
version='2.0.53',
description='A Python-based golfing language',
long_description='Seriously is a Python-based golfing language. See the GitHub pag... | mit | Python |
805970305d808221308cbe45766ff1dd0999b79c | add additional information for pypi | digidotcom/python-suitcase,nateglims/python-suitcase,digidotcom/python-suitcase,rtzoeller/python-suitcase,nateglims/python-suitcase,rtzoeller/python-suitcase | setup.py | setup.py | # 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 http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2015 Digi International Inc. All Rights Reserved.
import os
from setuptools import setup, find_packages... | # 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 http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2015 Digi International Inc. All Rights Reserved.
import os
from setuptools import setup, find_packages... | mpl-2.0 | Python |
73b8383808564167f183f80c4ea3142f7e33c6bb | Bump version | ParallelSSH/parallel-ssh,pkittenis/parallel-ssh | setup.py | setup.py | # Copyright (C) 2015 Panos Kittenis
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARR... | # Copyright (C) 2015 Panos Kittenis
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARR... | lgpl-2.1 | Python |
7bcee4c889ac3cac5d2195ccf831754a6966159d | update description | ytyng/django-elasticindex | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from elasticindex import __author__, __version__, __license__
setup(
name='django-elasticindex',
version=__version__,
description='Shallow elasticsearch wrapper on Django',
license=__license__,
author=__author__,
... | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from elasticindex import __author__, __version__, __license__
setup(
name='django-elasticindex',
version=__version__,
description='Elasticsearch Accessor (Django like)',
license=__license__,
author=__author__,
aut... | bsd-3-clause | Python |
1cd62187c2abb0163eec7ca2efed475619c5c021 | prepare to 0.3 release | aquavitae/mongokit-py3,wshcdr/mongokit,goanpeca/mongokit,namlook/mongokit | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2009, Nicolas Clairon
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above cop... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2009, Nicolas Clairon
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above cop... | bsd-3-clause | Python |
5aa596dd4e8cb7ddb1cfa730546a432475b431a0 | add missing comma in requirements list | statesofpop/django-cal | setup.py | setup.py | from setuptools import setup
setup(
name='django-cal',
version='0.1dev',
author='Maik Hoepfel',
packages=['django_cal',],
license='BSD',
long_description=open('README.md').read(),
install_requires=[
'python-dateutil < 2.0', # dateutil (used by vobject) 2+ only works with Python 3
... | from setuptools import setup
setup(
name='django-cal',
version='0.1dev',
author='Maik Hoepfel',
packages=['django_cal',],
license='BSD',
long_description=open('README.md').read(),
install_requires=[
'python-dateutil < 2.0' # dateutil (used by vobject) 2+ only works with Python 3
... | bsd-3-clause | Python |
c9246be6121ca57159bc6bda20cfd822a35248d7 | Adjust test suite. | jdmcbr/Shapely,mouadino/Shapely,abali96/Shapely,mindw/shapely,mouadino/Shapely,mindw/shapely,jdmcbr/Shapely,abali96/Shapely | setup.py | setup.py | from setuptools import setup, Extension
from sys import version_info
# Require ctypes egg only for Python < 2.5
install_requires = ['setuptools']
if version_info[:2] < (2,5):
install_requires.append('ctypes')
# Get text from README.txt
readme_text = file('README.txt', 'rb').read()
setup(name = 'Shapely'... | from setuptools import setup, Extension
from sys import version_info
# Require ctypes egg only for Python < 2.5
install_requires = ['setuptools']
if version_info[:2] < (2,5):
install_requires.append('ctypes')
# Get text from README.txt
readme_text = file('README.txt', 'rb').read()
setup(name = 'Shapely'... | bsd-3-clause | Python |
f82e02473d940c205357ff87a115eb9e30823e34 | Correct azure version in setup.py | kislotniq/azurik | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name='cm-azure',
version='0.1',
description='Bright CoD image Azure integration',
packages=['cmazure'],
install_requires=[
"msrest<0.5.0,>=0.4.0",
"azure==2.0.0rc6"
],
entry_points={
"console_scripts":
... | #!/usr/bin/env python
from distutils.core import setup
setup(
name='cm-azure',
version='0.1',
description='Bright CoD image Azure integration',
packages=['cmazure'],
install_requires=["azure"],
entry_points={
"console_scripts":
"cmazure=cmazure.cli:main"
}
)
| mit | Python |
9b3e15fbfd300a7bd43e1d18d811bacf7c6e2461 | add 3.8 to setup | pytube/pytube | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""This module contains setup instructions for pytube3."""
import codecs
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.re... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""This module contains setup instructions for pytube3."""
import codecs
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.re... | unlicense | Python |
fc8d9f995b0abd66da9b2db02dc3588f5e99e66a | Add utf-8 support for long description | jmenglund/CollectionBatchTool | setup.py | setup.py | from setuptools import setup, find_packages
from os.path import join, dirname
import sys
if sys.version_info.major < 3:
print("Sorry, currently only Python 3 is supported!")
sys.exit(1)
setup(
name = 'CollectionBatchTool',
version=__import__('collectionbatchtool').__version__,
description = 'bat... | from setuptools import setup, find_packages
from os.path import join, dirname
import sys
if sys.version_info.major < 3:
print("Sorry, currently only Python 3 is supported!")
sys.exit(1)
setup(
name = 'CollectionBatchTool',
version=__import__('collectionbatchtool').__version__,
description = 'batch... | mit | Python |
8873215cb4882d53564c3b12d365fb107dc06fdc | Update setup.py | bubenkoff/Arkestra,bubenkoff/Arkestra,bubenkoff/Arkestra,evildmp/Arkestra,evildmp/Arkestra,evildmp/Arkestra | setup.py | setup.py | from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='Arkestra',
version='2.0.0',
author='Daniele Procida',
author_email='daniele@vurt.org',
packages=find_packages(exclude=["example"]), # exclude the example project
include_package_data=True,
zip_safe = ... | from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='Arkestra',
version='2.0.0',
author='Daniele Procida',
author_email='daniele@vurt.org',
packages=find_packages(exclude=["example"]), # exclude the example project
include_package_data=True,
zip_safe = ... | bsd-2-clause | Python |
26896377e6a3f891b6b6dcd2d71ac9f97056e177 | bump version number | bolaurent/zuora_restful_python | setup.py | setup.py | from setuptools import setup
setup(
name = 'zuora_restful_python',
packages = ['zuora_restful_python'],
version = '0.14',
description = 'zuora REST API wrapper',
author = 'Bo Laurent',
author_email = 'bo@bolaurent.com',
url = 'https://github.com/bolaurent/zuora_restful_python',
keywords = ['zuora', 'r... | from setuptools import setup
setup(
name = 'zuora_restful_python',
packages = ['zuora_restful_python'],
version = '0.13-dev0',
description = 'zuora REST API wrapper',
author = 'Bo Laurent',
author_email = 'bo@bolaurent.com',
url = 'https://github.com/bolaurent/zuora_restful_python',
keywords = ['zuora... | mit | Python |
65e717e08118257eacf24fad4beb18c1849e5838 | use setuptools | catherinedevlin/ipython_doctester | setup.py | setup.py | from setuptools import setup
setup(
name='ipython_doctester',
author='Catherine Devlin',
author_email='catherine.devlin@gmail.com',
version='0.1.0',
url='http://pypi.python.org/pypi/ipython_doctester/',
py_modules = [
"ipython_doctester",
],
license='MIT',
description='R... | from distutils.core import setup
setup(
name='ipython_doctester',
author='Catherine Devlin',
author_email='catherine.devlin@gmail.com',
version='0.1.0',
url='http://pypi.python.org/pypi/ipython_doctester/',
packages=['towelstuff',],
license='MIT',
description='Run doctests in individual... | mit | Python |
8d33e7890f724095f163fb0182cb52b7407bf608 | Bump the version number to 0.1.1 | mdiep/django-twitter-users | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import os, re
PKG="twitter_users"
verstr="0.1.1"
setup(name=PKG,
version=verstr,
description="Django app for Twitter authentication",
author="Matt Diephouse",
author_email="matt@diephouse.com",
url="https://github.com/mdie... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os, re
PKG="twitter_users"
verstr="0.1"
setup(name=PKG,
version=verstr,
description="Django app for Twitter authentication",
author="Matt Diephouse",
author_email="matt@diephouse.com",
url="https://github.com/mdiep/... | bsd-3-clause | Python |
4438af6d659cf30b7fef33f4a19e0afa83df17db | Remove setuptools entrypoints from setup | dan-blanchard/conda-env,isaac-kit/conda-env,conda/conda-env,mikecroucher/conda-env,phobson/conda-env,nicoddemus/conda-env,conda/conda-env,asmeurer/conda-env,nicoddemus/conda-env,ESSS/conda-env,phobson/conda-env,asmeurer/conda-env,dan-blanchard/conda-env,isaac-kit/conda-env,ESSS/conda-env,mikecroucher/conda-env | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info[:2] < (2, 7):
sys.exit("conda is only meant for Python 2.7, with experimental support "
"for python 3. current version: %d.%d" % sys.version_info[:2])
if sys.platform == 'win32':
scripts = [
'bin\\env-act... | #!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info[:2] < (2, 7):
sys.exit("conda is only meant for Python 2.7, with experimental support "
"for python 3. current version: %d.%d" % sys.version_info[:2])
if sys.platform == 'win32':
scripts = [
'bin\\env-act... | bsd-3-clause | Python |
539227b4a32dca5095cc2e73b332109afaba445a | Bump version to v0.4.7 | MagicStack/httptools | setup.py | setup.py | from setuptools import setup, Extension
setup(
name='httptools',
version='0.0.7',
description='A collection of framework independent HTTP protocol utils.',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python... | from setuptools import setup, Extension
setup(
name='httptools',
version='0.0.6',
description='A collection of framework independent HTTP protocol utils.',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python... | mit | Python |
9bcdc8e72a7004b922f9362006ffa88023842c33 | Correct egg name | ebmdatalab/ebmdatalab-python | setup.py | setup.py | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
REQUIREMENTS = [... | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
REQUIREMENTS = [... | mit | Python |
4ade4514854eb588d7bbb775d6eec9fa9d8f3a4b | bump the version to 0.9.16. | devopscenter/django-code-deploy,devopscenter/django-code-deploy | setup.py | setup.py | from distutils.core import setup
setup(
name = 'django-code-deploy',
packages = ['django_code_deploy'], # this must be the same as the name above
version = '0.9.16',
description = 'Deploys Django code to AWS based on tags',
author = 'Josh devops.center, Bob devops.center, Gregg devops.center',
author_email ... | from distutils.core import setup
setup(
name = 'django-code-deploy',
packages = ['django_code_deploy'], # this must be the same as the name above
version = '0.9.15',
description = 'Deploys Django code to AWS based on tags',
author = 'Josh devops.center, Bob devops.center, Gregg devops.center',
author_email ... | apache-2.0 | Python |
ca6396c6916d9eb2856d6b262948f36783c092cd | Update python classifiers | Yelp/swagger_zipkin | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from setuptools import find_packages
from setuptools import setup
from swagger_zipkin import __version__
setup(
name='swagger_zipkin',
version=__version__,
provides=["swagger_zipk... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from setuptools import find_packages
from setuptools import setup
from swagger_zipkin import __version__
setup(
name='swagger_zipkin',
version=__version__,
provides=["swagger_zipk... | apache-2.0 | Python |
dc11abae49ea697a72371d6d1ac361f1a20f8c9d | Add URL and download URL to setup.py | ZedThree/jupyter-fortran-kernel | setup.py | setup.py | from distutils.core import setup
setup(name='jupyter_c_kernel',
version='1.0.0',
description='Minimalistic C kernel for Jupyter',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
url='https://github.com/brendanrius/jupyter-c-kernel/',
download_url='https://github.com/bre... | from distutils.core import setup
setup(name='jupyter_c_kernel',
version='1.0.0',
description='Minimalistic C kernel for Jupyter',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
packages=['jupyter_c_kernel'],
keywords=['jupyter', 'kernel', 'c']
)
| mit | Python |
8a2b3679ec3250076da91b0a8183a2f8118d3fdb | switch to pyannote.core 0.6.6 | pyannote/pyannote-video | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2015-2016 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 limita... | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2015-2016 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 limita... | mit | Python |
a0e73b06e22be39d06c276a89e04f56452802fba | Add `scout.py` as a script. | coleifer/scout | setup.py | setup.py | from setuptools import setup
setup(
name='scout',
version=__import__('scout').__version__,
description='scout',
author='Charles Leifer',
author_email='coleifer@gmail.com',
url='http://github.com/coleifer/scout/',
py_modules=['scout'],
classifiers=[
'Development Status :: 5 - Pro... | from setuptools import setup
setup(
name='scout',
version=__import__('scout').__version__,
description='scout',
author='Charles Leifer',
author_email='coleifer@gmail.com',
url='http://github.com/coleifer/scout/',
py_modules=['scout'],
classifiers=[
'Development Status :: 5 - Pro... | mit | Python |
774a8ac016649727137d78d007702356e14eb152 | Add ProxyType to requirements. | FelixLoether/python-loaders,FelixLoether/python-loaders | setup.py | setup.py | from setuptools import setup, Command
import subprocess
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call(['py.test'])
raise SystemExit(errno)
setup(
name='python-l... | from setuptools import setup, Command
import subprocess
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call(['py.test'])
raise SystemExit(errno)
setup(
name='python-l... | mit | Python |
6dc4cb5ec0f0e2373d364e93b7d342beaad6dc4b | Include data files in built package | hsercanatli/adaptivetuning | setup.py | setup.py | # !/usr/bin/env python
from setuptools import setup, find_packages
setup(name='symbtrsynthesis',
version='1.0.1-dev',
description='An (adaptive) synthesizer for SymbTr-MusicXML scores',
author='Hasan Sercan Atli',
url='https://github.com/hsercanatli/symbtrsynthesis',
packages=find_packag... | # !/usr/bin/env python
from setuptools import setup, find_packages
setup(name='symbtrsynthesis',
version='1.0.1-dev',
description='An (adaptive) synthesizer for SymbTr-MusicXML scores',
author='Hasan Sercan Atli',
url='https://github.com/hsercanatli/symbtrsynthesis',
packages=find_packag... | agpl-3.0 | Python |
31cabd0b3eff7617d0253d204504db0d5c4b11a6 | Declare this to be for now a SNAPSHOT version | Rostlab/nalaf | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.11-SNAPSHOT',
description='Natural Language Framework, for NER and RE',
long_description=readme(),
lo... | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.11',
description='Natural Language Framework, for NER and RE',
long_description=readme(),
long_descri... | apache-2.0 | Python |
2f66088854b4cfdfa1e3ac06fccae8231ae60789 | Bump version to 0.2.0 | yunojuno/django-onfido | setup.py | setup.py | # -*- coding: utf-8 -*-
from os import path, chdir, pardir
from setuptools import setup, find_packages
README = open(path.join(path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
chdir(path.normpath(path.join(path.abspath(__file__), pardir)))
setup(
name="django-onfido",
ve... | # -*- coding: utf-8 -*-
from os import path, chdir, pardir
from setuptools import setup, find_packages
README = open(path.join(path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
chdir(path.normpath(path.join(path.abspath(__file__), pardir)))
setup(
name="django-onfido",
ve... | mit | Python |
ce53edf077e62f98f604ba57bca58df89a0bc6db | Exclude tests from setuptools | elritsch/python-sharedmock | setup.py | setup.py | """A setuptools based setup module for sharedmock.
"""
# template kindly provided by:
# https://github.com/pypa/sampleproject/blob/master/setup.py
# Always prefer setuptools over distutils
from codecs import open
from os import path
from setuptools import setup, find_packages
# To use a consistent encoding
here = ... | """A setuptools based setup module for sharedmock.
"""
# template kindly provided by:
# https://github.com/pypa/sampleproject/blob/master/setup.py
# Always prefer setuptools over distutils
from codecs import open
from os import path
from setuptools import setup, find_packages
# To use a consistent encoding
here = ... | apache-2.0 | Python |
525540e9669f69bd5924d24a541aecaae307b2f7 | Bump version | dailymuse/oz,dailymuse/oz,dailymuse/oz | setup.py | setup.py | from setuptools import setup
VERSION = "1.2.0"
setup(
name="Oz",
version=VERSION,
description="A batteries-included web framework built on Tornado",
author="Yusuf Simonson",
author_email="yusuf@themuse.com",
url="http://github.com/dailymuse/oz",
zip_safe=False,
packages=[
"oz"... | from setuptools import setup
VERSION = "1.1.0"
setup(
name="Oz",
version=VERSION,
description="A batteries-included web framework built on Tornado",
author="Yusuf Simonson",
author_email="yusuf@themuse.com",
url="http://github.com/dailymuse/oz",
zip_safe=False,
packages=[
"oz"... | bsd-3-clause | Python |
062a109dfde5daacdd104c0680b7efad52602b7e | Change setup name. | cbartz/git-lfs-swift-server | setup.py | setup.py | # coding=utf-8
# Copyright 2017 Christopher Bartz <bartz@dkrz.de>
#
# 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 app... | # coding=utf-8
# Copyright 2017 Christopher Bartz <bartz@dkrz.de>
#
# 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 app... | apache-2.0 | Python |
58f75a7be49fe36aef63233fbc41140d38c10c13 | Change structure of git url in setup.py | udox/django-social-tools,udox/django-social-tools | 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-social-tools',
version='0.1',
packages=['socialtoo... | 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-social-tools',
version='0.1',
packages=['socialtoo... | bsd-3-clause | Python |
5d501c01474c5078312c19f5a28668a4637d5b0e | add additional classifiers | richardbx/django-storages,chenjyw/django-storages,kamotos/django-storages,ZuluPro/django-storages,imhome/django-storages-redux,un33k/django-storages,jschneier/django-storages,hobarrera/django-storages,taxido/django-storages,torchbox/django-storages,chenjyw/django-storages,joshisa/django-storages,falcon1kr/django-storag... | setup.py | setup.py | from setuptools import setup
import storages
setup(
name='django-storages-redux',
version=storages.__version__,
packages=['storages', 'storages.backends'],
author='Josh Schneier',
author_email='josh.schneier@gmail.com',
license='BSD',
description='Support for many storages (S3, MogileFS, e... | from setuptools import setup
import storages
setup(
name='django-storages-redux',
version=storages.__version__,
packages=['storages', 'storages.backends'],
author='Josh Schneier',
author_email='josh.schneier@gmail.com',
license='BSD',
description='Support for many storages (S3, MogileFS, e... | bsd-3-clause | Python |
1de6d4d60367b88b1f40aefee738f13d2ead7948 | update version | apdavison/hbp-validation-client,apdavison/hbp-validation-client,apdavison/hbp-validation-client,apdavison/hbp-validation-client | setup.py | setup.py | import os
from setuptools import setup
def package_files(base_dir, directory):
pwd = os.getcwd()
os.chdir(base_dir)
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join(path, filename))
os.chdir(pwd)
return... | import os
from setuptools import setup
def package_files(base_dir, directory):
pwd = os.getcwd()
os.chdir(base_dir)
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join(path, filename))
os.chdir(pwd)
return... | bsd-3-clause | Python |
44583ca789d483006d1ad844483efbbf27738f96 | Support Windows | ikegami-yukino/kpy | setup.py | setup.py | # -*- coding: utf-8 -*-
from codecs import open
import os
import re
from setuptools import setup
with open(os.path.join('kpy', '__init__.py'), 'r', encoding='utf8') as f:
version = re.compile(
r".*__version__ = '(.*?)'", re.S).match(f.read()).group(1)
setup(
name='kpy',
packages=['kpy'],
versi... | # -*- coding: utf-8 -*-
import os
import re
from setuptools import setup
with open(os.path.join('kpy', '__init__.py'), 'r') as f:
version = re.compile(
r".*__version__ = '(.*?)'", re.S).match(f.read()).group(1)
setup(
name='kpy',
packages=['kpy'],
version=version,
license='MIT License',
... | mit | Python |
abd1460aaee2318da85a0312c8a9b2df46ea5052 | Bump version | lundjordan/services,garbas/mozilla-releng-services,Callek/build-relengapi,La0/mozilla-relengapi,djmitche/build-relengapi,djmitche/build-relengapi,lundjordan/services,hwine/build-relengapi,mozilla-releng/services,mozilla-releng/services,lundjordan/build-relengapi,garbas/mozilla-releng-services,Callek/build-relengapi-sla... | setup.py | setup.py | #!/usr/bin/env python
# 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 http://mozilla.org/MPL/2.0/.
import os
from setuptools import setup, find_packages
data_patterns = [
'templates/**.html',
... | #!/usr/bin/env python
# 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 http://mozilla.org/MPL/2.0/.
import os
from setuptools import setup, find_packages
data_patterns = [
'templates/**.html',
... | mpl-2.0 | Python |
6b313560daeca7a8ade0f62615fa18c32490f6f6 | Update setup.py classifiers | thelinuxkid/tempdirs | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
setup(
name='tempdirs',
version='0.0.4',
description='tempdirs -- Safely create temporary directories',
long_description=(
'tempdirs is a library which allows users to safely and '
'cleanly create any number of temporary dire... | #!/usr/bin/python
from setuptools import setup, find_packages
setup(
name='tempdirs',
version='0.0.4',
description='tempdirs -- Safely create temporary directories',
long_description=(
'tempdirs is a library which allows users to safely and '
'cleanly create any number of temporary dire... | mit | Python |
d83c934b7a7ae894b14745e86a1ffbfad9d6b567 | Update setup.py | aguinane/nem-reader | setup.py | setup.py | """A setuptools based setup module.
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
try:
wi... | """A setuptools based setup module.
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
try:
wi... | mit | Python |
5c639a2ac2ba693ec35f92c7f52a1a7d8e515014 | Update setup.py to take `incuna-mail` until v4.0.0 | incuna/django-user-management,incuna/django-user-management | setup.py | setup.py | from setuptools import find_packages, setup
version = '6.0.0'
install_requires = (
'djangorestframework>=2.4.4,<3',
'incuna_mail>=2.0.0,<4.0.0',
)
extras_require = {
'avatar': [
'django-imagekit>=3.2',
],
'utils': [
'raven>=5.1.1',
],
}
setup(
name='django-user-manageme... | from setuptools import find_packages, setup
version = '6.0.0'
install_requires = (
'djangorestframework>=2.4.4,<3',
'incuna_mail>=2.0.0,<=3.0.0',
)
extras_require = {
'avatar': [
'django-imagekit>=3.2',
],
'utils': [
'raven>=5.1.1',
],
}
setup(
name='django-user-managem... | bsd-2-clause | Python |
819180404848ceb43d5ffba1fa17d92111b08966 | Use io.open with encoding='utf-8' and flake8 compliance | morepath/morepath,taschini/morepath,faassen/morepath | setup.py | setup.py | import io
from setuptools import setup, find_packages
long_description = '\n'.join((
io.open('README.rst', encoding='utf-8').read(),
io.open('CHANGES.txt', encoding='utf-8').read()
))
setup(
name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_descri... | import os, io
from setuptools import setup, find_packages
long_description = (
io.open('README.rst', encoding='utf-8').read()
+ '\n' +
io.open('CHANGES.txt', encoding='utf-8').read())
setup(name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_d... | bsd-3-clause | Python |
5f113e9135c337e6b252934db850377696ad5225 | update version | fatrix/django-fastapp,fatrix/django-fastapp,fatrix/django-fastapp | setup.py | setup.py | from distutils.core import setup
setup(name='fastapp',
version='0.31',
py_modules=['fastapp'],
install_requires=['dropbox==1.6',
'requests==2.0.1',
'django_extensions==1.1.1',
'pusher==0.8',
'mongoengine==0.8.6',
'pymongo==2.6.3'
]
)
| from distutils.core import setup
setup(name='fastapp',
version='0.3',
py_modules=['fastapp'],
install_requires=['dropbox==1.6',
'requests==2.0.1',
'django_extensions==1.1.1',
'pusher==0.8',
'mongoengine==0.8.6',
'pymongo==2.6.3'
]
)
| mit | Python |
6730662ddddcb816da22b9b32932fd7275d8272f | 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 |
ce922758a4aded4c41b6bf10a630270638117c7e | Bump to 1.45 | lawrencebenson/thefuck,scorphus/thefuck,MJerty/thefuck,gaurav9991/thefuck,princeofdarkness76/thefuck,levythu/thefuck,barneyElDinosaurio/thefuck,qingying5810/thefuck,PLNech/thefuck,MJerty/thefuck,subajat1/thefuck,LawrenceHan/thefuck,manashmndl/thefuck,roth1002/thefuck,mlk/thefuck,NguyenHoaiNam/thefuck,petr-tichy/thefuck... | setup.py | setup.py | from setuptools import setup, find_packages
VERSION = '1.45'
setup(name='thefuck',
version=VERSION,
description="Magnificent app which corrects your previous console command",
author='Vladimir Iakovlev',
author_email='nvbn.rm@gmail.com',
url='https://github.com/nvbn/thefuck',
lic... | from setuptools import setup, find_packages
VERSION = '1.44'
setup(name='thefuck',
version=VERSION,
description="Magnificent app which corrects your previous console command",
author='Vladimir Iakovlev',
author_email='nvbn.rm@gmail.com',
url='https://github.com/nvbn/thefuck',
lic... | mit | Python |
3c2bc0fca5973427aa53cf83b9ca0c7381fb2888 | bump version | bargulg/multicache | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name='multicache',
packages=['multicache'],
version='0.1.3',
description='Simple caching mechanisms',
author='Michal Ovciarik',
author_email='movciari@gmail.com',
url='https://github.com/bargulg/multicache',
download_url='ht... | #!/usr/bin/env python
from distutils.core import setup
setup(
name='multicache',
packages=['multicache'],
version='0.1.2',
description='Simple caching mechanisms',
author='Michal Ovciarik',
author_email='movciari@gmail.com',
url='https://github.com/bargulg/multicache',
download_url='ht... | mit | Python |
22b994a97f0e5c803d3bed8a8c44921046586044 | update packages to latest version | sk2/autonetkit | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
#from setuptools import setup, find_packages
setup (
name = "autonetkit",
version = "0.3.6",
description = 'Automatic configuration generation for emulated networks',
long_description = 'Automatic configuration generation for emulated networks',
... | #!/usr/bin/env python
from setuptools import setup
#from setuptools import setup, find_packages
setup (
name = "autonetkit",
version = "0.3.6",
description = 'Automatic configuration generation for emulated networks',
long_description = 'Automatic configuration generation for emulated networks',
... | bsd-3-clause | Python |
d9db6eafa191c2bc9829cad3ec1612c529e50940 | update version # | natea/Miro-Community,pculture/mirocommunity,pculture/mirocommunity,pculture/mirocommunity,natea/Miro-Community,pculture/mirocommunity | setup.py | setup.py | from setuptools import setup, find_packages
version = 'master'
setup(name="Miro Community",
version=version,
author='Participatory Culture Foundation',
license='AGPLv3',
entry_points="""
# -*- Entry points: -*-
[console_scripts]
localtv_update_feeds = localtv.feedimport:updat... | from setuptools import setup, find_packages
version = '0.9-pre'
setup(name="Miro Community",
version=version,
author='Participatory Culture Foundation',
license='AGPLv3',
entry_points="""
# -*- Entry points: -*-
[console_scripts]
localtv_update_feeds = localtv.feedimport:upda... | agpl-3.0 | Python |
a8511c05b713ba5e7cacf869d7c6f782fd91056a | rename in packaging | dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi | setup.py | setup.py | #!/usr/bin/python
#
# Setup script for PLCAPI
#
# Mark Huang <mlhuang@cs.princeton.edu>
# Copyright (C) 2006 The Trustees of Princeton University
#
# $Id$
#
from distutils.core import setup
from glob import glob
setup(py_modules = ['ModPython'],
packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Acces... | #!/usr/bin/python
#
# Setup script for PLCAPI
#
# Mark Huang <mlhuang@cs.princeton.edu>
# Copyright (C) 2006 The Trustees of Princeton University
#
# $Id$
#
from distutils.core import setup
from glob import glob
setup(py_modules = ['ModPython'],
packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Acces... | bsd-3-clause | Python |
34592542d6b4a31454d71c1c19ff6913f6ba5e7b | Set version number. | damoxc/kala,cloudbuy/kala | setup.py | setup.py | from setuptools import setup
requires = [
'bottle',
'bottle_mongo',
'pymongo'
]
setup(
name='kala',
version='0.5.1',
packages=[''],
url='https://github.com/cloudbuy/kala',
license='MIT',
author='Paul Etherton',
author_email='paul@pjetherton.co.uk',
description='Simple read-... | from setuptools import setup
requires = [
'bottle',
'bottle_mongo',
'pymongo'
]
setup(
name='kala',
version='0.5',
packages=[''],
url='https://github.com/cloudbuy/kala',
license='MIT',
author='Paul Etherton',
author_email='paul@pjetherton.co.uk',
description='Simple read-on... | mit | Python |
f45b618a359e13711595084929412d06fcb60948 | Use 5.0.1 | yougov/pmxbot,yougov/pmxbot,yougov/pmxbot | setup.py | setup.py | # -*- coding: utf-8 -*-
# vim:ts=4:sw=4:noexpandtab
# c-basic-indent: 4; tab-width: 4; indent-tabs-mode: true;
import sys
import setuptools
py26reqs = ['importlib'] if sys.version_info < (2, 7) else []
setup_params = dict(
name="pmxbot",
use_hg_version=True,
packages=setuptools.find_packages(),
include_package_d... | # -*- coding: utf-8 -*-
# vim:ts=4:sw=4:noexpandtab
# c-basic-indent: 4; tab-width: 4; indent-tabs-mode: true;
import sys
import setuptools
py26reqs = ['importlib'] if sys.version_info < (2, 7) else []
setup_params = dict(
name="pmxbot",
use_hg_version=True,
packages=setuptools.find_packages(),
include_package_d... | mit | Python |
093a129e4250f26c84dd6cec6c848cc3d3b4a0b9 | Update setup.py author email | kti/python-netfilterqueue | setup.py | setup.py | from distutils.core import setup, Extension
VERSION = "0.3" # Remember to change README.rst when version changes.
try:
# Use Cython
from Cython.Distutils import build_ext
cmd = {"build_ext": build_ext}
ext = Extension(
"netfilterqueue",
sources=["netfilterqueue.pyx",],
... | from distutils.core import setup, Extension
VERSION = "0.3" # Remember to change README.rst when version changes.
try:
# Use Cython
from Cython.Distutils import build_ext
cmd = {"build_ext": build_ext}
ext = Extension(
"netfilterqueue",
sources=["netfilterqueue.pyx",],
... | mit | Python |
17854c19ccbc28a7416e6a01e3017180bcbf906a | change version 2.71 - 2.9 | neo1218/mana | setup.py | setup.py | # encoding: utf-8
"""
mana
~~~~
the missing startapp command for Flask
"""
from setuptools import setup, find_packages
import mana
# entry_points
entry_points = {
'console_scripts':[
'mana = mana.mana:cli'
]
}
# requires
with open('requirement.txt') as f:
requires = [exts for ext... | # encoding: utf-8
"""
mana
~~~~
the missing startapp command for Flask
"""
from setuptools import setup, find_packages
import mana
# entry_points
entry_points = {
'console_scripts':[
'mana = mana.mana:cli'
]
}
# requires
with open('requirement.txt') as f:
requires = [exts for ext... | mit | Python |
bc57def85f6f3017af7b7ad465f85871d29d7206 | Add tqdm to requirements | Suor/flaws | setup.py | setup.py | from setuptools import setup
setup(
name='flaws',
version='0.0.1',
author='Alexander Schepanovski',
author_email='suor.web@gmail.com',
description='Finds flaws in your python code',
long_description=open('README.rst').read(),
url='http://github.com/Suor/flaws',
license='BSD',
pack... | from setuptools import setup
setup(
name='flaws',
version='0.0.1',
author='Alexander Schepanovski',
author_email='suor.web@gmail.com',
description='Finds flaws in your python code',
long_description=open('README.rst').read(),
url='http://github.com/Suor/flaws',
license='BSD',
pack... | bsd-2-clause | Python |
3cf1a9bc6a1e7a0d6299630b322c2161571dac3f | improve building exe | olof/svtplay-dl,olof/svtplay-dl,spaam/svtplay-dl,spaam/svtplay-dl | setup.py | setup.py | import os
import sys
from setuptools import find_packages
if "build_exe" in sys.argv:
from cx_Freeze import setup, Executable
else:
from setuptools import setup
# fake Executable class to avoid cx_Freeze on non-Windows
# noinspection Mypy
class Executable:
# noinspection PyUnusedLocal
... | import os
import sys
from setuptools import find_packages
from setuptools import setup
import versioneer
srcdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "lib/")
sys.path.insert(0, srcdir)
vi = sys.version_info
if vi < (3, 4):
raise RuntimeError("svtplay-dl requires Python 3.4 or greater")
abo... | mit | Python |
568d8d22ee8ba4607b96c4d2ffa8192661473b04 | Prepare openprocurement.auction 1.0.17. | openprocurement/openprocurement.auction,openprocurement/openprocurement.auction | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '1.0.17'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from... | from setuptools import setup, find_packages
import os
version = '1.0.16'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from... | apache-2.0 | Python |
a611f79007f04f945c1fb91716bc054d44f706da | Update paths in setup.py | ziotom78/stripeline,ziotom78/stripeline | setup.py | setup.py | #!/usr/bin/env python
import os
from numpy.distutils.core import setup, Extension
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
wrapper = Extension('fortran_routines',
sources=['stripeline/fortran_routines.... | #!/usr/bin/env python
import os
from numpy.distutils.core import setup, Extension
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
wrapper = Extension('fortran_routines',
sources=['src/fortran_routines.f90'],
... | mit | Python |
88c75f41d3a3f791bd1a7ef59cfb1229bfc8d11c | Bump version to 0.6 | philipdexter/pear | setup.py | setup.py | from setuptools import setup
def read_file(f):
with open(f) as f:
return f.read()
setup(
name='pear-aur',
packages = ['pear'],
version='0.6',
description = 'A stupidly simple aur helper',
long_description=read_file('README.rst'),
author = 'Philip Dexter',
author_email = 'philip... | from setuptools import setup
def read_file(f):
with open(f) as f:
return f.read()
setup(
name='pear-aur',
packages = ['pear'],
version='0.5',
description = 'A stupidly simple aur helper',
long_description=read_file('README.rst'),
author = 'Philip Dexter',
author_email = 'philip... | unlicense | Python |
6102ad926cdcf5746584b246599b310b0bb8e180 | Remove dependency link for jsonschema | nextstrain/augur,nextstrain/augur,blab/nextstrain-augur,nextstrain/augur | setup.py | setup.py | import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "trevor@bedford.io, richard.neher@unibas.ch",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywo... | import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "trevor@bedford.io, richard.neher@unibas.ch",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywo... | agpl-3.0 | Python |
79b74a4edaebb4b24e0c72b7c9a7e6241a82f3cf | Add specific Python versions to setup.py | questrail/applyaf | setup.py | setup.py | from distutils.core import setup
setup(
name='applyaf',
version='0.1.0',
author='Matthew Rankin',
author_email='matthew@questrail.com',
py_modules=['applyaf'],
url='http://github.com/questrail/applyaf',
license='LICENSE.txt',
description='Apply antenna factor and cable loss to'
+... | from distutils.core import setup
setup(
name='applyaf',
version='0.1.0',
author='Matthew Rankin',
author_email='matthew@questrail.com',
py_modules=['applyaf'],
url='http://github.com/questrail/applyaf',
license='LICENSE.txt',
description='Apply antenna factor and cable loss to'
+... | mit | Python |
8813d85504594bbb538ae1c882b2311081ff7d43 | Revert "add pyflakes for tests" | diegocepedaw/oncall,dwang159/oncall,diegocepedaw/oncall,diegocepedaw/oncall,dwang159/oncall,diegocepedaw/oncall,dwang159/oncall,dwang159/oncall | setup.py | setup.py | #!/usr/bin/env python
# -*- coding:utf-8 -*-
import setuptools
import re
with open('src/oncall/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
setuptools.setup(
name='oncall',
version=version,
package_dir={'': 'src'},
pack... | #!/usr/bin/env python
# -*- coding:utf-8 -*-
import setuptools
import re
with open('src/oncall/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
setuptools.setup(
name='oncall',
version=version,
package_dir={'': 'src'},
pack... | bsd-2-clause | Python |
2f1b33ca278d84d578af260702e971d2e881579f | install rb and simplejson. | soasme/rio,soasme/rio,soasme/rio | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'flask==0.10.1',
'flask-sqlalchemy==2.1',
'flask-... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'flask==0.10.1',
'flask-sqlalchemy==2.1',
'flask-... | mit | Python |
0245e948ade7b9f2759bf9a17992249b6dc3fb26 | bump version: 1.6.0 | tubaman/django-macaddress | setup.py | setup.py | import os
from setuptools import setup, find_packages
version = "1.6.0"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-macaddress",
version = version,
url = 'http://github.com/tubaman/django-macaddress',
license = 'BSD',
description =... | import os
from setuptools import setup, find_packages
version = "1.5.0"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-macaddress",
version = version,
url = 'http://github.com/tubaman/django-macaddress',
license = 'BSD',
description =... | bsd-3-clause | Python |
b27e7b51caef81f542809a724f6c75973e031377 | Bump lxml from 4.6.2 to 4.6.3 | ilevn/aiodictcc | setup.py | setup.py | import os
import sys
if sys.version_info[0:2] < (3, 5):
raise Exception("aiodictcc requires Python 3.5+")
from setuptools import setup
rootpath = os.path.abspath(os.path.dirname(__file__))
def extract_version(_module='aiodictcc'):
version = None
fname = os.path.join(rootpath, _module, '__init__.py')
... | import os
import sys
if sys.version_info[0:2] < (3, 5):
raise Exception("aiodictcc requires Python 3.5+")
from setuptools import setup
rootpath = os.path.abspath(os.path.dirname(__file__))
def extract_version(_module='aiodictcc'):
version = None
fname = os.path.join(rootpath, _module, '__init__.py')
... | mit | Python |
d3a359b8213541afa3d766bccf85a8a0edd6bc6d | change setup.py find_packages | duanhongyi/kakfa | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(
name="kafka",
version="0.8.1-3",
install_requires=["distribute", "poolbase"],
packages=find_packages(),
author="duanhongyi",
aut... | import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(
name="kafka",
version="0.8.1-3",
install_requires=["distribute", "poolbase"],
packages=["kafka"],
author="duanhongyi",
author_email="duanhongyi... | apache-2.0 | Python |
e188845febc29a5ad059377437df58c8070a7acb | Bump version: 4.1.1 → 4.1.2 | davesque/django-rest-framework-simplejwt,davesque/django-rest-framework-simplejwt | setup.py | setup.py | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | mit | Python |
3fa66550e6fb1d916db6e2c449d41f410b45c912 | Bump version | thelinuxkid/linkins | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
import os
EXTRAS_REQUIRES = dict(
test=[
'pytest>=2.2.4',
'mock>=0.8.0',
'tempdirs>=0.0.3',
],
dev=[
'ipython>=0.13',
],
)
# Tests always depend on all other requirements, except dev
for k,v in EX... | #!/usr/bin/python
from setuptools import setup, find_packages
import os
EXTRAS_REQUIRES = dict(
test=[
'pytest>=2.2.4',
'mock>=0.8.0',
'tempdirs>=0.0.3',
],
dev=[
'ipython>=0.13',
],
)
# Tests always depend on all other requirements, except dev
for k,v in EX... | mit | Python |
5c0a746a58c001347006eecb292f3a2c9136d0c6 | Update project URL in setup.py. | mherrmann/osxtrash | setup.py | setup.py | """Send files to the Trash on OS X (incl. "Put Back" support).
See:
https://github.com/mherrmann/osxtrash-py"""
from setuptools import setup, Extension
impl = Extension(
'osxtrash.impl',
sources = ['src/objc/trash.m'],
extra_compile_args=['-mmacosx-version-min=10.5'],
extra_link_args=[
'-framework', 'AppKit',
... | """Send files to the Trash on OS X (incl. "Put Back" support).
See:
https://github.com/mherrmann/osxtrash-py"""
from setuptools import setup, Extension
impl = Extension(
'osxtrash.impl',
sources = ['src/objc/trash.m'],
extra_compile_args=['-mmacosx-version-min=10.5'],
extra_link_args=[
'-framework', 'AppKit',
... | mit | Python |
7c1aa660caecafc0f8f8bf6235b70f1c9c3a317e | Increment version. | kenwilcox/docopt,devonjones/docopt,benthomasson/docopt,docopt/docopt,snowsnail/docopt,wkentaro/docopt,crcsmnky/docopt,Zearin/docopt,jagguli/docopt | setup.py | setup.py | """`docopt` lives on `GitHub <http://github.com/halst/docopt/>`_."""
from setuptools import setup
setup(
name = "docopt",
version = "0.3.0",
author = "Vladimir Keleshev",
author_email = "vladimir@keleshev.com",
description = "Pythonic argument parser, that will make you smile",
license = "MIT"... | """`docopt` lives on `GitHub <http://github.com/halst/docopt/>`_."""
from setuptools import setup
setup(
name = "docopt",
version = "0.2.0",
author = "Vladimir Keleshev",
author_email = "vladimir@keleshev.com",
description = "Pythonic argument parser, that will make you smile",
license = "MIT"... | mit | Python |
bce115285db982dd5b725ee949cb5f56cb0a6a53 | Bump version in setup.py | jessevig/bertviz,jessevig/bertviz | setup.py | setup.py | import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="bertviz",
version="1.2.0",
description="Attention visualizati... | import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="bertviz",
version="1.1.0",
description="Attention visualizati... | apache-2.0 | Python |
f9511af14e53544a4ba3e200afb34102bc671bb7 | Bump version as instructed by bamboo. | pbs/django-cms-smartsnippets,pbs/django-cms-smartsnippets,pbs/django-cms-smartsnippets,pbs/django-cms-smartsnippets | setup.py | setup.py | import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.rst')
dependencies = [
'django>=1.3,<1.5',
'django-cms>=2.3,<2.3.6',
'django-admin-extend'
]
dependency_links = [
'http://github.com/pbs/djan... | import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.rst')
dependencies = [
'django>=1.3,<1.5',
'django-cms>=2.3,<2.3.6',
'django-admin-extend'
]
dependency_links = [
'http://github.com/pbs/djan... | bsd-3-clause | Python |
e21ce059714a1d88bea980a9111b8b0ee04581ca | Update django-celery-email issue number in setup.py. (@justinvdm) | praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="vumi-go",
version="0.5.1a",
url='http://github.com/praekelt/vumi-go',
license='BSD',
description="Vumi Go",
long_description=open('README.rst', 'r').read(),
author='Praekelt Foundation',
author_email='dev@praekeltfoundation.org',... | from setuptools import setup, find_packages
setup(
name="vumi-go",
version="0.5.1a",
url='http://github.com/praekelt/vumi-go',
license='BSD',
description="Vumi Go",
long_description=open('README.rst', 'r').read(),
author='Praekelt Foundation',
author_email='dev@praekeltfoundation.org',... | bsd-3-clause | Python |
c64a38714a5f414bba3184d2b0490fecc83939a9 | Update verison number | coded-by-hand/mass,coded-by-hand/mass | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='mass',
version='0.1.0',
description='Automated tool for authoring, managing, combining and minifying javascript assets for web projects.',
author='Jack Boberg Alex Padgett',
author_email='info@codedbyhand.com',
url='https://github... | #!/usr/bin/env python
from setuptools import setup
setup(
name='mass',
version='0.0.1',
description='Automated tool for authoring, managing, combining and minifying javascript assets for web projects.',
author='Jack Boberg Alex Padgett',
author_email='info@codedbyhand.com',
url='https://github... | bsd-2-clause | Python |
7ac259e55b34ab3dc9e01eedcb71467d0fe4a9e0 | Add six as requirement | gwongz/flask-apiblueprint,gwongz/flask-apiblueprint | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Flask-APIBlueprint
-------------
Route inheritance for Flask Blueprints.
"""
try:
from setuptools import setup, find_packages
except ImportError:
from disutils.core import setup
try:
with open('LONG_DESCRIPTION.rst') as f:
long_description = f.r... | """
Flask-APIBlueprint
-------------
Route inheritance for Flask Blueprints.
"""
from setuptools import setup
try:
with open('LONG_DESCRIPTION.rst') as f:
long_description = f.read()
except:
long_description = 'Route inheritance for Flask Blueprints'
setup(
name='Flask-APIBlueprint',
versio... | bsd-3-clause | Python |
340cdd0ea77c5edb9ae6f38cf380eec1772cee66 | Increment minor version and set up for git flow | krmaxwell/TRX | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'TRX',
'author': 'Kyle Maxwell, based on Paterva\'s library',
'url': 'https://github.com/krmaxwell/TRX',
'download_url': 'https://github.com/krmaxwell/TRX',
'author_email': 'krma... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'TRX',
'author': 'Kyle Maxwell, based on Paterva\'s library',
'url': 'https://github.com/krmaxwell/TRX',
'download_url': 'https://github.com/krmaxwell/TRX',
'author_email': 'krma... | apache-2.0 | Python |
f5142c92e493542dfb6f7e5ccfeca556dab77ae5 | Add tablib dependency | ryansturmer/tableview | setup.py | setup.py | try:
from setuptools import setup
except:
from distutils.core import setup
setup(name='tableview',
version='1.0.4',
packages=['tableview'],
description='Library for loading and manipulating tabular data.',
author='Ryan Sturmer',
author_email='ryansturmer@gmail.com',
install_... | from distutils.core import setup
setup(name='tableview',
version='1.0.4',
packages=['tableview'],
description='Library for loading and manipulating tabular data.',
author='Ryan Sturmer',
author_email='ryansturmer@gmail.com',
url='http://www.github.com/ryansturmer/tableview')
| mit | Python |
1693d82fd47e805ba2d3746d4ed63f5436411a83 | declare to be stable | lilydjwg/nvchecker | setup.py | setup.py | #!/usr/bin/env python3
# vim:fileencoding=utf-8
from setuptools import setup, find_packages
import nvchecker
setup(
name = 'nvchecker',
version = nvchecker.__version__,
author = 'lilydjwg',
author_email = 'lilydjwg@gmail.com',
description = 'New version checker for software',
license = 'MIT',
keywords =... | #!/usr/bin/env python3
# vim:fileencoding=utf-8
from setuptools import setup, find_packages
import nvchecker
setup(
name = 'nvchecker',
version = nvchecker.__version__,
author = 'lilydjwg',
author_email = 'lilydjwg@gmail.com',
description = 'New version checker for software',
license = 'MIT',
keywords =... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.