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 |
|---|---|---|---|---|---|---|---|---|
7769d54ba19e9cc11ac78e0ef1b5af4c2db8ac6a | Add missing variable | hms-dbmi/clodius,hms-dbmi/clodius | setup.py | setup.py | from setuptools import setup
import os
import io
HERE = os.path.dirname(os.path.abspath(__file__))
def read(*parts, **kwargs):
filepath = os.path.join(HERE, *parts)
encoding = kwargs.pop('encoding', 'utf-8')
with io.open(filepath, encoding=encoding) as fh:
text = fh.read()
return text
def ... | from setuptools import setup
import os
import io
def read(*parts, **kwargs):
filepath = os.path.join(HERE, *parts)
encoding = kwargs.pop('encoding', 'utf-8')
with io.open(filepath, encoding=encoding) as fh:
text = fh.read()
return text
def get_requirements(path):
content = read(path)
... | mit | Python |
e0206440c8bbd889a68059f7e87d4591e59eabba | Bump Paging requirement to 0.2.4 | vperron/sentry,akalipetis/raven-python,looker/sentry,drcapulet/sentry,rdio/sentry,Photonomie/raven-python,hongliang5623/sentry,mvaled/sentry,hzy/raven-python,dbravender/raven-python,icereval/raven-python,boneyao/sentry,looker/sentry,dcramer/sentry-old,BuildingLink/sentry,Goldmund-Wyldebeast-Wunderliebe/raven-python,jma... | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
tests_require = [
'django',
'django-celery',
'south',
'django-haystack',
'whoosh',
]
setup(
... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
tests_require = [
'django',
'django-celery',
'south',
'django-haystack',
'whoosh',
]
setup(
... | bsd-3-clause | Python |
d1fd9a9e33c8583a0ddb223b7d58019386910376 | Update version and Dev Status classifier | piran/pyactiveresource,hockeybuggy/pyactiveresource,varesa/pyactiveresource,metric-collective/pyactiveresource,clusterfudge/pyactiveresource | setup.py | setup.py | from distutils.core import setup
version = '1.0.1'
setup(name='pyactiveresource',
version=version,
description='ActiveResource for Python',
author='Jared Kuolt',
author_email='me@superjared.com',
url='http://code.google.com/p/pyactiveresource/',
packages=['pyactiveresource'],
... | from distutils.core import setup
version = '1.0'
setup(name='pyactiveresource',
version=version,
description='ActiveResource for Python',
author='Jared Kuolt',
author_email='me@superjared.com',
url='http://code.google.com/p/pyactiveresource/',
packages=['pyactiveresource'],
p... | mit | Python |
7c57f2b3392fe0c35b973aceb971daec7dc85e80 | add long-description attribute (md to rest convert) | yokawasa/azure-search-ta,yokawasa/azure-search-ta,yokawasa/azure-search-ta,yokawasa/azure-search-ta | setup.py | setup.py | #!/usr/bin/env python
import re
import ast
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README... | import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('lib/azuresearchta.py', 'r') as fd:
version = re.search(
r'^_AZURE_SEARCH_TEXT_ANALYZE_VERSION\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
setup(name='azure-search-t... | mit | Python |
2c91e76a595fbcb967719ee973c75cc4b966100a | Update setup.py version to 0.7.5dev0 | choderalab/openmoltools,choderalab/openmoltools | setup.py | setup.py | """openmoltools: Tools for Small Molecules, Antechamber, OpenMM, and More.
"""
from __future__ import print_function
DOCLINES = __doc__.split("\n")
import os
import sys
import shutil
import tempfile
import subprocess
from distutils.ccompiler import new_compiler
from setuptools import setup, Extension
import numpy
tr... | """openmoltools: Tools for Small Molecules, Antechamber, OpenMM, and More.
"""
from __future__ import print_function
DOCLINES = __doc__.split("\n")
import os
import sys
import shutil
import tempfile
import subprocess
from distutils.ccompiler import new_compiler
from setuptools import setup, Extension
import numpy
tr... | mit | Python |
297af6b648ca28900133d163807a1fc6aec3efeb | Change version | keitaoouchi/seleniumwrapper | setup.py | setup.py | from setuptools import setup
from sys import version
if version < '2.6.0':
raise Exception("This module doesn't support any version less than 2.6")
import sys
sys.path.append("./test")
with open('README.rst', 'r') as f:
long_description = f.read()
classifiers = [
'Development Status :: 4 - Beta',
'I... | from setuptools import setup
from sys import version
if version < '2.6.0':
raise Exception("This module doesn't support any version less than 2.6")
import sys
sys.path.append("./test")
with open('README.rst', 'r') as f:
long_description = f.read()
classifiers = [
'Development Status :: 4 - Beta',
'I... | bsd-3-clause | Python |
44f8ac5da7a4ebd96af542f3d5421f09a854580e | bump version 0.0.9 | shirou/sphinxcontrib-reviewbuilder | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_desc = '''
Sphinx ReVIEW builder. ReVIEW is a easy-to-use digital publishing
system for books and ebooks.
ReVIEW: https://github.com/kmuto/review
'''
requires = ['Sphinx>=2.4', 'setuptools']
setup(
name='sphinxcontrib-reviewbuilder',
... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_desc = '''
Sphinx ReVIEW builder. ReVIEW is a easy-to-use digital publishing
system for books and ebooks.
ReVIEW: https://github.com/kmuto/review
'''
requires = ['Sphinx>=2.4', 'setuptools']
setup(
name='sphinxcontrib-reviewbuilder',
... | lgpl-2.1 | Python |
a475eec3642e6612fae03ceaec65b8a61c37537e | Update setup description. | ofgulban/tetrahydra | setup.py | setup.py | """tetrahydra setup.
To install, using the commandline do:
pip install -e /path/to/tetrahydra
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='tetrahydra',
version='0.1.0',
description='Compositional data analysis methods.',
url='ht... | """tetrahydra setup.
To install, using the commandline do:
pip install -e /path/to/tetrahydra
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='tetrahydra',
version='0.1.0',
description='Compositional data methods for MRI data.',
url... | bsd-3-clause | Python |
000bf4d3942c19facd254fcff2df8b2b35a8fd75 | Change to fireteam email address. | fireteam/python-json-stream | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools.dist import Distribution
with open(os.path.join(os.path.dirname(__file__), 'README')) as f:
doc = f.read()
class BinaryDistribution(Distribution):
def is_pure(self):
return False
setup(
name='json-stream',
vers... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools.dist import Distribution
with open(os.path.join(os.path.dirname(__file__), 'README')) as f:
doc = f.read()
class BinaryDistribution(Distribution):
def is_pure(self):
return False
setup(
name='json-stream',
vers... | bsd-3-clause | Python |
761e58469e1008a604c67c7ee9e97ec604c72018 | Include migrations in pip package | edx-solutions/xblock-mentoring,proversity-org/problem-builder,open-craft/xblock-mentoring,proversity-org/problem-builder,open-craft/xblock-mentoring,edx-solutions/xblock-mentoring,proversity-org/problem-builder,edx-solutions/xblock-mentoring,open-craft/xblock-mentoring | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# Copyright (C) 2014 Harvard
#
# Authors:
# Xavier Antoviaque <xavier@antoviaque.org>
#
# This software's license gives you freedom; you can copy, convey,
# propagate, redistribute and/or modify this program under the terms of
# the GNU Affero General Public License (AGPL) as publishe... | # -*- coding: utf-8 -*-
#
# Copyright (C) 2014 Harvard
#
# Authors:
# Xavier Antoviaque <xavier@antoviaque.org>
#
# This software's license gives you freedom; you can copy, convey,
# propagate, redistribute and/or modify this program under the terms of
# the GNU Affero General Public License (AGPL) as publishe... | agpl-3.0 | Python |
b2593ea8f4a8e98b2a92ccebae69376516fb860c | Fix for non-existent rst README | plumdog/flask_table,plumdog/flask_table,plumdog/flask_table | setup.py | setup.py | import os
from setuptools import setup
install_requires = [
'Flask',
'Flask-Babel',
]
if os.path.exists('README'):
with open('README') as f:
readme = f.read()
else:
readme = None
setup(
name='Flask-Table',
packages=['flask_table'],
version='0.3.1',
author='Andrew Plummer',
... | from setuptools import setup
install_requires = [
'Flask',
'Flask-Babel',
]
with open('README') as f:
readme = f.read()
setup(
name='Flask-Table',
packages=['flask_table'],
version='0.3.1',
author='Andrew Plummer',
author_email='plummer574@gmail.com',
url='https://github.com/plumd... | bsd-3-clause | Python |
48b99afd4b3afd9176b92b9f6351e765255bd090 | fix setup | ValiValpas/pyplot_helper | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='pyplot_helper',
version='1.0',
description='A collection of scripts that facilitate the creation of fancy plots with matplotlib.',
author='Johannes Schlatow',
url='https://github.com/ValiValpas/pyplot_helper',
licen... | #!/usr/bin/env python
from setuptools import setup
setup(name='pyplot_helper',
version='1.0',
description='A collection of scripts that facilitate the creation of fancy plots with matplotlib.',
author='Johannes Schlatow',
url='https://github.com/ValiValpas/pyplot_helper',
licen... | mit | Python |
d9475d7aeabfaebc520734f59315bf0c8dc28f4c | Add python_requires, fix #134 | newlawrence/poliastro,Juanlu001/poliastro,poliastro/poliastro,anhiga/poliastro,anhiga/poliastro,newlawrence/poliastro,anhiga/poliastro,Juanlu001/poliastro,Juanlu001/poliastro,newlawrence/poliastro | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
# http://stackoverflow.com/a/10975371/554319
import io
from setuptools import setup, find_packages
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
setup(
name="poliastro",
version='0.6.dev0',
description="Python package for Orbital Mechanics",
author="Juan ... | #!/usr/bin/env python
# coding: utf-8
# http://stackoverflow.com/a/10975371/554319
import io
from setuptools import setup, find_packages
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
setup(
name="poliastro",
version='0.6.dev0',
description="Python package for Orbital Mechanics",
author="Juan ... | mit | Python |
5d5585cd3851587b9ea138a785a07cadd3eb3969 | Add Cython build dependencies | tkphd/pycalphad,tkphd/pycalphad,tkphd/pycalphad | setup.py | setup.py | from setuptools import setup
import os
import versioneer
from Cython.Build import cythonize
import numpy as np
versioneer.VCS = 'git'
versioneer.versionfile_source = 'pycalphad/_version.py'
versioneer.versionfile_build = 'pycalphad/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefi... | from setuptools import setup
import os
import versioneer
from Cython.Build import cythonize
import numpy as np
versioneer.VCS = 'git'
versioneer.versionfile_source = 'pycalphad/_version.py'
versioneer.versionfile_build = 'pycalphad/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefi... | mit | Python |
f41c05f7579b42300e8e202218657f4eeb37a3a6 | Install rl when installing voltron | snare/voltron,snare/voltron,snare/voltron,snare/voltron | setup.py | setup.py | from setuptools import setup
setup(
name = "voltron",
version = "0.1",
author = "snare",
author_email = "snare@ho.ax",
description = ("A UI for GDB & LLDB"),
license = "Buy snare a beer",
keywords = "voltron gdb lldb",
url = "https://github.com/snarez/voltron",
packages=['voltron'],... | from setuptools import setup
setup(
name = "voltron",
version = "0.1",
author = "snare",
author_email = "snare@ho.ax",
description = ("A UI for GDB & LLDB"),
license = "Buy snare a beer",
keywords = "voltron gdb lldb",
url = "https://github.com/snarez/voltron",
packages=['voltron'],... | mit | Python |
e2f026db9571f84c47788326510ca4ed54ff39d1 | add build_abstar_germline_db binary to setup.py | briney/abstar | setup.py | setup.py | import os
try:
from setuptools import setup
except ImportError:
sys.exit('ERROR: setuptools is required.\n')
try:
from pip.req import parse_requirements
except ImportError:
sys.exit('ERROR: pip is required.\n')
if os.environ.get('READTHEDOCS', None):
# Set empty install_requires to get install t... | import os
try:
from setuptools import setup
except ImportError:
sys.exit('ERROR: setuptools is required.\n')
try:
from pip.req import parse_requirements
except ImportError:
sys.exit('ERROR: pip is required.\n')
if os.environ.get('READTHEDOCS', None):
# Set empty install_requires to get install t... | mit | Python |
d9de5c78f72cc8fd9f1e61799adef0d41563f44a | update build | botstory/botstory,hyzhak/bot-story,hyzhak/bot-story,botstory/botstory | setup.py | setup.py | import os
from setuptools import setup, find_packages
longDesc = ''
if os.path.exists('README.md'):
longDesc = open('README.md').read().strip()
version = ''
if os.path.exists('version.txt'):
version = open('version.txt').read().strip()
setup(
name='botstory',
packages=find_packages(),
version=ve... | import os
from setuptools import setup, find_packages
longDesc = ''
if os.path.exists('README.md'):
longDesc = open('README.md').read().strip()
version = ''
if os.path.exists('version.txt'):
version = open('version.txt').read().strip()
setup(
name='botstory',
packages=find_packages(),
version=ve... | mit | Python |
9c70765fce6b0abacb3f57b678cb0651471ca03f | Update version number | daxm/fmcapi,daxm/fmcapi | setup.py | setup.py | from setuptools import setup, find_packages
__author__ = "Dax Mickelson"
__author_email = "dmickels@cisco.com"
__license__ = "BSD"
setup(
name="fmcapi",
version="20200306.0",
description="Easier interface to Cisco's FMC API than writing your own way.",
long_description="""With the removal to configure... | from setuptools import setup, find_packages
__author__ = "Dax Mickelson"
__author_email = "dmickels@cisco.com"
__license__ = "BSD"
setup(
name="fmcapi",
version="20200213.0",
description="Easier interface to Cisco's FMC API than writing your own way.",
long_description="""With the removal to configure... | bsd-3-clause | Python |
e121493b7bab8f4cdd8485248a9acd7babb643c8 | Use the pillow master branch directly. | 99designs/colorific | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# setup.py
# colorific
#
"""
Package information for colorific.
"""
import sys
# check for the supported Python version
version = tuple(sys.version_info[:2])
if version != (2, 7):
sys.stderr.write('colorific requires Python 2.7 (you have %d.%d)\n' %
version)
sys.stderr... | # -*- coding: utf-8 -*-
#
# setup.py
# colorific
#
"""
Package information for colorific.
"""
import sys
# check for the supported Python version
version = tuple(sys.version_info[:2])
if version != (2, 7):
sys.stderr.write('colorific requires Python 2.7 (you have %d.%d)\n' %\
version)
sys.stder... | isc | Python |
be514e4cfa4537f734bbb68e4de6827f2563dba0 | Add info abou mysterious env vars in setup.py | pydot/pydot-ng | setup.py | setup.py | #!/usr/bin/env python
import os
from codecs import open
from setuptools import setup
# NOTE(prmtl): found reason on https://superuser.com/q/259703
os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
os.environ['COPYFILE_DISABLE'] = 'true'
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setu... | #!/usr/bin/env python
from codecs import open
import os
from setuptools import setup
os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
os.environ['COPYFILE_DISABLE'] = 'true'
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='pydot_ng',
version='1.0.1.dev0',
description... | mit | Python |
30b1dc01635ec35957a4ba50564858fe5f4d9102 | Bump version | joaduo/smoothtest,joaduo/smoothtest,joaduo/smoothtest | setup.py | setup.py |
from setuptools import setup, find_packages
name = 'smoothtest'
reqs = '''importlib
ipython
Pillow
pyvirtualdisplay
selenium
watchdog
rel_imp'''.splitlines()
def long_description():
with open('README', 'r') as f:
return unicode(f.read())
setup(
name = name,
packages = find_packages(),
version = '... |
from setuptools import setup, find_packages
name = 'smoothtest'
reqs = '''importlib
ipython
Pillow
pyvirtualdisplay
selenium
watchdog
rel_imp'''.splitlines()
def long_description():
with open('README', 'r') as f:
return unicode(f.read())
setup(
name = name,
packages = find_packages(),
version = '... | mit | Python |
d1ca9e8c99345df328e7f9986c9a89438a1b6534 | add GitHub URL | teddywing/django-sneak-peek | setup.py | setup.py | import os
from setuptools import setup, find_packages
# https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='django-sneak... | import os
from setuptools import setup, find_packages
# https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='django-sneak... | mit | Python |
43af14873e7abd1dd93ed419771cb7a2bb4244ef | update version | Beeblio/django-vote | 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-vote',
version='1.1.3',
packages=['vote'],
inc... | 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-vote',
version='1.1.2',
packages=['vote'],
inc... | bsd-3-clause | Python |
ecf7374b95b47e9d4bc05e2ebbfdd623fe501a77 | Bump to v0.14.0 | gisce/esios | setup.py | setup.py | from setuptools import setup, find_packages
PACKAGES_DATA = {'esios': ['data/*.xsd']}
setup(
name='esios',
version='0.14.0',
packages=find_packages(),
url='https://github.com/gisce/esios',
license='MIT',
install_requires=['libsaas'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.n... | from setuptools import setup, find_packages
PACKAGES_DATA = {'esios': ['data/*.xsd']}
setup(
name='esios',
version='0.13.0',
packages=find_packages(),
url='https://github.com/gisce/esios',
license='MIT',
install_requires=['libsaas'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.n... | mit | Python |
9dcc005eeba4a97fc1f5d4eb131bf9c02069e21e | use either setuptools or distutils in setup.py | matthiask/django-mptt,Sinkler/django-mptt,lojaintegrada/django-mptt,shultais/django-mptt,Sinkler/django-mptt,watchdogpolska/django-mptt,shultais/django-mptt,musashiXXX/django-mptt,AndrewGrossman/django-mptt,caktus/django-mptt,lojaintegrada/django-mptt,michaeljohnbarr/django-mptt,AndrewGrossman/django-mptt,watchdogpolsk... | setup.py | setup.py | #!/usr/bin/env python
from __future__ import unicode_literals
from mptt import VERSION
requires=('Django>=1.4.2',)
try:
from setuptools import setup
kwargs ={'install_requires': requires}
except ImportError:
from distutils.core import setup
kwargs = {'requires': requires}
# Dynamically calculate the ... | #!/usr/bin/env python
from __future__ import unicode_literals
from distutils.core import setup
from mptt import VERSION
# Dynamically calculate the version based on mptt.VERSION
version_tuple = VERSION
version = ".".join([str(v) for v in version_tuple])
# on py3, all these are text strings
# on py2, they're all byt... | mit | Python |
aa5f032704671a6632747c9ca8675b74bedc1cc3 | Add metadata to setup.py | bmi-forum/bmi-python,bmi-forum/bmi-python | setup.py | setup.py | #! /usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='basic-modeling-interface',
version='0.1.0',
author='CSDMS',
author_email='csdms@colorado.edu',
url='https://github.com/bmi-forum/bmi-python',
license='MIT',... | #! /usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='basic-modeling-interface',
version='0.1.0',
author='CSDMS',
author_email='csdms@colorado.edu',
license='MIT',
description='Python bindings for the Basic Mod... | mit | Python |
fdb0d801c8063f2e0396901efdbf49e439f9a217 | Add Flake8 framework classifier | xZise/flake8-string-format | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup
def get_version():
with open('flake8_string_format.py') as f:
for line in f:
if line.startswith('__version__'):
return eval(line.split('=')[-1])
def get_long_description():
with codecs.open('README.rst', ... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup
def get_version():
with open('flake8_string_format.py') as f:
for line in f:
if line.startswith('__version__'):
return eval(line.split('=')[-1])
def get_long_description():
with codecs.open('README.rst', ... | mit | Python |
9dad4e3010f90721b6af04f03be54a77173440f6 | fix python3 on windows case for bdisnt_instal | scikit-multilearn/scikit-multilearn | setup.py | setup.py | # !/usr/bin/env python
# encoding: utf-8
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# import sphinx_pypi_upload
import io
with io.open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='scikit-multilearn',
version='0.2.0',
packages=find_packages(exclude=['docs', '... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# import sphinx_pypi_upload
import codecs
with codecs.open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='scikit-multilearn',
version='0.2.0',
packages=find_packages(exclude=['docs', 'tests', '*.tests']),
author=u... | bsd-2-clause | Python |
2fb42d7a1f01b82e44f0221519fb6adbfe2457ec | Bump version to 3.1m5 | cloudify-cosmo/cloudify-cli,codilime/cloudify-cli,01000101/cloudify-cli,geokala/cloudify-cli,codilime/cloudify-cli,codilime/cloudify-cli,isaac-s/cloudify-cli,codilime/cloudify-cli,geokala/cloudify-cli,01000101/cloudify-cli,mahak/cloudify-cli,isaac-s/cloudify-cli,cloudify-cosmo/cloudify-cli,mahak/cloudify-cli,01000101/c... | 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 |
4f7c8db136d31421b2faff155b87e309cd8c1ade | bump version | fooelisa/pyiosxr | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
"""A module to interact with Cisco devices running IOS-XR."""
# Copyright 2015 Netflix. All rights reserved.
# Copyright 2016 BigWaveIT. All rights reserved.
#
# The contents of this file are licensed under the Apache License, Version 2.0
# (the "License"); you may not use this fil... | #!/usr/bin/env python
# coding=utf-8
"""A module to interact with Cisco devices running IOS-XR."""
# Copyright 2015 Netflix. All rights reserved.
# Copyright 2016 BigWaveIT. All rights reserved.
#
# The contents of this file are licensed under the Apache License, Version 2.0
# (the "License"); you may not use this fil... | apache-2.0 | Python |
434e06c87521f96b9cc93d5b42993ad211ce2ed7 | Bump version | hammerlab/mhctools,hammerlab/mhctools | setup.py | setup.py | # Copyright (c) 2014. Mount Sinai School of Medicine
#
# 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 o... | # Copyright (c) 2014. Mount Sinai School of Medicine
#
# 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 o... | apache-2.0 | Python |
e31c63199e4b1a47e76b00a8c9d551b37ea5526a | Remove explicit classifiers, aligning with practice in jaraco/skeleton. I don't have time to stupid lists of compatibility. Fixes #125. | jaraco/irc | setup.py | setup.py | #!/usr/bin/env python
# Project skeleton maintained at https://github.com/jaraco/skeleton
import io
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
name = 'irc'
description = 'IRC (Internet Relay Chat) protocol library for Python'
params = dict(
n... | #!/usr/bin/env python
# Project skeleton maintained at https://github.com/jaraco/skeleton
import io
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
name = 'irc'
description = 'IRC (Internet Relay Chat) protocol library for Python'
params = dict(
n... | mit | Python |
8fa27aafc72b5882fbe243aa104def720e127a60 | use smartcase for the pattern | google-code-export/beets,google-code-export/beets,google-code-export/beets | beetsplug/fuzzy.py | beetsplug/fuzzy.py | # This file is part of beets.
# Copyright 2013, Philippe Mongeau.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy... | # This file is part of beets.
# Copyright 2013, Philippe Mongeau.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy... | mit | Python |
871287d7ca133d9db09181c60d8aa1f65a6b9bd3 | Add Python 3 support to the setup.py file | bopo/django-jstemplate,bopo/django-jstemplate,mjumbewu/django-jstemplate,bopo/django-jstemplate,mjumbewu/django-jstemplate,mjumbewu/django-jstemplate | setup.py | setup.py | from os.path import join, dirname
from setuptools import setup, find_packages
here = dirname(__file__)
long_description = (open(join(here, "README.rst")).read() + "\n\n" +
open(join(here, "CHANGES.rst")).read() + "\n\n" +
open(join(here, "TODO.rst")).read())
def get_version()... | from os.path import join, dirname
from setuptools import setup, find_packages
here = dirname(__file__)
long_description = (open(join(here, "README.rst")).read() + "\n\n" +
open(join(here, "CHANGES.rst")).read() + "\n\n" +
open(join(here, "TODO.rst")).read())
def get_version()... | bsd-3-clause | Python |
cb385d0e053078492c467a31cbde3e158e458571 | Fix bug with multiprocessing and Nose. | disqus/durabledict | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup, find_packages
try:
import multiprocessing # Seems to fix http://bugs.python.org/issue15881
except ImportError:
pass
setup_requires = []
if 'nosetests' in sys.argv[1:]:
setup_requires.append('nose')
setup(
name='modeldict',
version... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
setup(
name='modeldi... | apache-2.0 | Python |
321c0f40949af6dafb7a4f30af81e54168fceedd | bump version to 0.0.4 | Sberned/djaio | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'aiohttp',
'aiohttp_jinja2',
'asyncio',
'aiohttp_debugtoolbar',
'aiohttp_autoreload',
'schematics>=2.0.0.dev2',
'aiopg==0.11.0',
]
tests_requi... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'aiohttp',
'aiohttp_jinja2',
'asyncio',
'aiohttp_debugtoolbar',
'aiohttp_autoreload',
'schematics>=2.0.0.dev2',
'aiopg==0.11.0',
]
tests_requi... | apache-2.0 | Python |
8fd7c4615ff2c207f9a55cd008c4c5ae8fe59cd8 | update version number | hiidef/hiispider,hiidef/hiispider | setup.py | setup.py | from setuptools import setup, find_packages
# Also requires python-dev and python-openssl
setup(
name = "HiiSpider",
version = "0.5.5",
packages = find_packages(),
install_requires = ['twisted>=8.1', 'genshi>=0.5.1', 'python-dateutil>=1.4', 'simplejson>=2.0.9', 'boto'],
include_package_data = Tr... | from setuptools import setup, find_packages
# Also requires python-dev and python-openssl
setup(
name = "HiiSpider",
version = "0.5.4",
packages = find_packages(),
install_requires = ['twisted>=8.1', 'genshi>=0.5.1', 'python-dateutil>=1.4', 'simplejson>=2.0.9', 'boto'],
include_package_data = Tr... | mit | Python |
826c8a4e657bb0e46c65c01d7761d6ba1968eca9 | Bump version. | fanstatic/js.fullcalendar,fanstatic/js.fullcalendar | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '2.1.2dev'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.txt')
+ '\n' +
read('js', 'fullcalendar', 'test_fullcale... | # -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '2.1.1'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.txt')
+ '\n' +
read('js', 'fullcalendar', 'test_fullcalenda... | bsd-3-clause | Python |
7dae29d2417ff27e450778b5db7d726092d2ed36 | Include Python 2/3 trove classifiers in setup.py. | migonzalvar/dj-email-url | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
dj-email-url
~~~~~~~~~~~~
This utiliy is based on dj-database-url by Kenneth Reitz.
It allows to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
environments variable to configure the email backend in a Django application.
Usage
-----
Configure your email conf... | # -*- coding: utf-8 -*-
"""
dj-email-url
~~~~~~~~~~~~
This utiliy is based on dj-database-url by Kenneth Reitz.
It allows to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
environments variable to configure the email backend in a Django application.
Usage
-----
Configure your email conf... | bsd-2-clause | Python |
911e8df0b58f6c642fc240e042d830b26cb704f9 | Remove specific argparse version (not necessary); a=bustage | mozilla/build-runner,mozilla/build-runner | 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/.
from setuptools import setup
setup(
name="runner",
version="1.9",
description="Task runner",
author="Ch... | # 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/.
from setuptools import setup
setup(
name="runner",
version="1.9",
description="Task runner",
author="Ch... | mpl-2.0 | Python |
5f9d14dc5cec0f130770c68085c997983d9d4e6c | add changelog to pypi dist (converting from markdown to rst via pandoc) | topic2k/pygcgen | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
import pypandoc
version = {}
with open("pygcgen/version.py") as fh:
exec(fh.read(), version)
changelog = pypandoc.convert_file(
r'CHANGELOG.md',
to='rst',
format='gfm',
)
long_desc = """
Automaticaly generate a changelog based on GitHub issues and... | # -*- coding: utf-8 -*-
from setuptools import setup
version = {}
with open("pygcgen/version.py") as fh:
exec(fh.read(), version)
setup(
name=version['__title__'],
version=version['__version__'],
license=version['__license__'],
keywords=version['__summary__'],
description='Generate changelog... | mit | Python |
423842f8ea3b8d68841616d5d85a3828b4bdb322 | fix 'bitFlyer' typo | yagays/pybitflyer | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="pybitflyer",
packages=['pybitflyer'],
version="0.1.1",
description="Python wrapper for bitFlyer's REST API.",
author="yag_ays",
author_email="yanagi.ayase@gmail.com",
url="https://github.com/yagays/pybitflyer",
install_r... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="pybitflyer",
packages=['pybitflyer'],
version="0.1.1",
description="Python wrapper for Bitflyer's REST API.",
author="yag_ays",
author_email="yanagi.ayase@gmail.com",
url="https://github.com/yagays/pybitflyer",
install_r... | mit | Python |
eba1061ab096fed82f6472e99f560c6942b6e181 | Bump to v1.0.11 | vthorsteinsson/tensor2tensor,tensorflow/tensor2tensor,vthorsteinsson/tensor2tensor,rsepassi/tensor2tensor,tensorflow/tensor2tensor,waterblue13/tensor2tensor,rsepassi/tensor2tensor,vthorsteinsson/tensor2tensor,tensorflow/tensor2tensor,vthorsteinsson/tensor2tensor,waterblue13/tensor2tensor,tensorflow/tensor2tensor,tensor... | setup.py | setup.py | """Install tensor2tensor."""
from setuptools import find_packages
from setuptools import setup
setup(
name='tensor2tensor',
version='1.0.11',
description='Tensor2Tensor',
author='Google Inc.',
author_email='no-reply@google.com',
url='http://github.com/tensorflow/tensor2tensor',
license='Ap... | """Install tensor2tensor."""
from setuptools import find_packages
from setuptools import setup
setup(
name='tensor2tensor',
version='1.0.10',
description='Tensor2Tensor',
author='Google Inc.',
author_email='no-reply@google.com',
url='http://github.com/tensorflow/tensor2tensor',
license='Ap... | apache-2.0 | Python |
118623ac736aedf821945050cd4403cbe8bdcfe6 | set zip_safe as False | pombredanne/django-rest-swagger,pombredanne/django-rest-swagger,pombredanne/django-rest-swagger,marcgibbons/django-rest-swagger,marcgibbons/django-rest-swagger,marcgibbons/django-rest-swagger,pombredanne/django-rest-swagger,marcgibbons/django-rest-swagger | setup.py | setup.py | #!/usr/bin/python
import os
import sys
import shutil
from setuptools import setup
from rest_framework_swagger import __version__ as VERSION
if sys.argv[-1] == 'publish':
if os.system("wheel version"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip... | #!/usr/bin/python
import os
import sys
import shutil
from setuptools import setup
from rest_framework_swagger import __version__ as VERSION
if sys.argv[-1] == 'publish':
if os.system("wheel version"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip... | bsd-2-clause | Python |
ee88fb4c6863d1a96ccc4b8de8da893d6eae3469 | fix the setup.py script to register with pypi | earies/exabgp,benagricola/exabgp,chrisy/exabgp,dneiter/exabgp,earies/exabgp,PowerDNS/exabgp,dneiter/exabgp,blablacar/exabgp,fugitifduck/exabgp,fugitifduck/exabgp,chrisy/exabgp,benagricola/exabgp,lochiiconnectivity/exabgp,blablacar/exabgp,chrisy/exabgp,lochiiconnectivity/exabgp,dneiter/exabgp,benagricola/exabgp,earies/e... | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
"""
bgp.py
Created by Thomas Mangin on 2011-01-24.
Copyright (c) 2009 Exa Networks. All rights reserved.
"""
import os
import sys
import glob
from distutils.core import setup
from distutils.util import get_platform
try:
f = open('VERSION','r')
version = f.read().strip()
f.c... | #!/usr/bin/env python
# encoding: utf-8
"""
bgp.py
Created by Thomas Mangin on 2011-01-24.
Copyright (c) 2009 Exa Networks. All rights reserved.
"""
import os
import sys
import glob
from distutils.core import setup
from distutils.util import get_platform
try:
f = open('VERSION','r')
version = f.read().strip()
f.c... | bsd-3-clause | Python |
89e5b2f000a2a0622886e320ad8c9d9f6d6fc603 | Include package data | 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, find_packages
version = re.search('^__version__\s*=\s*"(.*)"',
open('flask_z3950/__init__.py').read(),
re.M).group(1)
try:
... | bsd-3-clause | Python |
c3e477e197aa613ba272f450def7e1a73949b7c8 | Fix travis build | aranega/pyecore,pyecore/pyecore | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info < (3, 3):
sys.exit('Sorry, Python < 3.3 is not supported')
packages = ['pyecore',
'pyecore.resources',
'pyecore.type']
setup(
name='pyecore',
version='0.7.7-dev',
description=('A Python(ic) Impl... | #!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info < (3, 3):
sys.exit('Sorry, Python < 3.3 is not supported')
packages = ['pyecore',
'pyecore.resources',
'pyecore.type']
setup(
name='pyecore',
version='0.7.7-dev',
description=('A Python(ic) Impl... | bsd-3-clause | Python |
fb48dcf2b514abfea0a492d93f745aae6c09441e | Fix typo | poldracklab/pydeface | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
VERSION = '2.0.0'
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
datafiles = {'pydeface': ['data/facemask.nii.gz',
'data/mean_reg2mean.nii.gz']}
setup(name='pydeface',
maintainer='Russ Poldrack',
maintainer... | #!/usr/bin/env python
import os
from setuptools import setup
VERSION = '2.0.0'
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
datafiles = {'pydeface': ['data/facemask.nii.gz',
'data/mean_reg2mean.nii.gz']}
setup(name='pydeface',
maintainer='Russ Poldrack',
maintainer... | mit | Python |
14dcb56682a1d2fb2734d6b8c8667d3539e51b13 | update setup.py: add project description | ojengwa/ibu,ojengwa/migrate | setup.py | setup.py | """
A database agnotics migration and data export tool.
Attributes:
dependency_links (TYPE): Description
here (TYPE): App setup and
install_requires (TYPE): Description
VERSION (str): Description
"""
import re
import ast
from setuptools import setup
from codecs import open
from os import path
here = ... | """
A database agnotics migration and data export tool.
Attributes:
dependency_links (TYPE): Description
here (TYPE): App setup and
install_requires (TYPE): Description
VERSION (str): Description
"""
import re
import ast
from setuptools import setup
from codecs import open
from os import path
here = ... | mit | Python |
2d6c6f31cc6af96704c8dd60c2aa10140b4b42b7 | Set version to 1.0.0 for initial public release. | paulirish/dadi,cheese1213/dadi,RyanGutenkunst/dadi,yangjl/dadi,paulirish/dadi,niuhuifei/dadi,beni55/dadi,beni55/dadi,ChenHsiang/dadi,ChenHsiang/dadi,cheese1213/dadi,RyanGutenkunst/dadi,niuhuifei/dadi,yangjl/dadi | setup.py | setup.py | # Importing these adds a 'bdist_mpkg' option that allows building binary
# packages on OS X.
try:
import setuptools
import bdist_mpkg
except ImportError:
pass
import os
import numpy.distutils.core as core
# Configure our C modules that are built with f2py.
tridiag = core.Extension(name = 'dadi.tridiag',
... | # Importing these adds a 'bdist_mpkg' option that allows building binary
# packages on OS X.
try:
import setuptools
import bdist_mpkg
except ImportError:
pass
import os
import numpy.distutils.core as core
# Configure our C modules that are built with f2py.
tridiag = core.Extension(name = 'dadi.tridiag',
... | bsd-3-clause | Python |
1d55808ab0d7f4de444b09082cf60a268e774cb8 | remove connection package from setup | maiome-development/malibu | setup.py | setup.py | # -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import malibu
setup(
name='malibu',
version=malibu.__version__,
description="maiome library of utilities",
url="https://phabricator.ramcloud.io/tag/malibu",
author... | # -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import malibu
setup(
name='malibu',
version=malibu.__version__,
description="maiome library of utilities",
url="https://phabricator.ramcloud.io/tag/malibu",
author... | unlicense | Python |
d7c9e4c8324bc24beb1da1d5187b2fb1ee26d482 | Add classifiers to setup.py | joestump/python-oauth2,CestusMagnus/python-oauth2,jgsogo/python-oauth2,InnovativeTravel/python-oauth2,jackiekazil/python-oauth2,alekskorolev/python-oauth2,edworboys/python-oauth2,CentricWebEstate/python-oauth2,simplegeo/python-oauth2,arthurian/python-oauth2,squirro/python-oauth2,tygpatton/python-oauth2 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os, re
PKG='oauth2'
VERSIONFILE = os.path.join('oauth2', '_version.py')
verstr = "unknown"
try:
verstrline = open(VERSIONFILE, "rt").read()
except EnvironmentError:
pass # Okay, there is no version file.
else:
MVSRE = r"^manual_verstr *= *['\"]([^'\... | #!/usr/bin/env python
from setuptools import setup
import os, re
PKG='oauth2'
VERSIONFILE = os.path.join('oauth2', '_version.py')
verstr = "unknown"
try:
verstrline = open(VERSIONFILE, "rt").read()
except EnvironmentError:
pass # Okay, there is no version file.
else:
MVSRE = r"^manual_verstr *= *['\"]([^'\... | mit | Python |
d024572a21e7e4baa2a72c30b617aafaea84801b | Set cov-core dependency to 1.9 | opoplawski/pytest-cov,moreati/pytest-cov,pytest-dev/pytest-cov,ionelmc/pytest-cover,wushaobo/pytest-cov,schlamar/pytest-cov | setup.py | setup.py | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | mit | Python |
cbc9cd4a238e25f20a8a76210491b51f32ebb39c | Bump version for PyPI to accept docs changes. | obskyr/puush.py | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = '1.0.1'
REQUIREMENTS = [
"requests >= 1.0.0"
]
with open("readme.rst", 'r') as f:
long_description = f.read()
setup(
name="puush.py",
version=VERSION,
author="Samuel Messner",
author_email="powpowd@gmail.co... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = '1.0.0'
REQUIREMENTS = [
"requests >= 1.0.0"
]
with open("readme.rst", 'r') as f:
long_description = f.read()
setup(
name="puush.py",
version=VERSION,
author="Samuel Messner",
author_email="powpowd@gmail.co... | mit | Python |
d6521e92771fdf2cb58124a021e7195800568156 | Make sure gflags.third_party.pep257 is also installed. | google/python-gflags | setup.py | setup.py | #!/usr/bin/env python
# Copyright 2007 Google Inc. 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 copyright
# notice, this list of c... | #!/usr/bin/env python
# Copyright 2007 Google Inc. 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 copyright
# notice, this list of c... | bsd-3-clause | Python |
dbb5514f1d9947268dc8ba305f7a9093470fa8f0 | Add classifiers for Python 3 support | honzajavorek/czech-holidays | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
import re
import sys
import shlex
import subprocess
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # NOQA
base_path = os.path.dirname(__file__)
# version
meta_file = os.path.join(base_path, 'czech_holidays.py')
meta_file_contents ... | # -*- coding: utf-8 -*-
import os
import re
import sys
import shlex
import subprocess
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # NOQA
base_path = os.path.dirname(__file__)
# version
meta_file = os.path.join(base_path, 'czech_holidays.py')
meta_file_contents ... | mit | Python |
703842ebe2a7e73b099cf94fad939ff1cb44d658 | Improve setuptools info, bump to 0.1.1. | jesskay/tigger | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="Tigger",
version="0.1.1",
license="MIT",
author="Bit Shift",
author_email="bitshift@bigmacintosh.net",
url="https://github.com/bit-shift/tigger",
description="Command-line tagging tool.",
lon... | #!/usr/bin/env python
from setuptools import setup
setup(
name="Tigger",
version="0.1.0",
packages=["tigger",],
license="MIT",
description="Command-line tagging tool.",
long_description="Tigger is a command-line tagging tool written in " +
"python, intended f... | mit | Python |
48d66a1a29d0361331cfeee749f13975b230309b | update setup | hycis/TensorGraph,hycis/TensorGraph | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
setup(
name='tensorgraph',
version='1.4.5',
author=u'Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'scipy>=0.11',
'six>=1.9.0',
... | from distutils.core import setup
from setuptools import find_packages
setup(
name='tensorgraph',
version='1.4.4',
author=u'Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'scipy>=0.11',
'six>=1.9.0',
... | apache-2.0 | Python |
3d62a81a7763b5bdbcba1e94dfd697bea9ee5fc2 | Fix test_suit path to match updated location | bondar-pavel/infoblox-client,arnaudcoquelet/infoblox-client,infobloxopen/infoblox-client | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | apache-2.0 | Python |
e964dcc346b52bacae2672206887653cba987589 | add py-machinetag to dependencies | whosonfirst/py-mapzen-whosonfirst-search | setup.py | setup.py | #!/usr/bin/env python
# Remove .egg-info directory if it exists, to avoid dependency problems with
# partially-installed packages (20160119/dphiffer)
import os, sys
from shutil import rmtree
cwd = os.path.dirname(os.path.realpath(sys.argv[0]))
egg_info = cwd + "/mapzen.whosonfirst.search.egg-info"
if os.path.exists(... | #!/usr/bin/env python
# Remove .egg-info directory if it exists, to avoid dependency problems with
# partially-installed packages (20160119/dphiffer)
import os, sys
from shutil import rmtree
cwd = os.path.dirname(os.path.realpath(sys.argv[0]))
egg_info = cwd + "/mapzen.whosonfirst.search.egg-info"
if os.path.exists(... | bsd-3-clause | Python |
71d14ba38d882cb2ad1e587d456764f7e77aa2a1 | Fix UnicodeDecodeError in setup.py | avinassh/haxor | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md', encoding='utf-8').read()
with open('requirements.txt') as f:
requirements = f.read().split... | #!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version =... | mit | Python |
7413dcbae4c379d9d2fd6baa6de67031b0582e3b | Revert "Upgrading dependency on relengapi" | andrei987/services,djmitche/build-relengapi,Callek/build-relengapi,andrei987/services,lundjordan/build-relengapi,lundjordan/build-relengapi,srfraser/services,andrei987/services,mozilla/build-relengapi,garbas/mozilla-releng-services,lundjordan/build-relengapi,hwine/build-relengapi,hwine/build-relengapi,lundjordan/servic... | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='relengapi-mapper',
version='0.2.2',
description='hg to git mapper',
author='Chris AtLee',
author_email='chris@atlee.ca',
url='https://github.com/petemoore/mapper',
packages=find_packages(),
namespac... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='relengapi-mapper',
version='0.2.2',
description='hg to git mapper',
author='Chris AtLee',
author_email='chris@atlee.ca',
url='https://github.com/petemoore/mapper',
packages=find_packages(),
namespac... | mpl-2.0 | Python |
66da217928393b921cd07e82b8b5d38d540be4a8 | Fix NameError and address review comment | andriisoldatenko/django-webtest,django-webtest/django-webtest,andrewyoung1991/django-webtest,django-webtest/django-webtest,andriisoldatenko/django-webtest,abbottc/django-webtest,andrewyoung1991/django-webtest,kmike/django-webtest,kmike/django-webtest,abbottc/django-webtest | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
version='1.7.7'
def _read(name):
if sys.version_info[0] < 3:
with open(name) as f:
return f.read()
else:
with open(name, encoding='utf8') as f:
return f.read()
def get_long_description():
return _rea... | #!/usr/bin/env python
from setuptools import setup
version='1.7.7'
def _read(name):
if sys.version_info[0] < 3:
with open(name) as f:
return f.read()
else:
with open(name, encoding='utf8') as f:
return f.read()
def get_long_description():
return _read('README.rs... | mit | Python |
d4fb22d178394773380bc937136f2bf2c31aab28 | add enum34 dependency for older python versions | amietn/vcsi,amietn/vcsi | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='vcsi',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packagi... | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='vcsi',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packagi... | mit | Python |
f2ceac2cf799422d8fbac702e70fa03e03151fbf | bump version before release (no refs) | Opentopic/falcon-api | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name='opentopic-falcon-api',
version='0.3.4',
author='Tomasz Roszko',
author_email='tom@opentopic.com',
description='Base Library for services api endpoints',
url='http://git.opentopic.com/backend/falcon-api',
license='GNU GENERAL PUBLIC L... | from setuptools import find_packages, setup
setup(
name='opentopic-falcon-api',
version='0.3.3',
author='Tomasz Roszko',
author_email='tom@opentopic.com',
description='Base Library for services api endpoints',
url='http://git.opentopic.com/backend/falcon-api',
license='GNU GENERAL PUBLIC L... | mit | Python |
bdfc4ef9a6315d133c3f177c0e70ae6c941cd32b | bump version. | ZoomerAnalytics/cprofilev,wfxiang08/cprofilev,ymichael/cprofilev | setup.py | setup.py | from setuptools import setup
setup(
name='CProfileV',
version='0.0.11',
url='https://github.com/ymichael/cprofilev',
author='Michael Yong',
author_email='wrong92@gmail.com',
install_requires=["bottle"],
packages = ['src'],
entry_points={
'console_scripts': [
'cprofil... | from setuptools import setup
setup(
name='CProfileV',
version='0.0.10',
url='https://github.com/ymichael/cprofilev',
author='Michael Yong',
author_email='wrong92@gmail.com',
install_requires=["bottle"],
packages = ['src'],
entry_points={
'console_scripts': [
'cprofil... | mit | Python |
14d9ddfa5e1a49c84192ee3eb316e60d012eaa8e | bump version | meganlkm/do-cli,meganlkm/do-cli | setup.py | setup.py | import os
from setuptools import setup, find_packages
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
def getReqs(reqfile='requirements.txt'):
reqs = []
with open(os.path.join(os.path.dirname(__file__), reqfile)) as fp:
lines = f... | import os
from setuptools import setup, find_packages
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
def getReqs(reqfile='requirements.txt'):
reqs = []
with open(os.path.join(os.path.dirname(__file__), reqfile)) as fp:
lines = f... | mit | Python |
5c929cd84074d9fe17548afec4e6e81ad61416ae | Use requirements.txt file for... requirements | lichia/docker-scripts,TomasTomecek/docker-scripts,goldmann/docker-scripts,goldmann/docker-squash,jpopelka/docker-scripts | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-scripts",
version = "0.3.0",
packages = find_packages(),
entry_points={
'console_scripts': ['docker-scripts=docker_scripts.cli.main:... | #!/usr/bin/python
from setuptools import setup, find_packages
setup(
name = "docker-scripts",
version = "0.2.2",
packages = find_packages(),
entry_points={
'console_scripts': ['docker-scripts=docker_scripts.cli.main:run'],
},
)
| mit | Python |
4bab33010518c45dbc067326f6e158677ceb8a78 | bump version | etdub/rumrunner,houqp/rumrunner | setup.py | setup.py | from setuptools import setup
setup(
name='rumrunner',
version='0.5.1',
description='Client to send metrics to Speakeasy server',
author='Eric Wong',
py_modules=['rumrunner'],
install_requires=[
'pyzmq',
'simplejson',
],
url='https://github.com/etdub/rumrunner',
class... | from setuptools import setup
setup(
name='rumrunner',
version='0.5.0',
description='Client to send metrics to Speakeasy server',
author='Eric Wong',
py_modules=['rumrunner'],
install_requires=[
'pyzmq',
'simplejson',
],
url='https://github.com/etdub/rumrunner',
class... | apache-2.0 | Python |
95c91c69545babfd6d19ea5fbacab9e16224bebf | Update setup.py. | tjcorona/PyFR,Aerojspark/PyFR,BrianVermeire/PyFR,tjcorona/PyFR,iyer-arvind/PyFR,tjcorona/PyFR | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import sys
# Python version
if sys.version_info[:2] < (2,7):
print('PyFR requires Python 2.7 or newer. Python {}.{} detected'\
.format(*sys.version_info[:2]))
sys.exit(-1)
# Modules
modules = [
'pyfr.backends',
'py... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import sys
# Python version
if sys.version_info[:2] < (2,7):
print('PyFR requires Python 2.7 or newer. Python {}.{} detected'\
.format(*sys.version_info[:2]))
sys.exit(-1)
# Modules
modules = [
'pyfr.backends',
'py... | bsd-3-clause | Python |
c1d7ce2fd11ccc7c9e1dd4f2a093903d4e78299e | Update description | Hackathonners/vania | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.md").read()
except IOError:
long_description = ""
setup(
name="vania",
version="0.1.0",
description="A module to fairly distribute objects among targets considering weights.",
license="MIT"... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.md").read()
except IOError:
long_description = ""
setup(
name="vania",
version="0.1.0",
description="A module to fairly distribute tasks considering people preferences.",
license="MIT",
... | mit | Python |
ba61870a3b74eec251a23d31a09a11b8e2c58998 | Fix setup.py packages | imZack/sanji,lwindg/sanji,Sanji-IO/sanji | setup.py | setup.py | from setuptools import setup
setup(name='sanji',
version='0.1',
description='Sanji SDK',
url='https://github.com/Sanji-IO',
author='Sanji Team',
author_email='sanji@moxa.com',
license='MOXA',
packages=['sanji', 'sanji.connection'],
zip_safe=False)
| from setuptools import setup
setup(name='sanji',
version='0.1',
description='Sanji SDK',
url='https://github.com/Sanji-IO',
author='Sanji Team',
author_email='sanji@moxa.com',
license='MOXA',
packages=['sanji'],
zip_safe=False)
| mit | Python |
2661603a4fd22035ad780f11fcb5d30937c27284 | Remove VirtualBox hack | renalreg/radar,renalreg/radar,renalreg/radar,renalreg/radar | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = '2.3.0'
setup(
name='radar',
version=__version__,
long_description=__doc__,
author='Rupert Bedford',
author_email='rupert.bedford@renalregistry.nhs.uk',
url='https://www.radar.nhs.uk/',
packages=find_packages(),
include_package_... | import os
from setuptools import setup, find_packages
__version__ = '2.3.0'
# Hard linking doesn't work inside VirtualBox shared folders
# See: https://bitbucket.org/hpk42/tox/issues/86
if os.environ.get('USER', '') == 'vagrant':
del os.link
setup(
name='radar',
version=__version__,
long_description=... | agpl-3.0 | Python |
123d54130a4e73a2c66a5fb37143cd91f1909c58 | bump sendgrid version == 6.1.0, compatible with sendgrid v3 adaptor (added in this PR) | SpotOnInc/espwrap | setup.py | setup.py | from __future__ import print_function, division, unicode_literals
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('espwrap/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
s... | from __future__ import print_function, division, unicode_literals
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('espwrap/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
s... | mit | Python |
14d058a4e613c55d8098ee93c871d54471961149 | Fix setup.py version. | Pegase745/sqlalchemy-datatables | setup.py | setup.py | """App configuration."""
from setuptools import setup
__VERSION__ = '0.3.0'
setup(
name='sqlalchemy-datatables',
version=__VERSION__,
description='SQLAlchemy integration of jQuery DataTables',
long_description=open('README.rst').read(),
license='MIT',
keywords='sqlalchemy datatables jquery p... | """App configuration."""
from setuptools import setup
__VERSION__ = '0.3.0rc1'
setup(
name='sqlalchemy-datatables',
version=__VERSION__,
description='SQLAlchemy integration of jQuery DataTables',
long_description=open('README.rst').read(),
license='MIT',
keywords='sqlalchemy datatables jquer... | mit | Python |
68f1104553871783c4a10423416218ea2f079889 | install xlwt for excel export | euan/django-holodeck,shaunsephton/holodeck,shaunsephton/holodeck,euan/django-holodeck | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='holodeck',
version='0.0.6',
description='Django based simple dashboard system.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Shaun Sephton',
author_email... | from setuptools import setup, find_packages
setup(
name='holodeck',
version='0.0.6',
description='Django based simple dashboard system.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Shaun Sephton',
author_email... | bsd-3-clause | Python |
c9c7e4946584612493dcc49e24a5348863391ea6 | bump version number | LuminosoInsight/wordfreq | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import sys
import os
if sys.version_info[0] < 3:
print("Sorry, but wordfreq no longer supports Python 2.")
sys.exit(1)
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT Lic... | #!/usr/bin/env python
from setuptools import setup
import sys
import os
if sys.version_info[0] < 3:
print("Sorry, but wordfreq no longer supports Python 2.")
sys.exit(1)
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT Lic... | mit | Python |
1134204cf7e5e3f22cd77855de21316dacc99d75 | Add py_modules to setup.py | platoai/platoai,platoai/platoai-python | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function
import setuptools
with open("README.md") as readme_file:
readme = readme_file.read()
setuptools.setup(
name='platoai',
version='0.0.1',
description='python implementation of the Plato AI API',
long_description=readme,
author='William ... | #!/usr/bin/env python
from __future__ import print_function
import setuptools
with open("README.md") as readme_file:
readme = readme_file.read()
setuptools.setup(
name='platoai',
version='0.0.1',
description='python implementation of the Plato AI API',
long_description=readme,
author='William ... | apache-2.0 | Python |
7e276ba33245c91620ddb0c09aae1d8245ef47e3 | Bump version to 0.1.9 | mirumee/django-prices-openexchangerates,artursmet/django-prices-openexchangerates | setup.py | setup.py | #! /usr/bin/env python
import os
from setuptools import setup
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
CLASSIFIERS = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Progr... | #! /usr/bin/env python
import os
from setuptools import setup
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
CLASSIFIERS = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Progr... | bsd-3-clause | Python |
3231a57447070acb86541d36369aafaf52e88359 | install libs as well | kivy/buildozer,rnixx/buildozer,inclement/buildozer,inclement/buildozer,inclement/buildozer,bob-the-hamster/buildozer,kived/buildozer,techtonik/buildozer,kivy/buildozer,kivy/buildozer,cbenhagen/buildozer,techtonik/buildozer,kived/buildozer,rnixx/buildozer,rnixx/buildozer,dvenkatsagar/buildozer,inclement/buildozer,rnixx/... | setup.py | setup.py | from distutils.core import setup
import buildozer
setup(
name='buildozer',
version=buildozer.__version__,
author='Mathieu Virbel',
author_email='mat@kivy.org',
url='http://github.com/kivy/buildozer',
license='MIT',
packages=[
'buildozer',
'buildozer.targets',
'build... | from distutils.core import setup
import buildozer
setup(
name='buildozer',
version=buildozer.__version__,
author='Mathieu Virbel',
author_email='mat@kivy.org',
url='http://github.com/kivy/buildozer',
license='MIT',
packages=[
'buildozer',
'buildozer.targets'],
package_d... | mit | Python |
e615aa7b7a87785bbd03cdbee904c2cedac61829 | Bump Version | napalm-automation/napalm-yang,napalm-automation/napalm-yang | setup.py | setup.py | """setup.py file."""
import uuid
from setuptools import setup, find_packages
from pip.req import parse_requirements
__author__ = 'David Barroso <dbarrosop@dravetech.com>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
setup(
name="napalm-... | """setup.py file."""
import uuid
from setuptools import setup, find_packages
from pip.req import parse_requirements
__author__ = 'David Barroso <dbarrosop@dravetech.com>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
setup(
name="napalm-... | apache-2.0 | Python |
f3cf54b6a63bf3e0f0b0e839bae27fe052d61c89 | Bump version | bradleyayers/django-attest | setup.py | setup.py | # coding: utf8
from setuptools import setup
setup(
name='django-attest',
version='0.5.2',
description='Provides Django specific testing helpers to Attest',
author='Bradley Ayers',
author_email='bradley.ayers@gmail.com',
license='Simplified BSD',
url='https://github.com/bradleyayers/django... | # coding: utf8
from setuptools import setup
setup(
name='django-attest',
version='0.5.1',
description='Provides Django specific testing helpers to Attest',
author='Bradley Ayers',
author_email='bradley.ayers@gmail.com',
license='Simplified BSD',
url='https://github.com/bradleyayers/django... | bsd-2-clause | Python |
e00f90c2bbe6d6579784b0693434fa542b740bca | Update topic. | glut23/webvtt-py,sampattuzzi/webvtt-py | setup.py | setup.py | from setuptools import setup, find_packages
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='webvtt-py',
version='0.1',
description='WebVTT reader, writer and segmenter',
long_description=readme(),
author='Alejandro Mendez',
author_em... | from setuptools import setup, find_packages
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='webvtt-py',
version='0.1',
description='WebVTT reader, writer and segmenter',
long_description=readme(),
author='Alejandro Mendez',
author_em... | mit | Python |
f1e3f1f0f9b1668e6c25884f02caf99a29f430df | Make homepage its own docs | pyinvoke/invocations | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# Version info -- read without importing
_locals = {}
with open('invocations/_version.py') as fp:
exec(fp.read(), None, _locals)
version = _locals['__version__']
requirements = [
# Core dependency, obviously
'invoke>=1.0.0,<2.0... | #!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# Version info -- read without importing
_locals = {}
with open('invocations/_version.py') as fp:
exec(fp.read(), None, _locals)
version = _locals['__version__']
requirements = [
# Core dependency, obviously
'invoke>=1.0.0,<2.0... | bsd-2-clause | Python |
04182bff7a097b8842073f96bac834abb34f7118 | Use io.open with encoding='utf-8' and flake8 compliance | morepath/more.static | 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='more.static',
version='0.10.dev0',
description="BowerStatic integration for Morepath",
long_descr... | from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(
name='more.static',
version='0.10.dev0',
description="BowerStatic integration for Morepath",
long_description=long_description,
author="Martijn Faassen... | bsd-3-clause | Python |
1dc46a6f1f96f84f8e55baec880d70aeb64041eb | Fix documentation | appknox/appknox-python,appknox/appknox-python | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# vim: fenc=utf-8
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
#
"""
File name: setup.py
Version: 0.1
Author: dhilipsiva <dhilipsiva@gmail.com>
Date created: 2015-08-07
"""
__author__ = "dhilipsiva"
__status__ = "development"
"""
Python wrapper for Appknox's... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# vim: fenc=utf-8
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
#
"""
File name: setup.py
Version: 0.1
Author: dhilipsiva <dhilipsiva@gmail.com>
Date created: 2015-08-07
"""
__author__ = "dhilipsiva"
__status__ = "development"
"""
Python wrapper for Appknox's... | mit | Python |
0b0be5fb176cf23d9ba76bd02e01378f9c3817f4 | Bump to version 0.2 | ahal/b2g-commands | 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/.
from setuptools import setup, find_packages
PACKAGE_VERSION = '0.2'
deps = []
setup(name='b2g-commands',
versio... | # 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/.
from setuptools import setup, find_packages
PACKAGE_VERSION = '0.1'
deps = []
setup(name='b2g-commands',
versio... | mpl-2.0 | Python |
b71af6870402b3c4c0aaf10706cd203a2aa9e2da | Bump 0.0.3 | heavenshell/py-mackerel-client | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
mackerel.client
~~~~~~~~~~~~~~~
Mackerel client implemented by Python.
:copyright: (c) 2015 Shinya Ohyanagi, All rights reserved.
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import setup, find_packages
requires = ['requests', 'simplejson... | # -*- coding: utf-8 -*-
"""
mackerel.client
~~~~~~~~~~~~~~~
Mackerel client implemented by Python.
:copyright: (c) 2015 Shinya Ohyanagi, All rights reserved.
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import setup, find_packages
requires = ['requests', 'simplejson... | bsd-3-clause | Python |
7984cb0f4f51fa6fffc228027cbfdd9f87ec99d2 | Add pytest-cov to stated requirements in setup.py | eikonomega/flask-authorization-panda | setup.py | setup.py | """
Flask-Authorization-Panda
-------------
Flask Authorization for Pandas!
Provides decorators for Flask view methods that implement various
authentication schemes.
"""
from setuptools import setup
setup(
name='Flask-Authorization-Panda',
version='0.2',
url='https://github.com/eikonomega/flask-authori... | """
Flask-Authorization-Panda
-------------
Flask Authorization for Pandas!
Provides decorators for Flask view methods that implement various
authentication schemes.
"""
from setuptools import setup
setup(
name='Flask-Authorization-Panda',
version='0.2',
url='https://github.com/eikonomega/flask-authori... | mit | Python |
d4d4dd60f5ee7df908ccbad8ec03fbd94a028050 | bump minor version | SEL-Columbia/bamboo,SEL-Columbia/bamboo,pld/bamboo,SEL-Columbia/bamboo,pld/bamboo,pld/bamboo | setup.py | setup.py | from distutils.core import setup
setup(
name='bamboo-data',
version='0.5.4.1',
author='Modi Research Group',
author_email='info@modilabs.org',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
... | from distutils.core import setup
setup(
name='bamboo-data',
version='0.5.4',
author='Modi Research Group',
author_email='info@modilabs.org',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
... | bsd-3-clause | Python |
27023bf501e5e0e89fca8a82fd67b6699b8e4069 | Update to v3.1.1 | release-engineering/resultsdb-updater,release-engineering/resultsdb-updater | setup.py | setup.py | from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
setup(
name='resultsdb-updater',
version='3.1.1',
description=('A micro-service that listens for messages on the message '
'bus and updates ResultsDB'),
license='GPLv2... | from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
setup(
name='resultsdb-updater',
version='3.0.0',
description=('A micro-service that listens for messages on the message '
'bus and updates ResultsDB'),
license='GPLv2... | lgpl-2.1 | Python |
771ce1ca58e71a5759b304dc02a35106d2390392 | Add tox development dependency | Storj/plowshare-wrapper | setup.py | setup.py | from setuptools import setup
setup(
name='plowshare',
version='0.3.0',
author='Hugo Peixoto',
author_email='hugo.peixoto@gmail.com',
packages=['plowshare'],
scripts=[],
url='https://github.com/super3/plowshare-wrapper',
license='LICENSE.txt',
description='Manages multi-host uploads ... | from setuptools import setup
setup(
name='plowshare',
version='0.3.0',
author='Hugo Peixoto',
author_email='hugo.peixoto@gmail.com',
packages=['plowshare'],
scripts=[],
url='https://github.com/super3/plowshare-wrapper',
license='LICENSE.txt',
description='Manages multi-host uploads ... | mit | Python |
969656bcfdf71c0c0ae8431225553f69a703c035 | add license data | remcohaszing/flask-openapi | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='Flask-OpenAPI',
version='0.1.0.alpha0',
author='Remco Haszing',
author_email='remcohaszing@gmail.com',
description='Generate a swagger.json ha... | #!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='Flask-OpenAPI',
version='0.1.0.alpha0',
author='Remco Haszing',
author_email='remcohaszing@gmail.com',
description='Generate a swagger.json ha... | mit | Python |
903bd745f2c84013fa677b1426c4aeac7c1616fe | Move to v1.8.0 | controversial/livejson | setup.py | setup.py | from setuptools import setup
setup(
name="livejson",
py_modules=["livejson"],
version="1.8.0",
description="Bind Python objects to JSON files",
long_description=("An interface to transparently bind Python objects to "
"JSON files so that all changes made to the object are "
... | from setuptools import setup
setup(
name="livejson",
py_modules=["livejson"],
version="1.7.2",
description="Bind Python objects to JSON files",
long_description=("An interface to transparently bind Python objects to "
"JSON files so that all changes made to the object are "
... | mit | Python |
ea13847858c89a2a9f72762c672185634cfdf861 | Bump version to 3.2 | geokala/cloudify-amqp-influxdb,geokala/cloudify-amqp-influxdb,cloudify-cosmo/cloudify-amqp-influxdb,cloudify-cosmo/cloudify-amqp-influxdb | setup.py | setup.py | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
bb6d22b5519ae8795973fda019c98ed39ce9dd2c | Add package version | Unifield/ufload | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
import codecs
import os
import re
import sys
from setuptools import find_packages
from setuptools import setup
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
import codecs
import os
import re
import sys
from setuptools import find_packages
from setuptools import setup
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
... | mit | Python |
47493d45f8f63bf66a34bcf90185c6c8278ed9e9 | fix version | doismellburning/tox | setup.py | setup.py | import sys
from setuptools import setup
long_description="""
What is Tox?
==========================
Tox as is a generic virtualenv management and test command line tool you can
use for:
* checking your package installs correctly with different
Python versions and interpreters
* running your tests in each of the
... | import sys
from setuptools import setup
long_description="""
What is Tox?
==========================
Tox as is a generic virtualenv management and test command line tool you can
use for:
* checking your package installs correctly with different
Python versions and interpreters
* running your tests in each of the
... | mit | Python |
68f8f255cc1fcadbef65bea6dbd68ab294ef7665 | Fix missing setup.py requirements | terrai/rastercube,terrai/rastercube,terrai/rastercube | setup.py | setup.py | """
To rebuild cython, run with
python setup.py build_ext
"""
import os
import numpy
import platform
import glob
from setuptools import setup, Extension, find_packages
from Cython.Build import cythonize
cflags = ['-march=native', '-std=c++11', '-O3', '-fopenmp']
ldflags = ['-std=c++11', '-fopenmp']
landsat8qa ... | """
To rebuild cython, run with
python setup.py build_ext
"""
import os
import numpy
import platform
import glob
from setuptools import setup, Extension, find_packages
from Cython.Build import cythonize
cflags = ['-march=native', '-std=c++11', '-O3', '-fopenmp']
ldflags = ['-std=c++11', '-fopenmp']
landsat8qa ... | mit | Python |
b1f16aee9112135dc733225610f78e7ad89aef2b | bump version | justin8/portinus,justin8/portinus | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="portinus",
version="0.9.9",
author="Justin Dray",
author_email="justin@dray.be",
url="https://github.com/justin8/portinus",
description="This utility creates a systemd service file for a docker-compose file",
pa... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="portinus",
version="0.9.8",
author="Justin Dray",
author_email="justin@dray.be",
url="https://github.com/justin8/portinus",
description="This utility creates a systemd service file for a docker-compose file",
pa... | mit | Python |
09e996c8460794a89ead3f3bba55b1aab44e335b | Update setup.py - set dev version | higebu/pyvmomi,michaelrice/pyvmomi,tianhao64/pyvmomi,vmware/pyvmomi,serialdoom/pyvmomi,davidmontgom/pyvmomi,borland667/pyvmomi,Infinidat/pyvmomi,gdowding/pyvmomi,alexkolar/pyvmomi,hartsock/pyvmomi,chenpiao/pyvmomi,rhadman/pyvmomi,virtdevninja/pyvmomi-ce,y12uc231/pyvmomi,spicykaiju/pyvmomi | setup.py | setup.py | # VMware vSphere Python SDK
# Copyright (c) 2009-2014 VMware, Inc. 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
#
# ... | # VMware vSphere Python SDK
# Copyright (c) 2009-2014 VMware, Inc. 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
#
# ... | apache-2.0 | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.