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 |
|---|---|---|---|---|---|---|---|---|
b116f68e2ecd27875e3421cfb45a53f25f9ea2b9 | Add recipe to conda-forge | Omkar20895/podaacpy,nasa/podaacpy,lewismc/podaacpy | setup.py | setup.py | # Copyright 2016 California Institute of Technology.
#
# 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 ... | # Copyright 2016 California Institute of Technology.
#
# 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 ... | apache-2.0 | Python |
4db116dde5308750133dfd04aa8c02bb0c57f7c2 | Format code | sfischer13/python-arpa,sfischer13/python-arpa | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
setup(
author='Stefan Fischer',
author_email=... | #!/usr/bin/env python
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
requirements = []
setup(
author='Ste... | mit | Python |
e6b5f7fad49d61d27636202b9a5bc33da8ff6968 | Update url in setup to push on pypi | twidi/pytimeago | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
VERSION = '1.0.2'
DESCRIPTION = "Human-oriented representation of time deltas, a Python library"
LONG_DESCRIPTION = """
Convert time deltas into phrases like "5min ago",
"3h ago", "2 days ago" etc.
Base work from Adomas Paltanavicius, but with two added versions... | #!/usr/bin/env python
from distutils.core import setup
VERSION = '1.0.2'
DESCRIPTION = "Human-oriented representation of time deltas, a Python library"
LONG_DESCRIPTION = """
Convert time deltas into phrases like "5min ago",
"3h ago", "2 days ago" etc.
This package has a number of modules in it, each for separate
la... | lgpl-2.1 | Python |
c65210a6fa4afa8ef02cb1eb038c7e3682bbb8cd | Fix version string. | livepy/flask-bootstrap,victorbjorklund/flask-bootstrap,dingocuster/flask-bootstrap,moha24/flask-bootstrap,Coxious/flask-bootstrap,eshijia/flask-bootstrap,BeardedSteve/flask-bootstrap,vishnugonela/flask-bootstrap,JingZhou0404/flask-bootstrap,dingocuster/flask-bootstrap,ser/flask-bootstrap,suvorom/flask-bootstrap,moha24/... | 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='Flask-Bootstrap',
version='3.3.2.1.dev1',
url='http://github.com/mbr/flask-bootstrap',
license='BSD',
author='Marc Brinkmann',
author_email='git@marcbr... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Flask-Bootstrap',
version='3.3.2.0.dev1',
url='http://github.com/mbr/flask-bootstrap',
license='BSD',
author='Marc Brinkmann',
author_email='git@marcbr... | apache-2.0 | Python |
142b9c7f3385a1bbb0a087712cd7aa826e2873ae | Remove databridge requires | gorserg/openprocurement.tender.competitivedialogue,openprocurement/openprocurement.tender.competitivedialogue | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '1.0.13'
requires = [
'setuptools'
]
api_requires = requires + [
'openprocurement.api>=2.3',
'openprocurement.tender.openua',
'openprocurement.tender.openeu'
]
test_requires = api_requires + requires + [
'webtest',
'python-cover... | from setuptools import setup, find_packages
import os
version = '1.0.13'
requires = [
'setuptools'
]
api_requires = requires + [
'openprocurement.api>=2.3',
'openprocurement.tender.openua',
'openprocurement.tender.openeu'
]
test_requires = api_requires + requires + [
'webtest',
'python-cover... | apache-2.0 | Python |
2a5bdf05bbf4833275dfcd3af423b7a65086298a | Fix setup data for pypi | hedin/vyatta-conf-parser | setup.py | setup.py | # coding:utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import vyattaconfparser
setup(
name='VyattaConfParser',
version=vyattaconfparser.__version__,
packages=['vyattaconfparser'],
url='https://github.com/hedin/vyatta-conf-parser',
author=vyatt... | # coding:utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import vyattaconfparser
setup(
name='Vyatta Config Parser',
version=vyattaconfparser.__version__,
packages=['vyattaconfparser'],
url='https://github.com/hedin/vyatta-conf-parser',
author=v... | mit | Python |
47e1c6f934e05f08ce79c7e428dff35ccdc0bf3d | update parse_requirements to include session | nimbis/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
from uuid import uuid1
# parse requirements
reqs = parse_requirements("requirements/common.txt", session=uuid1())
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.9',
descripti... | #!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
# parse requirements
reqs = parse_requirements("requirements/common.txt")
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.8',
description='django-cms plugin for cmsplugin-forms... | bsd-3-clause | Python |
f36db59a863c3208955a3f64ccd2c98d8a450f9b | Upgrade all dependencies to latest version. | cbrichford/docker-ipsec | setup.py | setup.py | from setuptools import setup
setup(
name='docker-ipsec',
version='3.0.0',
description='Scripts to start/stop ipsec VPN tunnels while adding/removing iptables rules for docker networking.',
author='Christopher Brichford',
author_email='chrisb@farmersbusinessnetwork.com',
license='Apache License ... | from setuptools import setup
setup(
name='docker-ipsec',
version='2.0.3',
description='Scripts to start/stop ipsec VPN tunnels while adding/removing iptables rules for docker networking.',
author='Christopher Brichford',
author_email='chrisb@farmersbusinessnetwork.com',
license='Apache License ... | apache-2.0 | Python |
a118e9a76d608e851b421a0217aedeeeb75c1a4f | edit description of setup.py | pgk/genignore | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "genignore",
version = "0.2.2",
url="https://pypi.python.org/pypi/genignore",
packages = find_packages(),
author="Panos Kountanis",
author_email="panosktn@gmail.com",
description="Generate gitignore files based on templates provided ... | from setuptools import setup, find_packages
setup(
name = "genignore",
version = "0.2.1",
url="https://pypi.python.org/pypi/genignore",
packages = find_packages(),
author="Panos Kountanis",
author_email="panosktn@gmail.com",
short_description="Generate gitignore files based on templates pro... | mit | Python |
31d013c8b59181f362780815ccb0bfe95c12f43e | remove EOL python | zach-taylor/splunk_handler | setup.py | setup.py | from setuptools import setup
setup(
name='splunk_handler',
version='3.0.0',
license='MIT License',
description='A Python logging handler that sends your logs to Splunk',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Zach Taylor',
autho... | from setuptools import setup
setup(
name='splunk_handler',
version='2.2.3',
license='MIT License',
description='A Python logging handler that sends your logs to Splunk',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Zach Taylor',
autho... | mit | Python |
fd59b2cc1ed55aa34251babb24b070b771303afa | change package name to contrail_heat | safchain/contrail-heat | setup.py | setup.py | #
# Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.
#
from setuptools import setup, find_packages
def requirements(filename):
with open(filename) as f:
lines = f.read().splitlines()
return lines
setup(
name='contrail_heat',
version='0.1dev',
packages=find_packages(),
pa... | #
# Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.
#
from setuptools import setup, find_packages
def requirements(filename):
with open(filename) as f:
lines = f.read().splitlines()
return lines
setup(
name='heat_contrail',
version='0.1dev',
packages=find_packages(),
pa... | apache-2.0 | Python |
b93275a2663400972e6e3b7d7a19298bf9082199 | Correct author_email | PyconUK/ConferenceScheduler | setup.py | setup.py | from setuptools import setup
setup(
name='ConferenceScheduler',
version='1.0.0',
packages=[
'conference_scheduler',
],
url='https://github.com/PyconUK/ConferenceScheduler',
license='MIT',
author='Owen Campbell, Vince Knight',
author_email='owen.campbell@tanti.org.uk',
descri... | from setuptools import setup
setup(
name='ConferenceScheduler',
version='1.0.0',
packages=[
'conference_scheduler',
],
url='https://github.com/PyconUK/ConferenceScheduler',
license='MIT',
author='Owen Campbell, Vince Knight',
author_email='Owen Campbell <owen.campbell@tanti.org.... | mit | Python |
0330c9c740906a25535424fd7c5e2900b31288b2 | Add colander as a dependency | cdunklau/alexandria,bertjwregeer/alexandria,cdunklau/alexandria,cdunklau/alexandria,bertjwregeer/alexandria | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README')).read()
CHANGES = open(os.path.join(here, 'CHANGES')).read()
requires = [
'pyramid',
'SQLAlchemy',
'psycopg2',
'transaction',
'pyr... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README')).read()
CHANGES = open(os.path.join(here, 'CHANGES')).read()
requires = [
'pyramid',
'SQLAlchemy',
'psycopg2',
'transaction',
'pyr... | isc | Python |
e117999b1fd0491afceb6b37d29c14cdab2708ac | Update version and fix spelling mistake. | hzdg/django-galleries,hzdg/django-galleries,hzdg/django-galleries | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.markdown')
setup(
name='django-galleries',
version='1.0.3',
description='Simple Django galleries.',
long_description=README,
autho... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.markdown')
setup(
name='django-galleries',
version='1.0.2',
description='Simple Djagno galleries.',
long_description=README,
auth... | mit | Python |
33eac9d11730e4733b5c27ae5a50d59d8d630819 | Clean up setup.py. Don't try to read README.md, it makes things more complicated than necessary. | DingaGa/django-prometheus,wangwanzhong/django-prometheus,wangwanzhong/django-prometheus,obytes/django-prometheus,korfuri/django-prometheus,obytes/django-prometheus,DingaGa/django-prometheus,korfuri/django-prometheus | setup.py | setup.py | import os
from setuptools import setup
setup(
name="django-prometheus",
version="0.0.2",
author="Uriel Corfa",
author_email="uriel@corfa.fr",
description=(
"Django middlewares to monitor your application with Prometheus.io."),
license="Apache",
keywords="django monitoring prometheus... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-prometheus",
version="0.0.1",
author="Uriel Corfa",
author_email="uriel@corfa.fr",
description=(
"Django middlewares to monitor your applicati... | apache-2.0 | Python |
8858fb49db4b4974fdae9349779d0d1fb5c4914f | Update setup.py | squeaky-pl/japronto,squeaky-pl/japronto,squeaky-pl/japronto,squeaky-pl/japronto,squeaky-pl/japronto | setup.py | setup.py | """
Japronto
"""
import codecs
import os
import re
from setuptools import setup, find_packages
import build
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'src', 'japronto', '__init__.py'), 'r', 'latin1') as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'\r?$... | """
Japronto
"""
import codecs
import os
import re
from setuptools import setup, find_packages
import build
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'src', 'japronto', '__init__.py'), 'r', 'latin1') as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'\r?$... | mit | Python |
34fd79774bbd06e6b14c46f43aa679cd5ef12fd7 | Add pandas as a dependency | European-XFEL/h5tools-py | setup.py | setup.py | #!/usr/bin/env python
import os.path as osp
import re
from setuptools import setup, find_packages
import sys
def get_script_path():
return osp.dirname(osp.realpath(sys.argv[0]))
def read(*parts):
return open(osp.join(get_script_path(), *parts)).read()
def find_version(*parts):
vers_file = read(*parts)... | #!/usr/bin/env python
import os.path as osp
import re
from setuptools import setup, find_packages
import sys
def get_script_path():
return osp.dirname(osp.realpath(sys.argv[0]))
def read(*parts):
return open(osp.join(get_script_path(), *parts)).read()
def find_version(*parts):
vers_file = read(*parts)... | bsd-3-clause | Python |
ee634c237c381b57e7b353cd9511d6f5dcbb2cca | Edit setup.py | mnishida/PyMWM | setup.py | setup.py | import os
import numpy as np
from Cython.Distutils import build_ext
from setuptools import Extension, find_packages, setup
ext_modules = []
for name in ["cylinder", "slit", "bessel", "cutoff"]:
basename = os.path.join("src", "pymwm", "utils", f"{name}_utils")
e = Extension(
f"pymwm.utils.{name}_utils"... | import os
import numpy as np
from Cython.Distutils import build_ext
from setuptools import Extension, find_packages, setup
ext_modules = []
for name in ["cylinder", "slit", "bessel", "cutoff"]:
pkg = f"pymwm.utils.{name}_utils"
basename = os.path.join("src", "pymwm", "utils", f"{name}_utils")
e = Extensio... | mit | Python |
8020a5cb4daf5b1140e694eaddf98f801fd1023b | bump version | ingrammicro/apsconnect-cli,ingrammicro/apsconnect-cli | setup.py | setup.py | #!/usr/bin/env python
import os
from pip.req import parse_requirements
from setuptools import setup
install_reqs = parse_requirements(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'requirements.txt'), session='None')
setup(
name='apsconnectcli',
auth... | #!/usr/bin/env python
import os
from pip.req import parse_requirements
from setuptools import setup
install_reqs = parse_requirements(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'requirements.txt'), session='None')
setup(
name='apsconnectcli',
auth... | apache-2.0 | Python |
f9409dd7dd02210e682638e02337b3efaeecc561 | Update `setup.py` to use `README.rst` | avinassh/prawoauth2 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = '0.2'
setup(
name='prawoauth2',
version=version,
install_requires=requirements,
auth... | #!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version =... | mit | Python |
d9acc1626813de31219ac84edaa9030ce4e108ab | update setup | Lex0ne/trafaret_validator | setup.py | setup.py | import os
from setuptools import setup
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.... | import os
from setuptools import setup
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.... | mit | Python |
db294aec8d96fefaa4817931a785e1f165a96f45 | Add a dependcy link for django-money because the package on pypi is broken | evonove/django-bazaar,evonove/django-bazaar,meghabhoj/NEWBAZAAR,meghabhoj/NEWBAZAAR,meghabhoj/NEWBAZAAR,evonove/django-bazaar | setup.py | setup.py | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import os
import sys
import bazaar
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = bazaar.__version__
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
print("You probably want to al... | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import os
import sys
import bazaar
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = bazaar.__version__
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
print("You probably want to al... | bsd-2-clause | Python |
02d94f25a5bdd30bfe96e0b11d64f54177d2a723 | update setup.py | arteria/django-compat,arteria/django-compat | setup.py | setup.py | # -*- encoding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
install_requires = [
'django>=1.4,<1.9',
'six',
]
setup(
name="django-compat",
version="1.0.0",
author_email="admin@arteria.ch",
packages=find_packages(),
include_package_data=True,
description... | # -*- encoding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
setup(
name="django-compat",
version="0.0.1",
author_email="admin@arteria.ch",
packages=find_packages(),
include_package_data=True,
description="For- and backwards compatibility layer for Django 1.4 to ... | mit | Python |
bb67eeb942695a96092f709a8a2930db48618f36 | Update trove classifiers | jbittel/django-mama-cas,orbitvu/django-mama-cas,orbitvu/django-mama-cas,jbittel/django-mama-cas | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
from mama_cas import __version__ as version
with open('README.rst') as f:
readme = f.read()
setup(
name='django-mama-cas',
version=version,
description='A Django Central Authentication Service (CAS) single sign-... | #!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
from mama_cas import __version__ as version
with open('README.rst') as f:
readme = f.read()
setup(
name='django-mama-cas',
version=version,
description='A Django Central Authentication Service (CAS) single sign-... | bsd-3-clause | Python |
19170c6d49f955d98e1784671c21e46927eba040 | Increment minor version | benjamin-hodgson/Contexts | setup.py | setup.py | import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
builtin_plugins = [
'PathSupplier = contexts.plugins.test_target_suppliers:PathSupplier',
'ExitCodeReporter = contexts.plugins.reporting:ExitCodeReporter',
'Shuffler = contexts.plugins.shuffling:Shuffler',
'Importer ... | import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
builtin_plugins = [
'PathSupplier = contexts.plugins.test_target_suppliers:PathSupplier',
'ExitCodeReporter = contexts.plugins.reporting:ExitCodeReporter',
'Shuffler = contexts.plugins.shuffling:Shuffler',
'Importer ... | mit | Python |
835f0f1097c0cd040d4bb1b25a9da44a7afe0d47 | Add classifiers and keywords | zestyping/q | setup.py | setup.py | from setuptools import setup
setup(
name='q', version='2.6', py_modules=['q'],
description='Quick-and-dirty debugging output for tired programmers',
author='Ka-Ping Yee', author_email='ping@zesty.ca',
license='Apache License 2.0',
classifiers=[
"Programming Language :: Python",
"Prog... | from setuptools import setup
setup(name='q', version='2.6', py_modules=['q'],
description='Quick-and-dirty debugging output for tired programmers',
author='Ka-Ping Yee', author_email='ping@zesty.ca',
license='Apache License 2.0',
url='http://github.com/zestyping/q', classifiers=[
'Prog... | apache-2.0 | Python |
ce46f1087d804d33d5a9830927617d3b11eff602 | Bump version to 0.2.7: bugfix release | stfp/flask-presst,stfp/flask-presst,svenstaro/flask-presst,svenstaro/flask-presst | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(
author='Lars Schoening',
author_email='lays@biosustain.dtu.dk',
name='Flask-Presst',
version='0.2.7',
packages=find_packages(exclude=['*tests*']),
url='https://flask-p... | #!/usr/bin/env python
# coding=utf-8
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(
author='Lars Schoening',
author_email='lays@biosustain.dtu.dk',
name='Flask-Presst',
version='0.2.6',
packages=find_packages(exclude=['*tests*']),
url='https://flask-p... | mit | Python |
fe6e4e2299130e72ef62596e2e0cc21138d860fe | Fix setup.py: zip_safe must be false to access the shipped ini file | InnovativeTravel/boto3facade,FindHotel/boto3facade | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import boto3facade.metadata as metadata
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='boto3... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import boto3facade.metadata as metadata
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='boto3... | mit | Python |
df62f5fa5d844286d8de61aedea1356c45b65800 | Bump version to 0.4 | rgs1/zk_shell,harlowja/zk_shell,harlowja/zk_shell,rgs1/zk_shell | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='zk_shell',
version='0.4',
description='A Python - Kazoo based - shell for ZooKeeper',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Lic... | from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='zk_shell',
version='0.3',
description='A Python - Kazoo based - shell for ZooKeeper',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Lic... | apache-2.0 | Python |
7a0f68e6fb3d28faa5e0ab7233adf50fbcb8b292 | Fix version to 2.0.4 in setup.py | cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from glob import glob
from setuptools import setup
setup_args = dict(
name = 'jupyterlmod',
packages = ['jupyterlmod', 'lmod'],
version = "2.0.4",
description = "jupyterlmod: notebook server extension to interact with L... | #!/usr/bin/env python
# coding: utf-8
from glob import glob
from setuptools import setup
setup_args = dict(
name = 'jupyterlmod',
packages = ['jupyterlmod', 'lmod'],
version = "2.0.3",
description = "jupyterlmod: notebook server extension to interact with L... | mit | Python |
97e42e6071e13d22db1b2bb6ed9fb592bc5261c8 | Bump minimum 'api_core' version for all GAPIC libs to 1.4.1. (#6391) | googleapis/python-tasks,googleapis/python-tasks | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | # -*- coding: utf-8 -*-
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | apache-2.0 | Python |
e718186a2141815977bfeedd98b2953974219eaf | add apache license header to setup | dolph/spandex | setup.py | setup.py | # 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, software
# distributed under the... | import setuptools
setuptools.setup(
name='spandex',
version='1.1.0',
description='Do something useful with elasticsearch + logstash.',
author='Dolph Mathews',
author_email='dolph.mathews@gmail.com',
url='http://github.com/dolph/spandex',
install_requires=['requests', 'pyyaml'],
package... | apache-2.0 | Python |
2b70f92d8529234a6f04b4df10e09a0361675122 | Update setup.py | bunchesofdonald/django-hermes,DemocracyClub/django-hermes,bunchesofdonald/django-hermes,DemocracyClub/django-hermes | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-hermes',
version='1.2',
author='Chris Pickett',
author_email='chris.pickett@gmail.com',
packages=find_packages(),
url='https://github.com/bunchesofdonald/django-hermes',
license='MIT',
long_description=open('README.rst').re... | from setuptools import setup, find_packages
setup(
name='django-hermes',
version='1.2',
author='Chris Pickett',
author_email='chris.pickett@gmail.com',
packages=find_packages(),
url='https://github.com/bunchesofdonald/django-hermes',
license='MIT',
long_description=open('README.rst').re... | mit | Python |
4121ce6f097894c666eadddcc8405b13eb6ba56a | Add PyPi trove classifiers to document Python 3 support. Add other applicable classifiers while we're here. | keeprocking/pygelf,keeprocking/pygelf | setup.py | setup.py | from setuptools import setup
setup(
name='pygelf',
version='0.2.8',
packages=['pygelf'],
description='Logging handlers with GELF support',
keywords='logging udp tcp ssl tls graylog2 graylog gelf',
author='Ivan Mukhin',
author_email='muhin.ivan@gmail.com',
url='https://github.com/keepro... | from setuptools import setup
setup(
name='pygelf',
version='0.2.8',
packages=['pygelf'],
description='Logging handlers with GELF support',
keywords='logging udp tcp ssl tls graylog2 graylog gelf',
author='Ivan Mukhin',
author_email='muhin.ivan@gmail.com',
url='https://github.com/keepro... | mit | Python |
00b6fd22c3691d84ba7436202b38182c42d144ca | fix so sub-packages are installed | sdaxen/python_utilities | setup.py | setup.py | from distutils.core import setup
setup(
name='sdaxen_python_utilities',
packages=['python_utilities', 'python_utilities.plotting'],
version='0.1.2',
description='A collection of useful tools for common Python tasks',
author='Seth Axen',
author_email='seth.axen@gmail.com',
url='https://githu... | from distutils.core import setup
setup(
name='sdaxen_python_utilities',
packages=['python_utilities'],
version='0.1.2',
description='A collection of useful tools for common Python tasks',
author='Seth Axen',
author_email='seth.axen@gmail.com',
url='https://github.com/sdaxen/python_utilities... | mit | Python |
c0b407c294e525c79b87f860f655e374c28cd36e | modify setup to use data_files | misken/hillmaker | setup.py | setup.py |
# Copyright 2015 Mark Isken
#
# 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, ... |
# Copyright 2015 Mark Isken
#
# 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, ... | mit | Python |
c6bf2d8f68e2b5a6ab85ecc94e4029d7a99fa74f | Update minimum PyTest version | adambrenecki/virtualfish,adambrenecki/virtualfish | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='virtualfish',
description='A virtualenv wrapper for the Fish shell',
author='Adam Brenecki',
author_email='adam@brenecki.id.au',
url='https://github.com/adambrenecki/virtualfish',
packages=find_packages(),
include_package_data=True,
... | from setuptools import setup, find_packages
setup(
name='virtualfish',
description='A virtualenv wrapper for the Fish shell',
author='Adam Brenecki',
author_email='adam@brenecki.id.au',
url='https://github.com/adambrenecki/virtualfish',
packages=find_packages(),
include_package_data=True,
... | mit | Python |
69f94d2e9403a9e7f750bc39624e019c85e98c1e | Add deps spp>=0.0.4 | ego008/ssdb.py | setup.py | setup.py | """
ssdb.py
-------
Ssdb Python Client Library.
https://github.com/hit9/ssdb.py
"""
from setuptools import setup
setup(
name='ssdb.py',
version='0.1.5',
author='hit9',
author_email='nz2324@126.com',
description="Ssdb Python Client Library",
long_description=__doc__,
license='bsd2',
... | """
ssdb.py
-------
Ssdb Python Client Library.
https://github.com/hit9/ssdb.py
"""
from setuptools import setup
setup(
name='ssdb.py',
version='0.1.5',
author='hit9',
author_email='nz2324@126.com',
description="Ssdb Python Client Library",
long_description=__doc__,
license='bsd2',
... | bsd-2-clause | Python |
bf9626932c8e2780fae2ff9e19a3e8cf9d99a2ae | Tweak packaging mode to use find_packages from setuptools in setup.py | nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,MozillaSecurity/funfuzz | setup.py | setup.py | # coding=utf-8
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
"""setuptools install script"""
from setuptools import find_packages
from setuptools import setup
EX... | # coding=utf-8
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
"""setuptools install script"""
from setuptools import setup
EXTRAS = {
"test": [
"codec... | mpl-2.0 | Python |
4c5936411f4abfc3f906354f1d77838afd2c7077 | Bump Version to 2.0.16-dev | ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | bsd-2-clause | Python |
248ed434a097f30c906809777195944bd840fadc | Add cssselect dependency | storborg/itsy | setup.py | setup.py | from setuptools import setup
setup(name="itsy",
version='0.1',
description='Web crawling and scraping framework',
long_description='',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python ::... | from setuptools import setup
setup(name="itsy",
version='0.1',
description='Web crawling and scraping framework',
long_description='',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python ::... | mit | Python |
3fa6c2650180ba0d57dfaf8f9012bb8f9b42070d | remove the roush binary, as that will be the server binary | rcbops/opencenter-client,rcbops/opencenter-client | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
requirements = ['cliapp', 'requests']
setup(name='roush-client',
version='1.0.0',
description='Client library for Roush API',
author='Justin Shepherd',
author_email='jshepher@rackspace.com',
url='',
license='Apache'... | #!/usr/bin/env python
from setuptools import setup, find_packages
requirements = ['cliapp', 'requests']
setup(name='roush-client',
version='1.0.0',
description='Client library for Roush API',
author='Justin Shepherd',
author_email='jshepher@rackspace.com',
url='',
license='Apache'... | apache-2.0 | Python |
ce4d203bd556602b9b1a3f3504ca8c554571d940 | Update nc version in dependencies | opennode/nodeconductor-saltstack | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup, find_packages
dev_requires = [
'Sphinx==1.2.2',
]
install_requires = [
'nodeconductor>0.84.0',
# transitive dependency from nodeconductor core requires Pillow version <3.0.0
'Pillow>=2.0.0,<3.0.0',
]
# RPM installation does not need oslo... | #!/usr/bin/env python
import sys
from setuptools import setup, find_packages
dev_requires = [
'Sphinx==1.2.2',
]
install_requires = [
'nodeconductor>=0.80.0',
# transitive dependency from nodeconductor core requires Pillow version <3.0.0
'Pillow>=2.0.0,<3.0.0',
]
# RPM installation does not need osl... | mit | Python |
d75308ccee10951aef834ae69e8abc7e851c00cb | Fix setup script, move to setuptools | sergey-dryabzhinsky/denyhosts_sync,sergey-dryabzhinsky/denyhosts_sync,janpascal/denyhosts_sync,janpascal/denyhosts_sync,janpascal/denyhosts_sync,sergey-dryabzhinsky/denyhosts_sync | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from glob import glob
from dh_syncserver import version
etcpath = "/etc"
setup(name='dh_syncserver',
version=version,
description='DenyHosts Synchronisation Server',
author='Jan-Pascal van Best',
author_email='janpascal@vanbest.org',
ur... | #!/usr/bin/env python
from distutils.core import setup
from glob import glob
from dh_syncserver import version
etcpath = "/etc"
setup(name='dh_syncserver',
version=version,
description='DenyHosts Synchronisation Server',
author='Jan-Pascal van Best',
author_email='janpascal@vanbest.org',
... | agpl-3.0 | Python |
43cb9adb280fc75a49858ad75e62ba418cdaffaf | Update version to 0.9.1 | SUPENTA/sphinx-javalink,bluekeyes/sphinx-javalink | setup.py | setup.py | from setuptools import setup
long_description="""
sphinx-javalink
===============
A Sphinx_ extension for linking to ``javadoc``-generated API documentation.
Usage
-----
See the `GitHub project`_ for documentation.
.. _Sphinx: http://sphinx-doc.org/
.. _GitHub project: https://github.com/bluekeyes/sphinx-javalink
... | from setuptools import setup
long_description="""
sphinx-javalink
===============
A Sphinx_ extension for linking to ``javadoc``-generated API documentation.
Usage
-----
See the `GitHub project`_ for documentation.
.. _Sphinx: http://sphinx-doc.org/
.. _GitHub project: https://github.com/bluekeyes/sphinx-javalink
... | mit | Python |
12f55c3aa6513ea79d6bc591a1c26576e8d1dc3d | use latest setuptest | EnTeQuAk/nobot,infoxchange/django-recaptcha,EnTeQuAk/nobot,JioCloud/django-recaptcha,praekelt/django-recaptcha,Elec/django-recaptcha,praekelt/django-recaptcha,Elec/django-recaptcha,infoxchange/django-recaptcha,varunarya10/django-recaptcha,varunarya10/django-recaptcha | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-recaptcha',
version='0.0.2',
description='Django recaptcha form field/widget app.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Praekelt Foundation',
... | from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(self):
from setuptest.runtests import runtests
return runtests(self)
test.run_tests = run_tests
setup(
name='django-recaptcha',
version='0.0.2',
description='Django recaptcha form field/widget app.',... | bsd-3-clause | Python |
563534db7821f9f3d66c3b04847f70c33bfe4f59 | Bump flake8-bugbear from 20.1.2 to 20.1.3 | sloria/ped,sloria/ped | setup.py | setup.py | import re
from setuptools import setup
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock", "pytest-mock", "scripttest==1.3"],
"lint": [
"flake8==3.7.9",
"flake8-bugbear==20.1.3",
"mypy==0.761",
"pre-commit==2.0.0",
],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQ... | import re
from setuptools import setup
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock", "pytest-mock", "scripttest==1.3"],
"lint": [
"flake8==3.7.9",
"flake8-bugbear==20.1.2",
"mypy==0.761",
"pre-commit==2.0.0",
],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQ... | mit | Python |
f1d83262a60da4144933753f32f5a81f077eb289 | Add test command to setup | Alir3z4/python-sanitize | setup.py | setup.py | import unittest
import sys
from setuptools import setup, find_packages, Command
PKG_NAME = 'sanitize'
class RunTests(Command):
"""
New setup.py command to run all tests for the package.
"""
description = "run all tests for {0}".format(PKG_NAME)
user_options = []
def initialize_options(sel... | import unittest
import sys
from setuptools import setup, find_packages, Command
PKG_NAME = 'sanitize'
class RunTests(Command):
"""
New setup.py command to run all tests for the package.
"""
description = "run all tests for {0}".format(PKG_NAME)
user_options = []
def initialize_options(sel... | bsd-2-clause | Python |
40a5efa677b12f217a24550cb98db0cd77855d8d | Bump to 0.3.10 | cookbrite/flyingcloud,cookbrite/flyingcloud | setup.py | setup.py | from __future__ import absolute_import
from setuptools import setup, find_packages
setup(
name='flyingcloud',
version='0.3.10',
description='Build Docker images using SaltStack',
author='MetaBrite, Inc.',
author_email='flyingcloud-admin@metabrite.com',
license='Apache Software License 2.0',
... | from __future__ import absolute_import
from setuptools import setup, find_packages
setup(
name='flyingcloud',
version='0.3.9',
description='Build Docker images using SaltStack',
author='MetaBrite, Inc.',
author_email='flyingcloud-admin@metabrite.com',
license='Apache Software License 2.0',
... | apache-2.0 | Python |
8cb1422cafaeeaa4911bd92652cea4f6591b1424 | Bump version to 0.5.5. | wlanslovenija/datastream | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
VERSION = '0.5.5'
if __name__ == '__main__':
setup(
name='datastream',
version=VERSION,
description="Datastream API time-series library.",
long_description=open(os.path.join(os.path.dirname(__file__), 'RE... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
VERSION = '0.5.4'
if __name__ == '__main__':
setup(
name='datastream',
version=VERSION,
description="Datastream API time-series library.",
long_description=open(os.path.join(os.path.dirname(__file__), 'RE... | agpl-3.0 | Python |
4b1c777229be5f5c6fc9ffd2a911695a4fbf7609 | Update requirements again | nafraf/spreads,adongy/spreads,miloh/spreads,nafraf/spreads,gareth8118/spreads,adongy/spreads,jbaiter/spreads,miloh/spreads,gareth8118/spreads,adongy/spreads,gareth8118/spreads,jbaiter/spreads,DIYBookScanner/spreads,jbaiter/spreads,DIYBookScanner/spreads,DIYBookScanner/spreads,nafraf/spreads,miloh/spreads | setup.py | setup.py | #!/usr/bin/env python2.7
from setuptools import setup, find_packages
setup(
name='spreads',
version='0.1',
author='Johannes Baiter',
author_email='johannes.baiter@gmail.com',
#packages=['spreads', 'spreadsplug'],
packages=find_packages(),
include_package_data=True,
scripts=['spread', ],... | #!/usr/bin/env python2.7
from setuptools import setup, find_packages
setup(
name='spreads',
version='0.1',
author='Johannes Baiter',
author_email='johannes.baiter@gmail.com',
#packages=['spreads', 'spreadsplug'],
packages=find_packages(),
include_package_data = True,
scripts=['spread', ... | agpl-3.0 | Python |
e9ac11705a4fd58b533abfd18ca5dd4c0a15f331 | fix for wat-2091 | warriorframework/warriorframework,warriorframework/warriorframework,warriorframework/warriorframework,warriorframework/warriorframework | setup.py | setup.py | '''
Copyright 2017, Fujitsu Network Communications, Inc.
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 w... | '''
Copyright 2017, Fujitsu Network Communications, Inc.
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 w... | apache-2.0 | Python |
0d3189eaa86c3f8b60ff16d48f9b12b410bdf820 | bump version to 3.1.6.dev0 | SiLab-Bonn/pixel_clusterizer | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '3.1.6.dev0'
author = 'David-Leon Pohl, Jens Janssen'
author_email = 'pohl@physik.uni-bonn.de, janssen@physik.uni-bonn.de'
# requirements for core functi... | #!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '3.1.5'
author = 'David-Leon Pohl, Jens Janssen'
author_email = 'pohl@physik.uni-bonn.de, janssen@physik.uni-bonn.de'
# requirements for core functionali... | mit | Python |
ece42d72bd29fa828f355abc3d3d67842a4f1b15 | Bump version to 0.5.0rc1 | polyaxon/polyaxon,polyaxon/polyaxon,polyaxon/polyaxon | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
def read_readme():
with open('README.md') as f:
return f.read()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
... | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
def read_readme():
with open('README.md') as f:
return f.read()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
... | apache-2.0 | Python |
17e582440916657cdcd3a3562a73405b8061df9e | Update setup.py install requirements with upper/lower bounds | coinbox/coinbox-core | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="Coinbox POS",
version="0.1",
packages=find_packages()+['argparse'],
scripts=['coinbox.py'],
zip_safe=True,
namespace_packages=['cbpos', 'cbpos.mod'],
include_package_data=True,
install_requires... | from setuptools import setup, find_packages
setup(
name="Coinbox POS",
version="0.1",
packages=find_packages()+['argparse'],
scripts=['coinbox.py'],
zip_safe=True,
namespace_packages=['cbpos', 'cbpos.mod'],
include_package_data=True,
install_requires... | mit | Python |
2a6b4715ca1a32f8dfdddc4a86b7eb7a86baccef | Update setup.py | lainproliant/python3-xeno | setup.py | setup.py | from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="xeno",
version="4.9... | from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="xeno",
version="4.9... | bsd-3-clause | Python |
2b70f4d008f53480e0550902626a4f1a474a1299 | Add some documentation | luispedro/jug,unode/jug,luispedro/jug,unode/jug | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright (C) 2008-2009, Luís Pedro Coelho <lpc@cmu.edu>
#
# 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 ri... | # -*- coding: utf-8 -*-
# Copyright (C) 2008-2009, Luís Pedro Coelho <lpc@cmu.edu>
#
# 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 ri... | mit | Python |
cd6a1060fa7f3fa49db5bf3a5f2d88a3dfc6e16b | Fix compatibility with python 2.7 | ministryofjustice/django-zendesk-tickets,ministryofjustice/django-zendesk-tickets | setup.py | setup.py | import importlib
import os
import sys
from setuptools import find_packages, setup
__version__ = importlib.import_module('zendesk_tickets').__version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
tests_require = ['flake8>=3.5,<4']
if sys.version_info < (3, 4)... | import importlib
import os
import sys
from setuptools import find_packages, setup
__version__ = importlib.import_module('zendesk_tickets').__version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
tests_require = ['flake8']
if sys.version_info < (3, 3):
te... | mit | Python |
e8c333a0991233ba2ae3dd2baff9432e993190e5 | Bump to version 0.6 | incuna/incuna-auth,incuna/incuna-auth,ghickman/incuna-auth,ghickman/incuna-auth | setup.py | setup.py | from setuptools import find_packages, setup
install_requires = ('django-admin-sso',)
setup(
name='incuna-auth',
version='0.6',
url='http://github.com/incuna/incuna-auth',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
description='Provides authenti... | from setuptools import find_packages, setup
install_requires = ('django-admin-sso',)
setup(
name='incuna-auth',
version='0.5',
url='http://github.com/incuna/incuna-auth',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
description='Provides authenti... | bsd-2-clause | Python |
f48e2b9de7ff42caf317e4c4254b1bfb0197f6a4 | change license metadata | cyberdelia/atomic | setup.py | setup.py | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages, Extension
with open('README.rst') as f:
readme = f.read()
kwargs = {}
version = sys.version.lower()
if "java" not in version and "pypy" not in version:
kwargs = dict(ext_modules=[
Extension("atomic._reference", ["atomic/... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages, Extension
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
kwargs = {}
version = sys.version.lower()
if "java" not in version and "pypy" not in version:
kwargs = dict(ext_modules... | mit | Python |
f84abcf2b9a606036d3ea7d33e52303a2f5832f7 | Fix setup.py typo | beck/testtube,blaix/testtube,thomasw/testtube | setup.py | setup.py | from setuptools import setup, find_packages
from testtube import __version__, __author__
setup(
name="testtube",
version=__version__,
url='https://github.com/thomasw/testtube',
author=__author__,
author_email='thomas.welfley+testtube@gmail.com',
description='Testtube watches a specified direc... | from setuptools import setup, find_packages
from testtube import __version__, __author__
setup(
name="testtube",
version=__version__,
url='https://github.com/thomasw/testtube',
author=__author__,
author_email='thomas.welfley+testtube@gmail.com',
description='Testtube watches a specified direc... | mit | Python |
031c8235c9c7f16952531b551542803ede7144d9 | Fix get_long_description for Python2 | mollie/mollie-api-python | setup.py | setup.py | import os.path
from setuptools import find_packages, setup
def get_long_description():
root_dir = os.path.abspath(os.path.dirname(__file__))
try:
readme = open(os.path.join(root_dir, 'README.md'), encoding='utf-8')
except TypeError:
# support python 2
readme = open(os.path.join(ro... | import os.path
from setuptools import find_packages, setup
def get_long_description():
root_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
return long_description
setup(
name='mollie-api-pyth... | bsd-2-clause | Python |
6f8cdc4b7be2b8d6503ab9104603c480c13483c6 | update version to share lenient get_letters.py with the world | tshrinivasan/open-tamil,tuxnani/open-telugu,tshrinivasan/open-tamil,arcturusannamalai/open-tamil,tshrinivasan/open-tamil,tshrinivasan/open-tamil,atvKumar/open-tamil,arcturusannamalai/open-tamil,atvKumar/open-tamil,arcturusannamalai/open-tamil,Ezhil-Language-Foundation/open-tamil,atvKumar/open-tamil,Ezhil-Language-Found... | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# (C) 2013 முத்தையா அண்ணாமலை
# open-tamil project
from distutils.core import setup
from codecs import open
setup(name='Open-Tamil',
version='0.2.1-dev',
description='Tamil language text processing tools',
author='Muthiah Annamalai',
author_email='ezhillang@gmail.com... | # -*- coding: utf-8 -*-
#
# (C) 2013 முத்தையா அண்ணாமலை
# open-tamil project
from distutils.core import setup
from codecs import open
setup(name='Open-Tamil',
version='0.2-dev',
description='Tamil language text processing tools',
author='Muthiah Annamalai',
author_email='ezhillang@gmail.com',... | mit | Python |
5028984f26e024ca8d929d701a569375ca4af688 | Make radon eggsecutable | rubik/radon | setup.py | setup.py | import os
from setuptools import setup, find_packages
import radon
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fobj:
readme = fobj.read()
setup(name='radon',
version=radon.__version__,
author='Michele Lacchia',
author_email='michelelacchia@gmail.com',
url='https://... | import os
from setuptools import setup, find_packages
import radon
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fobj:
readme = fobj.read()
setup(name='radon',
version=radon.__version__,
author='Michele Lacchia',
author_email='michelelacchia@gmail.com',
url='https://... | mit | Python |
c7eeb8967c140978f8eeb29bda8e0e902c9b51df | Include full license text in the license parameter of setup | morucci/pygerrit,benjiii/pygerrit,dpursehouse/pygerrit2,markon/pygerrit2,gferon/pygerrit2,sonyxperiadev/pygerrit,dpursehouse/pygerrit | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# The MIT License
#
# Copyright 2012 Sony Mobile Communications. All rights reserved.
#
# 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 ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# The MIT License
#
# Copyright 2012 Sony Mobile Communications. All rights reserved.
#
# 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 ... | mit | Python |
8310bcfe8cad77e16d3b0eaac6b9138fd21a2835 | Add shebang line to setup.py | musec/py-cdg | setup.py | setup.py | #!/usr/bin/env python
#
# Copyright 2017 Jonathan Anderson
#
# 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... | # Copyright 2017 Jonathan Anderson
#
# 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 wri... | apache-2.0 | Python |
c0a5d8143b87126f78e2c836f9edb5480cb6d317 | Add dependency on Django 1.3. | rmaceissoft/django-photologue,jlemaes/django-photologue,seedwithroot/django-photologue-clone,rmaceissoft/django-photologue,rmaceissoft/django-photologue,MathieuDuponchelle/my_patched_photologue,RossLYoung/django-photologue,jlemaes/django-photologue,seedwithroot/django-photologue-clone,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)
# Dynamically calculate the version based on photologue.VERSION
version_tuple = __import__('photologue').VERSION
if len(version_tuple) == 3:
version = "%d.%d_%s" % ve... | #/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)
# Dynamically calculate the version based on photologue.VERSION
version_tuple = __import__('photologue').VERSION
if len(version_tuple) == 3:
version = "%d.%d_%s" % ve... | bsd-3-clause | Python |
fcbb30f593021a4ff751c4c32d2c417a47c554dd | rename trybots from gn to gyp. | lemenkov/libyuv,yarrcc/libyuv-ios,lemenkov/libyuv,lemenkov/libyuv,yarrcc/libyuv-ios,lemenkov/libyuv,yarrcc/libyuv-ios,yarrcc/libyuv-ios | PRESUBMIT.py | PRESUBMIT.py | # Copyright 2014 The LibYuv Project Authors. All rights reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors... | # Copyright 2014 The LibYuv Project Authors. All rights reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors... | bsd-3-clause | Python |
a96a7b442d92e2fbfd2cc21b25b3d59870d4446f | Change stethoclient configuration in setup.py | openstack/steth,unitedstack/stetho,unitedstack/stetho,openstack/steth | setup.py | setup.py | # Copyright 2015 UnitedStack, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless require... | # Copyright 2015 UnitedStack, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless require... | apache-2.0 | Python |
67265e0e390e095aaf06545caaec19a26d19dfc2 | Set Python version to 2.7 in setup.py | cloudbase/nova-vix-driver | setup.py | setup.py | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2013 Cloudbase Solutions Srl
#
# 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/LICEN... | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2013 Cloudbase Solutions Srl
#
# 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/LICEN... | apache-2.0 | Python |
cb52a844d60810ffa3c234fe7f47bdaf6a68856d | bump nalaf version | Rostlab/nalaf | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.11',
description='Natural Language Framework, for NER and RE',
long_description=readme(),
long_descri... | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.10',
description='Natural Language Framework, for NER and RE',
long_description=readme(),
long_descri... | apache-2.0 | Python |
2c9c493d3e49aaf4401ad8111ac3d35acffaa4f6 | remove the setuptools call | ros/dynamic_reconfigure,ros/dynamic_reconfigure,ros/dynamic_reconfigure | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
import sys
from xml.etree.ElementTree import ElementTree
try:
root = ElementTree(None, 'package.xml')
version = root.findtext('version')
except Exception, e:
print >>sys.stderr, 'Could not extract version from your stack.xml:\n%s' % e
sy... | #!/usr/bin/env python
import os
from setuptools import setup
import sys
from xml.etree.ElementTree import ElementTree
try:
root = ElementTree(None, 'package.xml')
version = root.findtext('version')
except Exception, e:
print >>sys.stderr, 'Could not extract version from your stack.xml:\n%s' % e
sys.ex... | bsd-3-clause | Python |
7c90b635d55da7ce0176fae50456e8b73c58fa68 | Make 'make images' work. | mgedmin/objgraph | setup.py | setup.py | #!/usr/bin/python
import os, re, sys, unittest, doctest
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def relative(filename):
here = os.path.dirname('__file__')
return os.path.join(here, filename)
def read(filename):
f = open(relative(filename))
try:... | #!/usr/bin/python
import os, re, sys, unittest, doctest
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def relative(filename):
here = os.path.dirname('__file__')
return os.path.join(here, filename)
def read(filename):
f = open(relative(filename))
try:... | mit | Python |
b6383063a70de0745bf015ec02c144935f3a128a | update eduid-common requirement and bump version to 0.2.2b11 | SUNET/eduid-webapp,SUNET/eduid-webapp,SUNET/eduid-webapp | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.2.2b11'
# Use requirements files
requires = [
'eduid-userdb>=0.4.0b18',
'eduid-common[webapp]>=0.3.8b4',
'eduid-action>=0.2.1b3',
'eduid-am>=0.6.3b7',
'eduid-msg>=0.10.3b7',
'eduid_lookup_mobile>=0.0.6b3',
'Fla... | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
version = '0.2.2b10'
# Use requirements files
requires = [
'eduid-userdb>=0.4.0b18',
'eduid-common[webapp]>=0.3.6b5',
'eduid-action>=0.2.1b3',
'eduid-am>=0.6.3b7',
'eduid-msg>=0.10.3b7',
'eduid_lookup_mobile>=0.0.6b3... | bsd-3-clause | Python |
2947634e481f12c46ffcaf2d6b86b6e966bf9ab2 | Add optimization | callowayproject/Transmogrify,callowayproject/Transmogrify,callowayproject/Transmogrify,callowayproject/Transmogrify | transmogrify/optimize.py | transmogrify/optimize.py | import subprocess
import os
try:
from PIL import Image
from PIL.ImageCms import profileToProfile
except ImportError:
profileToProfile = lambda im, *args, **kwargs: im # NOQA
from .settings import IMAGE_OPTIMIZATION_CMD
from .utils import is_tool
def convert_to_rgb(img):
"""
Convert an image to ... | import os
try:
from PIL import Image
from PIL.ImageCms import profileToProfile
except ImportError:
profileToProfile = lambda im, *args, **kwargs: im # NOQA
def convert_to_rgb(img):
"""
Convert an image to RGB if it isn't already RGB or grayscale
"""
if img.mode not in ('RGB', 'L'):
... | apache-2.0 | Python |
774e86ae6d8cc8489dd570b5a546ce9508695e25 | update ver and deps | cdimascio/py-readability-metrics | setup.py | setup.py | #!/user/bin/env python
from setuptools import setup
setup(
name='py-readability-metrics',
version='0.1.1',
description='Calculate readability scores. e.g. Flesch, Flesch-Kincaid, and more',
author='Carmine DiMAscio',
url='https://github.com/cdimascio/py-readability-metrics',
packages=['readabi... | #!/user/bin/env python
from setuptools import setup
setup(
name='py-readability-metrics',
version='0.0.1',
description='Calculate readability scores. e.g. Flesch, Flesch-Kincaid, and more',
author='Carmine DiMAscio',
url='https://github.com/cdimascio/py-readability-metrics',
packages=['py-read... | mit | Python |
e00367f8197d9aa8a3558958da47bc68825a0426 | Bump version. | reddink/reddcoin-electrum-server,reddink/reddcoin-electrum-server | setup.py | setup.py | from setuptools import setup
import os
basedir = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
f = open(os.path.join(basedir, filename))
try:
return f.read()
finally:
f.close()
VERSION = '0.9.2'
setup(
name="reddcoin-electrum-server",
version=VERSION,
... | from setuptools import setup
import os
basedir = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
f = open(os.path.join(basedir, filename))
try:
return f.read()
finally:
f.close()
VERSION = '0.9.1'
setup(
name="reddcoin-electrum-server",
version=VERSION,
... | agpl-3.0 | Python |
696626470257a076e28872e32743e396ec1e51fd | Bump version | PointyShinyBurning/cpgintegrate | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="cpgintegrate",
version="0.1.1",
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests>=2.10',
'lxml>=3',
'pandas>=0.18.1',
'xlrd',
'walrus',
]
)
| from setuptools import setup, find_packages
setup(
name="cpgintegrate",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests>=2.10',
'lxml>=3',
'pandas>=0.18.1',
'xlrd',
'walrus',
]
)
| agpl-3.0 | Python |
5fb58d74553eb3847a601506eda58550201e326c | add encoding to setup | mrpatiwi/uc-numero-alumno-python | setup.py | setup.py | # coding=utf-8
from setuptools import setup
setup(name='uc-numero-alumno',
version='0.1.0',
description='Valida un número de alumno de la UC ',
url='https://github.com/mrpatiwi/uc-numero-alumno-python',
author='Patricio López',
author_email='patricio@lopezjuri.com',
license='MIT',... | from setuptools import setup
setup(name='uc-numero-alumno',
version='0.1.0',
description='Valida un número de alumno de la UC ',
url='https://github.com/mrpatiwi/uc-numero-alumno-python',
author='Patricio López',
author_email='patricio@lopezjuri.com',
license='MIT',
packages=[... | mit | Python |
446d25796e0fb46ec045277b16418af0f7a7b310 | remove atpy and pyfits dependencies | 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 |
9db3793cfa4f587e9bdadfb9e5067b8225054948 | update version | Akagi201/xor_string,Akagi201/xor-string | setup.py | setup.py |
# import os
from setuptools import setup
# here = os.path.abspath(os.path.dirname(__file__))
# README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor_string',
packages=['xor_string',],
version='0.1.7',
url='https://github.com/Akagi201/xor_string',
... |
# import os
from setuptools import setup
# here = os.path.abspath(os.path.dirname(__file__))
# README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor_string',
packages=['xor_string',],
version='0.1.6',
url='https://github.com/Akagi201/xor_string',
... | mit | Python |
7c3a1cbb887ea9fd11c6dba6b0cf878cdbf4064a | Set version number to 0.1.22 | nabetama/Flask-Json-Syslog | setup.py | setup.py | """
Flask-Json-SysLog
-----------------
Output syslog of the json format.
Installation
````````````
Use pip:
.. code:: bash
$ pip install flask-json-syslog
In your app.py
``````````````
Save in app.py:
.. code:: python
from flask import g
from flask_json_syslog import FlaskJsonSyslog
app = Fla... | """
Flask-Json-SysLog
-----------------
Output syslog of the json format.
Installation
````````````
Use pip:
.. code:: bash
$ pip install flask-json-syslog
In your app.py
``````````````
Save in app.py:
.. code:: python
from flask import g
from flask_json_syslog import FlaskJsonSyslog
app = Fla... | mit | Python |
ee815597920b7feafbb4f3730a6c99ac8dafe06b | Bump version number. | ProjetPP/PPP-datamodel-Python,ProjetPP/PPP-datamodel-Python | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel',
version='0.6.3',
description='Data model for the Projet Pensées Profondes.',
url='https://github.com/ProjetPP/PPP-datamodel-Python',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel',
version='0.6.2',
description='Data model for the Projet Pensées Profondes.',
url='https://github.com/ProjetPP/PPP-datamodel-Python',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens... | agpl-3.0 | Python |
29279fc8608868f6ad6dbc6178f91c22cde6cfe3 | fix keywords | rhardouin/wild-sphinx-theme | setup.py | setup.py | #!/bin/python33
from distutils.core import setup
with open('README.txt', 'r') as f:
desc = f.read()
setup(name='wild_sphinx_theme',
version=__import__('wild_sphinx_theme').__version__,
description='Like Nature sphinx theme but allows pygments style to be dark',
long_description=desc,
packages=['w... | #!/bin/python33
from distutils.core import setup
import wild_sphinx_theme
with open('README.txt', 'r') as f:
desc = f.read()
setup(name='wild_sphinx_theme',
version=__import__('wild_sphinx_theme').__version__,
description='Like Nature sphinx theme but allows pygments style to be dark',
long_descripti... | bsd-2-clause | Python |
24acce3fb301be9c8fe8d6b46ee27ce04b2961b5 | bump version | Hipo/drf-extra-fields,Hipo/drf-extra-fields | setup.py | setup.py | import os
from setuptools import setup
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='django-extra-fields',
version='2.0.... | import os
from setuptools import setup
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='django-extra-fields',
version='2.0.... | apache-2.0 | Python |
9bd6c7646903b5d9838b61f0dbd41a3ddd4ae5c0 | fix : minor edit in setup.py | Moduland/Orangetool,Moduland/Orangetool | setup.py | setup.py | # -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_requires():
"""Read requirements.txt."""
requirements = open("requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))
def... | # -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_requires():
"""Read requirements.txt."""
requirements = open("requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))
def... | mit | Python |
0fb10b545295aaa59e67c482c65f473c31a2482f | Use geventhttpclient | c00w/bitHopper,c00w/bitHopper | setup.py | setup.py | """
Dummy file to install bitHopper dependencies
"""
from setuptools import setup
setup(
name = "dummy_bithopper_install",
version = "0.0.6",
description = ("A dummy package to install things correctly for bitHopper"),
install_requires=[
'setuptools',
'httplib2',
'mechanize',
'geve... | """
Dummy file to install bitHopper dependencies
"""
from setuptools import setup
setup(
name = "dummy_bithopper_install",
version = "0.0.5",
description = ("A dummy package to install things correctly for bitHopper"),
install_requires=[
'setuptools',
'httplib2',
'mechanize',
'geve... | mit | Python |
fb84b9057f6e3907ef2995c650b5cc08112f2359 | Remove the read() call in setup.py. | remik/django-page-cms,remik/django-page-cms,batiste/django-page-cms,akaihola/django-page-cms,oliciv/django-page-cms,oliciv/django-page-cms,pombredanne/django-page-cms-1,akaihola/django-page-cms,oliciv/django-page-cms,remik/django-page-cms,pombredanne/django-page-cms-1,batiste/django-page-cms,akaihola/django-page-cms,po... | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = __import__('pages').__version__
package_name = 'django-page-cms'
import os
templates_dirs = []
for directory in os.walk('pages/templates'):
templates_dirs.append(directory[0][6:]+'/*.*')
url_schema = 'http://pypi.python.org/packages/sou... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = __import__('pages').__version__
package_name = 'django-page-cms'
import os
templates_dirs = []
for directory in os.walk('pages/templates'):
templates_dirs.append(directory[0][6:]+'/*.*')
url_schema = 'http://pypi.python.org/packages/sou... | bsd-3-clause | Python |
e314712003f2b3c315e2797f00e5e819e33d86b3 | Bump to Version 0.10 | jonasundderwolf/django-localizedfields,jonasundderwolf/django-localizedfields | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="django-localizedfields",
author="Jonas und der Wolf GmbH",
author_email="info@jonasundderwolf.de",
version='0.10',
packages=find_packages(),
install_requires=('django-composite-field==0.3'),
include_package_data=True,
classifiers=... | from setuptools import setup, find_packages
setup(
name="django-localizedfields",
author="Jonas und der Wolf GmbH",
author_email="info@jonasundderwolf.de",
version='0.9',
packages=find_packages(),
install_requires=('django-composite-field==0.3'),
include_package_data=True,
classifiers=[... | bsd-3-clause | Python |
c1ca9218f5c28734c3eb03c01ef4fd78d8b61a01 | update dependency click to >=7.0.0, <8.0.4 (#374) | googleapis/releasetool,googleapis/releasetool | 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
26c009a537eb6da994d0377a78fb0c07337dbe49 | Move to class props. | BridgeCityBicycleCoop/workstand,BridgeCityBicycleCoop/workstand,BridgeCityBicycleCoop/workstand,BridgeCityBicycleCoop/workstand | bikeshop_project/core/models.py | bikeshop_project/core/models.py | from django.db import models
from django.utils import timezone
from django.utils.functional import cached_property
from dateutil.relativedelta import relativedelta
class Membership(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
modified_at = models.DateTimeField(auto_now=True)
renewe... | from django.db import models
from django.utils import timezone
from django.utils.functional import cached_property
from dateutil.relativedelta import relativedelta
class Membership(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
modified_at = models.DateTimeField(auto_now=True)
renewe... | mit | Python |
54114a1d00cd8737172754111b021dda4ffd8902 | Update _geoserver_import_styles.py | state-hiu/cybergis-scripts,state-hiu/cybergis-scripts | bin/_geoserver_import_styles.py | bin/_geoserver_import_styles.py | from base64 import b64encode
from optparse import make_option
import json
import urllib
import urllib2
import argparse
import time
import os
import subprocess
import glob
def make_request(url, params, auth=None, data=None):
"""
Prepares a request from a url, params, and optionally authentication.
"""
r... | from base64 import b64encode
from optparse import make_option
import json
import urllib
import urllib2
import argparse
import time
import os
import subprocess
import glob
def make_request(url, params, auth=None, data=None):
"""
Prepares a request from a url, params, and optionally authentication.
"""
r... | mit | Python |
bebc65ef1ed67f36d612e39162807399ec2db997 | Add download_url | Elarnon/pygments-pvs | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
archive = 'https://github.com/Elarnon/pygments-pvs/archive/'
version = '0.1'
setup(
name = 'pygments-pvs',
version = version,
description = 'Pygments lexer for PVS source files',
long_description = open('README.rst').read(),
license = ... | #!/usr/bin/python
from setuptools import setup, find_packages
setup(
name = 'pygments-pvs',
version = '0.1',
description = 'Pygments lexer for PVS source files',
long_description = open('README.rst').read(),
license = 'MIT',
author = 'Basile Clement',
author_email = 'basile@clement.pm',
... | mit | Python |
142655a4703aab92619c335e370de1da2af47ff8 | Add whitespace to trigger travis | impactlab/eemeter,openeemeter/eemeter,openeemeter/eemeter | setup.py | setup.py | from setuptools import setup, find_packages, Command
version = __import__('eemeter').get_version()
long_description = "Standard methods for calculating energy efficiency savings."
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass... | from setuptools import setup, find_packages, Command
version = __import__('eemeter').get_version()
long_description = "Standard methods for calculating energy efficiency savings."
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass... | apache-2.0 | Python |
30c7984d793a3d5d39384f44421bb9f4b11ecc4e | change git python lib | ooici/marine-integrations | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | bsd-2-clause | Python |
462b461b7cae616824f9bd2748ae32e4f32ef9ed | bump version: | veltzer/pytsv,veltzer/pytsv | setup.py | setup.py | import setuptools
import sys
if not sys.version_info[0] == 3:
sys.exit("Sorry, only python version 3 is supported")
setuptools.setup(
name='pytsv',
version='0.0.2',
description='pytsv is a module to help with all things TSV',
long_description='pytsv is a module to help with all things TSV',
ur... | import setuptools
import sys
if not sys.version_info[0] == 3:
sys.exit("Sorry, only python version 3 is supported")
setuptools.setup(
name='pytsv',
version='0.0.1',
description='pytsv is a module to help with all things TSV',
long_description='pytsv is a module to help with all things TSV',
ur... | mit | Python |
bf1161669a37e6b0459223b9556b73d390a8e16c | Resolve `python setup.py test` exception after tests pass | thomasw/djproxy | setup.py | setup.py | from setuptools import setup, find_packages
from djproxy import __version__, __author__
# Multiprocessing is needed to execute `python setup.py tests` without any
# errors in some installations.
try:
import multiprocessing
multiprocessing # resolve unused import pep8 violation by 'using' it
except:
pass
... | from setuptools import setup, find_packages
from djproxy import __version__, __author__
setup(
name="djproxy",
version=__version__,
url='https://github.com/thomasw/djproxy',
download_url='https://github.com/thomasw/djproxy/releases',
author=__author__,
author_email='thomas.welfley+djproxy@gmai... | mit | Python |
7b65280cd3c4556cc3b414b654f07fb67eb07d00 | increment rdatkit python scripts version to 1.6 to match release number for entire repo. | hitrace/RDATKit,hitrace/RDATKit | rdatkit/__init__.py | rdatkit/__init__.py | from .handler import RDATFile, ISATABFile, RDATSection
from .mapping import MappingData
from .rna import RNA
from .secstr import SecondaryStructure
from .varna import VARNA
from .util import Ontology
__version__ = '1.6'
| from .handler import RDATFile, ISATABFile, RDATSection
from .mapping import MappingData
from .rna import RNA
from .secstr import SecondaryStructure
from .varna import VARNA
from .util import Ontology
__version__ = '1.0.6'
| bsd-3-clause | Python |
b7fbd4047c0de87850e6e34e8f78254980524667 | Update setup.py | aspyatkin/beakeredis | setup.py | setup.py | from setuptools import setup, find_packages, Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys
import subprocess
errno = subprocess.call([sys.executable, 'runtests.py... | from setuptools import setup, find_packages, Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys
import subprocess
errno = subprocess.call([sys.executable, 'runtests.py... | mit | Python |
d0466f402347b388e55c5d8f8b9658073cad0942 | tweak format for filter | chimecms/chime,darvelo/chime,darvelo/chime,yudiutomo/chime,yudiutomo/chime,yudiutomo/chime,yudiutomo/chime,chimecms/chime,chimecms/chime,chimecms/chime,darvelo/chime,yudiutomo/chime,chimecms/chime,darvelo/chime,darvelo/chime | bizarro/google_api_functions.py | bizarro/google_api_functions.py | from flask import request, redirect, session, url_for
from requests import post, get
from urllib import urlencode
import random
from string import ascii_uppercase, digits
import oauth2
import os
import json
from datetime import date, timedelta
def authorize_google():
''' Authorize google via oauth2
'''
#
... | from flask import request, redirect, session, url_for
from requests import post, get
from urllib import urlencode
import random
from string import ascii_uppercase, digits
import oauth2
import os
import json
from datetime import date, timedelta
def authorize_google():
''' Authorize google via oauth2
'''
#
... | bsd-3-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.