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 |
|---|---|---|---|---|---|---|---|---|
2c7adc6fd0a53db44951eccb8f5db3b45e4a4653 | Correct requires to force installation. | andrematheus/jinjer | setup.py | setup.py | from setuptools import setup
setup(
name='jinjer',
version='0.2',
packages=['jinjer'],
package_dir={'': 'src'},
url='https://github.com/andrematheus/jinjer',
license='BSD',
author='André Roque Matheus',
author_email='amatheus@ligandoospontos.com.br',
description='Tool to render Jinj... | from setuptools import setup
setup(
name='jinjer',
version='0.1',
packages=['jinjer'],
package_dir={'': 'src'},
url='https://github.com/andrematheus/jinjer',
license='BSD',
author='André Roque Matheus',
author_email='amatheus@ligandoospontos.com.br',
description='Tool to render Jinj... | mit | Python |
b26cbca99aaf0d9975107a45cb6beb35a2a93197 | Add super in run | MizukiSonoko/iroha-cli,MizukiSonoko/iroha-cli | setup.py | setup.py | #!/usr/bin/env python
import distutils
from distutils.extension import Extension
import sys
import os
import subprocess
from distutils.command.build_py import build_py as _build_py
from setuptools import setup
def exec_generate_proto(source):
protoc_command = ["python3", "-m", "grpc_tools.protoc", "-I.", "--pyth... | #!/usr/bin/env python
import distutils
from distutils.extension import Extension
import sys
import os
import subprocess
from distutils.command.build_py import build_py as _build_py
from distutils.core import setup
def exec_generate_proto(source):
protoc_command = ["python3", "-m", "grpc_tools.protoc", "-I.", "-... | apache-2.0 | Python |
d22bf24ba42c6a059696f1c90fc98fc7f2f63943 | Add package requirements | schollz/sdees | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'Click>=6.0',
'pick',
'hashids',
'termcolor',
'tqdm',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'Click>=6.0',
# TODO: put package requirements here
]
test_requirem... | mit | Python |
4d6fbf6831402c8833da0b08ae12552e08bb23ee | Add python 3.4 classifier into setup.py | lqez/django-summernote,rizumu/django-summernote,lqez/django-summernote,dhirajt/django-summernote,WQuanfeng/django-summernote,WQuanfeng/django-summernote,rizumu/django-summernote,un33k/django-summernote,summernote/django-summernote,un33k/django-summernote,WQuanfeng/django-summernote,dhirajt/django-summernote,dhirajt/dja... | setup.py | setup.py | import os
from setuptools import setup, find_packages
from django_summernote import version, PROJECT
MODULE_NAME = 'django_summernote'
PACKAGE_DATA = list()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
... | import os
from setuptools import setup, find_packages
from django_summernote import version, PROJECT
MODULE_NAME = 'django_summernote'
PACKAGE_DATA = list()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
... | mit | Python |
4de671429f189230ec6fb967733ef625ecc3500f | Fix setup | dbobrenko/reinforceflow | setup.py | setup.py | import os.path
import sys
from setuptools import setup, find_packages
sys.path.append(os.path.join(os.path.dirname(__file__), 'reinforceflow'))
from reinforceflow import __version__
install_requires = [
'numpy',
'gym>=0.9.1',
'scikit-image',
'six',
'matplotlib',
'seaborn'
]
extras_require = ... | import os.path
import sys
from setuptools import setup, find_packages
sys.path.append(os.path.join(os.path.dirname(__file__), 'reinforceflow'))
from reinforceflow import __version__
install_requires = [
'numpy',
'gym>=0.9.1'
'scikit-image',
'six',
'matplotlib',
'seaborn'
]
extras_require = {... | mit | Python |
6ca9039b658b650ab029f2bdc4017d824e6a3e5d | fix project URL in setup.py | rfk/filelike | setup.py | setup.py | #
# This is the filelike setuptools script.
# Originally developed by Ryan Kelly, 2006.
#
# This script is placed in the public domain.
#
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
# Import to allow pertinent info to be extracted
import filelike
VERSION = filelike.__ve... | #
# This is the filelike setuptools script.
# Originally developed by Ryan Kelly, 2006.
#
# This script is placed in the public domain.
#
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
# Import to allow pertinent info to be extracted
import filelike
VERSION = filelike.__ve... | lgpl-2.1 | Python |
0742c5ca905aab0e9432d19f366791c105330daf | bump version 0.2.2 | EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi | setup.py | setup.py | import sys
import os
from setuptools import setup, find_packages
_base = os.path.dirname(os.path.abspath(__file__))
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')
version = "0.2.2"
install_requirements = []
with open(_requirements) as f:
... | import sys
import os
from setuptools import setup, find_packages
_base = os.path.dirname(os.path.abspath(__file__))
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')
version = "0.2.1"
install_requirements = []
with open(_requirements) as f:
... | apache-2.0 | Python |
6e6f70ca53a78a08bfdf318f51f7b9067f0c071e | remove version | Jackevansevo/taggy,Jackevansevo/taggy | setup.py | setup.py | from setuptools import setup
setup(
name='taggy',
description='Command line utility to help create SemVer tags.',
version='0.2.0',
py_modules=['taggy'],
author_email='jack@evans.gb.net',
license='MIT',
url='https://github.com/Jackevansevo/taggy',
install_requires=['semver'],
entry_p... | from taggy import __version__
from setuptools import setup
setup(
name='taggy',
description='Command line utility to help create SemVer tags.',
version=__version__,
py_modules=['taggy'],
author_email='jack@evans.gb.net',
license='MIT',
url='https://github.com/Jackevansevo/taggy',
instal... | mit | Python |
16fa40fe8740b007fa5fee3dbd7dde56a4eca18e | 修正了setup.py | vex1023/vxTrader | setup.py | setup.py | # encoding = utf-8
from __future__ import print_function
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import unittest
import io
import codecs
import os
import sys
import vxTrader
here = os.path.abspath(os.path.dirname(__file__))
with open('requirements.txt') as ... | # encoding = utf-8
from __future__ import print_function
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import unittest
import io
import codecs
import os
import sys
import vxTrader
here = os.path.abspath(os.path.dirname(__file__))
with open('requirements.txt') as ... | mit | Python |
403a6f9f9025be7c183720e14ec13421fcd9175c | Put a guard on making the __init__.py file | djf604/chunky-pipes | setup.py | setup.py | import os
from setuptools import setup, find_packages
setup(
name='Chunky',
version='0.1.0',
description='Pipeline design and distribution framework',
author='Dominic Fitzgerald',
author_email='dominicfitzgerald11@gmail.com',
url='https://github.com/djf604/chunky',
packages=find_packages(),... | import os
from setuptools import setup, find_packages
setup(
name='Chunky',
version='0.1.0',
description='Pipeline design and distribution framework',
author='Dominic Fitzgerald',
author_email='dominicfitzgerald11@gmail.com',
url='https://github.com/djf604/chunky',
packages=find_packages(),... | mit | Python |
43f419e2f3773b3847d438885aa2d115a5eefdb5 | bump version | contextio/Python-ContextIO | setup.py | setup.py | from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='v1.12.6',
description='Library for accessing the Context.IO API (v2.0 and Lite) in Python',
author='Alex Tanton, Cecy Correa',
author_email='alex.tanton@returnpath.com, cecy.correa@returnpath.com',
... | from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='v1.12.5',
description='Library for accessing the Context.IO API (v2.0 and Lite) in Python',
author='Alex Tanton, Cecy Correa',
author_email='alex.tanton@returnpath.com, cecy.correa@returnpath.com',
... | apache-2.0 | Python |
01c5f5265b4ef9237c2ba167128abc18da746910 | Update setup.py | sdpython/pymyinstall,sdpython/pymyinstall,sdpython/pymyinstall,sdpython/pymyinstall | setup.py | setup.py | # -*- coding: utf-8 -*-
from __future__ import print_function
import sys
import os
import warnings
from setuptools import setup, find_packages
from pyquicksetup import read_version, read_readme, default_cmdclass
#########
# settings
#########
project_var_name = "pymyinstall"
project_owner = 'sdpython'
versionPython... | # -*- coding: utf-8 -*-
from __future__ import print_function
import sys
import os
import warnings
from setuptools import setup, find_packages
from pyquicksetup import read_version, read_readme, default_cmdclass
#########
# settings
#########
project_var_name = "pymyinstall"
project_owner = 'sdpython'
versionPython... | mit | Python |
59232f557531a91d00688888676567bc62e8b25e | Use moved iam.policy now at google.api_core.iam.policy (#6741) | googleapis/python-speech,googleapis/python-speech | setup.py | setup.py | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | apache-2.0 | Python |
221799d9a96bf932c4263572e99efbe4b4834be6 | Add new dependencies | panoplyio/panoply-python-sdk | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
exec(
compile(
open('panoply/constants.py', "rb").read(),
'panoply/constants.py',
'exec'
)
)
setup(
name=__package_name__,
version=__version__,
packages=["panoply"],
install_... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
exec(
compile(
open('panoply/constants.py', "rb").read(),
'panoply/constants.py',
'exec'
)
)
setup(
name=__package_name__,
version=__version__,
packages=["panoply"],
install_... | mit | Python |
d0d06fff1d150815094505c77f1366d4c5242b60 | Update version number | sallyom/atomic,charliedrage/atomic,rh-atomic-bot/atomic,lsm5/atomic,charliedrage/atomic,ibotty/atomic,ibotty/atomic,lsm5/atomic,dustymabe/atomic,dustymabe/atomic,praiskup/atomic,praiskup/atomic,rh-atomic-bot/atomic,aveshagarwal/atomic,sallyom/atomic,cdrage/atomic,aveshagarwal/atomic,cdrage/atomic | setup.py | setup.py | #!/usr/bin/env python
# Author: Dan Walsh <dwalsh@redhat.com>
import sys
import os
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="atomic", scripts=["atomic", "atomic_dbus.py"],
version='1.3',
description="Atomic Management Tool",
... | #!/usr/bin/env python
# Author: Dan Walsh <dwalsh@redhat.com>
import sys
import os
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="atomic", scripts=["atomic", "atomic_dbus.py"],
version='1.2',
description="Atomic Management Tool",
... | lgpl-2.1 | Python |
f2b9f10c43dd006cbd4d56589c92fd58c5bbe247 | Bump version number to 1.2.1 | drhagen/parsita | setup.py | setup.py | #!/usr/bin/env python3
import setuptools
setuptools.setup(
name='parsita',
version='1.2.1',
description='Parser combinator library for Python.',
long_description=open('README.rst').read(),
keywords='parser combinator',
author='David Hagen',
author_email='david@drhagen.com',
url='htt... | #!/usr/bin/env python3
import setuptools
setuptools.setup(
name='parsita',
version='1.2.0',
description='Parser combinator library for Python.',
long_description=open('README.rst').read(),
keywords='parser combinator',
author='David Hagen',
author_email='david@drhagen.com',
url='htt... | mit | Python |
f79f38af9e3157d2fc9a1f18c33960e5475167c1 | use Flask-API 0.6.9 (bugs) | viatoriche/microservices,viatoriche/microservices,viatoriche/microservices,viatoriche/microservices | setup.py | setup.py | import os
from distutils.core import setup
from setuptools import find_packages
package = 'microservices'
version = __import__(package).get_version()
packages = find_packages()
def get_package_data(package):
"""
Return all files under the root package, that are not in a
package themselves.
"""
w... | import os
from distutils.core import setup
from setuptools import find_packages
package = 'microservices'
version = __import__(package).get_version()
packages = find_packages()
def get_package_data(package):
"""
Return all files under the root package, that are not in a
package themselves.
"""
w... | mit | Python |
e3999fbfc050e6d097f3acbdabc1c84f6914ca4c | Tweak setup.py | AASHE/iss | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='iss',
version='1.0.2',
description="Ideally Single Source app for Salesforce data.",
author='Bob Erb... | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='iss',
version='1.0.2',
description="Ideally Single Source app for Salesforce data.",
author='Bob Erb... | mit | Python |
cddb1ac865af22877c6dc8442317b4ca9328c872 | bump version | sserrano44/pybitgo | setup.py | setup.py | from setuptools import setup
version = "0.1.1"
setup(
name='bitgo',
packages=['bitgo'],
version=version,
description='alpha version of a bitgo python library',
author='Sebastian Serrano',
author_email='sebastian@bitpagos.com',
entry_points={
'console_scripts':
[
... | from setuptools import setup
setup(
name='bitgo',
packages=['bitgo'],
version='0.1',
description='alpha version of a bitgo python library',
author='Sebastian Serrano',
author_email='sebastian@bitpagos.com',
entry_points={
'console_scripts':
[
'bitgo = bit... | bsd-3-clause | Python |
5b9638cb3584527ca80972da535e6efc78f53427 | fix setup.py | bionikspoon/python_hangman,bionikspoon/Hangman | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
"""
The full documentation is at https://python_hangman.readthedocs.org.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options... | #!/usr/bin/env python
# coding=utf-8
"""
The full documentation is at https://python_hangman.readthedocs.org.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options... | mit | Python |
edf11397a0256abc9b8f889de9bf304629585c9b | Increase package version | bebatut/enasearch | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name="enasearch",
version="0.1.1",
author="Berenice Batut",
author_email="berenice.batut@gmail.com",
description=("A Python library for interacting with ENA's API"),
license="MIT",
keywords="api api-client ena",
url="https://github.com/... | from setuptools import find_packages, setup
setup(
name="enasearch",
version="0.0.6",
author="Berenice Batut",
author_email="berenice.batut@gmail.com",
description=("A Python library for interacting with ENA's API"),
license="MIT",
keywords="api api-client ena",
url="https://github.com/... | mit | Python |
941d71ce0c7e61dc461382c3a4972aaa169e9db9 | Fix issue with extension point | cprieto/pygments_hack_asm | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='pygments-hackasm-lexer',
version='0.1',
description='Pygments lexer for the Nand2Tetris Hack Assembler',
packages = setuptools.find_packages(),
url='https://github.com/cprieto/pygments_hack_asm',
author='Cristian Prieto',
autho... | from setuptools import setup, find_packages
setup(name='pygments-hackasm-lexer',
version='0.1',
description='Pygments lexer for the Nand2Tetris Hack Assembler',
packages = setuptools.find_packages(),
url='https://github.com/cprieto/pygments_hack_asm',
author='Cristian Prieto',
autho... | mit | Python |
9ec7f5561c8a3bcd4319905aef719c2335326d4b | Bump version | honza/lenscap,honza/lenscap | setup.py | setup.py | from setuptools import setup
long_desc = open('README.md').read()
setup(
name='lenscap',
version='0.3.0',
url='',
install_requires=[
'misaka==1.0.2',
'jinja2==2.7.3',
'pillow==2.6.1',
'pyyaml==4.2b1'
],
description='static photo story generator',
long_descri... | from setuptools import setup
long_desc = open('README.md').read()
setup(
name='lenscap',
version='0.2.1',
url='',
install_requires=[
'misaka==1.0.2',
'jinja2==2.7.3',
'pillow==2.6.1',
'pyyaml==4.2b1'
],
description='static photo story generator',
long_descri... | bsd-2-clause | Python |
e1594c8c97fd36b29e9bfd8c30a844b594d7f386 | Bump version | rhelmot/monkeyhex | setup.py | setup.py | long_description = '''
monkeyhex.py is a small library to assist users of the python shell who work in contexts where printed numbers are more usefully viewed in hexadecimal.
Monkeyhex, as the name suggests, monkeypatches the system displayhook as well as the pprint and pdb modules to format integers as hex. To use it... | long_description = '''
monkeyhex.py is a small library to assist users of the python shell who work in contexts where printed numbers are more usefully viewed in hexadecimal.
Monkeyhex, as the name suggests, monkeypatches the system displayhook as well as the pprint and pdb modules to format integers as hex. To use it... | mit | Python |
641d270a94ecface2206fda5ebb183f8fbd56895 | Fix issues with markdown | jandecaluwe/urubu,jandecaluwe/urubu | setup.py | setup.py | from setuptools import setup
requires = ['jinja2 >= 2.7', 'pygments',
'markdown >= 2.6', 'pyyaml', 'beautifulsoup4']
entry_points = {
'console_scripts': [
'urubu = urubu.main:main',
]
}
setup(
name="urubu",
version="1.2.0",
url='http://urubu.jandecaluwe.com',
author='Jan D... | from setuptools import setup
requires = ['jinja2 >= 2.7', 'pygments',
'markdown', 'pyyaml', 'beautifulsoup4']
entry_points = {
'console_scripts': [
'urubu = urubu.main:main',
]
}
setup(
name="urubu",
version="1.2.0",
url='http://urubu.jandecaluwe.com',
author='Jan Decaluwe... | agpl-3.0 | Python |
dc5626788ce31ecf75975dfff3cba1f29d4a6c5d | bump version | happyleavesaoc/python-limitlessled | setup.py | setup.py | from setuptools import setup
setup(
name='limitlessled',
version='1.0.6',
description='Control LimitlessLED products.',
url='https://github.com/happyleavesaoc/python-limitlessled/',
license='MIT',
author='happyleaves',
author_email='happyleaves.tfr@gmail.com',
packages=['limitlessled', ... | from setuptools import setup
setup(
name='limitlessled',
version='1.0.5',
description='Control LimitlessLED products.',
url='https://github.com/happyleavesaoc/python-limitlessled/',
license='MIT',
author='happyleaves',
author_email='happyleaves.tfr@gmail.com',
packages=['limitlessled', ... | mit | Python |
7758d17443a99ee1d85a9f7bb591a7c3b1a646b8 | Improve README reading | blancltd/blanc-basic-pages | setup.py | setup.py | #!/usr/bin/env python
from codecs import open
from setuptools import find_packages, setup
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='blanc-basic-pages',
version='0.3.3',
description='Blanc Basic Pages for Django',
long_description=readme,
url='https://github.... | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='blanc-basic-pages',
version='0.3.3',
description='Blanc Basic Pages for Django',
long_description=open('README.rst').read(),
url='https://github.com/blancltd/blanc-basic-pages',
maintainer='Blanc Ltd',
maintaine... | bsd-3-clause | Python |
9373d15102bf72ceae8ff24052b50716ae554182 | add some simple test, fix setup.py | mcdeck/pilight2mqtt | setup.py | setup.py | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from pilight2mqtt.const import __version__
PACKAGE_NAME = 'pilight2mqtt'
HERE = os.path.abspath(os.path.dirname(__file__))
DOWNLOAD_URL = ('https://github.com/mcdeck/pilight2mqtt/archive'
'{}.zip'.format(__version__))
PACKAGE... | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from pip.req import parse_requirements
from pilight2mqtt.const import __version__
PACKAGE_NAME = 'pilight2mqtt'
HERE = os.path.abspath(os.path.dirname(__file__))
DOWNLOAD_URL = ('https://github.com/mcdeck/pilight2mqtt/archive'
... | mit | Python |
483c7ba64e7bfca2de8fa5eb1f5de7c93071753b | Add missing comma | vnpy/vnpy,vnpy/vnpy | setup.py | setup.py | """
vn.py - By Traders, For Traders.
The vn.py project is an open-source quantitative trading framework
that is developed by traders, for traders.
The project is mainly written in Python and uses C++ for low-layer
and performance sensitive infrastructure.
Using the vn.py project, institutional investors and professi... | """
vn.py - By Traders, For Traders.
The vn.py project is an open-source quantitative trading framework
that is developed by traders, for traders.
The project is mainly written in Python and uses C++ for low-layer
and performance sensitive infrastructure.
Using the vn.py project, institutional investors and professi... | mit | Python |
8ba99768a1e06d7f3a92d653443cfc1303d253c1 | Bump development version number | pietroalbini/lektor-minify,pietroalbini/lektor-minify,pietroalbini/lektor-minify,pietroalbini/lektor-minify | setup.py | setup.py | # Copyright (c) 2017 Pietro Albini <pietro@pietroalbini.org>
#
# 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, mo... | # Copyright (c) 2017 Pietro Albini <pietro@pietroalbini.org>
#
# 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, mo... | mit | Python |
e725bcb87b6330a8b4c86643fb634e19cca692eb | edit description | MSLNZ/msl-package-manager | setup.py | setup.py | import os
import re
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), 'docs'))
import docs_commands
def read(filename):
with open(filename) as fp:
text = fp.read()
return text
def fetch_init(key):
# open the __init... | import os
import re
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), 'docs'))
import docs_commands
def read(filename):
with open(filename) as fp:
text = fp.read()
return text
def fetch_init(key):
# open the __init... | mit | Python |
c06671bf1e3c85b7ac4bf10bc2469cc88f038943 | Add praw dependency | praw-dev/prawdditions | setup.py | setup.py | """prawdditions setup.py."""
import re
from codecs import open
from os import path
from setuptools import setup
PACKAGE_NAME = 'prawdditions'
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.rst'), encoding='utf-8') as fp:
README = fp.read()
with open(path.join(HERE, PACKAGE_NAME, 'c... | """prawdditions setup.py."""
import re
from codecs import open
from os import path
from setuptools import setup
PACKAGE_NAME = 'prawdditions'
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.rst'), encoding='utf-8') as fp:
README = fp.read()
with open(path.join(HERE, PACKAGE_NAME, 'c... | bsd-2-clause | Python |
945a2cf721012866dd9fa73b5f02c87c604cf608 | Fix opening CHANGES.rst in setup.py | guykisel/robotframework-faker,guykisel/robotframework-faker | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
short_description = 'Robot Framework wrapper for faker, a fake test data generator'
try:
description = open('README.rst').read()
except IOError:
description = short_description
try:
license = open('LICENSE').read()
except IOError:
license = 'MIT Lice... | #!/usr/bin/env python
from setuptools import setup
short_description = 'Robot Framework wrapper for faker, a fake test data generator'
try:
description = open('README.rst').read()
except IOError:
description = short_description
try:
license = open('LICENSE').read()
except IOError:
license = 'MIT Lice... | mit | Python |
721025ed3900e1187653c802cb99583fd230c10c | Drop duplicate import in setup.py | wbolster/aaargh | setup.py | setup.py | from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True,
)
| from setuptools import setup
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True,
)
| bsd-3-clause | Python |
a47b5579acd8314d8543d306571dee93ac505667 | Bump version to 1.3.1 | mwilliamson/python-mammoth | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
_install_requires = [
"cobble>=0.1.1,<0.2",
]
if sys.version_info[:2] <= (2, 6):
_install_requires.append("argparse>=1.1,<2.0")
setup(
name='m... | #!/usr/bin/env python
import os
import sys
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
_install_requires = [
"cobble>=0.1.1,<0.2",
]
if sys.version_info[:2] <= (2, 6):
_install_requires.append("argparse>=1.1,<2.0")
setup(
name='m... | bsd-2-clause | Python |
4df3209e4b0eb376f9eb1143717fb60b6d699182 | Decrease version number to reflect project nascency | wileykestner/cf_app_utils_python | setup.py | setup.py | from distutils.core import setup
setup(name="cf_app_utils",
version="0.1",
packages=['cf_app_utils'])
| from distutils.core import setup
setup(name="cf_app_utils",
version="1.0",
packages=['cf_app_utils'])
| bsd-2-clause | Python |
d2ec482adf208f64d1254cde8596f5cf79458b10 | Update setup.py to develop version | theherk/pinkopy | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
with open('README.md') as f:
readme = f.read()
install_requires = [
'requests>=2.7.0',
'xmltodict>=0.9.2',
]
setup(
name='pinkopy',
version='1.2.dev',
description='Python wrapper for Commvault api',
long_descri... | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
with open('README.md') as f:
readme = f.read()
install_requires = [
'requests>=2.7.0',
'xmltodict>=0.9.2',
]
setup(
name='pinkopy',
version='1.1.0',
description='Python wrapper for Commvault api',
long_descript... | mit | Python |
5b6ece00f4de561e569a5b2ce08cd87bb3f90158 | Set version to 1.0.0-beta.018. | appressoas/django_cradmin,appressoas/django_cradmin,appressoas/django_cradmin | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django_cradmin',
description='A role based admin UI for Django that produces a user friendly and beautiful UI.',
version='1.0.0-beta.018',
url='https://github.com/appressoas/django_cradmin',
author='Espen Angell Kristiansen, Tor Johansen, Veg... | from setuptools import setup, find_packages
setup(
name='django_cradmin',
description='A role based admin UI for Django that produces a user friendly and beautiful UI.',
version='1.0.0-beta.017',
url='https://github.com/appressoas/django_cradmin',
author='Espen Angell Kristiansen, Tor Johansen, Veg... | bsd-3-clause | Python |
b89e88f657f382920431561ab358fd5fd9103b7c | Update license field in distutils. | tdb/pystatgrab,i-scream/pystatgrab | setup.py | setup.py | #!/usr/bin/env python
#
# i-scream pystatgrab
# http://www.i-scream.org/pystatgrab/
# Copyright (C) 2000-2013 i-scream
#
# 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; either
# version 2... | #!/usr/bin/env python
#
# i-scream pystatgrab
# http://www.i-scream.org/pystatgrab/
# Copyright (C) 2000-2013 i-scream
#
# 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; either
# version 2... | lgpl-2.1 | Python |
f8ef5db5f05007f963f31eee0be5b092e0061b51 | Set max version of celery | wooey/Wooey,wooey/Wooey,wooey/Wooey,wooey/Wooey | setup.py | setup.py | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='wooey',
version='0.9... | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='wooey',
version='0.9... | bsd-3-clause | Python |
f8c9dee7ea893b065106af82f456546ac29f888d | Remove lsodar | GutenkunstLab/SloppyCell,GutenkunstLab/SloppyCell | setup.py | setup.py | import scipy
if hasattr(scipy, 'Numeric'):
# Using old scipy
import scipy_distutils.core as core
else:
# Using new scipy
import numpy.distutils.core as core
# This is a kludge so that sdist works on AFS systems.
# AFS doesn't allow hard-linking across directories, but if we're on linux
# we still have... | import scipy
if hasattr(scipy, 'Numeric'):
# Using old scipy
import scipy_distutils.core as core
else:
# Using new scipy
import numpy.distutils.core as core
# This is a kludge so that sdist works on AFS systems.
# AFS doesn't allow hard-linking across directories, but if we're on linux
# we still have... | bsd-3-clause | Python |
bf5d251a31434911e21228d5222da7ad4e285f19 | Update my email address and the project URL in setup.py | georgemarshall/django-composite-field | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name='django-composite-field',
version='0.2',
description='CompositeField implementation for Django',
keywords='django composite field',
author='Michael P. Jung',
author_email='michael.jung@terreon.de',
url='http://bitbuc... | #!/usr/bin/env python
from distutils.core import setup
setup(name='django-composite-field',
version='0.2',
description='CompositeField implementation for Django',
keywords='django composite field',
author='Michael P. Jung',
author_email='mpjung@terreon.de',
url='http://bitbucket.or... | bsd-2-clause | Python |
b2fe0a8d09e9b3f273541104e00de3f4e063d2b2 | Update setup.py (support Django 2.2) | misli/django-cms-articles,misli/django-cms-articles,misli/django-cms-articles,misli/django-cms-articles | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import find_packages, setup
setup(
name = 'django-cms-articles',
version = '1.5.2',
description = 'django CMS application for managing articles',
author = 'Jakub Dorňák',
author_email = 'jakub.do... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import find_packages, setup
setup(
name = 'django-cms-articles',
version = '1.5.2',
description = 'django CMS application for managing articles',
author = 'Jakub Dorňák',
author_email = 'jakub.do... | bsd-3-clause | Python |
53d963c6d3f87e07c3ba6825f0cca533f27b89e1 | use URLs that are actually working | hmenager/acd2cwl | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.md')
readme = open(README).read()
setup(
name='acd2cwl',
version='0.1',
description='CWL generator for ACD files',
long_description=... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.md')
readme = open(README).read()
setup(
name='acd2cwl',
version='0.1',
description='CWL generator for ACD files',
long_description=... | mit | Python |
f2267f592c15cbcd918ea6e6ecbd973b2995d86b | Fix ACME version to avoid clash with PySC2 | deepmind/alphastar,deepmind/alphastar | setup.py | setup.py | # Copyright 2021 DeepMind Technologies Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or ag... | # Copyright 2021 DeepMind Technologies Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or ag... | apache-2.0 | Python |
9308ddacd509b8c4bf3bfa2984c584df71e08e1c | Add test dependencies to setup.py | basilfx/lpc_checksum | setup.py | setup.py | from setuptools import setup
# Setup definitions.
setup(
name="lpc_checksum",
version="2.1.2",
description="Python script to calculate LPC firmware checksums",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Bas Stottelaar",
author_email="ba... | from setuptools import setup
# Setup definitions.
setup(
name="lpc_checksum",
version="2.1.2",
description="Python script to calculate LPC firmware checksums",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Bas Stottelaar",
author_email="ba... | mit | Python |
c9ae9dc6766e94d319b5a8da16a9ed44465519eb | Correct the capitalization of Django. | kinsights/brabeion | setup.py | setup.py | from distutils.core import setup
setup(
name = "brabeion",
version = "0.1.dev",
author = "Eldarion",
author_email = "development@eldarion.com",
description = "a reusable Django badges application",
long_description = open("README.rst").read(),
license = "BSD",
url = "http://github.com/... | from distutils.core import setup
setup(
name = "brabeion",
version = "0.1.dev",
author = "Eldarion",
author_email = "development@eldarion.com",
description = "a reusable django badges application",
long_description = open("README.rst").read(),
license = "BSD",
url = "http://github.com/... | bsd-3-clause | Python |
ce53814224e6719ec5f64571121d1b50f62691e8 | Compress version range specifications | jwodder/daemail | setup.py | setup.py | from os.path import dirname, join
import re
from setuptools import setup
with open(join(dirname(__file__), 'daemail', '__init__.py')) as fp:
for line in fp:
m = re.search(r'^\s*__version__\s*=\s*([\'"])([^\'"]+)\1\s*$', line)
if m:
version = m.group(2)
break
else:... | from os.path import dirname, join
import re
from setuptools import setup
with open(join(dirname(__file__), 'daemail', '__init__.py')) as fp:
for line in fp:
m = re.search(r'^\s*__version__\s*=\s*([\'"])([^\'"]+)\1\s*$', line)
if m:
version = m.group(2)
break
else:... | mit | Python |
80f94f8ec5e82272f3892d7354e353706a2ade5e | bump version | brain-research/mirage-rl-bpttv,pcchenxi/baseline,peheje/baselines,brain-research/mirage-rl-bpttv,ViktorM/baselines,pcchenxi/baseline,feiwang3311/baseline,openai/baselines,learnercys/baselines,pcchenxi/baseline,pcchenxi/baseline,hill-a/stable-baselines,openai/baselines,hill-a/stable-baselines | setup.py | setup.py | from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
print("This Python is only compatible with Python 3, but you are running "
"Python {}. The installation will likely fail.".format(sys.version_info.major))
setup(name='baselines',
packages=[package for package in... | from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
print("This Python is only compatible with Python 3, but you are running "
"Python {}. The installation will likely fail.".format(sys.version_info.major))
setup(name='baselines',
packages=[package for package in... | mit | Python |
2e8a9847defd6ce23f48acab2fd8142c1fed2d64 | bump version to 2.1.0 | dralshehri/hijri-converter | setup.py | setup.py | import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent
readme = (here / "README.rst").read_text(encoding="utf-8")
changelog = (here / "CHANGELOG.rst").read_text(encoding="utf-8")
setup(
name="hijri-converter",
version="2.1.0",
description="Accurate Hijri-Gregorian ... | import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent
readme = (here / "README.rst").read_text(encoding="utf-8")
changelog = (here / "CHANGELOG.rst").read_text(encoding="utf-8")
setup(
name="hijri-converter",
version="2.0.0",
description="Accurate Hijri-Gregorian ... | mit | Python |
304794af90104e34a6e654dd722dd9e38ab02e03 | fix issue tracker url | tox-dev/detox | setup.py | setup.py | import os, sys
from setuptools import setup
long_description="""
What is detox?
==========================
detox is the distributed version of "tox". It makes efficient use of multiple
CPUs by running all possible activities in parallel. It has the same options
and configuration that tox has so after installation ... | import os, sys
from setuptools import setup
long_description="""
What is detox?
==========================
detox is the distributed version of "tox". It makes efficient use of multiple
CPUs by running all possible activities in parallel. It has the same options
and configuration that tox has so after installation ... | mit | Python |
306609aa72c5ad4860a72fc4caa5db9ef5ab5b26 | Update project URL in setup.py (#1209) | Kriechi/hyper-h2,Kriechi/hyper-h2,python-hyper/hyper-h2,python-hyper/hyper-h2 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Get the version
version_regex = r'__version__ = ["\']([^"\']*)["\']'
with open('h2/__init__.py', 'r') as f:
text = f.read()
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Get the version
version_regex = r'__version__ = ["\']([^"\']*)["\']'
with open('h2/__init__.py', 'r') as f:
text = f.read()
... | mit | Python |
0c45a8a8f8e8e5381cbc0f46c33f21d4fdd52714 | Bump version number | madisongh/autobuilder | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='autobuilder',
version='0.8.0',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
install_requires=['buildbot>=0.8.12', 'boto']
)
| from setuptools import setup, find_packages
setup(
name='autobuilder',
version='0.7.1',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
install_requires=['buildbot>=0.8.12', 'boto']
)
| mit | Python |
83c852e24e4bc81cfe4347301b875164b62dfbcd | bump version | webitup/puke,pombredanne/puke-1,pombredanne/puke-1,pombredanne/puke-1,pombredanne/puke-1,webitup/puke,webitup/puke,pombredanne/puke-1,webitup/puke | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
import sys, os
import pkg_resources
major, minor = sys.version_info[:2]
if major < 2 and minor < 6:
raise Exception("Puke requires Python 2.6")
import logging
setup(
name = "puke",
version = "1.5.14",
packages... | #!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
import sys, os
import pkg_resources
major, minor = sys.version_info[:2]
if major < 2 and minor < 6:
raise Exception("Puke requires Python 2.6")
import logging
setup(
name = "puke",
version = "1.5.12",
packages... | mit | Python |
53a290382bead972d157b3db421486c82d40ce0d | bump version number after patches | garethr/django-test-extensions | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "django-test-extensions",
version = "0.10",
author = "Gareth Rushgrove",
author_email = "gareth@morethanseven.net",
url = "http://github.com/garethr/django-test-extensions/",
packages = find_packages('src'),
package_dir = {'':'s... | from setuptools import setup, find_packages
setup(
name = "django-test-extensions",
version = "0.9",
author = "Gareth Rushgrove",
author_email = "gareth@morethanseven.net",
url = "http://github.com/garethr/django-test-extensions/",
packages = find_packages('src'),
package_dir = {'':'sr... | mit | Python |
fe7924717151d4f85ff9fa28dea44254eb9eec70 | Update minimum version of psycopg2 required | karenc/db-migrator | setup.py | setup.py | # -*- coding: utf-8 -*-
# ###
# Copyright (c) 2015, Rice University
# This software is subject to the provisions of the GNU Affero General
# Public License version 3 (AGPLv3).
# See LICENCE.txt for details.
# ###
import sys
from setuptools import setup, find_packages
install_requires = (
'psycopg2>=2.7',
)
t... | # -*- coding: utf-8 -*-
# ###
# Copyright (c) 2015, Rice University
# This software is subject to the provisions of the GNU Affero General
# Public License version 3 (AGPLv3).
# See LICENCE.txt for details.
# ###
import sys
from setuptools import setup, find_packages
install_requires = (
'psycopg2>=2.5',
)
t... | agpl-3.0 | Python |
c82084956b21e40cb10b8c96e83b970345176596 | Bump version to 1.0.0-pre0 | kaste/mockito-python,lwoydziak/mockito-python | setup.py | setup.py | from setuptools import setup
import sys
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
install_requires = ['funcsigs'] if sys.version_info < (3,) else []
setup(name='mockito',
version='1.0.0-pre0',
packages=['mockito', 'mockito_test'],
url='https://github.com/kaste/mockito-pyt... | from setuptools import setup
import sys
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
install_requires = ['funcsigs'] if sys.version_info < (3,) else []
setup(name='mockito',
version='0.7.1',
packages=['mockito', 'mockito_test'],
url='https://github.com/kaste/mockito-python',... | mit | Python |
35cc3bd93ab2101fc9527dc27f6fb06c51a96466 | fix unusual indentation in setup.py | FelixSchwarz/libkne,FelixSchwarz/libkne,FelixSchwarz/libkne | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name = 'libkne',
version = '0.2.4',
license = 'Proprietary - all rights reserved',
description = 'Python library to read/write KNE files',
author = 'Felix Schwarz',
author_email = 'felix.schwarz@schwarz.eu... | #!/usr/bin/env python
from setuptools import setup
setup(
name = 'libkne',
version = '0.2.4',
license = 'Proprietary - all rights reserved',
description = 'Python library to read/write KNE files',
author = 'Felix Schwarz',
author_email = 'felix.schwar... | mit | Python |
53b96b2ab6f62eadfc2ac87b23867182f2bb38a2 | Add db to staging | thomasyu888/Genie,thomasyu888/Genie,thomasyu888/Genie,thomasyu888/Genie | setup.py | setup.py | """genie package setup"""
import os
from setuptools import setup, find_packages
# figure out the version
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "genie", "__version__.py")) as f:
exec(f.read(), about)
setup(name='genie',
version=about["__version__"],
d... | """genie package setup"""
import os
from setuptools import setup, find_packages
# figure out the version
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "genie", "__version__.py")) as f:
exec(f.read(), about)
setup(name='genie',
version=about["__version__"],
d... | mit | Python |
03d321f5700f2cd3f02de8aa2b601fa14d3de144 | Remove not found script message | codingsmartschool/PyMaIn | setup.py | setup.py | #!/usr/bin/python
# from setuptools
# import setup
import os
__author__ = "Andre Christoga"
input = raw_input("> (eg plus, minus, divide...)")
if input == "plus":
os.system("pymain/plus.py")
if input == "minus":
os.system("pymain/minus.py")
if input == "multi":
os.system("pymain/multi.py")
if input == "divide":
o... | #!/usr/bin/python
# from setuptools
# import setup
import os
__author__ = "Andre Christoga"
input = raw_input("> (eg plus, minus, divide...)")
if input == "plus":
os.system("pymain/plus.py")
if input == "minus":
os.system("pymain/minus.py")
if input == "multi":
os.system("pymain/multi.py")
if input == "divide":
o... | mit | Python |
c7838dd1b01a147977b06bb125399a46806dc200 | Bump version | Conway/perspective | setup.py | setup.py | import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="perspective",
version="1.0.2",
author="Jake Conway",
author_email="jake.h.conway@gmail.com",
description="A package for interacting with the Perspective API",
lon... | import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="perspective",
version="1.0.0",
author="Jake Conway",
author_email="jake.h.conway@gmail.com",
description="A package for interacting with the Perspective API",
lon... | unlicense | Python |
acf77d1ff0257b5d2ac61a5d12374a82ba6175d9 | Allow --all flag to be passed to setup.py clean [ci skip] | wbond/certbuilder | setup.py | setup.py | import os
import shutil
from setuptools import setup, find_packages, Command
import certbuilder
class CleanCommand(Command):
user_options = [
('all', None, '(Compatibility with original clean command)')
]
def initialize_options(self):
self.all = False
def finalize_options(self):
... | import os
import shutil
from setuptools import setup, find_packages, Command
import certbuilder
class CleanCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
folder = os.path.dirname(os.path.abspath(__file... | mit | Python |
5c3ccc2d890d8d90a1cd5507309a7948ab1a6064 | Add package to setup.py file. | danriti/python-traceview | setup.py | setup.py | #!/usr/bin/env python
import traceview
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = ['traceview']
requires = ['requests==2.2.1']
with open('README.md') as f:
readme = f.read()
setup(
name="python-traceview",
version=traceview.__version__,
... | #!/usr/bin/env python
import traceview
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = []
requires = ['requests==2.2.1']
with open('README.md') as f:
readme = f.read()
setup(
name="python-traceview",
version=traceview.__version__,
descripti... | mit | Python |
8cb4bbdd685384014d9c135805850439823bb7e5 | Bump version for PyPI | crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute | setup.py | setup.py | import sys
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
ENTRY_POINTS = """
[console_scripts]
crosscompute = crosscompute.scripts:launch
[crosscompute]
run = crosscompute.scripts.run:RunScript
serve = crosscompute.scripts.serve:ServeScript
work = crosscompute.scripts.work:Work... | import sys
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
ENTRY_POINTS = """
[console_scripts]
crosscompute = crosscompute.scripts:launch
[crosscompute]
run = crosscompute.scripts.run:RunScript
serve = crosscompute.scripts.serve:ServeScript
work = crosscompute.scripts.work:Work... | mit | Python |
502443e737976fceb5538601affdd5515ce5fe7a | Bump version to 1.1b | cinfony/cinfony | setup.py | setup.py | """cinfony: a common API to several cheminformatics toolkits
cinfony is a Python library that provides a common API to several
open source cheminformatics toolkits.
"""
doclines = __doc__.split("\n")
# Chosen from http://www.python.org/pypi?:action=list_classifiers
classifiers = """\
Development Status :: 4 - Beta
E... | """cinfony: a common API to several cheminformatics toolkits
cinfony is a Python library that provides a common API to several
open source cheminformatics toolkits.
"""
doclines = __doc__.split("\n")
# Chosen from http://www.python.org/pypi?:action=list_classifiers
classifiers = """\
Development Status :: 4 - Beta
E... | bsd-2-clause | Python |
cda530d95ba683489969fc5ae8ea2e1b0cfe13bb | Update version | komamitsu/td-fdw | setup.py | setup.py | from distutils.core import setup
setup(name='td-fdw',
version='0.0.2',
description='A foreign data wrapper for TreasureData',
author='Mitsunori Komatsu',
author_email='komamitsu@gmail.com',
license = "Apache",
url='https://github.com/komamitsu/td-fdw',
install_requires=['td-cl... | from distutils.core import setup
setup(name='td-fdw',
version='0.0.1',
description='A foreign data wrapper for TreasureData',
author='Mitsunori Komatsu',
author_email='komamitsu@gmail.com',
url='https://github.com/komamitsu/td-fdw',
install_requires=['td-client', 'certifi'],
p... | apache-2.0 | Python |
40685d6ba119f13c03358db8a765800518aab739 | Set version number to 0.1.27. | nabetama/Flask-Json-Syslog | setup.py | setup.py | with open("README.rst", "rt") as f: readme = f.read()
from setuptools import setup
setup(
name='Flask-Json-Syslog',
version='0.1.27',
url='https://github.com/nabetama/Flask-Json-Syslog',
license='MIT',
author='Mao Nabeta',
author_email='mao.nabeta@gmail.com',
description='Output syslog o... | with open("README.rst", "rt") as f: readme = f.read()
from setuptools import setup
setup(
name='Flask-Json-Syslog',
version='0.1.26',
url='https://github.com/nabetama/Flask-Json-Syslog',
license='MIT',
author='Mao Nabeta',
author_email='mao.nabeta@gmail.com',
description='Output syslog o... | mit | Python |
16ff4716483882a07b6d915fa5d51b9df22f97c8 | Install nova-scheduler. | n0ano/gantt,n0ano/gantt | setup.py | setup.py | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compli... | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compli... | apache-2.0 | Python |
70219163a6d6952029fb3169fe2367fd11add86a | Bump version | AASHE/iss | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='iss',
version='1.0.0',
description="Ideally Single Source app for Salesforce data.",
author='Bob Erb... | #!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='iss',
version='0.3.0',
description="Ideally Single Source app for Salesforce data.",
author='Bob Erb... | mit | Python |
0a8a6f9c57a3f94df6fcf57ee7d3ff3e8bc8ec2e | Bump to irc 2.0 | jamwt/diesel-pmxbot,jamwt/diesel-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... | bsd-3-clause | Python |
9529025fe406a72e02ab5c9e5531efbd21b8f57c | Update setup.py with licence | pawel-lewtak/economic-py | setup.py | setup.py | from setuptools.command.test import test as TestCommand
import setuptools
import sys
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_opt... | from setuptools.command.test import test as TestCommand
import setuptools
import sys
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_opt... | mit | Python |
8ed21e22fde3a9d0c13f2535192fdf0ba60cfa1d | Add package keywords. | bopo/hashfs | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
meta = {}
exec(read('hashfs/__meta__.py'), meta)
readme = r... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
meta = {}
exec(read('hashfs/__meta__.py'), meta)
readme = r... | mit | Python |
38c442d9db94f34daf0201c68fbc0b394d2e676e | update summary | babykick/bttt99 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'lxml',
'requests',
'click',
# 'pywin32'
]
test_requirement... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'lxml',
'requests',
'click',
# 'pywin32'
]
test_requirement... | mit | Python |
23ce7b8c16a488a1baf1013a59b170c1dff4f1ff | Bump version | hsoft/send2trash | setup.py | setup.py | from setuptools import setup
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programm... | from setuptools import setup
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programm... | bsd-3-clause | Python |
02ea52b2fd86bc2244bf419f17d47b3adfb1072b | Fix setup.py | puccia/faxcelerate,puccia/faxcelerate | setup.py | setup.py | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.di... | import os
from setuptools import setup
from os.path import join, dirname
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
r... | agpl-3.0 | Python |
e8c112380367806a29752260a06bef03eb564e94 | Bump release | calston/distributex | setup.py | setup.py | from setuptools import setup
def listify(filename):
return filter(None, open(filename, 'r').read().strip('\n').split('\n'))
setup(
name="distributex",
version="0.2",
url='http://github.com/calston/distributex',
license='MIT',
description="A network mutex service for distributed environments."... | from setuptools import setup
def listify(filename):
return filter(None, open(filename, 'r').read().strip('\n').split('\n'))
setup(
name="distributex",
version="0.1",
url='http://github.com/calston/distributex',
license='MIT',
description="A network mutex service for distributed environments."... | mit | Python |
6a97bb24ffbd46cecf8c2d7065b4f37ba83fce77 | Add scipy dependency to setup.py | newemailjdm/pybrain,arabenjamin/pybrain,jackru/pybrain,newemailjdm/pybrain,garyfeng/pybrain,garyfeng/pybrain,pybrain/pybrain,styskin/pybrain,CVML/pybrain,RatulGhosh/pybrain,Neural-Network/TicTacToe,arabenjamin/pybrain,taylorhxu/pybrain,zygmuntz/pybrain,Neural-Network/TicTacToe,pybrain2/pybrain2,jlegendary/pybrain,chand... | setup.py | setup.py | #! /usr/bin/env python2.5
# -*- coding: utf-8 -*-
__author__ = 'Justin S Bayer, bayer.justin@googlemail.com'
from setuptools import setup, find_packages
setup(
name="PyBrain",
version="0.3.1",
description="PyBrain is the Swiss army knife for neural networking.",
license="BSD",
keywords="Neural... | #! /usr/bin/env python2.5
# -*- coding: utf-8 -*-
__author__ = 'Justin S Bayer, bayer.justin@googlemail.com'
from setuptools import setup, find_packages
setup(
name="PyBrain",
version="0.3.1",
description="PyBrain is the Swiss army knife for neural networking.",
license="BSD",
keywords="Neural... | bsd-3-clause | Python |
75ab761c8d236bff8d4b66bd58d8f304a7c1ff84 | Include testdata in installation | icometrix/dicom2nifti,icometrix/dicom2nifti | setup.py | setup.py | import os
from distutils.core import setup
from setuptools import find_packages
version = '1.1.9'
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support for most 4D data (like DTI and fMRI)
"""
pac... | import os
from distutils.core import setup
from setuptools import find_packages
version = '1.1.8'
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support for most 4D data (like DTI and fMRI)
"""
dat... | mit | Python |
5c80f501d1cc575a96dfd0e4839d2496522e9281 | Update setup.py (#121) | all-umass/metric-learn,terrytangyuan/metric-learn | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
version = {}
with open(os.path.join('metric_learn', '_version.py')) as fp:
exec(fp.read(), version)
setup(name='metric-learn',
version=version['__version__'],
description='Python implementations of metric learning algor... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
version = {}
with open(os.path.join('metric_learn', '_version.py')) as fp:
exec(fp.read(), version)
setup(name='metric-learn',
version=version['__version__'],
description='Python implementations of metric learning algor... | mit | Python |
9040359ee8b6bb3f3e2c48b703b3f9e6324b2072 | bump to v0.3.2 | williballenthin/python-idb | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
# For Testing:
#
# python3.4 setup.py register -r https://testpypi.python.org/pypi
# python3.4 setup.py bdist_wheel upload -r https://testpypi.python.org/pypi
# python3.4 -m pip install -i https://testpypi.python.org/pypi
#
# For Realz:
#
# python3.4 se... | #!/usr/bin/env python
from setuptools import setup, find_packages
# For Testing:
#
# python3.4 setup.py register -r https://testpypi.python.org/pypi
# python3.4 setup.py bdist_wheel upload -r https://testpypi.python.org/pypi
# python3.4 -m pip install -i https://testpypi.python.org/pypi
#
# For Realz:
#
# python3.4 se... | apache-2.0 | Python |
0dce685d30ef5a3991d8903b6af8ad03b0bea75d | Bump kubernetes client version to 4.0 | jupyterhub/kubespawner,yuvipanda/jupyterhub-kubernetes-spawner | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='jupyterhub-kubespawner',
version='0.7.1',
install_requires=[
'jupyterhub>=0.8',
'pyYAML',
'kubernetes==4.*',
'escapism',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
description='Jupyt... | from setuptools import setup, find_packages
setup(
name='jupyterhub-kubespawner',
version='0.7.1',
install_requires=[
'jupyterhub>=0.8',
'pyYAML',
'kubernetes==3.*',
'escapism',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
description='Jupyt... | bsd-3-clause | Python |
1952306de35e64d2fb41adbaa2063ebd78d3264a | Bump to version 0.1.1 | David-Wobrock/django-fake-database-backends | setup.py | setup.py | from codecs import open
from os import path
from setuptools import setup, find_packages
PROJECT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(PROJECT_DIR, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
install_requirements = [
'django>=1.11'
]
test_requirements = (
... | from codecs import open
from os import path
from setuptools import setup, find_packages
PROJECT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(PROJECT_DIR, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
install_requirements = [
'django>=1.11'
]
test_requirements = (
... | mit | Python |
d265ec5127a8ab51b1812786f4e1eef79ef2a9a3 | Change manage.py to require Pillow 2.0. This is to avoid PIL import errors for Mac users | rmaceissoft/django-photologue,jlemaes/django-photologue,rmaceissoft/django-photologue,seedwithroot/django-photologue-clone,rmaceissoft/django-photologue,RossLYoung/django-photologue,MathieuDuponchelle/my_patched_photologue,seedwithroot/django-photologue-clone,jlemaes/django-photologue,jlemaes/django-photologue,MathieuD... | setup.py | setup.py | #/usr/bin/env python
import os
from setuptools import setup, find_packages
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
version = '2.6.dev0'
setup(
name="django-photologue",
version=version,
description="Powerful image management for the Django web framework.",
author="Jus... | #/usr/bin/env python
import os
from setuptools import setup, find_packages
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
version = '2.6.dev0'
setup(
name="django-photologue",
version=version,
description="Powerful image management for the Django web framework.",
author="Jus... | bsd-3-clause | Python |
3e530c7936c459fdeda0e5a8b8c6ce435f65e2d7 | Fix dependency declaration | ZeitOnline/zeit.addcentral | setup.py | setup.py | # Copyright (c) 2009 gocept gmbh & co. kg
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='zeit.addcentral',
version='1.0.4.dev0',
author='gocept',
author_email='mail@gocept.com',
url='https://intra.gocept.com/projects/projects/zeit-cms',
description="""\
""",
... | # Copyright (c) 2009 gocept gmbh & co. kg
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='zeit.addcentral',
version='1.0.4.dev0',
author='gocept',
author_email='mail@gocept.com',
url='https://intra.gocept.com/projects/projects/zeit-cms',
description="""\
""",
... | bsd-3-clause | Python |
74254537dd2e1e4dd41602a6b95bd32b1bb5d5cc | Update authors of the package. | pragmaticcoders/serialization | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read_file(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path) as f:
return f.read()
def read_requirements(filena... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read_file(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path) as f:
return f.read()
def read_requirements(filena... | mit | Python |
aa62aaea5104da5cb59ace33f182538fdb81f322 | bump version to next dev release | Pr0Ger/protobuf3 | setup.py | setup.py | #!/usr/bin/env python3
from os import getenv
from setuptools import setup
dependencies = []
try:
import enum
except ImportError:
dependencies.append('enum34')
teamcity_build = getenv('TEAMCITY_PROJECT_NAME', False)
version = '0.3.0' # Base version
dev = True # Final or not
version_ui = version # Compact ... | #!/usr/bin/env python3
from os import getenv
from setuptools import setup
dependencies = []
try:
import enum
except ImportError:
dependencies.append('enum34')
teamcity_build = getenv('TEAMCITY_PROJECT_NAME', False)
version = '0.2.0' # Base version
dev = False # Final or not
version_ui = version # Compact... | mit | Python |
b6c4affd32c39ad15d8d7faf08b64b85cc020b50 | Add version classifiers | bbengfort/confire | setup.py | setup.py | #!/usr/bin/env python
# setup
# Setup script for confire
#
# Author: Benjamin Bengfort <benjamin@bengfort.com>
# Created: Sun Jul 20 11:06:56 2014 -0400
#
# Copyright (C) 2014 District Data Labs
# For license information, see LICENSE.txt and NOTICE.md
#
# ID: setup.py [] benjamin@bengfort.com $
"""
Setup script for... | #!/usr/bin/env python
# setup
# Setup script for confire
#
# Author: Benjamin Bengfort <benjamin@bengfort.com>
# Created: Sun Jul 20 11:06:56 2014 -0400
#
# Copyright (C) 2014 District Data Labs
# For license information, see LICENSE.txt and NOTICE.md
#
# ID: setup.py [] benjamin@bengfort.com $
"""
Setup script for... | mit | Python |
c7373cfa42efce7bd70a9a30d724ad6674ff7684 | Update setup.py | emmanvg/cti-stix-elevator,oasis-open/cti-stix-elevator | setup.py | setup.py | from os.path import abspath, dirname, join
from setuptools import setup, find_packages
CUR_DIR = dirname(abspath(__file__))
INIT_FILE = join(CUR_DIR, 'elevator', '__init__.py')
VERSION_FILE = join(CUR_DIR, 'elevator', 'version.py')
def get_version():
with open(VERSION_FILE) as f:
for line in f:
... | from os.path import abspath, dirname, join
from setuptools import setup, find_packages
CUR_DIR = dirname(abspath(__file__))
INIT_FILE = join(CUR_DIR, 'elevator', '__init__.py')
VERSION_FILE = join(CUR_DIR, 'elevator', 'version.py')
def get_version():
with open(VERSION_FILE) as f:
for line in f:
... | bsd-3-clause | Python |
68e98fb59b0c4669d83021e0f0623dc3b098da2a | Fix trove classifier | SpotlightKid/jack-select,SpotlightKid/jack-select | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="jack-select",
version="0.1b1",
url="https://github.com/SpotlightKid/jack-select",
author="Christopher Arndt",
author_email="chris@chrisarndt.de",
description="A systray app to set the JACK configuration fr... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="jack-select",
version="0.1b1",
url="https://github.com/SpotlightKid/jack-select",
author="Christopher Arndt",
author_email="chris@chrisarndt.de",
description="A systray app to set the JACK configuration fr... | mit | Python |
a33ca8f9a14e5f2f049ebd7d99f6bbbcb41e617d | Bump for 0.3.0 | openstack/doc8,doismellburning/doc8,tschuy/doc8,stackforge/doc8 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright (C) 2014 Yahoo! 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 ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright (C) 2014 Yahoo! 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 ... | apache-2.0 | Python |
84c98719634bc37e8d7910fcdf169b84496e9d3d | bump version | datamade/csvdedupe | setup.py | setup.py | from setuptools import setup
import sys
requirements = ['future',
'dedupe==0.8.0.1.7']
if sys.version < '3':
requirements += ['unicodecsv']
setup(
name = "csvdedupe",
version = '0.1.8',
description="Command line tools for deduplicating and merging csv files",
author="Forest Gregg,... | from setuptools import setup
import sys
requirements = ['future',
'dedupe==0.8.0.1.7']
if sys.version < '3':
requirements += ['unicodecsv']
setup(
name = "csvdedupe",
version = '0.1.7',
description="Command line tools for deduplicating and merging csv files",
author="Forest Gregg,... | mit | Python |
364df7ea22650cee467265bdca7104df8898b6fd | remove cruft from setup.py | nathants/py-util,nathants/s | setup.py | setup.py | import os
import setuptools
setuptools.setup(
version="0.0.2",
license='mit',
name="s",
author='nathan todd-stone',
author_email='me@nathants.com',
url='http://github.com/nathants/s',
install_requires=open('requirements.txt').readlines(),
packages=setuptools.find_packages(),
entry_... | import os
import setuptools
package_data = {'': ['/'.join(os.path.join(path, file).split('/')[1:])
for n in os.listdir('.')
if os.path.isdir(n)
and '__init__.py' in os.listdir(n)
for path, dirs, files in os.walk(n)
... | mit | Python |
843be58d6835d02035365efb4683e5199aafdb1e | Update e-mail address. | spilgames/job-runner-worker | setup.py | setup.py | from setuptools import setup
import job_runner_worker
setup(
name='job-runner-worker',
version=job_runner_worker.__version__,
url='https://github.com/spilgames/dwh/',
author='Orne Brocaar',
author_email='datawarehouse@spilgames.com',
description='Job-Runner Worker',
long_description=open(... | from setuptools import setup
import job_runner_worker
setup(
name='job-runner-worker',
version=job_runner_worker.__version__,
url='https://github.com/spilgames/dwh/',
author='Orne Brocaar',
author_email='orne.brocaar@spilgames.com',
description='Job-Runner Worker',
long_description=open('... | bsd-3-clause | Python |
c159ba9a6a165ac38263dbedf79db220ffcb6346 | change from include_package_data to package_data={} in setup.py | NickleDave/hybrid-vocal-classifier | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
version='1.0b',
description='Python package for automated segmentation and classification of vocalizations',
author='David Nicholson',
author_email='nicholdav at gmail dot com',
url='https://github.com/NickleDave/hybrid-vocal... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
version='1.0b',
description='Python package for automated segmentation and classification of vocalizations',
author='David Nicholson',
author_email='nicholdav at gmail dot com',
url='https://github.com/NickleDave/hybrid-vocal... | bsd-3-clause | Python |
96789946ec1893c3cd767cd2b9971b21e5c8afa0 | Bump to v0.6.1 | prat0318/bravado-core,vi4m/bravado,analogue/bravado-core,stratosgear/bravado,prat0318/swagger-py,analogue/bravado,admetricks/bravado-core | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2013, Digium, Inc.
# Copyright (c) 2014, Yelp, Inc.
import os
from setuptools import setup
async_packages = ["crochet", "twisted"]
setup(
name="swaggerpy",
version="0.6.1",
license="BSD 3-Clause License",
description="Library for accessing Swagger-enabled API's"... | #!/usr/bin/env python
# Copyright (c) 2013, Digium, Inc.
# Copyright (c) 2014, Yelp, Inc.
import os
from setuptools import setup
async_packages = ["crochet", "twisted"]
setup(
name="swaggerpy",
version="0.5.8",
license="BSD 3-Clause License",
description="Library for accessing Swagger-enabled API's"... | bsd-3-clause | Python |
911de7a6f029c01887d2c24df6ccc822812509e2 | update setup.py | gyh1621/GetSubtitles | setup.py | setup.py | # coding: utf8
from setuptools import setup
setup(
author="gyh1621",
author_email="cngyh96@gmail.com",
description="download subtitles from subhd.com",
license="MIT",
name='getsub',
version='1.0',
packages=['getsub'],
install_requires=[ # 依赖列表
'requests>=2.9, <2.10',
... | # coding: utf8
from setuptools import setup
setup(
author="gyh1621",
author_email="cngyh96@gmail.com",
description="download subtitles from subhd.com",
license="MIT",
name='getsub',
version='1.0',
packages=['getsub'],
exclude_package_date={'':['.gitignore']},
install_requires=[ #... | mit | Python |
e9c39fdf8aa77f1d977c5e7c7fec32c3986cc8a2 | Increase version to 1.6.2 | PyBossa/pbs,PyBossa/pbs,PyBossa/pbs | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except IOError:
print("warning: README.md not found")
long_description = ""
except ImportError:
print("warning: pypandoc module not found, cou... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except IOError:
print("warning: README.md not found")
long_description = ""
except ImportError:
print("warning: pypandoc module not found, cou... | agpl-3.0 | Python |
7ea120b8dea1a416ea5013847a24f27644d81b50 | Modify setup.py to use README.md | esentino/pyramideat | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_de... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.txt')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_d... | apache-2.0 | Python |
7993f6fdd5d066e813488b805771e08d190b0e06 | format change | faroit/medleydb,marl/medleydb,marl/medleydb | setup.py | setup.py | from setuptools import setup
setup(
name='medleydb',
version='0.1.0',
description='Python module for the MedleyDB dataset',
author='Rachel Bittner',
author_email='rachel.bittner@nyu.edu',
url='https://github.com/rabitt3/medleydb',
download_url='http://github.com/rabitt3/medleydb/releases',
... | from setuptools import setup
setup(
name='medleydb',
version='0.1.0',
description='Python module for the MedleyDB dataset',
author='Rachel Bittner',
author_email='rachel.bittner@nyu.edu',
url='https://github.com/rabitt3/medleydb',
download_url='http://github.com/rabitt3/medleydb/releases',
... | mit | Python |
b9600b13a61007366ca74ae6eb5d704f87344715 | Bump version to 0.1.3. | box/rotunicode,box/rotunicode | setup.py | setup.py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os.path import dirname, join
def main():
base_dir = dirname(__file__)
setup(
name='rotunicode',
version='0.1.3',
description='Python codec for converting between a string o... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os.path import dirname, join
def main():
base_dir = dirname(__file__)
setup(
name='rotunicode',
version='0.1.2',
description='Python codec for converting between a string o... | apache-2.0 | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.