commit stringlengths 40 40 | old_file stringlengths 4 118 | new_file stringlengths 4 118 | old_contents stringlengths 0 2.94k | new_contents stringlengths 1 4.43k | subject stringlengths 15 444 | message stringlengths 16 3.45k | lang stringclasses 1
value | license stringclasses 13
values | repos stringlengths 5 43.2k | prompt stringlengths 17 4.58k | response stringlengths 1 4.43k | prompt_tagged stringlengths 58 4.62k | response_tagged stringlengths 1 4.43k | text stringlengths 132 7.29k | text_tagged stringlengths 173 7.33k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e3aea0f6edbb477b22ebed1f769ff684fddd31a1 | setup.py | setup.py | from distutils.core import setup
setup(
name='wunderclient',
packages=['wunderclient'],
version='0.0.1',
description='A Wunderlist API client',
author='Kevin LaFlamme',
author_email='k@lamfl.am',
url='https://github.com/lamflam/wunderclient',
download_url='https://github.com/lamflam/wun... | import os
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
requires = []
with open(os.path.join(here, 'requirements.txt')) as f:
for line in f.read().splitlines():
if line.find('--extra-index-url') == -1:
requires.append(line)
setup(
name='wunderclient',... | Make sure the dependencies get installed | Make sure the dependencies get installed
| Python | mit | lamflam/wunderclient | from distutils.core import setup
setup(
name='wunderclient',
packages=['wunderclient'],
version='0.0.1',
description='A Wunderlist API client',
author='Kevin LaFlamme',
author_email='k@lamfl.am',
url='https://github.com/lamflam/wunderclient',
download_url='https://github.com/lamflam/wun... | import os
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
requires = []
with open(os.path.join(here, 'requirements.txt')) as f:
for line in f.read().splitlines():
if line.find('--extra-index-url') == -1:
requires.append(line)
setup(
name='wunderclient',... | <commit_before>from distutils.core import setup
setup(
name='wunderclient',
packages=['wunderclient'],
version='0.0.1',
description='A Wunderlist API client',
author='Kevin LaFlamme',
author_email='k@lamfl.am',
url='https://github.com/lamflam/wunderclient',
download_url='https://github.... | import os
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
requires = []
with open(os.path.join(here, 'requirements.txt')) as f:
for line in f.read().splitlines():
if line.find('--extra-index-url') == -1:
requires.append(line)
setup(
name='wunderclient',... | from distutils.core import setup
setup(
name='wunderclient',
packages=['wunderclient'],
version='0.0.1',
description='A Wunderlist API client',
author='Kevin LaFlamme',
author_email='k@lamfl.am',
url='https://github.com/lamflam/wunderclient',
download_url='https://github.com/lamflam/wun... | <commit_before>from distutils.core import setup
setup(
name='wunderclient',
packages=['wunderclient'],
version='0.0.1',
description='A Wunderlist API client',
author='Kevin LaFlamme',
author_email='k@lamfl.am',
url='https://github.com/lamflam/wunderclient',
download_url='https://github.... |
90e614755370c3aafcf55cb76292f2848c797bd6 | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | Revert an accidental requirement bump to python 3.7 | Revert an accidental requirement bump to python 3.7
| Python | mit | mineo/abzer,mineo/abzer | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | <commit_before>#!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://gith... | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | #!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://github.com/mineo/ab... | <commit_before>#!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup
setup(name="abzer",
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
packages=["abzer"],
package_dir={"abzer": "abzer"},
download_url="https://gith... |
7c88ecf10c3197c337990c7f92c7ace6a85d316e | setup.py | setup.py | from distutils.core import setup
from distutils.core import Extension
setup(name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'http... | import os
from distutils.core import setup
from distutils.core import Extension
with_extensions = os.environ.get('WRAPT_EXTENSIONS', 'true')
with_extensions = (with_extensions.lower() != 'false')
setup_kwargs = dict(
name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers ... | Make compilation of extensions optional through an environment variable. | Make compilation of extensions optional through an environment variable.
| Python | bsd-2-clause | akash1808/wrapt,github4ry/wrapt,wujuguang/wrapt,akash1808/wrapt,wujuguang/wrapt,pombredanne/wrapt,pombredanne/wrapt,GrahamDumpleton/wrapt,pombredanne/python-lazy-object-proxy,ionelmc/python-lazy-object-proxy,linglaiyao1314/wrapt,GrahamDumpleton/wrapt,linglaiyao1314/wrapt,pombredanne/python-lazy-object-proxy,ionelmc/pyt... | from distutils.core import setup
from distutils.core import Extension
setup(name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'http... | import os
from distutils.core import setup
from distutils.core import Extension
with_extensions = os.environ.get('WRAPT_EXTENSIONS', 'true')
with_extensions = (with_extensions.lower() != 'false')
setup_kwargs = dict(
name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers ... | <commit_before>from distutils.core import setup
from distutils.core import Extension
setup(name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
... | import os
from distutils.core import setup
from distutils.core import Extension
with_extensions = os.environ.get('WRAPT_EXTENSIONS', 'true')
with_extensions = (with_extensions.lower() != 'false')
setup_kwargs = dict(
name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers ... | from distutils.core import setup
from distutils.core import Extension
setup(name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'http... | <commit_before>from distutils.core import setup
from distutils.core import Extension
setup(name = 'wrapt',
version = '0.9.0',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
... |
bbf92b251203bc3556a6e91c25209fc14046ca50 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | Include data files in package | Include data files in package
| Python | mit | jpvanhal/cloudsizzle,jpvanhal/cloudsizzle | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | <commit_before>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | <commit_before>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description ... |
f5f95550af953fc9f2875f40ba7f89df468485fc | prompt_toolkit/focus_stack.py | prompt_toolkit/focus_stack.py | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | Use IndexError instead of more general Exception. | Use IndexError instead of more general Exception.
| Python | bsd-3-clause | jonathanslenders/python-prompt-toolkit,ddalex/python-prompt-toolkit,melund/python-prompt-toolkit,amjith/python-prompt-toolkit,ALSchwalm/python-prompt-toolkit,niklasf/python-prompt-toolkit | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | <commit_before>"""
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums i... | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | """
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums import DEFAULT_B... | <commit_before>"""
Push/pop stack of buffer names. The top buffer of the stack is the one that
currently has the focus.
Note that the stack can contain `None` values. This means that none of the
buffers has the focus.
"""
from __future__ import unicode_literals
from six import string_types
from prompt_toolkit.enums i... |
a55f5c1229e67808560b3b55c65d524a737294fa | experiment/consumers.py | experiment/consumers.py | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | Send what state is saved | Send what state is saved
| Python | mit | seakers/daphne_brain,seakers/daphne_brain | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | <commit_before>import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self)... | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self):
"""
... | <commit_before>import datetime
import json
from channels.generic.websocket import JsonWebsocketConsumer
from auth_API.helpers import get_or_create_user_information
from experiment.models import ExperimentAction
class ExperimentConsumer(JsonWebsocketConsumer):
##### WebSocket event handlers
def connect(self)... |
20adc2fa2a15f122d5093da2bbfc9625bb2ed772 | exercise1.py | exercise1.py | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions.
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | Revert "Added period to line 6" | Revert "Added period to line 6"
This reverts commit 66ca87943111e5c117578b7407c4e3e752fd195d.
| Python | mit | Momomelo/inf1340_2015_asst1 | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions.
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | <commit_before>#!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions.
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ =... | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | #!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions.
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ = "MIT License"
... | <commit_before>#!/usr/bin/env python
""" Assignment 1, Exercise 1, INF1340, Fall, 2014. Grade to gpa conversion
This module prints the amount of money that Lakshmi has remaining
after the stock transactions.
"""
__author__ = 'Susan Sim'
__email__ = "ses@drsusansim.org"
__copyright__ = "2015 Susan Sim"
__license__ =... |
b8de193d6d0ca5ef00bebb9c375df141335a1f95 | apps/codrspace/views.py | apps/codrspace/views.py | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | Use all of content in redirect from oauth callback | Use all of content in redirect from oauth callback
| Python | mit | durden/dash,durden/dash | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | <commit_before>"""Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit You... | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | """Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit Your Post"""
r... | <commit_before>"""Main codrspace views"""
from django.shortcuts import render, redirect
from settings import GITHUB_CLIENT_ID
import requests
def index(request, slug=None, template_name="base.html"):
return render(request, template_name)
def edit(request, slug=None, template_name="edit.html"):
"""Edit You... |
dae46d466f84ab8694094214b15315e657d80d54 | setup.py | setup.py | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | Exclude app dir from package | Exclude app dir from package
| Python | mit | fatboystring/Wagtail-MVC,fatboystring/Wagtail-MVC | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | <commit_before>#!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail C... | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | #!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail CMS',
auth... | <commit_before>#!/usr/bin/env python
from __future__ import unicode_literals
from wagtail_mvc import __version__
from setuptools import setup, find_packages
setup(
name='wagtail_mvc',
version=__version__,
description='Allows better separation between '
'models and views in Wagtail C... |
808a71ae547348f5ed39b71a261c69f98a211838 | akvo/api/serializers.py | akvo/api/serializers.py | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | Fix IATISerializer.from_etree() so it uses iati-xslt.xsl | Fix IATISerializer.from_etree() so it uses iati-xslt.xsl
| Python | agpl-3.0 | akvo/akvo-rsr,akvo/akvo-rsr,akvo/akvo-rsr,akvo/akvo-rsr | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | <commit_before># -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
i... | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | # -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
import os
from ... | <commit_before># -*- coding: utf-8 -*-
# Akvo RSR is covered by the GNU Affero General Public License.
# See more details in the license.txt file located at the root folder of the Akvo RSR module.
# For additional details on the GNU license please see < http://www.gnu.org/licenses/agpl.html >.
from lxml import etree
i... |
0901477d231091e72b4e47e0f5a59a49cb31414d | paystackapi/tests/test_subaccount.py | paystackapi/tests/test_subaccount.py | import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
| import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
"""Method defined to test subaccount creation."""
httpretty.registe... | Add test subaccount test creation | Add test subaccount test creation
| Python | mit | andela-sjames/paystack-python | import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
Add test subaccount test creation | import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
"""Method defined to test subaccount creation."""
httpretty.registe... | <commit_before>import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
<commit_msg>Add test subaccount test creation<commit_after> | import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
"""Method defined to test subaccount creation."""
httpretty.registe... | import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
Add test subaccount test creationimport httpretty
from paystackapi.tests.base_test_... | <commit_before>import httpretty
from paystackapi.tests.base_test_case import BaseTestCase
from paystackapi.subaccount import SubAccount
class TestSubAccount(BaseTestCase):
@httpretty.activate
def test_subaccount_create(self):
pass
<commit_msg>Add test subaccount test creation<commit_after>import htt... |
0ca502644e66c40089382d13a780a6edc78ddafc | lib/py/src/metrics.py | lib/py/src/metrics.py | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | Create a statsd_client anyway, even if there is no STATSD_URL env variable set | Create a statsd_client anyway, even if there is no STATSD_URL env variable set
| Python | apache-2.0 | upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift,upfluence/thrift | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | <commit_before>import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... | <commit_before>import os
import datetime
import tornado.gen
import statsd
if os.environ.get("STATSD_URL", None):
ip, port = os.environ.get("STATSD_URL").split(':')
statsd_client = statsd.StatsClient(host=ip, port=int(port),
prefix=os.environ.get('STATSD_PREFIX',
... |
0670b48b74dddd05a67f63983f7208f1c0c5efed | fskintra.py | fskintra.py | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | Fix last commit: use config.log() | Fix last commit: use config.log()
| Python | bsd-2-clause | bennyslbs/fskintra | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | <commit_before>#! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildr... | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | #! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildren.skoleGetChil... | <commit_before>#! /usr/bin/env python
#
#
#
import skoleintra.config
import skoleintra.pgContactLists
import skoleintra.pgDialogue
import skoleintra.pgDocuments
import skoleintra.pgFrontpage
import skoleintra.pgWeekplans
import skoleintra.schildren
SKOLEBESTYELSE_NAME = 'Skolebestyrelsen'
cnames = skoleintra.schildr... |
ce6951b1e5f878ba69ff3f55c500c4309f8f4672 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='s3fs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: B... | #!/usr/bin/env python
from setuptools import setup
import versioneer
with open('requirements.txt') as file:
aiobotocore_version_suffix = ''
for line in file:
parts = line.rstrip().split('aiobotocore')
if len(parts) == 2:
aiobotocore_version_suffix = parts[1]
break
setu... | Add version requirements to extras_require | Add version requirements to extras_require
Otherwise, they'll just grab latest-and-greatest.
| Python | bsd-3-clause | fsspec/s3fs | #!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='s3fs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: B... | #!/usr/bin/env python
from setuptools import setup
import versioneer
with open('requirements.txt') as file:
aiobotocore_version_suffix = ''
for line in file:
parts = line.rstrip().split('aiobotocore')
if len(parts) == 2:
aiobotocore_version_suffix = parts[1]
break
setu... | <commit_before>#!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='s3fs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OS... | #!/usr/bin/env python
from setuptools import setup
import versioneer
with open('requirements.txt') as file:
aiobotocore_version_suffix = ''
for line in file:
parts = line.rstrip().split('aiobotocore')
if len(parts) == 2:
aiobotocore_version_suffix = parts[1]
break
setu... | #!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='s3fs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: B... | <commit_before>#!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='s3fs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OS... |
fdf8e5d872bb6579d7ae6ef7ac4c93040db3f71c | setup.py | setup.py | import os
from setuptools import setup, find_packages
import subprocess
here = os.path.abspath(os.path.dirname(__file__))
def get_version(version=None):
"Returns a version number with commit id if the git repo is present"
with open(os.path.join(here, 'VERSION')) as version_file:
version = version... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='django-geonode-client',
version=version,
author='Mila Frerichs',
author_email='mi... | Revert commit hash in get_version | Revert commit hash in get_version
| Python | mit | GeoNode/geonode-client,GeoNode/geonode-client,GeoNode/geonode-client,GeoNode/geonode-client | import os
from setuptools import setup, find_packages
import subprocess
here = os.path.abspath(os.path.dirname(__file__))
def get_version(version=None):
"Returns a version number with commit id if the git repo is present"
with open(os.path.join(here, 'VERSION')) as version_file:
version = version... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='django-geonode-client',
version=version,
author='Mila Frerichs',
author_email='mi... | <commit_before>import os
from setuptools import setup, find_packages
import subprocess
here = os.path.abspath(os.path.dirname(__file__))
def get_version(version=None):
"Returns a version number with commit id if the git repo is present"
with open(os.path.join(here, 'VERSION')) as version_file:
ve... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='django-geonode-client',
version=version,
author='Mila Frerichs',
author_email='mi... | import os
from setuptools import setup, find_packages
import subprocess
here = os.path.abspath(os.path.dirname(__file__))
def get_version(version=None):
"Returns a version number with commit id if the git repo is present"
with open(os.path.join(here, 'VERSION')) as version_file:
version = version... | <commit_before>import os
from setuptools import setup, find_packages
import subprocess
here = os.path.abspath(os.path.dirname(__file__))
def get_version(version=None):
"Returns a version number with commit id if the git repo is present"
with open(os.path.join(here, 'VERSION')) as version_file:
ve... |
df0c2093366a8f6c4d7d8117d3168303fe39c085 | setup.py | setup.py | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | Increment version in preparation for release | Increment version in preparation for release | Python | bsd-3-clause | consbio/parserutils | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | <commit_before>import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parser... | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes... | <commit_before>import subprocess
import sys
from setuptools import Command, setup
class RunTests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, '-m', 'unittest', 'parser... |
9bbe3dfa75f5fa91f526ebccdacf4b8e5220e42b | setup.py | setup.py | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Partner Feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlantic.com'... | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-partner-feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlant... | Use more standard package name django-partner-feeds | Use more standard package name django-partner-feeds
| Python | bsd-2-clause | theatlantic/django-partner-feeds | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Partner Feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlantic.com'... | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-partner-feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlant... | <commit_before>try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Partner Feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@t... | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-partner-feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlant... | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Partner Feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@theatlantic.com'... | <commit_before>try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Partner Feeds',
version=__import__('partner_feeds').__version__,
author_email='ATMOprogrammers@t... |
ef81b053e0e32546354dfc86be2c5d4b1e0f74ac | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | Update pyyaml requirement to >=3.12,<4.2 | Update pyyaml requirement to >=3.12,<4.2
Updates the requirements on [pyyaml](https://github.com/yaml/pyyaml) to permit the latest version.
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES)
- [Commits](https://github.com/yaml/pyyaml/commits/4.1... | Python | apache-2.0 | zooniverse/panoptes-cli | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | <commit_before>from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zoon... | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
... | <commit_before>from setuptools import setup, find_packages
setup(
name='panoptescli',
version='1.0.1',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zoon... |
24bda30926d06a6fdc457c61c26fd5a48b4b0755 | setup.py | setup.py | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.3",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.4",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | Bump version due to failed markdown/rST conversion in README | Bump version due to failed markdown/rST conversion in README
| Python | mit | nocarryr/django-safe-project | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.3",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.4",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | <commit_before>from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.3",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings mo... | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.4",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.3",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings module"),
url... | <commit_before>from setuptools import setup
setup(
name = "django-safe-project",
version = "0.0.3",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Start Django projects with sensitive data outside of the "
"global settings mo... |
dd0d4854e59e85e101612057d4681aa77c5fde65 | setup.py | setup.py | import codecs
from setuptools import setup
import pypandoc
long_desc = ''
with codecs.open('README.md', 'r', 'utf-8') as f:
logn_desc_md = f.read()
with codecs.open('README.rst', 'w', 'utf-8') as rf:
long_desc = pypandoc.convert('README.md', 'rst')
rf.write(long_desc)
setup(name='cronquot',
... | import codecs
from setuptools import setup
try:
import pypandoc
is_travis = False
except ImportError as e:
import os
if not 'TRAVIS' in os.environ:
raise ImportError(e)
else:
is_travis = True
def _create_log_desc(travis):
if is_travis:
return ''
_long_desc = ''
... | Fix testing error in travis. | Fix testing error in travis.
| Python | mit | pyohei/cronquot,pyohei/cronquot | import codecs
from setuptools import setup
import pypandoc
long_desc = ''
with codecs.open('README.md', 'r', 'utf-8') as f:
logn_desc_md = f.read()
with codecs.open('README.rst', 'w', 'utf-8') as rf:
long_desc = pypandoc.convert('README.md', 'rst')
rf.write(long_desc)
setup(name='cronquot',
... | import codecs
from setuptools import setup
try:
import pypandoc
is_travis = False
except ImportError as e:
import os
if not 'TRAVIS' in os.environ:
raise ImportError(e)
else:
is_travis = True
def _create_log_desc(travis):
if is_travis:
return ''
_long_desc = ''
... | <commit_before>import codecs
from setuptools import setup
import pypandoc
long_desc = ''
with codecs.open('README.md', 'r', 'utf-8') as f:
logn_desc_md = f.read()
with codecs.open('README.rst', 'w', 'utf-8') as rf:
long_desc = pypandoc.convert('README.md', 'rst')
rf.write(long_desc)
setup(name... | import codecs
from setuptools import setup
try:
import pypandoc
is_travis = False
except ImportError as e:
import os
if not 'TRAVIS' in os.environ:
raise ImportError(e)
else:
is_travis = True
def _create_log_desc(travis):
if is_travis:
return ''
_long_desc = ''
... | import codecs
from setuptools import setup
import pypandoc
long_desc = ''
with codecs.open('README.md', 'r', 'utf-8') as f:
logn_desc_md = f.read()
with codecs.open('README.rst', 'w', 'utf-8') as rf:
long_desc = pypandoc.convert('README.md', 'rst')
rf.write(long_desc)
setup(name='cronquot',
... | <commit_before>import codecs
from setuptools import setup
import pypandoc
long_desc = ''
with codecs.open('README.md', 'r', 'utf-8') as f:
logn_desc_md = f.read()
with codecs.open('README.rst', 'w', 'utf-8') as rf:
long_desc = pypandoc.convert('README.md', 'rst')
rf.write(long_desc)
setup(name... |
341d8bf56a6664be931549566f809ea69427d67a | setup.py | setup.py | from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.append("argpar... | from setuptools import setup, find_packages
import sys
exec(open('yas3fs/_version.py').read())
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.appen... | Replace `execfile()` with `exec(open().read())` for python3 | Replace `execfile()` with `exec(open().read())` for python3
| Python | mit | danilop/yas3fs,danilop/yas3fs | from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.append("argpar... | from setuptools import setup, find_packages
import sys
exec(open('yas3fs/_version.py').read())
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.appen... | <commit_before>from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires... | from setuptools import setup, find_packages
import sys
exec(open('yas3fs/_version.py').read())
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.appen... | from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.append("argpar... | <commit_before>from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires... |
3f0f1d8202a26916dfcab616c1bec02f31da330b | setup.py | setup.py | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.1',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.2',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | Change version 0.1 -> 0.2 | Change version 0.1 -> 0.2
| Python | apache-2.0 | cogniteev/python-gdrive | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.1',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.2',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | <commit_before>""" Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.1',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https... | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.2',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | """ Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.1',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https://github.com/t... | <commit_before>""" Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='python-gdrive',
version='0.1',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/python-gdrive',
download_url='https... |
6081ffcbf587352ede305e34d78c32f9ed78f44f | 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()
setup(
name='django-theherk-events',
version='1.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | Update for new version 1.8.1 | Update for new version 1.8.1
| Python | bsd-3-clause | theherk/django-theherk-events | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | <commit_before>import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-cms>=2.4.1',
... | <commit_before>import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-theherk-events',
version='1.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django-... |
a45fa05bc1f8c5f8c72db54484f8a18d2c53dadc | ibmcnx/doc/DataSources.py | ibmcnx/doc/DataSources.py | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | Create documentation of DataSource Settings | : Create documentation of DataSource Settings
Task-Url: | Python | apache-2.0 | stoeps13/ibmcnx2,stoeps13/ibmcnx2 | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | <commit_before>######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Co... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | <commit_before>######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Co... |
4559acc15b009be5d853dfdad0fdc9d3184370df | ibmcnx/doc/DataSources.py | ibmcnx/doc/DataSources.py | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | Create documentation of DataSource Settings | : Create documentation of DataSource Settings
Task-Url: | Python | apache-2.0 | stoeps13/ibmcnx2,stoeps13/ibmcnx2 | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | <commit_before>######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Co... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | ######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Connections Appli... | <commit_before>######
# Check ExId (GUID) by Email through JDBC
#
# Author: Christoph Stoettner
# Mail: christoph.stoettner@stoeps.de
# Documentation: http://scripting101.stoeps.de
#
# Version: 2.0
# Date: 2014-06-04
#
# License: Apache 2.0
#
# Check ExId of a User in all Co... |
c297b882cbe5139062672dbb295c2b42adfc1ed8 | setup.py | setup.py | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | Add authenticate.py to installed scripts | Add authenticate.py to installed scripts
| Python | mit | anthonybu/api_sdk,BrandwatchLtd/api_sdk | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | <commit_before>from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwat... | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwatch.com, paul@br... | <commit_before>from setuptools import setup
setup(
name='bwapi',
version='3.2.0',
description='A software development kit for the Brandwatch API',
url='https://github.com/BrandwatchLtd/api_sdk',
author='Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden',
author_email='amyb@brandwat... |
af0b2b4ae205adb59e9e1922ca6ec10d491ebf2a | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.0',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.1',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | Use BeautifulSoup 4.x instead of 3.x | Use BeautifulSoup 4.x instead of 3.x
BS 3.x is obsolete, switch to more recent version
| Python | bsd-3-clause | antoinealb/python-tequila | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.0',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.1',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.0',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/... | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.1',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | #!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.0',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/antoinealb/pyth... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(name='tequila-sessions',
version='1.0.0',
description='Requests session for Tequila (EPFL login manager)',
author='Antoine Albertelli',
author_email='antoine.albertelli+github@gmail.com',
url='https://github.com/... |
d404b6d606aff840819f9e811a429bd472a72e56 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | Bump statsmodels from 0.9.0 to 0.10.1 | Bump statsmodels from 0.9.0 to 0.10.1
Bumps [statsmodels](https://github.com/statsmodels/statsmodels) from 0.9.0 to 0.10.1.
- [Release notes](https://github.com/statsmodels/statsmodels/releases)
- [Changelog](https://github.com/statsmodels/statsmodels/blob/master/CHANGES.md)
- [Commits](https://github.com/statsmodels/... | Python | apache-2.0 | bugra/l1 | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'c... | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'cvxopt==1.2.3',
... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==0.24.2',
'c... |
229c71fd33956e27fc70468f3ff3d6c87796b574 | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | Include six as a requirement. | Include six as a requirement.
| Python | mit | RafRaf/django-post_office,yprez/django-post_office,ekohl/django-post_office,fapelhanz/django-post_office,ui/django-post_office,JostCrow/django-post_office,ui/django-post_office,jrief/django-post_office | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | <commit_before># -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django app to monitor... | <commit_before># -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-post_office',
version='1.1.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['post_office'],
url='https://github.com/ui/django-post_office',
license='MIT',
description='A Django... |
8b6429173e177acf3b1303e71ef717a2f26d950b | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | Add classifiers and Keywords per PyPi sample | Add classifiers and Keywords per PyPi sample
https://github.com/pypa/sampleproject/blob/master/setup.py | Python | bsd-3-clause | EnableSecurity/wafw00f,sandrogauci/wafw00f | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | <commit_before>#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email=... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email='sandro@enables... | <commit_before>#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wafw00f',
version=__import__('wafw00f').__version__,
description=('WAFW00F identifies and fingerprints '
'Web Application Firewall (WAF) products.'),
author='sandrogauci',
author_email=... |
a101321fecca49754cf3a640fbfac19953fd56fb | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | Make chandl available directly on the command line | Make chandl available directly on the command line
| Python | mit | gebn/chandl,gebn/chandl | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | <commit_before># -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:retu... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | <commit_before># -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:retu... |
6cd2a721d90c991b7c7dde221affd6ebecf70e95 | setup.py | setup.py | from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
),
]
)
| from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
extra_compile_args=['-std=c99']),
]
)
| Fix travis build error by specifying compiler arg -std=c99 | Fix travis build error by specifying compiler arg -std=c99
| Python | mit | pbrady/fastcache,pbrady/fastcache,pbrady/fastcache | from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
),
]
)
Fix travis build error by specifying com... | from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
extra_compile_args=['-std=c99']),
]
)
| <commit_before>from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
),
]
)
<commit_msg>Fix travis bu... | from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
extra_compile_args=['-std=c99']),
]
)
| from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
),
]
)
Fix travis build error by specifying com... | <commit_before>from distutils.core import setup, Extension
setup(name="fastcache", version="0.1",
packages = ["fastcache", "fastcache.tests"],
ext_modules= [Extension("fastcache._lrucache",
["src/_lrucache.c"],
),
]
)
<commit_msg>Fix travis bu... |
42ba81023397eb7bdf9361e981102aec0dd65a0b | setup.py | setup.py | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.0',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.1',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | Update package to version 1.1 | Update package to version 1.1
| Python | apache-2.0 | albertyw/pyziptax | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.0',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.1',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | <commit_before>#/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.0',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_descrip... | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.1',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | #/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.0',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_description=long_descr... | <commit_before>#/usr/bin/env python
from setuptools import setup
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(
name='pyziptax',
version='1.0',
description='Python API for accessing sales tax information from Zip-Tax.com',
long_descrip... |
b2f1c1c54f3ebb3c95de0032fc13fc03997d222c | setup.py | setup.py | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.5',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.6',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | Fix python version syntax errors, bump minimum to 3.6 [no ci] | Fix python version syntax errors, bump minimum to 3.6 [no ci]
| Python | mit | Artanicus/python-cozify,Artanicus/python-cozify | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.5',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.6',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | <commit_before>from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.5',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://githu... | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.6',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.5',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://github.com/Artanicus... | <commit_before>from setuptools import setup
import sys
import cozify
with open('README.rst') as file:
long_description = file.read()
setup(
name='cozify',
version=cozify.__version__,
python_requires='>=3.5',
author='artanicus',
author_email='python-cozify@nocturnal.fi',
url='https://githu... |
10fc032aafb22801fbb73accc7930cb57636e10c | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.8',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.9',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | Update the PyPI version to 0.2.9 | Update the PyPI version to 0.2.9
| Python | mit | Doist/todoist-python,electronick1/todoist-python | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.8',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.9',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | <commit_before># -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.8',
packages=['todoist', 'todoist.managers'],
auth... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.9',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.8',
packages=['todoist', 'todoist.managers'],
author='Doist Team'... | <commit_before># -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='todoist-python',
version='0.2.8',
packages=['todoist', 'todoist.managers'],
auth... |
03dc8e57616984631cf48fa91cee9ae2292dc067 | setup.py | setup.py | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | Add explanatory note for the req-unixsockets version dependency | Add explanatory note for the req-unixsockets version dependency
| Python | apache-2.0 | lxc/pylxd,lxc/pylxd | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | <commit_before># Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 requ... | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 applica... | <commit_before># Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# 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 requ... |
cb59ed68e390d92b8ba2d6aaeece998bd389d64b | setup.py | setup.py | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
pass
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://gi... | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://github.com/... | Remove unneeded `pass` in except block. | Remove unneeded `pass` in except block.
| Python | mit | estan/gauges | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
pass
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://gi... | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://github.com/... | <commit_before>from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
pass
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
... | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://github.com/... | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
pass
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://gi... | <commit_before>from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
pass
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
... |
6eff80bcf12357e943d705b8812822b1c0c0e409 | tests/sentry/metrics/test_datadog.py | tests/sentry/metrics/test_datadog.py | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | Remove no longer valid test | Remove no longer valid test
| Python | bsd-3-clause | pauloschilling/sentry,pauloschilling/sentry,pauloschilling/sentry | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | <commit_before>from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.'... | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.')
@patch('... | <commit_before>from __future__ import absolute_import
import socket
from mock import patch
from sentry.metrics.datadog import DatadogMetricsBackend
from sentry.testutils import TestCase
class DatadogMetricsBackendTest(TestCase):
def setUp(self):
self.backend = DatadogMetricsBackend(prefix='sentrytest.'... |
1a9c9b60d8e0b69b5d196ff8323befd6d9e330aa | make_mozilla/events/models.py | make_mozilla/events/models.py | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | Allow blank source_id in event, tweak formatting of the code | Allow blank source_id in event, tweak formatting of the code
| Python | bsd-3-clause | mozilla/make.mozilla.org,mozilla/make.mozilla.org,mozilla/make.mozilla.org,mozilla/make.mozilla.org | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | <commit_before>from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank... | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank=True)
obj... | <commit_before>from django.contrib.gis.db import models
from django.contrib.gis import geos
from datetime import datetime
class Venue(models.Model):
name = models.CharField(max_length=255)
street_address = models.TextField()
country = models.CharField(max_length=255)
location = models.PointField(blank... |
5eb67411a44366ed90a6078f29f1977013c1a39c | awx/main/migrations/0017_v300_prompting_migrations.py | awx/main/migrations/0017_v300_prompting_migrations.py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('main', '0... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _rbac as rbac
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migrati... | Rebuild role hierarchy after making changes in migrations | Rebuild role hierarchy after making changes in migrations
Signals don't fire in migrations, so gotta do this step manually
| Python | apache-2.0 | snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx,snahelou/awx,wwitzel3/awx | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('main', '0... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _rbac as rbac
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migrati... | <commit_before># -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _rbac as rbac
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migrati... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('main', '0... | <commit_before># -*- coding: utf-8 -*-
from __future__ import unicode_literals
from awx.main.migrations import _ask_for_variables as ask_for_variables
from awx.main.migrations import _migration_utils as migration_utils
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
... |
bb90fe7c59435d1bef361b64d4083710ffadcf7f | common/apps.py | common/apps.py | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | Stop server startup when required environment variables are missing | Stop server startup when required environment variables are missing
| Python | mit | DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange,DemocracyLab/CivicTechExchange | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | <commit_before>from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
... | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
if db_is... | <commit_before>from django.apps import AppConfig
from django.conf import settings
from common.helpers.db import db_is_initialized
class CommonConfig(AppConfig):
name = 'common'
def ready(self):
self.display_missing_environment_variables()
from common.helpers.tags import import_tags_from_csv
... |
8cadb30e1c1f4d8e6302a3960408823179a263c8 | account_invoice_partner/__openerp__.py | account_invoice_partner/__openerp__.py | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | Add OCA as author of OCA addons | Add OCA as author of OCA addons
In order to get visibility on https://www.odoo.com/apps the OCA board has
decided to add the OCA as author of all the addons maintained as part of the
association.
| Python | agpl-3.0 | OCA/account-invoicing,OCA/account-invoicing | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | <commit_before># -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it... | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | # -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the term... | <commit_before># -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012-2013 Therp BV (<http://therp.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it... |
442b083e9d1618569aa96a653ed2c0e4dfc27e59 | saleor/search/forms.py | saleor/search/forms.py | from django import forms
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label='Query', required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
query = self.cleaned_data['q']
results = backend.search(query... | from django import forms
from django.utils.translation import pgettext
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label=pgettext('Search form label', 'Query'), required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
... | Add contextual marker for search app | Add contextual marker for search app
| Python | bsd-3-clause | jreigel/saleor,car3oon/saleor,KenMutemi/saleor,HyperManTT/ECommerceSaleor,itbabu/saleor,UITools/saleor,HyperManTT/ECommerceSaleor,UITools/saleor,maferelo/saleor,tfroehlich82/saleor,mociepka/saleor,mociepka/saleor,UITools/saleor,maferelo/saleor,UITools/saleor,tfroehlich82/saleor,UITools/saleor,jreigel/saleor,itbabu/sale... | from django import forms
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label='Query', required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
query = self.cleaned_data['q']
results = backend.search(query... | from django import forms
from django.utils.translation import pgettext
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label=pgettext('Search form label', 'Query'), required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
... | <commit_before>from django import forms
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label='Query', required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
query = self.cleaned_data['q']
results = backe... | from django import forms
from django.utils.translation import pgettext
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label=pgettext('Search form label', 'Query'), required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
... | from django import forms
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label='Query', required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
query = self.cleaned_data['q']
results = backend.search(query... | <commit_before>from django import forms
from .backends import get_search_backend
class SearchForm(forms.Form):
q = forms.CharField(label='Query', required=True)
def search(self, model_or_queryset):
backend = get_search_backend('default')
query = self.cleaned_data['q']
results = backe... |
6faf5a38083fd21fbf7ed80d785873c977b8de09 | setup.py | setup.py | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | Update install_requires: pycopg2 >= 2.5 | Update install_requires: pycopg2 >= 2.5
| Python | apache-2.0 | lpsinger/testing.postgresql,tk0miya/testing.postgresql | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | <commit_before># -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python ... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"P... | <commit_before># -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python ... |
e9cd60485ebfbe0afee60a70aea318e3e820f948 | setup.py | setup.py | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | Add table generation console script. | Add table generation console script.
| Python | mit | jga/capmetrics-etl,jga/capmetrics-etl | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | <commit_before>#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience ... | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | #!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience :: Developers',... | <commit_before>#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_readme():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
author="Julio Gonzalez Altamirano",
author_email='devjga@gmail.com',
classifiers=[
'Intended Audience ... |
52b481e77756530ae14de2e55a977dfac269f6b5 | model/hss/__init__.py | model/hss/__init__.py | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | Make data source module for hss division debug-only, until it is fixed | Make data source module for hss division debug-only, until it is fixed
| Python | mit | MarauderXtreme/sipa,fgrsnau/sipa,agdsn/sipa,lukasjuhrich/sipa,agdsn/sipa,agdsn/sipa,lukasjuhrich/sipa,MarauderXtreme/sipa,lukasjuhrich/sipa,agdsn/sipa,fgrsnau/sipa,MarauderXtreme/sipa,fgrsnau/sipa,lukasjuhrich/sipa | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | <commit_before># -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss'... | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | # -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss',
display_n... | <commit_before># -*- coding: utf-8 -*-
from flask.ext.babel import gettext
from ..division import Division
from database_utils import init_db
from ldap_utils import init_ldap
from ipaddress import IPv4Network
import user
def init_context(app):
init_db(app)
init_ldap(app)
division = Division(
name='hss'... |
61b5bc8a7e81225a83d195e016bc4adbd7ca1db5 | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | Add Python 2.6 to classifiers | Add Python 2.6 to classifiers
| Python | mit | paltman/pymediainfo,paltman-archive/pymediainfo | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | <commit_before>from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_pac... | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_packages(),
na... | <commit_before>from setuptools import setup, find_packages
setup(
name='pymediainfo',
version='2.1.5',
author='Louis Sautier',
author_email='sautier.louis@gmail.com',
url='https://github.com/sbraz/pymediainfo',
description="""A Python wrapper for the mediainfo library.""",
packages=find_pac... |
1c9feb7b2d9a4ac1a1d3bef42139ec5a7f26b95e | jsonrpcclient/__init__.py | jsonrpcclient/__init__.py | """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
from jsonrpcclient.server import Server
| """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.WARNING)
from jsonrpcclient.server import Server
| Set the loglevel again, seems like in certain situations, the default log level is 0 | Set the loglevel again, seems like in certain situations, the default log level is 0
| Python | mit | bcb/jsonrpcclient | """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
from jsonrpcclient.server import Server
Set the loglevel again, seems like in certain situations, the default log level is 0 | """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.WARNING)
from jsonrpcclient.server import Server
| <commit_before>"""__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
from jsonrpcclient.server import Server
<commit_msg>Set the loglevel again, seems like in certain situations, the default log level is 0<commit_after> | """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.WARNING)
from jsonrpcclient.server import Server
| """__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
from jsonrpcclient.server import Server
Set the loglevel again, seems like in certain situations, the default log level is 0"""__init__.py"""
import logging
logger = logging.getLogger('jsonrpccli... | <commit_before>"""__init__.py"""
import logging
logger = logging.getLogger('jsonrpcclient')
logger.addHandler(logging.StreamHandler())
from jsonrpcclient.server import Server
<commit_msg>Set the loglevel again, seems like in certain situations, the default log level is 0<commit_after>"""__init__.py"""
import loggin... |
b20c1f0c5a71d46b80b405b6561869dfd52307c1 | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | Fix pip developers beliving that they know what is the best for everyone else | Fix pip developers beliving that they know what is the best for everyone else
| Python | mit | boreq/botnet | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | <commit_before>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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),... | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | 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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),
url='https... | <commit_before>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='botnet',
version='0.1.0',
author='boreq',
description = ('IRC bot.'),
long_description=read('README.md'),... |
e38fae5f5115b0707c16afe6b796609338da9bca | setup.py | setup.py | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
setup(
name='Weitersager',
version='0.2-dev',
description='A pro... | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
requirements = read_lines_from_file('requirements.txt')
setup(
name='Wei... | Read installation requirements from dedicated file | Read installation requirements from dedicated file
Removes duplication.
| Python | mit | homeworkprod/weitersager | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
setup(
name='Weitersager',
version='0.2-dev',
description='A pro... | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
requirements = read_lines_from_file('requirements.txt')
setup(
name='Wei... | <commit_before>import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
setup(
name='Weitersager',
version='0.2-dev',
des... | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
requirements = read_lines_from_file('requirements.txt')
setup(
name='Wei... | import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
setup(
name='Weitersager',
version='0.2-dev',
description='A pro... | <commit_before>import codecs
from setuptools import setup
def read_lines_from_file(filename):
with codecs.open(filename, encoding='utf-8') as f:
return [line.rstrip('\n') for line in f]
long_description = read_lines_from_file('README.rst')
setup(
name='Weitersager',
version='0.2-dev',
des... |
26d063cd78140d69160e16364a6cdda1e26516d2 | setup.py | setup.py | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius>=1.0',
]
setup(
name='engerek',
... | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius==1.1-dev',
'Cython==0.19.2',
]
setup... | Use github master for pyjnius | Use github master for pyjnius
| Python | apache-2.0 | cilekagaci/engerek | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius>=1.0',
]
setup(
name='engerek',
... | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius==1.1-dev',
'Cython==0.19.2',
]
setup... | <commit_before># coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius>=1.0',
]
setup(
name=... | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius==1.1-dev',
'Cython==0.19.2',
]
setup... | # coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius>=1.0',
]
setup(
name='engerek',
... | <commit_before># coding=utf-8
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '1.0-a'
install_requires = [
'jnius>=1.0',
]
setup(
name=... |
80019f7d0b1ef1d8624e6e9739c069af38a2ed5c | 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='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | Add matplotlib as dev dependency | Add matplotlib as dev dependency
| Python | mit | wind-python/windpowerlib | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | <commit_before>import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
author='oe... | <commit_before>import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='windpowerlib',
version='0.2.1dev',
description='Creating time series of wind power plants.',
url='http://github.com/wind-python/windpowerlib',
... |
c79b729a5dda5661a5eb2e640aa402aab6f397a2 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault'],
)
| #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault', 'sat... | Add 'satire' tag to escape orange website ridicule | Add 'satire' tag to escape orange website ridicule
| Python | mit | cbgbt/segfault,cbgbt/segfault | #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault'],
)
A... | #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault', 'sat... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['... | #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault', 'sat... | #!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['segfault'],
)
A... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(
name="segfault",
version="0.0.1",
author="Sean Kelly",
author_email="sean.kelly.2992@gmail.com",
description="A library that makes the Python interpreter segfault.",
license="MIT",
keywords="segfault",
py_modules=['... |
45e8df4123926f56391809f78ef22d4e012a4bf8 | setup.py | setup.py | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | Add PyYAML to ``ssl`` extras_require | Add PyYAML to ``ssl`` extras_require
| Python | bsd-3-clause | rafaduran/python-mcollective,rafaduran/python-mcollective,rafaduran/python-mcollective,rafaduran/python-mcollective | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | <commit_before>import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ =... | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ = set([dep.name ... | <commit_before>import sys
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
import setuptools
from pip import req
from setuptools.command import test
REQ = set([dep.name
for dep in req.parse_requirements('requirements/base.txt')])
TREQ =... |
b43e6636932d34743b4680898b235dfdcc1cd934 | setup.py | setup.py | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.1',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.2',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | Increment version number to 0.5.2 for new release. | Increment version number to 0.5.2 for new release.
| Python | apache-2.0 | glasser/pymox,JustinAtPsycle/pymox,arne-cl/pymox,githubashto/pymox,shraddha-pandhe/pymox,MarkBerlin78/pymox,qin/pymox,ivancrneto/pymox,jackxiang/pymox | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.1',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.2',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | <commit_before>#!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.1',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Ver... | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.2',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | #!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.1',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Version 2.0',
... | <commit_before>#!/usr/bin/python2.4
from distutils.core import setup
setup(name='mox',
version='0.5.1',
py_modules=['mox', 'stubout'],
url='http://code.google.com/p/pymox/',
maintainer='pymox maintainers',
maintainer_email='mox-discuss@googlegroups.com',
license='Apache License, Ver... |
6c03cb4e97ddd06b51d8cdb553a552ce49e9fad4 | setup.py | setup.py | from setuptools import setup, find_packages
setup(name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne... | from setuptools import setup, find_packages
setup(
name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne@delaat.n... | Add theme templates and static as package_data. | Add theme templates and static as package_data.
| Python | mit | 153957/153957-theme,153957/153957-theme | from setuptools import setup, find_packages
setup(name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne... | from setuptools import setup, find_packages
setup(
name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne@delaat.n... | <commit_before>from setuptools import setup, find_packages
setup(name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
aut... | from setuptools import setup, find_packages
setup(
name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne@delaat.n... | from setuptools import setup, find_packages
setup(name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
author_email="arne... | <commit_before>from setuptools import setup, find_packages
setup(name="153957-theme",
version="1.0.0",
packages=find_packages(),
url="http://github.com/153957/153957-theme/",
bugtrack_url='http://github.com/153957/153957-theme/issues',
license='MIT',
author="Arne de Laat",
aut... |
8846415aa0a362ceee1e8c07f35310cff00223c0 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | Upgrade hvac to have latest fix on the consul secret engine | Upgrade hvac to have latest fix on the consul secret engine
Signed-off-by: Damien Goldenberg <153f528c345216f3d6a78cf62c6dd7299da883e1@gmail.com>
| Python | mit | TerryHowe/ansible-modules-hashivault,TerryHowe/ansible-modules-hashivault | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | <commit_before>#!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
... | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | #!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
long_descriptio... | <commit_before>#!/usr/bin/env python
from setuptools import setup
py_files = [
"ansible/module_utils/hashivault",
"ansible/plugins/lookup/hashivault",
"ansible/plugins/action/hashivault_read_to_file",
"ansible/plugins/action/hashivault_write_from_file",
]
files = [
"ansible/modules/hashivault",
]
... |
ebe23ee92bb72d9daa756925694cc2cda2e53df0 | setup.py | setup.py | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1.0',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | Change version to be able resubmit to pypi | Change version to be able resubmit to pypi
| Python | mit | bodja/django-gcs | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1.0',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | <commit_before>from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gclou... | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1.0',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gcloud == 0.11.0'
... | <commit_before>from setuptools import setup
setup(
name='django-gcs',
packages=['django_gcs'],
version='0.1',
description='Django file storage backend for Google Cloud Storage',
author='Bogdan Radko',
author_email='bodja.rules@gmail.com',
install_requires=[
'django',
'gclou... |
84d87a3dab6eecc65f8b04276a1fa7dab3d43461 | setup.py | setup.py | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | Upgrade to support Django 1.7 | Upgrade to support Django 1.7
| Python | mit | mariocesar/django-rocket,mariocesar/django-rocket | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | <commit_before>from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
descri... | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
description=descripti... | <commit_before>from django_rocket import __version__, __author__, __email__, __license__
from setuptools import setup, find_packages
README = open('README.rst').read()
# Second paragraph has the short description
description = README.split('\n')[1]
setup(
name='django-rocket',
version=__version__,
descri... |
214685d155164565be308f6b2714c03557c9b774 | setup.py | setup.py | import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
version='0.9.3.dev0',
description="Gen... | 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()
))
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
ve... | Use io.open with encoding='utf-8' and flake8 compliance | Use io.open with encoding='utf-8' and flake8 compliance
| Python | bsd-3-clause | taschini/reg,morepath/reg | import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
version='0.9.3.dev0',
description="Gen... | 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()
))
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
ve... | <commit_before>import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
version='0.9.3.dev0',
d... | 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()
))
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
ve... | import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
version='0.9.3.dev0',
description="Gen... | <commit_before>import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
tests_require = [
'pytest >= 2.0',
'pytest-cov',
'pytest-remove-stale-bytecode',
]
setup(name='reg',
version='0.9.3.dev0',
d... |
1d729ada6c81cdf75c6f76b996337e46d7b679a0 | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | Change mode of mconvert to be globaly executable | Change mode of mconvert to be globaly executable
| Python | bsd-3-clause | jonathf/matlab2cpp,jonathf/matlab2cpp,jonathf/matlab2cpp | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | <commit_before>#!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package... | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | #!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package_dir={'': 'src'... | <commit_before>#!/usr/bin/env python
# encoding: utf8
import platform
import os
system = platform.system()
from distutils.core import setup
setup(
name='matlab2cpp',
version='0.2',
packages=['matlab2cpp', 'matlab2cpp.translations',
'matlab2cpp.testsuite', 'matlab2cpp.inlines'],
package... |
052cac696f044119efc34424b0e1778c77b90399 | setup.py | setup.py | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', ],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
description='Simple par... | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', 'test_tcxparser'],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
descrip... | Add test suite to the distribution | Add test suite to the distribution
| Python | bsd-2-clause | vkurup/python-tcxparser,SimonArnu/python-tcxparser,vkurup/python-tcxparser | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', ],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
description='Simple par... | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', 'test_tcxparser'],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
descrip... | <commit_before>from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', ],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
descript... | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', 'test_tcxparser'],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
descrip... | from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', ],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
description='Simple par... | <commit_before>from setuptools import setup
from tcxparser import __version__
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='vinod@kurup.com',
py_modules=['tcxparser', ],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
descript... |
f65ab66bd34cdd47d1d0958aa3a136292b9d1f2b | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | Add version number to egg, will it blend? | Add version number to egg, will it blend?
| Python | agpl-3.0 | amcat/amcat-scraping,amcat/amcat-scraping | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifier... | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | #!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifiers=[
"Li... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(
version='0.10',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="wouter@vanatteveldt.com",
packages=["amcatscraping"],
classifier... |
02ff4dd9434b4ff8f72128550fc70b8ba94ca506 | setup.py | setup.py | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | Change license from Proprietary to AGPLv3 | Change license from Proprietary to AGPLv3
| Python | agpl-3.0 | zero-db/zerodb,zerodb/zerodb,zerodb/zerodb,zero-db/zerodb | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | <commit_before>from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle... | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle',
'pyellip... | <commit_before>from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'BTrees',
'zope.component',
'zodbpickle',
'ZODB',
'zope.index',
'repoze.catalog',
'lz4-cffi',
'zc.zlibstorage',
'pycryptodome',
'click',
'flask-cors',
'flask',
'requests',
'jsonpickle... |
a0a8dfcd74e18917c1795f59cc7101295ba5b067 | 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.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.1.1',
author = 'Robert Kern... | Update the required argparse version since the version change is not backwards-compatible. | BUG: Update the required argparse version since the version change is not backwards-compatible.
git-svn-id: 228151c6c098cf6fb629a8cadc3a43437d5f10bd@69 b5260ef8-a2c4-4e91-82fd-f242746c304a
| Python | bsd-3-clause | mindw/grin,while0pass/grin,cpcloud/grin,lecheel/grin,LuizCentenaro/grin | 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.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.1.1',
author = 'Robert Kern... | <commit_before>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.1',
author... | 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.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.1.1',
author = 'Robert Kern... | <commit_before>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.1',
author... |
ac63e960270d0594e1db6d257008b9035344c57e | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | Use a new version number | Use a new version number
| Python | bsd-3-clause | reincubate/pytest-django,hoh/pytest-django,ktosiek/pytest-django,tomviner/pytest-django,pelme/pytest-django,thedrow/pytest-django,bforchhammer/pytest-django,felixonmars/pytest-django,davidszotten/pytest-django,pombredanne/pytest_django,RonnyPfannschmidt/pytest_django,ojake/pytest-django,aptivate/pytest-django | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | <commit_before>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in bel... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read... | <commit_before>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in bel... |
5b050589639c21aecfa5f9dffc8c739920bbd05c | setup.py | setup.py | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | Add lsst-dd-rtd-theme as explicit dependency | Add lsst-dd-rtd-theme as explicit dependency
This is needed since lsst-dd-rtd-theme is configured via the ddconfig
module. I'm pinning the theme version to 0.1 so that documenteer's
version effectively controls the version of the theme as well.
| Python | mit | lsst-sqre/documenteer,lsst-sqre/sphinxkit,lsst-sqre/documenteer | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | <commit_before>from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
... | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
full_filename... | <commit_before>from setuptools import setup, find_packages
import os
packagename = 'documenteer'
description = 'Tools for LSST DM documentation projects'
author = 'Jonathan Sick'
author_email = 'jsick@lsst.org'
license = 'MIT'
url = 'https://github.com/lsst-sqre/documenteer'
version = '0.1.7'
def read(filename):
... |
2cf406b6542b5a518f302925cf61a2ee957cb5db | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0-dev",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
... | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
au... | Remove dev suffix from version | Remove dev suffix from version
It is not a valid Python version specifier.
| Python | mit | tomleese/tvnamer,thomasleese/tvnamer | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0-dev",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
... | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
au... | <commit_before>#!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0-dev",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="... | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
au... | #!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0-dev",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="Tom Leese",
... | <commit_before>#!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="tvnamer",
version="1.0.0-dev",
description="Utility to rename lots of TV video files using the TheTVDB.",
long_description=long_description,
author="... |
428ce0c6d1d90eea1fb6e5fea192b92f2cd4ea36 | setup.py | setup.py | from distutils.core import setup
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob/paws',
packages=['paws', 'paws.contrib', 'paws.views'],
)
| from distutils.core import setup
with open('README.md') as fin:
readme = fin.read()
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
long_description=readme,
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob... | Include readme as long description | Include readme as long description
| Python | bsd-3-clause | funkybob/paws | from distutils.core import setup
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob/paws',
packages=['paws', 'paws.contrib', 'paws.views'],
)
Include readme as lon... | from distutils.core import setup
with open('README.md') as fin:
readme = fin.read()
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
long_description=readme,
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob... | <commit_before>from distutils.core import setup
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob/paws',
packages=['paws', 'paws.contrib', 'paws.views'],
)
<commi... | from distutils.core import setup
with open('README.md') as fin:
readme = fin.read()
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
long_description=readme,
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob... | from distutils.core import setup
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob/paws',
packages=['paws', 'paws.contrib', 'paws.views'],
)
Include readme as lon... | <commit_before>from distutils.core import setup
setup(
name='PAWS',
version='0.1.0',
description='Python AWS Tools for Serverless',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='https://github.com/funkybob/paws',
packages=['paws', 'paws.contrib', 'paws.views'],
)
<commi... |
508c7049cc4d3f0d933907db289c8557c359b4d0 | setup.py | setup.py | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | Set cov-core dependency to 1.10 | Set cov-core dependency to 1.10
| Python | mit | pytest-dev/pytest-cov,moreati/pytest-cov,schlamar/pytest-cov,ionelmc/pytest-cover,opoplawski/pytest-cov,wushaobo/pytest-cov | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | <commit_before>import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
... | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
long... | <commit_before>import setuptools
setuptools.setup(name='pytest-cov',
version='1.6',
description='py.test plugin for coverage reporting with '
'support for both centralised and distributed testing, '
'including subprocesses and multiprocessing',
... |
2756239ccb9976a93d8c19a1ff071c64f211980c | setup.py | setup.py | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | Add Python 3.x versions to classifiers | Add Python 3.x versions to classifiers
Things seem to be working with 3.x too.
| Python | bsd-3-clause | tteearu/python-erply-api | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | <commit_before>#!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
... | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | #!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
long_descripti... | <commit_before>#!/usr/bin/env python
"""
Erply-API
---------
Python wrapper for Erply API
"""
from distutils.core import setup
setup(
name='ErplyAPI',
version='0.2015.01.16-dev',
description='Python wrapper for Erply API',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
... |
1312426276465a16f7e490a4d78a73fb5a92f58c | setup.py | setup.py | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | Fix tests: pypugly has two packages: pypugly and zerotk. | Fix tests: pypugly has two packages: pypugly and zerotk.
| Python | mit | zerotk/pypugly,zerotk/pypugly | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | <commit_before>#!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Anot... | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | #!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Another HTML genera... | <commit_before>#!/bin/env python
from setuptools import setup
setup(
name='pypugly',
use_scm_version=True,
author='Alexandre Andrade',
author_email='kaniabi@gmail.com',
url='https://github.com/zerotk/pypugly',
description='Another HTML generator based on JADE.',
long_description='''Anot... |
e0feb54b337260476dd87a9c03b6835986cd7ba9 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr'],
pbr=True,
)
| #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr>=0.10.0'],
pbr=True,
)
| Add version constraint to pbr | Add version constraint to pbr
| Python | mit | CloudBrewery/docrane | #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr'],
pbr=True,
)
Add version constraint to pbr | #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr>=0.10.0'],
pbr=True,
)
| <commit_before>#!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr'],
pbr=True,
)
<commit_msg>Add version constraint to pbr<commit_after> | #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr>=0.10.0'],
pbr=True,
)
| #!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr'],
pbr=True,
)
Add version constraint to pbr#!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
... | <commit_before>#!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
setup_requires=['pbr'],
pbr=True,
)
<commit_msg>Add version constraint to pbr<commit_after>#!/usr/bin/env python
from setuptools import setup
try:
import multiprocessing... |
a04a8c7d8e1087df39025d6e798d83438ac35f77 | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
)
| #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
requires=['p... | Add pysnmp as a dependency | Add pysnmp as a dependency
| Python | mit | leonhandreke/hpswitch,thechristschn/hpswitch | #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
)
Add pysnmp... | #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
requires=['p... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
... | #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
requires=['p... | #!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
)
Add pysnmp... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
setup(name='hpswitch',
version='0.1',
description="A library for interacting with HP Networking switches",
packages=['hpswitch', ],
url='https://github.com/leonhandreke/hpswitch',
license="MIT License",
... |
5a214907e61548d38606f09721b0d3ff4a7458a6 | 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.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | Add model for certificate signing request (CSR) | Add model for certificate signing request (CSR)
Clean out view/db_init code from scaffold.
Replace routes from scaffold.
Add pyOpenSSL dependancy to setup.py.
| Python | agpl-3.0 | ModioAB/caramel-client,ModioAB/caramel-client | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | <commit_before>import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
"pyramid_debug... | <commit_before>import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.txt")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
requires = [
"pyramid",
"SQLAlchemy",
"transaction",
"pyramid_tm",
... |
ba54f2aa487c1a719a133ab761bd7be5af43e447 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | Add new script for running IGMF analysis. | Add new script for running IGMF analysis.
| Python | bsd-3-clause | woodmd/haloanalysis,woodmd/haloanalysis | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | <commit_before>#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
classifiers... | <commit_before>#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
from haloanalysis.version import get_git_version
setup(name='haloanalysis',
version=get_git_version(),
license='BSD',
packages=find_packages(exclude='tests'),
include_package_data = True,
... |
2b74737db827a4ddc6e4ba678c31304d6f857b47 | setup.py | setup.py | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | Mark as for CPython only | Mark as for CPython only
| Python | mit | MBradbury/python_java_random,MBradbury/python_java_random,MBradbury/python_java_random | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | <commit_before>from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modul... | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modules=[Extension("... | <commit_before>from distutils.core import setup, Extension
setup(name="java_random", version="1.0.1",
description="Provides a fast implementation of the Java random number generator",
author="Matthew Bradbury",
license="MIT",
url="https://github.com/MBradbury/python_java_random",
ext_modul... |
c21c286b56dec481eb36d72a60560606e1d70768 | setup.py | setup.py | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | Install varnishadm instead of varnish | Install varnishadm instead of varnish | Python | bsd-3-clause | ByteInternet/python-varnishadm | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | <commit_before>from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com... | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/pyth... | <commit_before>from distutils.core import setup
setup(
name='python-varnish',
version='0.2.2',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com... |
83598d24c46683b7d2eb3e99d39cbd5babba5073 | tests/api/views/clubs/create_test.py | tests/api/views/clubs/create_test.py | from skylines.model import Club
from tests.api import basic_auth
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen',
})
assert res.status_code == 200
... | from skylines.model import Club
from tests.api import basic_auth
from tests.data import add_fixtures, clubs
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen'... | Add more "PUT /clubs" tests | tests/api: Add more "PUT /clubs" tests
| Python | agpl-3.0 | RBE-Avionik/skylines,Harry-R/skylines,shadowoneau/skylines,skylines-project/skylines,Harry-R/skylines,shadowoneau/skylines,Turbo87/skylines,Turbo87/skylines,RBE-Avionik/skylines,Harry-R/skylines,Turbo87/skylines,skylines-project/skylines,skylines-project/skylines,Turbo87/skylines,shadowoneau/skylines,RBE-Avionik/skylin... | from skylines.model import Club
from tests.api import basic_auth
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen',
})
assert res.status_code == 200
... | from skylines.model import Club
from tests.api import basic_auth
from tests.data import add_fixtures, clubs
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen'... | <commit_before>from skylines.model import Club
from tests.api import basic_auth
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen',
})
assert res.stat... | from skylines.model import Club
from tests.api import basic_auth
from tests.data import add_fixtures, clubs
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen'... | from skylines.model import Club
from tests.api import basic_auth
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen',
})
assert res.status_code == 200
... | <commit_before>from skylines.model import Club
from tests.api import basic_auth
def test_create(db_session, client, test_user):
headers = basic_auth(test_user.email_address, test_user.original_password)
res = client.put('/clubs', headers=headers, json={
'name': 'LV Aachen',
})
assert res.stat... |
f381d7f83fa86c1b7777f3fe8bad00c70b917937 | kobo_playground/celery.py | kobo_playground/celery.py | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | Fix Celery configuration for AppConfig in INSTALLED_APPS | Fix Celery configuration for AppConfig in INSTALLED_APPS
| Python | agpl-3.0 | onaio/kpi,onaio/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,onaio/kpi,kobotoolbox/kpi,onaio/kpi | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | <commit_before># http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the d... | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | # http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the default Django s... | <commit_before># http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
from __future__ import absolute_import
import os
from celery import Celery
# Attempt to determine the project name from the directory containing this file
PROJECT_NAME = os.path.basename(os.path.dirname(__file__))
# Set the d... |
89d9a8a7d6eb5e982d1728433ea2a9dfbd9d1259 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.2',
description = 'Tools to work with i2p.',
author = 'contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
'... | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.3',
description = 'Tools to work with i2p.',
author = 'See contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
... | Change version to 0.3 due to functions changing name. | Change version to 0.3 due to functions changing name.
| Python | mit | chris-barry/i2py | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.2',
description = 'Tools to work with i2p.',
author = 'contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
'... | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.3',
description = 'Tools to work with i2p.',
author = 'See contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.2',
description = 'Tools to work with i2p.',
author = 'contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production... | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.3',
description = 'Tools to work with i2p.',
author = 'See contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
... | #!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.2',
description = 'Tools to work with i2p.',
author = 'contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production/Stable',
'... | <commit_before>#!/usr/bin/env python
from setuptools import setup
setup(name = 'i2py',
version = '0.2',
description = 'Tools to work with i2p.',
author = 'contributors.txt',
author_email = 'Anonymous',
classifiers = [
'Development Status :: 3 - Alpha',
#'Development Status :: 5 - Production... |
06c17c0ecd01b4dccc8495785532ce6a377eb99f | 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="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | Add `".dev0"` suffix to lower `"oedialect"` bound | Add `".dev0"` suffix to lower `"oedialect"` bound
Readthedocs still picked up version 0.0.4, even with 0.0.5 being
specified as the lower bound. Maybe it's because `oedialect` only has
`.dev0` releases in which case adding the explicit suffix fixes that.
Fingers crossed.
| Python | mit | oemof/feedinlib | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | <commit_before>import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
au... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | <commit_before>import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0rc1",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
au... |
9fea1ab22a4d89c975767527e0d83ca224734d34 | setup.py | setup.py | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | Add reconnect backoff and refactor for easier testing | Add reconnect backoff and refactor for easier testing
| Python | mit | ejesse/gobblegobble | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | <commit_before>import os
from setuptools import find_packages, 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='gobblegob... | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | import os
from setuptools import find_packages, 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='gobblegobble',
versi... | <commit_before>import os
from setuptools import find_packages, 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='gobblegob... |
7e44bb64bfabce3fde77a774c8d13df094f8e0a2 | setup.py | setup.py | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | Increase version number to 0.1.2b | Increase version number to 0.1.2b
| Python | mit | chovanecm/sacredboard,chovanecm/sacredboard,chovanecm/sacredboard | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | <commit_before>from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
... | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
classifiers=[
... | <commit_before>from setuptools import setup, find_packages
with open('description.txt') as f:
long_description = ''.join(f.readlines())
def get_requirements():
with open("requirements.txt") as f:
return f.readlines()
setup(
author="Martin Chovanec",
author_email="chovamar@fit.cvut.cz",
... |
51b60dc34f9ce2c613e3c79275ccb2495faaf180 | setup.py | setup.py | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
author_email... | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom', 'envoy']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
aut... | Use envoy to wrap commands. | Use envoy to wrap commands.
| Python | bsd-2-clause | ohsu-qin/qipipe | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
author_email... | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom', 'envoy']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
aut... | <commit_before>import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
... | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom', 'envoy']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
aut... | import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
author_email... | <commit_before>import glob
from setuptools import setup, find_packages
__version__ = open('version.txt').read()
__doc__ = 'qipipe processes the OHSU QIN study images. See the README file for more information.'
requires = ['pydicom']
setup(
name = 'qipipe',
version = __version__,
author = 'Fred Loney',
... |
a1e18385c2c5df9db8390b2da4d5baa2465f150e | webcomix/tests/test_comic_availability.py | webcomix/tests/test_comic_availability.py | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
def test_supported_comics():
for comic_name, comic_info in supported_comics.items():
comic = Comic(comic_name, *comic_info)
first_pag... | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
@pytest.mark.parametrize("comic_name", list(supported_comics.keys()))
def test_supported_comics(comic_name):
comic = Comic(comic_name, *supported_com... | Test comic availability of all supported comics independently through parametrization | Test comic availability of all supported comics independently through parametrization
| Python | mit | J-CPelletier/webcomix,J-CPelletier/WebComicToCBZ,J-CPelletier/webcomix | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
def test_supported_comics():
for comic_name, comic_info in supported_comics.items():
comic = Comic(comic_name, *comic_info)
first_pag... | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
@pytest.mark.parametrize("comic_name", list(supported_comics.keys()))
def test_supported_comics(comic_name):
comic = Comic(comic_name, *supported_com... | <commit_before>import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
def test_supported_comics():
for comic_name, comic_info in supported_comics.items():
comic = Comic(comic_name, *comic_info)
... | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
@pytest.mark.parametrize("comic_name", list(supported_comics.keys()))
def test_supported_comics(comic_name):
comic = Comic(comic_name, *supported_com... | import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
def test_supported_comics():
for comic_name, comic_info in supported_comics.items():
comic = Comic(comic_name, *comic_info)
first_pag... | <commit_before>import pytest
from webcomix.comic import Comic
from webcomix.supported_comics import supported_comics
from webcomix.util import check_first_pages
@pytest.mark.slow
def test_supported_comics():
for comic_name, comic_info in supported_comics.items():
comic = Comic(comic_name, *comic_info)
... |
43cb656c5318d656fdff6d7bc3a2d6f69861c714 | setup.py | setup.py | from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_description=long_description,
author="Martijn ... | 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='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_d... | Use io.open with encoding='utf-8' and flake8 compliance | Use io.open with encoding='utf-8' and flake8 compliance
| Python | bsd-3-clause | morepath/dectate | from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_description=long_description,
author="Martijn ... | 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='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_d... | <commit_before>from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_description=long_description,
a... | 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='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_d... | from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_description=long_description,
author="Martijn ... | <commit_before>from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='dectate',
version='0.11.dev0',
description="A configuration engine for Python frameworks",
long_description=long_description,
a... |
0ea95fa57419b77150bb8e4ba264aa56cf51da86 | setup.py | setup.py | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.18.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.19.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | Increment version for multichannel splitting | Increment version for multichannel splitting
| Python | mit | jiaaro/pydub | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.18.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.19.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | <commit_before>__doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.18.0',
author='James Robert',
author_email='jiaaro@gmail.com',
descripti... | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.19.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | __doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.18.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description='Manipulate ... | <commit_before>__doc__ = """
Manipulate audio with an simple and easy high level interface.
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='pydub',
version='0.18.0',
author='James Robert',
author_email='jiaaro@gmail.com',
descripti... |
ba942aa988e049779a717c41d068547f5bce8b0b | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | Move to native markdown parsing | packaging: Move to native markdown parsing
setuptools-markdown is deprecated
| Python | mit | wontfix-org/tues | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | <commit_before>#!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael ... | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | #!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael van Bracht',
... | <commit_before>#!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='MIT',
author='Michael ... |
334b805fce8b7924aa4b812964165f1d93f07d69 | setup.py | setup.py | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | Remove Python 2/2.7 because they are no longer supported | Remove Python 2/2.7 because they are no longer supported
| Python | bsd-3-clause | pySTEPS/pysteps | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | <commit_before># -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python f... | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | # -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python framework for sh... | <commit_before># -*- coding: utf-8 -*-
#
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from setuptools import setup, find_packages
setup(
name='pysteps',
version='1.0',
packages=find_packages(),
license='LICENSE',
description='Python f... |
b4ea08a378bd12c823b6e68f4b72f3a6b327f8e1 | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | Change URL, add classifiers and keywords | Change URL, add classifiers and keywords
| Python | apache-2.0 | knockoutMice/pylast,yanggao1119/pylast,knockoutMice/pylast,hugovk/pylast,pylast/pylast,yanggao1119/pylast | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
... | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | #!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
build = 1
... | <commit_before>#!/usr/bin/env python
from distutils.core import setup
import os
def get_build():
path = "./.build"
if os.path.exists(path):
fp = open(path, "r")
build = eval(fp.read())
if os.path.exists("./.increase_build"):
build += 1
fp.close()
else:
... |
46deed1aa739b3fbd6b86972807e03d54a7fc085 | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | Add sqlalchemy to the test dependencines | Add sqlalchemy to the test dependencines
| Python | mit | miraculixx/depot,eprikazc/depot,amol-/depot,miraculixx/depot,rlam3/depot | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | <commit_before>from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storin... | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storing files and att... | <commit_before>from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
setup(name='filedepot',
version=version,
description="Toolkit for storin... |
979aa0a98ac92ed08d10b81602b070bdfefaf4e1 | setup.py | setup.py | from distutils.core import setup
setup(
name='udiskie',
version='0.4.0',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | from distutils.core import setup
setup(
name='udiskie',
version='0.4.1',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | Prepare for next development cycle. | Prepare for next development cycle.
| Python | mit | coldfix/udiskie,mathstuf/udiskie,pstray/udiskie,khardix/udiskie,pstray/udiskie,coldfix/udiskie | from distutils.core import setup
setup(
name='udiskie',
version='0.4.0',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | from distutils.core import setup
setup(
name='udiskie',
version='0.4.1',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | <commit_before>from distutils.core import setup
setup(
name='udiskie',
version='0.4.0',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'... | from distutils.core import setup
setup(
name='udiskie',
version='0.4.1',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | from distutils.core import setup
setup(
name='udiskie',
version='0.4.0',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'udiskie',
]... | <commit_before>from distutils.core import setup
setup(
name='udiskie',
version='0.4.0',
description='Removable disk automounter for udisks',
author='Byron Clark',
author_email='byron@theclarkfamily.name',
url='http://bitbucket.org/byronclark/udiskie',
license='MIT',
packages=[
'... |
f61ab3c58981806581eb2efaa1e5efe1bff21a16 | setup.py | setup.py | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spike trains and membrane potentials... | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen, Hannah Bos, Maximilian Schmidt',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spik... | Add H.Bos and M.Schmidt to list of authors | Add H.Bos and M.Schmidt to list of authors
| Python | mit | INM-6/correlation-toolbox | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spike trains and membrane potentials... | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen, Hannah Bos, Maximilian Schmidt',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spik... | <commit_before># encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spike trains and memb... | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen, Hannah Bos, Maximilian Schmidt',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spik... | # encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spike trains and membrane potentials... | <commit_before># encoding: utf8
from setuptools import setup
setup(
name='correlation-toolbox',
version='0.0.1',
author='Jakob Jordan, David Dahmen',
author_email='j.jordan@fz-juelich.de',
description=('Collection of functions to investigate correlations in '
'spike trains and memb... |
0e82fba1c9769f71c162c8364fe783d2cc3cda17 | setup.py | setup.py | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup... | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup(... | Fix templates building on OS X | Fix templates building on OS X
| Python | mit | KnightOS/sdk,KnightOS/sdk,KnightOS/sdk | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup... | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup(... | <commit_before>#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode()... | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup(... | #!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode().strip()
setup... | <commit_before>#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import platform
import subprocess
import glob
import os
ver = os.environ.get("PKGVER") or subprocess.run(['git', 'describe', '--tags'],
stdout=subprocess.PIPE).stdout.decode()... |
fdc8f5068e9e3ccf44eb223aabf088336777db2c | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | Fix MIT classification for pypi | Fix MIT classification for pypi
| Python | mit | Goggin/djeasyroute | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | <commit_before>#!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='i... | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | #!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='info@ryangoggin.... | <commit_before>#!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(name='djeasyroute',
version='0.0.1',
description='A simple class based route system for django similar to flask',
author='Ryan Goggin',
author_email='i... |
969559c6eb94405ecf470b310e752a80736aeeef | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | Add warning for missing pandoc | Add warning for missing pandoc
| Python | mit | chargehound/chargehound-python | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | <commit_before>try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package ... | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package with
a form... | <commit_before>try:
from setuptools import setup
except ImportError:
from disutils.core import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except:
"""
Don't fail if pandoc or pypandoc are not installed.
However, it is better to publish the package ... |
238022485a66c6d6920b81d0a6235ab314188a9b | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | Fix whoosh version so Nidoran search works. | Fix whoosh version so Nidoran search works.
| Python | mit | RK905/pokedex-1,mschex1/pokedex,xfix/pokedex,DaMouse404/pokedex,veekun/pokedex,veekun/pokedex | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | <commit_before>from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'],
entry_points = {
'console_scripts': [
'pokedex = pokedex... | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
... | <commit_before>from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': 'data' },
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b1'],
entry_points = {
'console_scripts': [
'pokedex = pokedex... |
09f784d459f22eec41cb720f5e1945f8fca48e6e | setup.py | setup.py | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | Stop claiming support for 2.6 | Stop claiming support for 2.6
I don't even have a Python 2.6 interpreter.
| Python | mit | rspeer/python-ftfy | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | <commit_before>from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with U... | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with Unicode text aft... | <commit_before>from setuptools import setup
setup(
name="ftfy",
version='3.3.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
url='http://github.com/LuminosoInsight/python-ftfy',
platforms=["any"],
description="Fixes some problems with U... |
034c5baf82b425459b0c3c4025b3f0d5838ec127 | setup.py | setup.py | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | Add pytimeparse as an install dependency | Add pytimeparse as an install dependency
| Python | agpl-3.0 | alvarogzp/telegram-bot,alvarogzp/telegram-bot | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | <commit_before>from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_em... | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_email=project_inf... | <commit_before>from setuptools import setup, find_packages
from bot import project_info
setup(
name=project_info.name,
use_scm_version=True,
description=project_info.description,
long_description=project_info.description,
url=project_info.url,
author=project_info.author_name,
author_em... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.