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 |
|---|---|---|---|---|---|---|---|---|
7463e1073143e0d22a17c499ddb8701307f45a68 | Declare dependency | ZeitOnline/zeit.intrafind | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='zeit.intrafind',
version='2.3.1.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
description="vivi intrafind integration",
packages=find_packages('src'),
package_dir={'': 'src'},... | from setuptools import setup, find_packages
setup(
name='zeit.intrafind',
version='2.3.1.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
description="vivi intrafind integration",
packages=find_packages('src'),
package_dir={'': 'src'},... | bsd-3-clause | Python |
e5c693f185e430c671baceecba8c528d0376142f | Add nicer header. | bigbrozer/monitoring.nagios,bigbrozer/monitoring.nagios | setup.py | setup.py | #!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
# Copyright (C) Faurecia <http://www.faurecia.com/>
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without l... | #!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
#==============================================================================
# Module : setup
# Author : Vincent BESANCON <besancon.vincent@gmail.com>
# Description : Setuptools install script.
#---------------------------------------------------------... | mit | Python |
06a63dd59d1253875a703cd9b44b45caa59be4fc | add missing PyYAML requirement | pyannote/pyannote-audio,pyannote/pyannote-audio,pyannote/pyannote-audio | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2016 CNRS
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation ... | #!/usr/bin/env python
# encoding: utf-8
# The MIT License (MIT)
# Copyright (c) 2016 CNRS
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation ... | mit | Python |
1937f86eb5088e18fe2f5c23116355dc305a6347 | Add requirements to setup.py. | monetizeio/python-bitcoin | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright © 2012-2013 by its contributors. See AUTHORS for details.
#
# Distributed under the MIT/X11 software license, see the accompanying
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
#
import os
from distutils.core import setup
from bitco... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright © 2012-2013 by its contributors. See AUTHORS for details.
#
# Distributed under the MIT/X11 software license, see the accompanying
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
#
import os
from distutils.core import setup
from bitco... | mit | Python |
1d3ee6c7477fbece473ad642a57e2069336863a2 | Bump version to 1.1.8a. | lbeltrame/bcbio-nextgen,chapmanb/bcbio-nextgen,chapmanb/bcbio-nextgen,lbeltrame/bcbio-nextgen,a113n/bcbio-nextgen,vladsaveliev/bcbio-nextgen,chapmanb/bcbio-nextgen,a113n/bcbio-nextgen,lbeltrame/bcbio-nextgen,a113n/bcbio-nextgen,vladsaveliev/bcbio-nextgen,vladsaveliev/bcbio-nextgen | setup.py | setup.py | #!/usr/bin/env python
"""Setup file and install script for NextGen sequencing analysis scripts.
"""
import os
from setuptools import setup, find_packages
version = "1.1.8a"
def write_version_py():
version_py = os.path.join(os.path.dirname(__file__), 'bcbio', 'pipeline',
'version.py')... | #!/usr/bin/env python
"""Setup file and install script for NextGen sequencing analysis scripts.
"""
import os
from setuptools import setup, find_packages
version = "1.1.7"
def write_version_py():
version_py = os.path.join(os.path.dirname(__file__), 'bcbio', 'pipeline',
'version.py')
... | mit | Python |
2f01fe5d96869cfca1d7564c0a5032c4088e3d5f | fix install | Alarik/django-templatesadmin,dkopitsa/django-templatesadmin,Alarik/django-templatesadmin,dkopitsa/django-templatesadmin,dkopitsa/django-templatesadmin,Alarik/django-templatesadmin,dkopitsa/django-templatesadmin,Alarik/django-templatesadmin | setup.py | setup.py | import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
app_name = 'templatesadmin'
version = __import__(app_name).__version__
# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/co... | import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
app_name = 'templatesadmin'
version = __import__(app_name).__version__
# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/co... | bsd-3-clause | Python |
4bfd742034f975f0b52858e8f3d85a93396dd5a6 | Bump version to 0.7 | reberhardt7/sofa | setup.py | setup.py | from setuptools import setup
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'validate_email',
'pyDNS',
'passlib',
'pycrypto',
'requests',
'python-slugify',
'uritemplate',
'pyyaml',
]
setup(name='sofa',
version='0.7',
description='A lightweight REST API... | from setuptools import setup
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'validate_email',
'pyDNS',
'passlib',
'pycrypto',
'requests',
'python-slugify',
'uritemplate',
'pyyaml',
]
setup(name='sofa',
version='0.6',
description='A lightweight REST API... | mit | Python |
2f998d901cef22615fbe8e6eb1a07f1a67f2681f | Bump version to 0.1.2 | ulikoehler/UliEngineering | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf8 -*-
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 0):
print('ERROR: UliEngineering currently requires at least Python 3.0 to run.')
sys.exit(1)
setup(name='UliEngineering',
version='0.1.2',
description='Computational tools... | #!/usr/bin/env python
# -*- coding: utf8 -*-
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 0):
print('ERROR: UliEngineering currently requires at least Python 3.0 to run.')
sys.exit(1)
setup(name='UliEngineering',
version='0.1.1',
description='Computational tools... | apache-2.0 | Python |
b9f14322be5c13a05c2571117d261c441a19866d | Bump version to 4.6a2 | SectorLabs/django-localized-fields,SectorLabs/django-localized-fields,SectorLabs/django-localized-fields | setup.py | setup.py | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8') as readme:
README = readme.read()
setup(
name='django-localized-fields',
version='4.6a2',
packages=find_packages(exclude=['tests']),
include_package_data=True,
... | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8') as readme:
README = readme.read()
setup(
name='django-localized-fields',
version='4.6a1',
packages=find_packages(exclude=['tests']),
include_package_data=True,
... | mit | Python |
aa9f43bb5b11abf3ff8c15d36c3343b1685f896b | fix syntax error in setup.py | lwcolton/falcon-cors,lwcolton/falcon-cors | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "falcon-cors",
version = "1.0.0",
description = "Falcon CORS middlware",
package_dir = {"":"src"},
packages = find_packages("src"),
install_requires=["falcon"],
author = 'Colton Leekley-Winslow',
author_email = 'lwcolton@gmail.co... | from setuptools import setup, find_packages
setup(
name = "falcon-cors",
version = "1.0.0",
description = "Falcon CORS middlware",
package_dir = {"":"src"},
packages = find_packages("src"),
install_requires=["falcon"]
author = 'Colton Leekley-Winslow',
author_email = 'lwcolton@gmail.com... | apache-2.0 | Python |
27c7a95e747d4b334c57bf894c5dda926ef7c28b | Bump version | timeyyy/python-client,traverseda/python-client,bfredl/python-client,timeyyy/python-client,Shougo/python-client,fwalch/python-client,Shougo/python-client,fwalch/python-client,0x90sled/python-client,brcolow/python-client,brcolow/python-client,justinmk/python-client,starcraftman/python-client,starcraftman/python-client,ne... | setup.py | setup.py | from setuptools import setup
setup(name='neovim',
version='0.0.13',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.0.13.tar.gz',
author='Thiago de Arruda',
author_email='tpadilha84@... | from setuptools import setup
setup(name='neovim',
version='0.0.12',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.0.12.tar.gz',
author='Thiago de Arruda',
author_email='tpadilha84@... | apache-2.0 | Python |
ee20485bf055ef498e0eb20f0361013dcec094d0 | upgrade libcloud to 0.19.0 | mardix/flask-cloudstorage,mardix/flask-cloudstorage,mardix/flask-cloudy,mardix/flask-cloudy,mardix/flask-cloudy,mardix/flask-cloudstorage | setup.py | setup.py | """
Flask-Cloudy
A wrapper around Apache-Libcloud to upload and save files on cloud storage
providers such as: AWS S3, Google Storage, Microsoft Azure, Rackspace Cloudfiles,
and even on local storage through a Flask application.
(It can be used as standalone)
Supported storage:
- AWS S3
- Google Storage
- Microsoft ... | """
Flask-Cloudy
A wrapper around Apache-Libcloud to upload and save files on cloud storage
providers such as: AWS S3, Google Storage, Microsoft Azure, Rackspace Cloudfiles,
and even on local storage through a Flask application.
(It can be used as standalone)
Supported storage:
- AWS S3
- Google Storage
- Microsoft ... | mit | Python |
783826de7818aefcf85e21d66a9408e8b52cd885 | Bump version | cloudify-cosmo/cloudify-dsl-parser | 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 |
35aec757da014c7fa6267ecd16a1111d931e80e9 | Fix setup.py. | hybridcluster/nomenclature,hybridcluster/nomenclature,hybridcluster/nomenclature | setup.py | setup.py | from setuptools import setup
import versioneer
versioneer.versionfile_source = 'nomenclature/_version.py'
versioneer.versionfile_build = 'nomenclature/_version.py'
versioneer.tag_prefix = 'v'
versioneer.parentdir_prefix = 'nomenclature-'
def read(path):
"""
Read the contents of a file.
"""
with open(... | from setuptools import setup
import versioneer
versioneer.versionfile_source = 'nomenclature/_version.py'
versioneer.versionfile_build = 'nomenclature/_version.py'
versioneer.tag_prefix = 'v'
versioneer.parentdir_prefix = 'nomenclature-'
def read(path):
"""
Read the contents of a file.
"""
with open(... | apache-2.0 | Python |
d36717c31c23afc0d1dc97d58249801157228dc1 | Bump version | evvers/git-pre-commit-hook | setup.py | setup.py | import codecs
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
return codecs.open(os.path.join(HER... | import codecs
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
return codecs.open(os.path.join(HER... | mit | Python |
a06e8612f94f69a324ae5968fbe4d5516f01310a | fix urls; add -colors | cooperhewitt/py-cooperhewitt-roboteyes | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='cooperhewitt.roboteyes',
version='0.11',
description='Meta package to install all the Cooper Hewitt computer vision libraries',
author='Cooper Hewitt Smithsonian Design Museum',
url='https://github.com/cooperhewitt/py-cooperhewitt-rob... | #!/usr/bin/env python
from setuptools import setup
setup(
name='cooperhewitt.roboteyes',
version='0.1',
description='Meta package to install all the Cooper Hewitt computer vision libraries',
author='Cooper Hewitt Smithsonian Design Museum',
url='https://github.com/cooperhewitt/py-cooperhewitt-robo... | bsd-3-clause | Python |
5240d4f00e1615b479c8b04e960d2e570b0f6763 | Bump pypi version. | GooeeIOT/python-evrythng | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
project_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(project_dir, 'README.rst'), 'r') as f:
long_description = f.read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
... | # -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
project_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(project_dir, 'README.rst'), 'r') as f:
long_description = f.read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
... | mit | Python |
e18a577a96ce6e1ba02d1a403acfd490d55d4210 | Bump version | honza/mutt-notmuch-py | setup.py | setup.py | from setuptools import setup
description = 'Python version of the mutt-notmuch script'
long_desc = open('README.md').read()
setup(
name='mutt-notmuch',
version='1.2.0',
url='https://github.com/honza/mutt-notmuch-py',
install_requires=[],
description=description,
long_description=long_desc,
... | from setuptools import setup
description = 'Python version of the mutt-notmuch script'
long_desc = open('README.md').read()
setup(
name='mutt-notmuch',
version='1.1.0',
url='https://github.com/honza/mutt-notmuch-py',
install_requires=[],
description=description,
long_description=long_desc,
... | bsd-2-clause | Python |
86103cbdc457c699f3a76eba914a8708c65bbbbc | Set classifier for Python 3.2 | ctismer/caniusepython3,dhamaniasad/caniusepython3,nett55/caniusepypy,brettcannon/caniusepython3,svisser/caniusepython3,public/caniusepypy | setup.py | setup.py | from setuptools import setup
with open('README.md') as file:
# Try my best to have at least the intro in Markdown/reST.
long_description = file.read().partition('<!-- END long_description -->')[0]
setup(name='caniusepython3',
version='1.0',
description='Determine what projects are blocking you fro... | from setuptools import setup
with open('README.md') as file:
# Try my best to have at least the intro in Markdown/reST.
long_description = file.read().partition('<!-- END long_description -->')[0]
setup(name='caniusepython3',
version='1.0',
description='Determine what projects are blocking you fro... | apache-2.0 | Python |
793151162770d8a4538627af6638253af7d95e98 | Bump version to 3.0.7 | ryankanno/cookiecutter-django,pydanny/cookiecutter-django,pydanny/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,pydanny/cookiecutter-django,pydanny/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,luzfcb/cookiecutter-django,trungdong/cookiecutter-django,ryankan... | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.7"
if sys.argv... | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.5-01"
if sys.a... | bsd-3-clause | Python |
91a56f66337efa7770bc94e81c2f7c5f64041bb6 | Add postgresql_audit to pymodules | kvesteri/postgresql-audit | setup.py | setup.py | """
PostgreSQL-Audit
----------------
Versioning and auditing extension for PostgreSQL and SQLAlchemy.
"""
import os
import re
from setuptools import setup
HERE = os.path.dirname(os.path.abspath(__file__))
def get_version():
filename = os.path.join(HERE, 'postgresql_audit.py')
with open(filename) as f:
... | """
PostgreSQL-Audit
----------------
Versioning and auditing extension for PostgreSQL and SQLAlchemy.
"""
import os
import re
from setuptools import setup
HERE = os.path.dirname(os.path.abspath(__file__))
def get_version():
filename = os.path.join(HERE, 'postgresql_audit.py')
with open(filename) as f:
... | bsd-2-clause | Python |
29ec29c8e6bc0ab1e5b299042e307d4bce42a346 | Update pytest-cov requirement from <2.6,>=2.5 to >=2.5,<2.9 | django-oscar/django-oscar-accounts,django-oscar/django-oscar-accounts | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = [
'django>=1.11,<2.3',
'django-oscar>=2.0',
'python-dateutil>=2.6,<3.0',
]
tests_require = [
'django-webtest==1.9.7',
'pytest-cov>=2.5,<2.9',
'pytest-django>=3.5,<3.6',
]
setup(
name='django-oscar-accoun... | #!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = [
'django>=1.11,<2.3',
'django-oscar>=2.0',
'python-dateutil>=2.6,<3.0',
]
tests_require = [
'django-webtest==1.9.7',
'pytest-cov>=2.5,<2.6',
'pytest-django>=3.5,<3.6',
]
setup(
name='django-oscar-accoun... | bsd-3-clause | Python |
e79acc387527b8a0f65049ae05e8c4ebcc2fcee9 | bump version to mark release with fixed requirement in setup.py | zonca/pytest-ipynb | setup.py | setup.py | from setuptools import setup
import os.path
with open("README.rst") as f:
long_description = f.read()
setup(
name="pytest-ipynb",
version="1.0.2",
packages = ['pytest_ipynb'],
# the following makes a plugin available to pytest
entry_points = {
'pytest11': [
'ipynb = pytest... | from setuptools import setup
import os.path
with open("README.rst") as f:
long_description = f.read()
setup(
name="pytest-ipynb",
version="1.0.1",
packages = ['pytest_ipynb'],
# the following makes a plugin available to pytest
entry_points = {
'pytest11': [
'ipynb = pytest... | bsd-3-clause | Python |
a4c4030ef011ee0b0682d42e1533a17feab8b97c | Increment version number [skip ci] | geo-fluid-dynamics/phaseflow-fenics | setup.py | setup.py | # -*- coding: utf-8 -*-
import setuptools
with open("README.md") as f:
readme = f.read()
with open("LICENSE.txt") as f:
license = f.read()
setuptools.setup(
name = "phaseflow",
version = "0.6.1-alpha",
description = "Simulate convection-coupled melting and solidification of phas... | # -*- coding: utf-8 -*-
import setuptools
with open("README.md") as f:
readme = f.read()
with open("LICENSE.txt") as f:
license = f.read()
setuptools.setup(
name = "phaseflow",
version = "0.6.0-alpha",
description = "Simulate convection-coupled melting and solidification of phas... | mit | Python |
dd77a811d8197ac19ec926f7c08d8ee71593a35b | Bump version | andreroggeri/pynubank | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='pynubank',
version='2.11.0',
url='https://github.com/andreroggeri/pynubank',
author='André Roggeri Campos',
author_email=... | import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='pynubank',
version='2.10.0',
url='https://github.com/andreroggeri/pynubank',
author='André Roggeri Campos',
author_email=... | mit | Python |
d1d08da90872472a966c6a41531d5539c5f81bfd | bump cdiserrors | uc-cdis/cdis-python-utils | setup.py | setup.py | from subprocess import check_output
from setuptools import setup, find_packages
def get_version():
# https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408
try:
tag = check_output(
["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"]
)
return tag... | from subprocess import check_output
from setuptools import setup, find_packages
def get_version():
# https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408
try:
tag = check_output(
["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"]
)
return tag... | apache-2.0 | Python |
a2db35e5c67a271482f2b166a84142be94a16194 | Bump to version 0.2.0 | biofloat/biofloat,MBARIMike/biofloat,MBARIMike/biofloat,biofloat/biofloat | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "biofloat",
version = "0.2.0",
packages = find_packages(),
requires = ['Python (>=2.7)'],
install_requires = [
'beautifulsoup4>=4.4',
'coverage>=4',
'jupyter>=1.0.0',
'matplotlib',
'numpy>=1.10',
... | from setuptools import setup, find_packages
setup(
name = "biofloat",
version = "0.1.19",
packages = find_packages(),
requires = ['Python (>=2.7)'],
install_requires = [
'beautifulsoup4>=4.4',
'coverage>=4',
'jupyter>=1.0.0',
'matplotlib',
'numpy>=1.10',
... | mit | Python |
338af378c6512339bdd6e0eaab002eaf886f5ed8 | Make this work on python3 | doismellburning/doc8,openstack/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 |
ed284364a05c6d58b9a79f5521d70a4fb0c3d9d5 | Set Pika to less than 2 | steveYeah/amqpeek | setup.py | setup.py | #!/usr/bin/env python
from codecs import open
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), 'r', 'utf-8') as handle:
readme = handle.read()
setup(
name='amqpeek',
description='RMQ CLI Monitor',
pack... | #!/usr/bin/env python
from codecs import open
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), 'r', 'utf-8') as handle:
readme = handle.read()
setup(
name='amqpeek',
description='RMQ CLI Monitor',
pack... | mit | Python |
63ab4f517698875cb8e86c32842130f3b9556380 | introduce the run_separately flag | dcosson/parallel-ci-runner | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='parallel-ci-runner',
version='0.1.7',
description='A framework for defining and running parallel CI tests, '
'with support for docker-compose.',
author='Danny Cosson',
author_email='dcosson@gmail.com',
url='https:/... | #!/usr/bin/env python
from setuptools import setup
setup(
name='parallel-ci-runner',
version='0.1.6',
description='A framework for defining and running parallel CI tests, '
'with support for docker-compose.',
author='Danny Cosson',
author_email='dcosson@gmail.com',
url='https:/... | mit | Python |
e68c6faea24816909523d9432d42367e5f4a2852 | update copyright information in setup.py | Debian/debsources,Debian/debsources,Debian/debsources,Debian/debsources,Debian/debsources | setup.py | setup.py | # Copyright (C) 2014 Matthieu Caneill <matthieu.caneill@gmail.com>
#
# This file is part of Debsources.
#
# Debsources is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or... | # Copyright (C) 2014 Matthieu Caneill <matthieu.caneill@gmail.com>
#
# This file is part of Debsources.
#
# Debsources is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or... | agpl-3.0 | Python |
06c42fd7d9a75729eab283258c0c80f185c33efc | bump version | autosportlabs/podium-api | setup.py | setup.py | from distutils.core import setup
setup(
name = 'podium_api',
packages = ['podium_api','podium_api.types'],
version = '0.0.7',
description = 'API for Podium Motorsports Platform http://podium.live',
author = 'Autosport Labs',
author_email = 'sales@autosportlabs.com',
url = 'https://github.com/autosportlab... | from distutils.core import setup
setup(
name = 'podium_api',
packages = ['podium_api','podium_api.types'],
version = '0.0.6',
description = 'API for Podium Motorsports Platform http://podium.live',
author = 'Autosport Labs',
author_email = 'sales@autosportlabs.com',
url = 'https://github.com/autosportlab... | mit | Python |
b984060f9e3455df56953580dd3ee4e0717f916b | Add "Python 2" classifier since it works (according to Travis CI). | MarkusH/rinse,simudream/rinse,simudream/rinse,funkybob/rinse,tysonclugg/rinse,thedrow/rinse,tysonclugg/rinse,MarkusH/rinse | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='rinse',
version='0.1.2',
description='Python3 SOAP client built with lxml and requests.',
long_description=open('README.rst').read(),
author='Tyson Clugg',
author_email='tyson@clugg.net',
url='http://github.com/tysonclugg/rinse... | #!/usr/bin/env python
from setuptools import setup
setup(
name='rinse',
version='0.1.2',
description='Python3 SOAP client built with lxml and requests.',
long_description=open('README.rst').read(),
author='Tyson Clugg',
author_email='tyson@clugg.net',
url='http://github.com/tysonclugg/rinse... | mit | Python |
c304c05aa7090a08d871c7a6023c2a62de2825d8 | bump version | instagrambot/instabot,ohld/instabot,instagrambot/instabot | setup.py | setup.py | from setuptools import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.5.0',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov, Evgeny Kemerov',
author_email='ohld@icloud.com, eskemerov@gmail.com',
url... | from setuptools import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.4.5',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov, Evgeny Kemerov',
author_email='ohld@icloud.com, eskemerov@gmail.com',
url... | apache-2.0 | Python |
8988373522907d72c0ee5896c2ffbb573a8500d9 | Bump version. | iloob/python-periods | setup.py | setup.py | # coding=utf-8
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="python-periods",
version="0.2.0",
description="Some convenient classes and methods for working with time periods",
author="Johanna Eriksson",
... | # coding=utf-8
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="python-periods",
version="0.1.5",
description="Some convenient classes and methods for working with time periods",
author="Johanna Eriksson",
... | mit | Python |
1448d8fd33f1f9c36ba0db56c3ae3c2913166634 | add python 3.4 to setup.py classifiers | ImaginaryLandscape/djangocms-blog,jedie/djangocms-blog,DjangoBeer/djangocms-blog,sephii/djangocms-blog,kriwil/djangocms-blog,nephila/djangocms-blog,marty3d/djangocms-blog,skirsdeda/djangocms-blog,ImaginaryLandscape/djangocms-blog,DjangoBeer/djangocms-blog,motleytech/djangocms-blog,britny/djangocms-blog,kriwil/djangocms... | setup.py | setup.py | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import os
import sys
import djangocms_blog
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = djangocms_blog.__version__
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
print("You pro... | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import os
import sys
import djangocms_blog
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = djangocms_blog.__version__
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
print("You pro... | bsd-3-clause | Python |
57f74b5c0c9c25a47e4a3f6309d3e2ab11415b9f | Add pypi keywords | wbond/csrbuilder | setup.py | setup.py | import os
import shutil
from setuptools import setup, find_packages, Command
import csrbuilder
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_... | import os
import shutil
from setuptools import setup, find_packages, Command
import csrbuilder
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 |
a178a8b533f3f0e4da96cfa7de0ce0ea374bc6ce | Fix django classifier version number | LabD/wagtail-personalisation,LabD/wagtail-personalisation,LabD/wagtail-personalisation | setup.py | setup.py | import re
from setuptools import find_packages, setup
install_requires = [
'wagtail>=2.0',
'user-agents>=1.1.0',
'wagtailfontawesome>=1.1.3',
'pycountry',
]
tests_require = [
'factory_boy==2.8.1',
'flake8-blind-except',
'flake8-debugger',
'flake8-imports',
'flake8',
'freezegun=... | import re
from setuptools import find_packages, setup
install_requires = [
'wagtail>=2.0',
'user-agents>=1.1.0',
'wagtailfontawesome>=1.1.3',
'pycountry',
]
tests_require = [
'factory_boy==2.8.1',
'flake8-blind-except',
'flake8-debugger',
'flake8-imports',
'flake8',
'freezegun=... | mit | Python |
ee8355e8c3d06c6add56ce6962d5ccb9432c98c5 | Add missing package name and bump version | housecanary/hc-api-python | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='housecanary',
version='0.5.1',
description='Client Wrapper for the HouseCanary API',
long_description=readme(),
url='http://github.com/housecanary/hc-api-python',
author='Hous... | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='housecanary',
version='0.5',
description='Client Wrapper for the HouseCanary API',
long_description=readme(),
url='http://github.com/housecanary/hc-api-python',
author='HouseC... | mit | Python |
9d3071ec8c1b9dd5e30fbcb090284130f1be4769 | simplify setup.py | yann2192/pyelliptic,thethythy/pyelliptic | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="pyelliptic",
version='1.0',
url='https://github.com/yann2192/pyelliptic',
license='GPL',
description="Python OpenSSL wrapper. For modern cryptography with ECC, AES, HMAC, Blowfish, ...",
author='Yann GUIBET',
author_email='yannguibet@... | import os
import re
import codecs
from setuptools import setup, find_packages
def read(*parts):
return codecs.open(os.path.join(os.path.dirname(__file__), *parts)).read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
... | bsd-2-clause | Python |
aa997a27dd29a5349cf73adce84b5eef8d4abcc7 | modify setup file | kjohnsson/modality,kjohnsson/modality | setup.py | setup.py | import sys
from modality import __version__
from distutils.core import setup
modality_data = ['data/gammaval.pkl']
if 'install' in sys.argv:
try:
from src import write_qDiptab
write_qDiptab.main()
modality_data += ['data/qDiptab.csv']
except Exception as e:
print("Tabulated p-v... | import sys
import src
from distutils.core import setup
modality_data = ['data/gammaval.pkl']
if 'install' in sys.argv:
try:
from src import write_qDiptab
write_qDiptab.main()
modality_data += ['data/qDiptab.csv']
except Exception as e:
print """
Tabulated p-values ... | mit | Python |
274b68528a0805f800b491e470ae267e295705c0 | remove numpy version cap | glennhickey/toil-vg,glennhickey/toil-vg,vgteam/toil-vg,vgteam/toil-vg | setup.py | setup.py | import sys
import os
# We can't import version.py because only one "version" module can ever be
# loaded in a Python process, and multiple setup.py scripts may have to run in
# the same process.
execfile(os.path.join(os.path.dirname(os.path.realpath(__file__)), "version.py"))
from setuptools import find_packages, set... | import sys
import os
# We can't import version.py because only one "version" module can ever be
# loaded in a Python process, and multiple setup.py scripts may have to run in
# the same process.
execfile(os.path.join(os.path.dirname(os.path.realpath(__file__)), "version.py"))
from setuptools import find_packages, set... | apache-2.0 | Python |
1817c8ee4434ce2d6680c1e062a04e23c5f9ac9c | update deps in setup.py | Geosyntec/pygridtools,phobson/pygridtools | setup.py | setup.py | import os
from setuptools import setup, find_packages
def getDataFiles(submodule, folder):
datadir = os.path.join('pygridtools', submodule, folder)
files = [d for d in map(
lambda x: os.path.join(datadir, x),
os.listdir(datadir)
)]
return files
DESCRIPTION = "utilities to facilitate g... | import os
from setuptools import setup, find_packages
def getDataFiles(submodule, folder):
datadir = os.path.join('pygridtools', submodule, folder)
files = [d for d in map(
lambda x: os.path.join(datadir, x),
os.listdir(datadir)
)]
return files
DESCRIPTION = "utilities to facilitate g... | bsd-3-clause | Python |
c219105639921f6d78e56ca0b68dd01a8bd082d4 | replace double quotes with quotes | mylokin/migrate3 | setup.py | setup.py | '''
Language agnostic database migration tool
migrate
=======
A simple language agnostic database migration tool
install
-------
::
$ pip install migrate
usage
-----
::
usage: migrate [options] <command>
See Readme_
.. _Readme: https://github.com/kofrasa/migrate/blob/master/README.md
'''
import migrate... | """
Language agnostic database migration tool
migrate
=======
A simple language agnostic database migration tool
install
-------
::
$ pip install migrate
usage
-----
::
usage: migrate [options] <command>
See Readme_
.. _Readme: https://github.com/kofrasa/migrate/blob/master/README.md
"""
import migrate... | mit | Python |
dbeb6c5a9a211961e2eab71a857b1d6765bea7d9 | remove linger reference the Sheath project | splaice/py-bootstrap,splaice/py-bootstrap | setup.py | setup.py | from distutils.core import setup
setup(
name='bootstrap',
version='0.0.1',
packages=['bootstrap',],
license='GPLv2',
long_description=open('README.txt').read(),
test_suite = "bootstrap.test.test_all"
)
| from distutils.core import setup
setup(
name='Sheath',
version='0.0.1',
packages=['bootstrap',],
license='GPLv2',
long_description=open('README.txt').read(),
test_suite = "bootstrap.test.test_all"
)
| isc | Python |
98c80428b35e2a79b4481c5eb9180613266e9698 | Update `djangorestframework` from 2.4.3 to 2.4.4 | incuna/django-user-management,incuna/django-user-management | setup.py | setup.py | from setuptools import find_packages, setup
version = '6.0.0'
install_requires = (
'djangorestframework>=2.4.4,<3',
'incuna_mail>=2.0.0,<3',
)
extras_require = {
'avatar': [
'django-imagekit>=3.2',
],
'utils': [
'raven>=5.1.1',
],
}
setup(
name='django-user-management',... | from setuptools import find_packages, setup
version = '6.0.0'
install_requires = (
'djangorestframework>=2.4.3,<3',
'incuna_mail>=2.0.0,<3',
)
extras_require = {
'avatar': [
'django-imagekit>=3.2',
],
'utils': [
'raven>=5.1.1',
],
}
setup(
name='django-user-management',... | bsd-2-clause | Python |
16452ef534cb5fb965baff30c0ce726fb7180549 | Update jogovelha.py | kauaramirez/devops-aula05 | Src/jogovelha.py | Src/jogovelha.py | def, inicializar()
tab = [ ]
for i i,n range(3)
linha = [ ]
for j in range(3):
linha,append("X")
tab.append(linha),
return tab
def main( ):
jogo = inicializar ( )
print (jogo)
if_name_=="_main_":
main( )
| def, inicializar(),
tab = [ ]
for,i in range(3),
linha = [ ],
for j in range(3):
linha,append("X")
tab.append(linha,)
return tab
def main( ):
jogo = inicializar ( )
print (jogo)
if_name_=="_main_":
main( )
| apache-2.0 | Python |
a2ce41adb0f614b9a04a1cdccc3b0b913fd13dea | include only highlevel requirements in package | leprikon-cz/leprikon,leprikon-cz/leprikon,leprikon-cz/leprikon,leprikon-cz/leprikon | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from leprikon import __version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.in'))... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from leprikon import __version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')... | bsd-3-clause | Python |
350f3bb3431d451f6bf6f2fac2e696b9122d65a6 | Add missing 'boltons' package & clean up | wcooley/python-gryaml | setup.py | setup.py | #!/usr/bin/env python
"""Setuptools setup."""
from setuptools import setup
readme = open('README.rst').read()
doclink = """
Documentation
-------------
The full documentation is at http://gryaml.rtfd.org."""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='gryaml',
use_scm_ver... | #!/usr/bin/env python
import os
import sys
from setuptools import setup
readme = open('README.rst').read()
doclink = """
Documentation
-------------
The full documentation is at http://gryaml.rtfd.org."""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='gryaml',
use_scm_versi... | mit | Python |
f20ad981e8065f99e385c3196b48a7d1cf0179c3 | Add new files to setup.py. | pyos/dg | setup.py | setup.py | #!/usr/bin/env python3
from distutils.core import setup
setup(
name='dg',
version='HEAD',
description='A programming language for the CPython VM',
author='pyos',
author_email='pyos100500@gmail.com',
url='https://github.com/pyos/dg.git',
packages=['dg'],
package_dir={'dg': '.'},
pack... | #!/usr/bin/env python3
from distutils.core import setup
setup(
name='dg',
version='HEAD',
description='A programming language for the CPython VM',
author='pyos',
author_email='pyos100500@gmail.com',
url='https://github.com/pyos/dg.git',
packages=['dg'],
package_dir={'dg': '.'},
pack... | mit | Python |
b9a1681f018a73b53e99bd58e707f279a3c668d0 | allow disabling of install_requires by environment variables | motmot/wxglvideo,motmot/wxglvideo,motmot/wxglvideo | setup.py | setup.py | from setuptools import setup, find_packages
import os
kws = {}
if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )):
kws['install_requires'] = ['numpy>=1.0.4',
'motmot.imops>=0.5.2.dev',
'pyglet>=1.0',
'wxPython>=2.8',
... | from setuptools import setup, find_packages
setup(name='motmot.wxglvideo',
description='wx/OpenGL viewer of image sequences',
long_description = \
"""Allows for rapid display and resizing/rotation of images by
offloading the image operations to OpenGL.
This is a subpackage of the motmot family of digital ... | bsd-3-clause | Python |
16251e5191ce396342a9d0f1870426dff63dd06c | update setup.py for v0.8.4 tag. | soylentme/shipwire-python | setup.py | setup.py | from distutils.core import setup
setup(
name = 'shipwire',
packages = ['shipwire'], # this must be the same as the name above
version = '0.8.3',
description = 'A Python abstraction layer around the Shipwire API.',
author = 'Neil Durbin, John Coogan',
author_email = 'neildurbin@gmail.com',
url = 'https://g... | from distutils.core import setup
setup(
name = 'shipwire',
packages = ['shipwire'], # this must be the same as the name above
version = '0.8.3',
description = 'A Python abstraction layer around the Shipwire API.',
author = 'Neil Durbin',
author_email = 'neildurbin@gmail.com',
url = 'https://github.com/soy... | mit | Python |
5e6a09829530c8af6f681621f57929a9343f4973 | Add maintainer to `setup.py` | limist/py-moneyed | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# impo... | #!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# impo... | bsd-3-clause | Python |
66b1fdb9106de330112a32b59da6dc891c76717a | Use .partition and variable names rather than indexes into a list. | jaraco/irc | irc/message.py | irc/message.py | from __future__ import print_function
class Tag(object):
"""
An IRC message tag ircv3.net/specs/core/message-tags-3.2.html
"""
@staticmethod
def parse(item):
r"""
>>> Tag.parse('x') == {'key': 'x', 'value': None}
True
>>> Tag.parse('x=yes') == {'key': 'x', 'value': ... | from __future__ import print_function
class Tag(object):
"""
An IRC message tag ircv3.net/specs/core/message-tags-3.2.html
"""
@staticmethod
def parse(item):
r"""
>>> Tag.parse('x') == {'key': 'x', 'value': None}
True
>>> Tag.parse('x=yes') == {'key': 'x', 'value': ... | mit | Python |
59dba35483c651f2708a6724c2730381f25fdb14 | fix setup.py | PyThaiNLP/pythainlp | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
import sys
import codecs
with codecs.open('README.rst','r',encoding='utf-8') as readme_file:
readme = readme_file.read()
requirements = [
'pyicu>=1.9.3',
'nltk>=3.2.2',
'future>=0.16.0',
'nine',
'six',
... | # -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
import codecs
with codecs.open('README.rst','r',encoding='utf-8') as readme_file:
readme = readme_file.read()
requirements = [
'pyicu>=1.9.3',
'nltk>=3.2.2',
'future>=0.16.0',
'nine',
'six',
# TODO:... | apache-2.0 | Python |
439f2009e38d5c31795c9e947e158a2c7553c59b | Bump minimum version of six to 1.13.0 | prkumar/uplink | setup.py | setup.py | # Standard library imports
import os
from setuptools import setup, find_packages
def read(filename):
with open(filename) as stream:
return stream.read()
# Read package metadata from __about__.py, to avoid importing the whole
# package prior to installation.
about = dict()
with open(os.path.join("uplink"... | # Standard library imports
import os
from setuptools import setup, find_packages
def read(filename):
with open(filename) as stream:
return stream.read()
# Read package metadata from __about__.py, to avoid importing the whole
# package prior to installation.
about = dict()
with open(os.path.join("uplink"... | mit | Python |
5bd3d11c1e79f1bcbf40d4838543fed56dddad1f | Bump version to 0.1.2 | osuosl/formsender,osuosl/formsender | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
dependencies = [
'flake8==2.4.1',
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'mock==1.0.1',
'pydns==2.3.6',
'redis==2.10.3',
'validate-email==1.3',
'Werkzeug==0.10.4',
'wheel==0.24.0'
]
setup(
name='formsender',
... | from distutils.core import setup
from setuptools import find_packages
dependencies = [
'flake8==2.4.1',
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'mock==1.0.1',
'pydns==2.3.6',
'redis==2.10.3',
'validate-email==1.3',
'Werkzeug==0.10.4',
'wheel==0.24.0'
]
setup(
name='formsender',
... | apache-2.0 | Python |
edef7290f802cacf3d729d80a9462e6a175b9269 | Bump version number | trilan/lemon-publications,trilan/lemon-publications | setup.py | setup.py | import codecs
import os
from setuptools import setup, find_packages
def read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
return codecs.open(filepath, encoding='utf-8').read()
setup(
name='lemon-publications',
version='0.1',
license='ISC',
description='Utils to cre... | import codecs
import os
from setuptools import setup, find_packages
def read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
return codecs.open(filepath, encoding='utf-8').read()
setup(
name='lemon-publications',
version='0.1.dev',
license='ISC',
description='Utils to... | isc | Python |
72ed0accdf752539c2b0b48ffe01d2a843827831 | bump version to 1.1.0 | lead-ratings/django-bulk-update,torchingloom/django-bulk-update,aykut/django-bulk-update,HowGood/django-bulk-update | setup.py | setup.py | import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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-bulk-update',
version='1.1.0',
packa... | import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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-bulk-update',
version='1.0.5',
packa... | mit | Python |
6a214634545cfe5721550dfa90bb617a2ba95f00 | revert preventing normalization (#69) | googleapis/python-access-approval,googleapis/python-access-approval | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# Copyright 2020 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | # -*- coding: utf-8 -*-
#
# Copyright 2020 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | apache-2.0 | Python |
48118cd46624017ca2510d81e7e54e463acbb367 | Use find_packages | laughingman7743/BigQuery-DatasetManager | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import codecs
from setuptools import setup, find_packages
import bqdm
with codecs.open('README.rst', 'rb', 'utf-8') as readme:
long_description = readme.read()
setup(
name='BigQuery-DatasetManager',
version=bqdm.__ver... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import codecs
from setuptools import setup
import bqdm
with codecs.open('README.rst', 'rb', 'utf-8') as readme:
long_description = readme.read()
setup(
name='BigQuery-DatasetManager',
version=bqdm.__version__,
des... | mit | Python |
8f07d6b9287f889cc301be560dc6d40e011462da | add requires libs | leeyingmu/melee | setup.py | setup.py | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
__version__ = '1.0.0.gm'
install_requires = [
'Flask',
'pycrypto',
'pyyaml',
'simplejson',
'gevent',
'requests',
'iso8601',
'blinker',
'SQLAlchemy',
'mysql-python',
'redis'
]
if sys.vers... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
__version__ = '1.0.0.gm'
install_requires = [
'Flask',
'pycrypto',
'pyyaml',
'simplejson',
'gevent',
'requests',
'iso8601',
'blinker',
'SQLAlchemy',
'mysql-python'
]
if sys.version_info < (2, ... | bsd-3-clause | Python |
2273f7b358ee1af873a07284a0dccd5e7d003ff0 | Bump version to 0.1.0 | Glamping-Hub/django-painless-seo,Glamping-Hub/django-painless-seo | setup.py | setup.py | # Copyright (C) 2014 Glamping Hub (https://glampinghub.com)
# License: BSD 3-Clause
import fnmatch
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
def recursive_include(directory, patterns):
result = []
for ro... | # Copyright (C) 2014 Glamping Hub (https://glampinghub.com)
# License: BSD 3-Clause
import fnmatch
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
def recursive_include(directory, patterns):
result = []
for ro... | bsd-3-clause | Python |
c04f6069616d8470e922a9b8af5a12e6257acceb | clean up setup | lcdb/lcdblib,lcdb/lcdblib | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
# TODO: put package requirements here
]
test_requiremen... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
# TODO: put package requirements here
]
test_requiremen... | mit | Python |
10c12e21d1a1b7e0382ef9e6f5298b1bb4372791 | Fix package dependencies | Rayman/ros-get,Rayman/ros-get | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='ros_get',
package_dir={'': 'src'}, # tell distutils packages are under src
packages=find_packages('src'), # include all packages under src
install_requires=[
'argcomplete',
'catkin_pkg',
'catkin_too... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='ros_get',
package_dir={'': 'src'}, # tell distutils packages are under src
packages=find_packages('src'), # include all packages under src
install_requires=[
'argcomplete',
'catkin_tools',
'colorlog... | mit | Python |
98c8f10b2e7778c8aa9e9164bfd3e5b18679c7b4 | Bump version: 0.0.3 → 0.0.4 | gdvalle/trafficserver_exporter | setup.py | setup.py | """
trafficserver_exporter
----------------------
An Apache Traffic Server metrics exporter for Prometheus. Uses the
stats_over_http plugin to translate JSON data into Prometheus format.
"""
from setuptools import setup
setup(
name='trafficserver_exporter',
version='0.0.4',
author='Greg Dallavalle',
... | """
trafficserver_exporter
----------------------
An Apache Traffic Server metrics exporter for Prometheus. Uses the
stats_over_http plugin to translate JSON data into Prometheus format.
"""
from setuptools import setup
setup(
name='trafficserver_exporter',
version='0.0.3',
author='Greg Dallavalle',
... | apache-2.0 | Python |
ef313e770c4aa4201f6478c150e6236a127d7a57 | Reformat setup.py | JIC-CSB/dtoolcore | setup.py | setup.py | from setuptools import setup
version = "2.0.0"
url = "https://github.com/JIC-CSB/dtoolcore"
readme = open('README.rst').read()
setup(
name="dtoolcore",
packages=["dtoolcore"],
version=version,
description="Core API for managing (scientific) data",
long_description=readme,
include_package_data... | from setuptools import setup
version = "2.0.0"
url = "https://github.com/JIC-CSB/dtoolcore"
readme = open('README.rst').read()
setup(name="dtoolcore",
packages=["dtoolcore"],
version=version,
description="Core API for managing (scientific) data",
long_description=readme,
include_package... | mit | Python |
7381c29741cd3a4adf46d2ad03299acaf3777f94 | Bump Python package version to 3.3.2 | InsightSoftwareConsortium/ITKTextureFeatures,InsightSoftwareConsortium/ITKTextureFeatures | setup.py | setup.py | from __future__ import print_function
from os import sys, path
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
... | from __future__ import print_function
from os import sys, path
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
... | apache-2.0 | Python |
4a85ac67d88b7e7830b40efa30c43e82d69848c0 | Fix setup.py test_suite | r3code/py-jsonrpc-lite | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
from pyjsonrpclite import version
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ""
setup(
name="py-jsonrpc-lite",
version=version,
packag... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
from pyjsonrpclite import version
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ""
setup(
name="py-jsonrpc-lite",
version=version,
packag... | mit | Python |
672d6cb517198bc37c4126c997ba984901a14b55 | Use io.open with encoding='utf-8' and flake8 compliance | morepath/more.jinja2 | 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.jinja2',
version='0.3.dev0',
description="Jinja2 template integration for Morepath",
long_d... | import os, io
from setuptools import setup, find_packages
long_description = (
io.open('README.rst', encoding='utf-8').read()
+ '\n' +
io.open('CHANGES.txt', encoding='utf-8').read())
setup(name='more.jinja2',
version='0.3.dev0',
description="Jinja2 template integration for Morepath",
lo... | bsd-3-clause | Python |
e83791b2c8ac2da770aa726f070b016f6c0e0b46 | Bump version to account for protobuf file change | bmhatfield/bernhard,ClodoCorp/bernhard,banjiewen/bernhard,cranti/bernhard | setup.py | setup.py | # -*- coding: utf-8 -
import os
import sys
from setuptools import setup
setup(
name = 'bernhard',
version = '0.0.4',
description = 'Python client for Riemann',
long_description = file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
au... | # -*- coding: utf-8 -
import os
import sys
from setuptools import setup
setup(
name = 'bernhard',
version = '0.0.3',
description = 'Python client for Riemann',
long_description = file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
au... | apache-2.0 | Python |
21a38c6ef5e498c69a295f992e817ecc8ec317e6 | Update noise.py | zsdonghao/tensorlayer,zsdonghao/tensorlayer | tensorlayer/layers/noise.py | tensorlayer/layers/noise.py | #! /usr/bin/python
# -*- coding: utf-8 -*-
import tensorflow as tf
import tensorlayer as tl
from tensorlayer import logging
from tensorlayer.decorators import deprecated_alias
from tensorlayer.layers.core import Layer
__all__ = [
'GaussianNoise',
]
class GaussianNoise(Layer):
"""
The :class:`GaussianNoi... | #! /usr/bin/python
# -*- coding: utf-8 -*-
import tensorflow as tf
import tensorlayer as tl
from tensorlayer import logging
from tensorlayer.decorators import deprecated_alias
from tensorlayer.layers.core import Layer
__all__ = [
'GaussianNoise',
]
class GaussianNoise(Layer):
"""
The :class:`GaussianNoi... | apache-2.0 | Python |
2d2d24ce2246f0c305182adf7e2df3553ee35e97 | include shell scripts in sdist | objectified/vdist,objectified/vdist | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='vdist',
version='0.1',
description='Create OS packages from Python projects using Docker containers',
long_description='Create OS packages from Python projects using Docker containers',
author='L. Brouwer',
author_email='objectified@gmail... | from setuptools import setup, find_packages
setup(
name='vdist',
version='0.1',
description='Create OS packages from Python projects using Docker containers',
long_description='Create OS packages from Python projects using Docker containers',
author='L. Brouwer',
author_email='objectified@gmail... | mit | Python |
39bdcfdfc0fc6fb9d44aca914d8febcb1ca8fe60 | Fix dependencies on pypy. (#137) | Ecpy/ecpy,Ecpy/ecpy | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os.path
import sys
sys.path.insert(0, os.path.abspath('.'))
from exopy.version import __version__
def long_description():
"""Read the project description from the README file.
"""
with open(os.path.join(os... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os.path
import sys
sys.path.insert(0, os.path.abspath('.'))
from exopy.version import __version__
def long_description():
"""Read the project description from the README file.
"""
with open(os.path.join(os... | bsd-3-clause | Python |
3c6de297b06f5ceebf760644810689e8dab910ed | bump version to 2.0.0 to avoid environment modules default bug | rjeschmi/vsc-base,rjeschmi/vsc-base | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: latin-1 -*-
#
# Copyright 2009-2014 Ghent University
#
# This file is part of vsc-base,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://vscen... | #!/usr/bin/env python
# -*- coding: latin-1 -*-
#
# Copyright 2009-2014 Ghent University
#
# This file is part of vsc-base,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://vscen... | lgpl-2.1 | Python |
e6b9e9dbd3a04374ce80334a1ac09d14931f009b | bump version | hopshadoop/hops-util-py,hopshadoop/hops-util-py | setup.py | setup.py | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hops',
version='1.3.6',
author='Robin Andersson',
author_email='robin.eric.andersson@gmail.com',
description='A helper library for Hops that facilitates deve... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hops',
version='1.3.5',
author='Robin Andersson',
author_email='robin.eric.andersson@gmail.com',
description='A helper library for Hops that facilitates deve... | apache-2.0 | Python |
d794f5bc74dd59f7cd6c009a1479102b64b57646 | Add pycodestyle to setup.py | pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Scoring Engine for Red/White/Blue Team Competitions',
'author': ['Brandon Myers', 'Rusty Bower'],
'url': 'https://github.com/pwnbus/scoring_engine',
'download_url': 'https://github.... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Scoring Engine for Red/White/Blue Team Competitions',
'author': ['Brandon Myers', 'Rusty Bower'],
'url': 'https://github.com/pwnbus/scoring_engine',
'download_url': 'https://github.... | mit | Python |
7d475a44f2584396890360d1545abfa585dfdda8 | Simplify description and MANIFEST.in suits me fine. | jbronn/django-forge,jbronn/django-forge,ocadotechnology/django-forge,ocadotechnology/django-forge | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='django-forge',
version=__import__('forge').__version__,
author='Justin Bronn',
author_email='jbronn@gmail.com',
description='A Django implementation of the Puppet Forge API.',
url='https://github.com/jbronn/django-forge',
down... | from setuptools import setup, find_packages
setup(name='django-forge',
version=__import__('forge').__version__,
author='Justin Bronn',
author_email='jbronn@gmail.com',
description='A Django implementation of the Puppet Forge web API.',
url='https://github.com/jbronn/django-forge',
... | apache-2.0 | Python |
16a3ed9e2e5cd14a3d139bd43fcfb4bedb8a97d5 | Bump version number. | mindw/grin,cpcloud/grin,while0pass/grin,lecheel/grin,LuizCentenaro/grin | setup.py | setup.py | import os
from setuptools import setup
kwds = {}
# Read the long description from the README.txt
thisdir = os.path.abspath(os.path.dirname(__file__))
f = open(os.path.join(thisdir, 'README.txt'))
kwds['long_description'] = f.read()
f.close()
setup(
name = 'grin',
version = '1.1',
author = 'Robert Kern',... | import os
from setuptools import setup
kwds = {}
# Read the long description from the README.txt
thisdir = os.path.abspath(os.path.dirname(__file__))
f = open(os.path.join(thisdir, 'README.txt'))
kwds['long_description'] = f.read()
f.close()
setup(
name = 'grin',
version = '1.0',
author = 'Robert Kern',... | bsd-3-clause | Python |
793e9e728970f374efc2d3008c2e70db88b89b07 | remove import from setup.py | TimothyHelton/strumenti | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from codecs import open
import os.path as osp
import re
from setuptools import setup, find_packages
with open('strumenti/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from codecs import open
import os.path as osp
import re
from setuptools import setup, find_packages
import strumenti
with open('strumenti/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re... | bsd-3-clause | Python |
c7e788e843f415b64ba8ae756af2db3f0fde300a | Patch version checking | choderalab/yank,choderalab/yank | Yank/__init__.py | Yank/__init__.py | #!/usr/local/bin/env python
"""
YANK
"""
# Define global version.
try:
from . import version # Needed for yank 3.X.
__version__ = version.version
except ImportError:
__version__ = "0.0.0dev"
# Self module imports
from . import utils
from . import restraints
from . import pipeline
from . import experime... | #!/usr/local/bin/env python
"""
YANK
"""
# Define global version.
from . import version # Needed for yank 3.X.
# Self module imports
from . import utils
from . import restraints
from . import pipeline
from . import experiment
from .yank import Topography, AlchemicalPhase
__version__ = version.version
| mit | Python |
cafb76d131a9c1de4238a6df6b5ae0551065662e | fix typo in setup.py, thanks to Christoph Deil | nhmc/Barak | setup.py | setup.py |
from distutils.core import setup
from glob import glob
import os, sys
import warnings
# To create a distribution, use
#
# python setup.py sdist
#
# Register on PyPI
#
# python setup.py register
#
# Upload the distribution to PyPI
#
# python setup.py register sdist upload
def get_data_names(root):
"""... |
from distutils.core import setup
from glob import glob
import os, sys
import warnings
# To create a distribution, use
#
# python setup.py sdist
#
# Register on PyPI
#
# python setup.py register
#
# Upload the distribution to PyPI
#
# python setup.py register sdist upload
def get_data_names(root):
"""... | bsd-3-clause | Python |
d02b88f681b5d467219b56e14b1e2ecc78e49177 | Bump to version 3.0.5-01 | ryankanno/cookiecutter-django,pydanny/cookiecutter-django,trungdong/cookiecutter-django,ryankanno/cookiecutter-django,luzfcb/cookiecutter-django,luzfcb/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,trungdong/cookiecutter-django,pydanny/cookiecutter-django,trungdong/cookiecutter-django,rya... | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.5-01"
if sys.a... | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.5"
if sys.argv... | bsd-3-clause | Python |
f3325ebb237f6a169d5b41ef0866e95f9a0b4028 | Bump version number | gears/gears-less,gears/gears-less | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='gears-less',
version='0.3.1',
url='https://github.com/gears/gears-less',
license='ISC',
author='Mike Yumatov',
author_email='mike@y... | import os
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='gears-less',
version='0.3',
url='https://github.com/gears/gears-less',
license='ISC',
author='Mike Yumatov',
author_email='mike@yum... | isc | Python |
2a79ce7a32b6f6510561415c33c8f8047cef60c8 | update classifiers in setup | karec/oct,TheGhouls/oct,TheGhouls/oct,TheGhouls/oct,karec/oct | setup.py | setup.py | __author__ = 'manu'
import os
from setuptools import setup, find_packages
from oct import __version__
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
setup(
name='oct',
version=__version__,
author='Emmanuel Valette',
author_email='manu.valette@gmail.com',
packages=['oct', 'oct.core', 'oct.m... | __author__ = 'manu'
import os
from setuptools import setup, find_packages
from oct import __version__
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
setup(
name='oct',
version=__version__,
author='Emmanuel Valette',
author_email='manu.valette@gmail.com',
packages=['oct', 'oct.core', 'oct.m... | mit | Python |
c772bad4533afeec3aeb7d51f2ad5c3663c33ba2 | Bump version | maykinmedia/django-timeline-logger,maykinmedia/django-timeline-logger | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-timeline-logger',
version='0.4',
description='Generic event logger for Django models.',
author='Maykin Media',
author_email='support@maykinmedia.nl',
url='https://github.com/maykinmedia/django-timeline-logge... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-timeline-logger',
version='0.3.1',
description='Generic event logger for Django models.',
author='Maykin Media',
author_email='support@maykinmedia.nl',
url='https://github.com/maykinmedia/django-timeline-log... | mit | Python |
09b7bd11eb8d746c0ec4641aaa1d42358a1dd468 | Update setup.py | jakirkham/primesieve-python,hickford/primesieve-python,anirudhjayaraman/primesieve-python | setup.py | setup.py | from setuptools import setup, Extension
from glob import glob
library = ('primesieve', dict(
sources=glob("lib/primesieve/src/primesieve/*.cpp"),
include_dirs=["lib/primesieve/include"],
language="c++",
))
if glob("primesieve/*.pyx"):
from Cython.Build import cythonize
else:
# fallback to comp... | from setuptools import setup, Extension
from glob import glob
library = ('primesieve', dict(
sources=glob("lib/primesieve/src/primesieve/*.cpp"),
include_dirs=["lib/primesieve/include"],
language="c++",
))
if glob("primesieve/*.pyx"):
from Cython.Build import cythonize
else:
# fallback to comp... | mit | Python |
fc30c5764280a171f09cdea5b4573a8809588fbf | Fix download_url in setup() | TangledWeb/tangled.session | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.session',
version='0.1a3.dev0',
description='Tangled session integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.session/tags',
author='Wyatt Bald... | from setuptools import setup
setup(
name='tangled.session',
version='0.1a3.dev0',
description='Tangled session integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.session',
author='Wyatt Baldwin',... | mit | Python |
a522c3cbc0c155ad7e2d3b0dcd1c74166bc96808 | bump version | silenius/amnesia,silenius/amnesia,silenius/amnesia | setup.py | setup.py | __version__ = '0.1.12.dev8'
import os
from setuptools import find_packages
from setuptools import setup
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()
install_require... | __version__ = '0.1.12.dev7'
import os
from setuptools import find_packages
from setuptools import setup
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()
install_require... | bsd-2-clause | Python |
6547b8cd81c09783f628ce540ea36ec0dcc4a0d2 | increment version | sk2/autonetkit | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
#from setuptools import setup, find_packages
setup (
name = "autonetkit",
version = "0.2.17",
description = 'Automatic configuration generation for emulated networks',
long_description = 'Automatic configuration generation for emulated networks',
... | #!/usr/bin/env python
from setuptools import setup
#from setuptools import setup, find_packages
setup (
name = "autonetkit",
version = "0.2.12",
description = 'Automatic configuration generation for emulated networks',
long_description = 'Automatic configuration generation for emulated networks',
... | bsd-3-clause | Python |
4ba6fb9f4f0142960f52412f0b333f8163fc2155 | Bump to 0.0.6 | plumdog/django_migration_testcase,percipient/django_migration_testcase,percipient/django_migration_testcase,plumdog/django_migration_test,plumdog/django_migration_test,plumdog/django_migration_testcase | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name='django-migration-testcase',
version='0.0.6',
author='Andrew Plummer',
author_email='plummer574@gmail.com',
url='https://github.com/plumdog/django_migration_testcase',
packages=find_packages(),
install_requires=['Django>=1.4'])
| from setuptools import find_packages, setup
setup(
name='django-migration-testcase',
version='0.0.5',
author='Andrew Plummer',
author_email='plummer574@gmail.com',
url='https://github.com/plumdog/django_migration_testcase',
packages=find_packages(),
install_requires=['Django>=1.4'])
| mit | Python |
a735021adac432a3040e5f80046d9a71c574e137 | Fix version pinning | thelabnyc/django-oscar-wfrs,thelabnyc/django-oscar-wfrs | setup.py | setup.py | #!/usr/bin/env python
import codecs
import os.path
from setuptools import setup
from versiontag import get_version, cache_git_tag
packages = [
'wellsfargo',
'wellsfargo.api',
'wellsfargo.connector',
'wellsfargo.core',
'wellsfargo.dashboard',
'wellsfargo.management',
'wellsfargo.management.... | #!/usr/bin/env python
import codecs
import os.path
from setuptools import setup
from versiontag import get_version, cache_git_tag
packages = [
'wellsfargo',
'wellsfargo.api',
'wellsfargo.connector',
'wellsfargo.core',
'wellsfargo.dashboard',
'wellsfargo.management',
'wellsfargo.management.... | isc | Python |
7aa57fa51d1d673c792811c19057f2bc338e2530 | Fix in setup.py | machinalis/django-template-previewer,machinalis/django-template-previewer | setup.py | setup.py | from distutils.core import setup
with open('README.md') as readme:
__doc__ = readme.read()
setup(
name='django-template-previewer',
version='0.1',
description=u'A Django app to allow developers preview templates',
long_description=__doc__,
author=u'Daniel F. Moisset',
author_email='dmoisse... | from distutils.core import setup
with open('README.md') as readme:
__doc__ = readme.read()
setup(
name='django-template-previewer',
version='0.1',
py_modules=['template_previewer'],
description=u'A Django app to allow developers preview templates',
long_description=__doc__,
author=u'Daniel... | bsd-3-clause | Python |
5bdb36da6f5ede72efa04e47e97f063582a748cb | change information submitted to pypi | trichter/rf | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
import os.path
with open(os.path.join('rf', '_version.py')) as f:
VERSION = f.read().split('=')[1].strip().strip("'")
with open('README.rst') as f:
README = f.read()
if not 'dev' in VERSION: # get image for correct version from travis-ci
RE... | #!/usr/bin/env python
from setuptools import find_packages, setup
import os.path
with open(os.path.join('rf', '_version.py')) as f:
VERSION = f.read().split('=')[1].strip().strip("'")
with open('README.rst') as f:
README = f.read()
if not 'dev' in VERSION: # get image for correct version from travis-ci
RE... | mit | Python |
2b9875d8836a9acb7fa1779c58ae15d598bc4b80 | Remove install_requires for now | gmjosack/clowncar,gmjosack/clowncar | setup.py | setup.py | #!/usr/bin/env python
import setuptools
from distutils.core import setup
execfile('clowncar/version.py')
kwargs = {
"name": "clowncar",
"version": str(__version__),
"packages": ["clowncar"],
"description": "Store and retrieve TOTP secrets/tokens.",
# PyPi, despite not parsing markdown, will prefe... | #!/usr/bin/env python
import setuptools
from distutils.core import setup
execfile('clowncar/version.py')
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
kwargs = {
"name": "clowncar",
"version": str(__version__),
"packages": ["clowncar"],
"description":... | mit | Python |
088a55d47232fe0e75b67cb8272e1942a8da54b1 | Fix version path | sunshinekitty/rack-ddnsm | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
rack-ddnsm
~~~~~
Dynamic DNS metadata for Rackspace Cloud DNS,
manages TXT records containing metadata in the format of title,desc,data.
:copyright: (c) 2015 by Alex Edwards.
:license: MIT, see LICENSE for more details.
:repo: <https://gi... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
rack-ddnsm
~~~~~
Dynamic DNS metadata for Rackspace Cloud DNS,
manages TXT records containing metadata in the format of title,desc,data.
:copyright: (c) 2015 by Alex Edwards.
:license: MIT, see LICENSE for more details.
:repo: <https://gi... | mit | Python |
8431338b1a692aa321e06caf0d7e898c7f66dae2 | Change version to 0.0.2 | xrloong/Xie | setup.py | setup.py | #!/usr/bin/env python3
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
#with open(path.join(here, 'README.rst'),... | #!/usr/bin/env python3
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
#with open(path.join(here, 'README.rst'),... | apache-2.0 | Python |
64ed2ec9e09c62237e51c36fff8e04212d4ce81c | Remove unused setup import | ludwigschwardt/scikits.fitting | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import dist, find_packages
# Ensure we have numpy before we start as it is needed before we call setup()
# If not installed system-wide it will be downloaded into the local .eggs dir
dist.Distribution(dict(setup_requires='numpy'))
from numpy.distutils.core import setu... | #!/usr/bin/env python
import os
from setuptools import dist, setup, find_packages
# Ensure we have numpy before we start as it is needed before we call setup()
# If not installed system-wide it will be downloaded into the local .eggs dir
dist.Distribution(dict(setup_requires='numpy'))
from numpy.distutils.core impo... | bsd-3-clause | Python |
7cb1d3569fbd92b5697bc10e8a5bd95049679ccc | fix #7: removed 'distribute' dependency | ovh/djehouty,cdumay/djehouty | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013-2016, OVH SAS.
# 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 copy... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013-2016, OVH SAS.
# 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 copy... | bsd-3-clause | Python |
64fd9720d1f14b7f7b3ce35da323aec2093b7687 | update scout version - add HPO features! 🌟 | Clinical-Genomics/scout,Clinical-Genomics/scout,Clinical-Genomics/scout | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def parse_reqs(req_path='./requirements.txt'):
"""Recursively parse requirements from nested pip files."""
install_requires = []
with codecs.open(req_path, 'r') as handle:
# remove comments and empty lines
li... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def parse_reqs(req_path='./requirements.txt'):
"""Recursively parse requirements from nested pip files."""
install_requires = []
with codecs.open(req_path, 'r') as handle:
# remove comments and empty lines
li... | bsd-3-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.