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
a8ef0d416b94c453ea8f3605e8cae7147ae90830
appengine/isolate/main_frontend.py
appengine/isolate/main_frontend.py
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
Fix typo in commit 4b061a25b579c and 2c2176043b739.
Fix typo in commit 4b061a25b579c and 2c2176043b739. It's IsolateService, not IsolateServer. TBR=vadimsh@chromium.org BUG= Review URL: https://codereview.appspot.com/221200043
Python
apache-2.0
luci/luci-py,luci/luci-py,luci/luci-py,luci/luci-py
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
<commit_before># Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ...
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
# Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ereporter2, tha...
<commit_before># Copyright 2014 The Swarming Authors. All rights reserved. # Use of this source code is governed by the Apache v2.0 license that can be # found in the LICENSE file. """This modules is imported by AppEngine and defines the 'app' object. It is a separate file so that application bootstrapping code like ...
dcf22e77c7beab31dc9470d3acbf12611fd2344f
project/utils/__init__.py
project/utils/__init__.py
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://profile/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlp...
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://page/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlpars...
Change facebook URL to use fb://page instead of fb://profile
Change facebook URL to use fb://page instead of fb://profile
Python
agpl-3.0
Xicnet/radioflow-scheduler,Xicnet/radioflow-scheduler,Xicnet/radioflow-scheduler,Xicnet/radioflow-scheduler,Xicnet/radioflow-scheduler
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://profile/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlp...
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://page/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlpars...
<commit_before>from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://profile/%s" % graph.get_object(name)['id'] def parse_tw_url(url): ...
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://page/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlpars...
from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://profile/%s" % graph.get_object(name)['id'] def parse_tw_url(url): return urlp...
<commit_before>from django.conf import settings import facebook from urlparse import urlparse def get_fb_profile_url(url): name = urlparse(url).path.strip("/") graph = facebook.GraphAPI(access_token=settings.FB_ACCESS_TOKEN) return "fb://profile/%s" % graph.get_object(name)['id'] def parse_tw_url(url): ...
f8cbdf038a3d5cd8ba229cb627ecd1831265ca02
context.py
context.py
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
Add target_data from ExecutionEngine to FunctionPassManager
Add target_data from ExecutionEngine to FunctionPassManager
Python
mit
guilload/kaleidoscope
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
<commit_before>from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): ...
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): optimizations =...
<commit_before>from llvm.core import Module from llvm.ee import ExecutionEngine from llvm.passes import (FunctionPassManager, PASS_GVN, PASS_INSTCOMBINE, PASS_REASSOCIATE, PASS_SIMPLIFYCFG) class Context(object): ...
45b71ea93db90ccb4b2b42947a73ea7a50bb91dd
grouprise/features/files/views.py
grouprise/features/files/views.py
import grouprise.features from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create
import grouprise.features.content.views from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create
Use full import in files view
Use full import in files view Previously it seemed to work only by accident (the importer imported the package before).
Python
agpl-3.0
stadtgestalten/stadtgestalten,stadtgestalten/stadtgestalten,stadtgestalten/stadtgestalten
import grouprise.features from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create Use full import in files view Previously it seemed to work only by accident (the importer imported the package before).
import grouprise.features.content.views from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create
<commit_before>import grouprise.features from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create <commit_msg>Use full import in files view Previously it seemed to work only by accident (the importer imported the package before)...
import grouprise.features.content.views from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create
import grouprise.features from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create Use full import in files view Previously it seemed to work only by accident (the importer imported the package before).import grouprise.features....
<commit_before>import grouprise.features from . import forms class Create(grouprise.features.content.views.Create): template_name = 'files/create.html' form_class = forms.Create <commit_msg>Use full import in files view Previously it seemed to work only by accident (the importer imported the package before)...
8621d6c0826beb4a4b4e920ce27786b01546ed28
impactstoryanalytics/highcharts.py
impactstoryanalytics/highcharts.py
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'title':{ 'text': None }, 'gridLineColo...
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'min': 0, 'title':{ 'text': None }, ...
Set y-axis min to 0
Set y-axis min to 0
Python
mit
Impactstory/impactstory-analytics,Impactstory/impactstory-analytics,total-impact/impactstory-analytics,total-impact/impactstory-analytics,Impactstory/impactstory-analytics,total-impact/impactstory-analytics,Impactstory/impactstory-analytics,total-impact/impactstory-analytics
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'title':{ 'text': None }, 'gridLineColo...
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'min': 0, 'title':{ 'text': None }, ...
<commit_before>boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'title':{ 'text': None }, ...
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'min': 0, 'title':{ 'text': None }, ...
boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'title':{ 'text': None }, 'gridLineColo...
<commit_before>boilerplate = { 'chart': { 'renderTo': 'container', 'plotBackgroundColor': 'none', 'backgroundColor': 'none', 'spacingTop': 5 }, 'title': {'text': None}, 'subtitle': {'text': None}, 'yAxis': { 'title':{ 'text': None }, ...
bcccdbdb1b18128d96c37b7a5a888b55c5f99e9a
src/pybel_tools/analysis/__init__.py
src/pybel_tools/analysis/__init__.py
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs""" from . import concordance, mechanisms, rcr, stability, ucmpa from .concordance import * from .mechanisms import * from .rcr import * from .stability import * from .ucmpa import * __all__ = ( concordance.__all__ ...
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs. Each analysis might have weird requirements, and therefore they should all be imported explicitly. """
Remove star imports from analysis
Remove star imports from analysis
Python
mit
pybel/pybel-tools,pybel/pybel-tools,pybel/pybel-tools
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs""" from . import concordance, mechanisms, rcr, stability, ucmpa from .concordance import * from .mechanisms import * from .rcr import * from .stability import * from .ucmpa import * __all__ = ( concordance.__all__ ...
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs. Each analysis might have weird requirements, and therefore they should all be imported explicitly. """
<commit_before># -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs""" from . import concordance, mechanisms, rcr, stability, ucmpa from .concordance import * from .mechanisms import * from .rcr import * from .stability import * from .ucmpa import * __all__ = ( conco...
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs. Each analysis might have weird requirements, and therefore they should all be imported explicitly. """
# -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs""" from . import concordance, mechanisms, rcr, stability, ucmpa from .concordance import * from .mechanisms import * from .rcr import * from .stability import * from .ucmpa import * __all__ = ( concordance.__all__ ...
<commit_before># -*- coding: utf-8 -*- """This submodule contains functions for applying algorithms to BEL graphs""" from . import concordance, mechanisms, rcr, stability, ucmpa from .concordance import * from .mechanisms import * from .rcr import * from .stability import * from .ucmpa import * __all__ = ( conco...
dcb58a29df0c8ab28b08fa8ca080dfd2f1c7552a
gunicorn.conf.py
gunicorn.conf.py
import os, multiprocessing bind = "0.0.0.0:{}".format(os.environ["PORT"]) workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "gevent" def post_fork(server, worker): from psycogreen.gevent import patch_psycopg patch_psycopg() worker.log.info("Colored psycopg green.")
import multiprocessing import os bind = '0.0.0.0:{}'.format(os.environ['PORT']) preload = True workers = multiprocessing.cpu_count() * 2 + 1
Remove the greens to (hopefully) recover tracebacks.
Remove the greens to (hopefully) recover tracebacks.
Python
apache-2.0
hello-base/web,hello-base/web,hello-base/web,hello-base/web
import os, multiprocessing bind = "0.0.0.0:{}".format(os.environ["PORT"]) workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "gevent" def post_fork(server, worker): from psycogreen.gevent import patch_psycopg patch_psycopg() worker.log.info("Colored psycopg green.") Remove the greens to (hopeful...
import multiprocessing import os bind = '0.0.0.0:{}'.format(os.environ['PORT']) preload = True workers = multiprocessing.cpu_count() * 2 + 1
<commit_before>import os, multiprocessing bind = "0.0.0.0:{}".format(os.environ["PORT"]) workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "gevent" def post_fork(server, worker): from psycogreen.gevent import patch_psycopg patch_psycopg() worker.log.info("Colored psycopg green.") <commit_msg>Re...
import multiprocessing import os bind = '0.0.0.0:{}'.format(os.environ['PORT']) preload = True workers = multiprocessing.cpu_count() * 2 + 1
import os, multiprocessing bind = "0.0.0.0:{}".format(os.environ["PORT"]) workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "gevent" def post_fork(server, worker): from psycogreen.gevent import patch_psycopg patch_psycopg() worker.log.info("Colored psycopg green.") Remove the greens to (hopeful...
<commit_before>import os, multiprocessing bind = "0.0.0.0:{}".format(os.environ["PORT"]) workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "gevent" def post_fork(server, worker): from psycogreen.gevent import patch_psycopg patch_psycopg() worker.log.info("Colored psycopg green.") <commit_msg>Re...
4377eb3738eac414aecc52cbe7003cc887d82614
setup.py
setup.py
from distutils.core import setup setup( name = 'apns', version = '1.0', py_modules = ['pyapns'], url = 'http://www.goosoftware.co.uk/', author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library fo...
from distutils.core import setup setup( author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library for interacting with the Apple Push Notification Service', download_url = 'http://github.com/simonwhitaker/PyAPNs', license = 'unlicense.org', name = 'apn...
Tweak to py_modules, misc tidying
Tweak to py_modules, misc tidying
Python
mit
AlexKordic/PyAPNs,duanhongyi/PyAPNs,miraculixx/PyAPNs,RatenGoods/PyAPNs,postmates/PyAPNs,korhner/PyAPNs,tenmalin/PyAPNs
from distutils.core import setup setup( name = 'apns', version = '1.0', py_modules = ['pyapns'], url = 'http://www.goosoftware.co.uk/', author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library fo...
from distutils.core import setup setup( author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library for interacting with the Apple Push Notification Service', download_url = 'http://github.com/simonwhitaker/PyAPNs', license = 'unlicense.org', name = 'apn...
<commit_before>from distutils.core import setup setup( name = 'apns', version = '1.0', py_modules = ['pyapns'], url = 'http://www.goosoftware.co.uk/', author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A py...
from distutils.core import setup setup( author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library for interacting with the Apple Push Notification Service', download_url = 'http://github.com/simonwhitaker/PyAPNs', license = 'unlicense.org', name = 'apn...
from distutils.core import setup setup( name = 'apns', version = '1.0', py_modules = ['pyapns'], url = 'http://www.goosoftware.co.uk/', author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A python library fo...
<commit_before>from distutils.core import setup setup( name = 'apns', version = '1.0', py_modules = ['pyapns'], url = 'http://www.goosoftware.co.uk/', author = 'Simon Whitaker', author_email = 'simon@goosoftware.co.uk', description = 'A py...
d8295756e73cb096acd5e3ef7e2b076b8b871c31
apps/domain/src/main/routes/general/routes.py
apps/domain/src/main/routes/general/routes.py
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
Update /users/login endpoint to return serialized metadata
Update /users/login endpoint to return serialized metadata
Python
apache-2.0
OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
<commit_before>from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deseriali...
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deserialize from flask ...
<commit_before>from .blueprint import root_blueprint as root_route from ...core.node import node # syft absolute from syft.core.common.message import SignedImmediateSyftMessageWithReply from syft.core.common.message import SignedImmediateSyftMessageWithoutReply from syft.core.common.serde.deserialize import _deseriali...
b80e93af8f699d7ccf0400a454d73f2a1ff23db1
setup.py
setup.py
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
Add 'cssmin' as a dependency
Add 'cssmin' as a dependency
Python
mit
rspivak/crammit,rspivak/crammit
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
<commit_before>import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), ...
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), *rel_names)).re...
<commit_before>import os from setuptools import setup, find_packages classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Topic :: Utilities Operating System :: Unix """ def read(*rel_names): return open(os.path.join(os.path.dirname(__file__), ...
f41ed1b43ccb67b2c407dc9b7d03bdd0ac26f410
setup.py
setup.py
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", author_email="info@stcorp.nl", url="https://stcorp.nl/", description="Task trigger da...
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", url="https://github.com/stcorp/legato", description="Task trigger daemon", license="B...
Change url to github and remove email address
Change url to github and remove email address
Python
bsd-3-clause
stcorp/legato
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", author_email="info@stcorp.nl", url="https://stcorp.nl/", description="Task trigger da...
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", url="https://github.com/stcorp/legato", description="Task trigger daemon", license="B...
<commit_before>from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", author_email="info@stcorp.nl", url="https://stcorp.nl/", description="...
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", url="https://github.com/stcorp/legato", description="Task trigger daemon", license="B...
from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", author_email="info@stcorp.nl", url="https://stcorp.nl/", description="Task trigger da...
<commit_before>from setuptools import setup, find_packages import sys if sys.hexversion < 0x02070000: sys.exit("Python 2.7 or newer is required to use this package.") setup( name="legato", version="1.1", author="S[&]T", author_email="info@stcorp.nl", url="https://stcorp.nl/", description="...
09e93b9ed12023dbc7ead6c4ebcdc021eef9f269
setup.py
setup.py
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
Update requests requirement to >=2.4.2,<2.20
Update requests requirement to >=2.4.2,<2.20 Updates the requirements on [requests](https://github.com/requests/requests) to permit the latest version. - [Release notes](https://github.com/requests/requests/releases) - [Changelog](https://github.com/requests/requests/blob/master/HISTORY.rst) - [Commits](https://github...
Python
apache-2.0
zooniverse/panoptes-python-client
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
<commit_before>from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install...
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install_requires=[ ...
<commit_before>from setuptools import setup, find_packages setup( name='panoptes_client', url='https://github.com/zooniverse/panoptes-python-client', author='Adam McMaster', author_email='adam@zooniverse.org', version='1.0.1', packages=find_packages(), include_package_data=True, install...
4bd81c84a35fe03b855e4365d9ae92c3b905e61e
setup.py
setup.py
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
Remove hard dependency on typeguard
Remove hard dependency on typeguard
Python
mit
SunDwarf/Kyoukai
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
<commit_before>import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if...
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if line.startswit...
<commit_before>import os from setuptools import find_packages, setup rootpath = os.path.abspath(os.path.dirname(__file__)) # Extract version def extract_version(module='kyokai'): version = None fname = os.path.join(rootpath, module, 'util.py') with open(fname) as f: for line in f: if...
c347f608479db5bae2e6687fcce003979a9f75fa
setup.py
setup.py
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.0', description='A roguelike.', #long_description=... author='Eevee', author_email='eevee.flax@veekun.com', license='MIT', ...
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.1', description='A roguelike', # long_description=... author='Eevee', author_email='eevee.flax@veekun.com', url='https://gith...
Add some classifiers, call it 0.1.
Add some classifiers, call it 0.1.
Python
mit
eevee/flax
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.0', description='A roguelike.', #long_description=... author='Eevee', author_email='eevee.flax@veekun.com', license='MIT', ...
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.1', description='A roguelike', # long_description=... author='Eevee', author_email='eevee.flax@veekun.com', url='https://gith...
<commit_before>import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.0', description='A roguelike.', #long_description=... author='Eevee', author_email='eevee.flax@veekun.com', li...
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.1', description='A roguelike', # long_description=... author='Eevee', author_email='eevee.flax@veekun.com', url='https://gith...
import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.0', description='A roguelike.', #long_description=... author='Eevee', author_email='eevee.flax@veekun.com', license='MIT', ...
<commit_before>import sys from setuptools import find_packages, setup backports = [] if sys.version_info < (3, 4): backports.append('enum34') setup( name='flax', version='0.0', description='A roguelike.', #long_description=... author='Eevee', author_email='eevee.flax@veekun.com', li...
9f685541120f07ac6723b88c8c37f6ef21126a47
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
Remove version constraints on numpy/scipy
Remove version constraints on numpy/scipy
Python
mit
all-umass/metric-learn,terrytangyuan/metric-learn,tigerneil/metric-learn,xuanhan863/metric-learn,Snazz2001/metric-learn,JingheZ/metric-learn
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
<commit_before>#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metri...
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metric_learn', ...
<commit_before>#!/usr/bin/env python from setuptools import setup version = "0.1.0" setup(name='metric_learn', version=version, description='Python implementations of metric learning algorithms', author='CJ Carey', author_email='ccarey@cs.umass.edu', url='http://github.com/all-umass/metri...
c341259964b4874656f0394d459fe46b5e7d010e
temporenc/__init__.py
temporenc/__init__.py
""" Temporenc, a comprehensive binary encoding format for dates and times """ # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, )
""" Temporenc, a comprehensive binary encoding format for dates and times """ __version__ = '0.1.0' __version_info__ = tuple(map(int, __version__.split('.'))) # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, )
Add __version__ and __version_info__ package attributes
Add __version__ and __version_info__ package attributes See #3.
Python
bsd-3-clause
wbolster/temporenc-python
""" Temporenc, a comprehensive binary encoding format for dates and times """ # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, ) Add __version__ and __version_info__ package attributes See #3.
""" Temporenc, a comprehensive binary encoding format for dates and times """ __version__ = '0.1.0' __version_info__ = tuple(map(int, __version__.split('.'))) # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, )
<commit_before>""" Temporenc, a comprehensive binary encoding format for dates and times """ # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, ) <commit_msg>Add __version__ and __version_info__ package attributes See #3.<commit_after>
""" Temporenc, a comprehensive binary encoding format for dates and times """ __version__ = '0.1.0' __version_info__ = tuple(map(int, __version__.split('.'))) # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, )
""" Temporenc, a comprehensive binary encoding format for dates and times """ # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, ) Add __version__ and __version_info__ package attributes See #3.""" Temporenc, a comprehensive binary encoding format for dates...
<commit_before>""" Temporenc, a comprehensive binary encoding format for dates and times """ # Export public API from .temporenc import ( # noqa pack, packb, unpack, unpackb, Moment, ) <commit_msg>Add __version__ and __version_info__ package attributes See #3.<commit_after>""" Temporenc, a compr...
48cead9dc1fae0a3916aabb8950e1e31921b1bd7
chessfellows/chess/models.py
chessfellows/chess/models.py
# from django.db import models # from django.contrib.auth.models import User # class Player(models.Model): # user = models.OneToOneField(User) # rating = models.PositiveSmallIntegerField() # wins = models.PositiveIntegerField() # losses = models.PositiveIntegerField() # matches = models.ManyToMany...
from django.db import models from django.contrib.auth.models import User class Match(models.Model): white = models.ForeignKey(User, related_name="White") black = models.ForeignKey(User, related_name="Black") moves = models.TextField() class Player(models.Model): user = models.OneToOneField(User) ...
Add Player.calc_rating() and Player.save() methods to update player rating after saving
Add Player.calc_rating() and Player.save() methods to update player rating after saving
Python
mit
EyuelAbebe/gamer,EyuelAbebe/gamer
# from django.db import models # from django.contrib.auth.models import User # class Player(models.Model): # user = models.OneToOneField(User) # rating = models.PositiveSmallIntegerField() # wins = models.PositiveIntegerField() # losses = models.PositiveIntegerField() # matches = models.ManyToMany...
from django.db import models from django.contrib.auth.models import User class Match(models.Model): white = models.ForeignKey(User, related_name="White") black = models.ForeignKey(User, related_name="Black") moves = models.TextField() class Player(models.Model): user = models.OneToOneField(User) ...
<commit_before># from django.db import models # from django.contrib.auth.models import User # class Player(models.Model): # user = models.OneToOneField(User) # rating = models.PositiveSmallIntegerField() # wins = models.PositiveIntegerField() # losses = models.PositiveIntegerField() # matches = mo...
from django.db import models from django.contrib.auth.models import User class Match(models.Model): white = models.ForeignKey(User, related_name="White") black = models.ForeignKey(User, related_name="Black") moves = models.TextField() class Player(models.Model): user = models.OneToOneField(User) ...
# from django.db import models # from django.contrib.auth.models import User # class Player(models.Model): # user = models.OneToOneField(User) # rating = models.PositiveSmallIntegerField() # wins = models.PositiveIntegerField() # losses = models.PositiveIntegerField() # matches = models.ManyToMany...
<commit_before># from django.db import models # from django.contrib.auth.models import User # class Player(models.Model): # user = models.OneToOneField(User) # rating = models.PositiveSmallIntegerField() # wins = models.PositiveIntegerField() # losses = models.PositiveIntegerField() # matches = mo...
b2150d8929d4db80e72d6baafaa38fda28424f7b
score.py
score.py
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Should return the list of pages that the provided category contains""" page_name = 'Category:' + category page = wikipedia.page(page_name) return page.lin...
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys import os sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Return the list of pages contained in the provided category""" # wikipedia module doesn't provide category listing, let's retrieve it # with some qu...
Use wget to fetch a list of categories + short description of each function
Use wget to fetch a list of categories + short description of each function
Python
agpl-3.0
psychoslave/catscore,psychoslave/catscore
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Should return the list of pages that the provided category contains""" page_name = 'Category:' + category page = wikipedia.page(page_name) return page.lin...
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys import os sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Return the list of pages contained in the provided category""" # wikipedia module doesn't provide category listing, let's retrieve it # with some qu...
<commit_before>#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Should return the list of pages that the provided category contains""" page_name = 'Category:' + category page = wikipedia.page(page_name) ...
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys import os sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Return the list of pages contained in the provided category""" # wikipedia module doesn't provide category listing, let's retrieve it # with some qu...
#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Should return the list of pages that the provided category contains""" page_name = 'Category:' + category page = wikipedia.page(page_name) return page.lin...
<commit_before>#! /usr/bin/env python # -*- coding: utf-8 -*- import wikipedia import sys sample = 'Philosophers' # help(cat_page) def getPagesIn(category): """Should return the list of pages that the provided category contains""" page_name = 'Category:' + category page = wikipedia.page(page_name) ...
a3ee1841e4459ce734f621ad2aac86168f6ae3da
astral/models/ticket.py
astral/models/ticket.py
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
Add API_FIELDS so we can pass a Ticket as an event.
Add API_FIELDS so we can pass a Ticket as an event.
Python
mit
peplin/astral
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
<commit_before>from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne(...
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne('Stream') ...
<commit_before>from elixir import ManyToOne, Entity from elixir.events import after_insert import json from astral.models.base import BaseEntityMixin from astral.models.event import Event class Ticket(BaseEntityMixin, Entity): source = ManyToOne('Node') destination = ManyToOne('Node') stream = ManyToOne(...
affbf76e62427080c52a42fe6fb17dd42df81d9b
setup.py
setup.py
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
Update pins for marvin release
release(marvin): Update pins for marvin release
Python
apache-2.0
NCI-GDC/gdcdatamodel,NCI-GDC/gdcdatamodel
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
<commit_before>from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictio...
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictionaryutils>=2.0....
<commit_before>from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'python-dateutil==2.4.2', 'psqlgraph', 'gdcdictionary', 'dictio...
3e40f0bd3941a48e3b792573c0058f1cc339d5db
fabfile.py
fabfile.py
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") slack("Deploy Finishe...
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") try: with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") ...
Add fallback slack message for deploy script
Add fallback slack message for deploy script
Python
mit
setokinto/slack-shogi
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") slack("Deploy Finishe...
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") try: with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") ...
<commit_before> # It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") slack(...
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") try: with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") ...
# It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") slack("Deploy Finishe...
<commit_before> # It's for me, sorry from fabric.api import * import slackbot_settings as settings from urllib import request, parse env.hosts = settings.DEPLOY_HOSTS def deploy(): slack("Deploy Started") with cd("/var/bot/slack-shogi"): run("git pull") run("supervisorctl reload") slack(...
71d0862a28e5711a665e713e971849bc06d9335b
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import sys, os import io version = '0.5.1' # some trove classifiers: setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import io version = '0.5.1' setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open('README.rst', 'r', encoding="UTF-8").read(...
Update Trove classifiers to match tested versions
Update Trove classifiers to match tested versions
Python
mit
jmoiron/humanize,jmoiron/humanize
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import sys, os import io version = '0.5.1' # some trove classifiers: setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import io version = '0.5.1' setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open('README.rst', 'r', encoding="UTF-8").read(...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import sys, os import io version = '0.5.1' # some trove classifiers: setup( name='humanize', version=version, description="python humanize utilities", long_desc...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import io version = '0.5.1' setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open('README.rst', 'r', encoding="UTF-8").read(...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import sys, os import io version = '0.5.1' # some trove classifiers: setup( name='humanize', version=version, description="python humanize utilities", long_description=io.open...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup script for humanize.""" from setuptools import setup, find_packages import sys, os import io version = '0.5.1' # some trove classifiers: setup( name='humanize', version=version, description="python humanize utilities", long_desc...
9a986495eeaa1e331ee0404d09fcdea4e4e9299c
opps/contrib/notifications/views.py
opps/contrib/notifications/views.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.views.generic.detail import DetailView from opps.db import Db from .models import Noti...
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.api.views.generic.list import ListView as ListAPIView from opps.views.generic.detail im...
Create APIServer view on notification used to json render
Create APIServer view on notification used to json render
Python
mit
YACOWS/opps,williamroot/opps,YACOWS/opps,YACOWS/opps,opps/opps,williamroot/opps,jeanmask/opps,opps/opps,williamroot/opps,opps/opps,jeanmask/opps,opps/opps,YACOWS/opps,jeanmask/opps,williamroot/opps,jeanmask/opps
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.views.generic.detail import DetailView from opps.db import Db from .models import Noti...
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.api.views.generic.list import ListView as ListAPIView from opps.views.generic.detail im...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.views.generic.detail import DetailView from opps.db import Db from .mod...
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.api.views.generic.list import ListView as ListAPIView from opps.views.generic.detail im...
#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.views.generic.detail import DetailView from opps.db import Db from .models import Noti...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- import json import time from django.http import StreamingHttpResponse from django.utils.decorators import method_decorator from django.views.decorators.csrf import csrf_exempt from opps.views.generic.detail import DetailView from opps.db import Db from .mod...
1dc3aa4eb9aec4e301663841d4510073fbcade9c
setup.py
setup.py
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
Remove an invalid trove classifier.
Remove an invalid trove classifier. * setup.py(setuptools.setup): Remove "Intended Audience :: BigDate" since it's not in pypi's list of valid trove classifiers and prevents successful upload of the package when present. Change-Id: Iee487d1737a12158bb181d21ae841d07e0820e10
Python
apache-2.0
openstack/sahara-tests,openstack/sahara-tests,openstack/sahara-tests,esikachev/sahara-tests,openstack/sahara-scenario,openstack/sahara-scenario,esikachev/sahara-tests,openstack/sahara-tests,esikachev/sahara-tests,openstack/sahara-scenario
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
<commit_before>import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='...
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='Savanna project...
<commit_before>import setuptools from savanna.openstack.common import setup as common_setup requires = common_setup.parse_requirements() depend_links = common_setup.parse_dependency_links() project = 'savanna' setuptools.setup( name=project, version=common_setup.get_version(project, '0.1'), description='...
29a6b2e88b278062b7378c50001ad5521b61c5c1
setup.py
setup.py
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
Use docs as project homepage
Use docs as project homepage
Python
apache-2.0
otovo/python-netsgiro
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
<commit_before>import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], des...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
<commit_before>import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], des...
f3e6c433f1f96e3185de04d5c4b069f9f2adf311
setup.py
setup.py
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
Remove scrapy and django from install_requires.
Remove scrapy and django from install_requires. This prevents unintended upgrades of Scrapy or Django when user runs 'pip install -U scrapy-djangoitem'.
Python
bsd-3-clause
scrapy-plugins/scrapy-djangoitem,scrapy/scrapy-djangoitem
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
<commit_before>from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy ...
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy developers', ...
<commit_before>from setuptools import setup, find_packages setup( name='scrapy-djangoitem', version='0.0.0', url='https://github.com/scrapy/scrapy-djangoitem', description='Scrapy extension to write scraped items using Django models', long_description=open('README.rst').read(), author='Scrapy ...
70740cbf1ed66fcdbe09f64382d7a1c8b6325e51
setup.py
setup.py
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
Set zip_safe to False as the stub may be called by a process that does not have a writable egg cache.
Set zip_safe to False as the stub may be called by a process that does not have a writable egg cache.
Python
mit
geertj/winpexpect
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
<commit_before># # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUT...
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
# # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUTHORS" for a com...
<commit_before># # This file is part of WinPexpect. WinPexpect is free software that is made # available under the MIT license. Consult the file "LICENSE" that is # distributed together with this file for the exact licensing terms. # # WinPexpect is copyright (c) 2008-2010 by the WinPexpect authors. See the # file "AUT...
05c8dd06ff4f82f0030a30c4fefcaa98e53f3232
setup.py
setup.py
from setuptools import setup, find_packages setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', ...
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', install_require...
Update package configuration, pt. ii
Update package configuration, pt. ii
Python
mit
TangledWeb/tangled.sqlalchemy
from setuptools import setup, find_packages setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', ...
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', install_require...
<commit_before>from setuptools import setup, find_packages setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbal...
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', install_require...
from setuptools import setup, find_packages setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', ...
<commit_before>from setuptools import setup, find_packages setup( name='tangled.sqlalchemy', version='0.1.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbal...
34bdb1e936bcc511b69e0ebd86dd42ac93519cb1
setup.py
setup.py
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2.1", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
Update to version 0.2.1 as a result of fix in previous commit, ready to update on pip
Update to version 0.2.1 as a result of fix in previous commit, ready to update on pip
Python
bsd-3-clause
shafferm/SCNIC
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2.1", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
<commit_before>from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_ana...
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2.1", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_analysis.py"], ...
<commit_before>from setuptools import setup, find_packages __author__ = 'shafferm' setup( name="SCNIC", version="0.2", setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"], scripts=["scripts/SCNIC_ana...
cd62369097feba54172c0048c4ef0ec0713be6d3
linter.py
linter.py
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
Fix compatibility for SublimeLinter 4.12.0
Fix compatibility for SublimeLinter 4.12.0 Signed-off-by: Jack Cherng <159f0f32a62cc912ca55f89bb5e06807cf019bc7@gmail.com>
Python
mit
DesTincT/SublimeLinter-contrib-bemlint
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
<commit_before> # # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): ...
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): """Provides an ...
<commit_before> # # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Ivan Sobolev # Copyright (c) 2016 Ivan Sobolev # # License: MIT # """This module exports the Bemlint plugin class.""" from SublimeLinter.lint import NodeLinter, util class Bemlint(NodeLinter): ...
8e03b6e7ea7135bcf476e36c25a233f55ff1dffc
setup.py
setup.py
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
Upgrade six 1.10 to 1.11
Upgrade six 1.10 to 1.11
Python
mit
wylee/django-perms
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
<commit_before>import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://git...
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://github.com/PSU-OIT...
<commit_before>import sys from setuptools import setup, find_packages with open('VERSION') as version_fp: VERSION = version_fp.read().strip() if sys.version_info[:2] < (3, 4): django_version = '1.8' else: django_version = '1.9' setup( name='django-perms', version=VERSION, url='https://git...
b11a53464b2bcdf5ba26f43dbdb81e0a0fde44d7
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name="pbs", version="1.0", author="Daniel Lombraña González", author_email="info@pybossa.com", description="PyBossa command line client", license="AGPLv3", url="https://github.com/PyBossa/pbs", classifier...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup try: from pypandoc import convert read_md = lambda f: convert(f, 'rst') except ImportError: print("warning: pypandoc module not found, could not convert Markdown to RST") read_md = lambda f: open(f, 'r').read() setup( name...
Use pandoc to convert from Markdown to RST for pypi
Use pandoc to convert from Markdown to RST for pypi
Python
agpl-3.0
PyBossa/pbs,PyBossa/pbs,PyBossa/pbs
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name="pbs", version="1.0", author="Daniel Lombraña González", author_email="info@pybossa.com", description="PyBossa command line client", license="AGPLv3", url="https://github.com/PyBossa/pbs", classifier...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup try: from pypandoc import convert read_md = lambda f: convert(f, 'rst') except ImportError: print("warning: pypandoc module not found, could not convert Markdown to RST") read_md = lambda f: open(f, 'r').read() setup( name...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name="pbs", version="1.0", author="Daniel Lombraña González", author_email="info@pybossa.com", description="PyBossa command line client", license="AGPLv3", url="https://github.com/PyBossa/pbs",...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup try: from pypandoc import convert read_md = lambda f: convert(f, 'rst') except ImportError: print("warning: pypandoc module not found, could not convert Markdown to RST") read_md = lambda f: open(f, 'r').read() setup( name...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name="pbs", version="1.0", author="Daniel Lombraña González", author_email="info@pybossa.com", description="PyBossa command line client", license="AGPLv3", url="https://github.com/PyBossa/pbs", classifier...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name="pbs", version="1.0", author="Daniel Lombraña González", author_email="info@pybossa.com", description="PyBossa command line client", license="AGPLv3", url="https://github.com/PyBossa/pbs",...
8ffb6559b9cfe2bf20bf41b52c4776d563c8929a
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
Include filters to package data
Include filters to package data
Python
mit
lincolnloop/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's " ...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-salmonella", version='0.6.1', author='Lincoln Loop: Seth Buntin, Yann Malet', author_email='info@lincolnloop.com', description=("raw_id_fields widget replacement that handles display of an object's ...
a8708203a9de77c34d1df05986aee2f4033bdf63
invoice/tasks.py
invoice/tasks.py
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
Put the time summary in an html table
Put the time summary in an html table
Python
apache-2.0
pkimber/invoice,pkimber/invoice,pkimber/invoice
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
<commit_before># -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @sha...
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
# -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @shared_task def ma...
<commit_before># -*- encoding: utf-8 -*- import logging from celery import shared_task from django.utils import timezone from invoice.models import InvoiceUser from mail.service import queue_mail_message from mail.tasks import process_mail from .report import time_summary logger = logging.getLogger(__name__) @sha...
e104f16b749c532b7af95cc4d59b811721645765
custom/enikshay/const.py
custom/enikshay/const.py
PRIMARY_PHONE_NUMBER = 'contact_phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
PRIMARY_PHONE_NUMBER = 'phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
Update 99DOTS phone number property
Update 99DOTS phone number property
Python
bsd-3-clause
dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq
PRIMARY_PHONE_NUMBER = 'contact_phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number' Update 99DOTS phone number property
PRIMARY_PHONE_NUMBER = 'phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
<commit_before>PRIMARY_PHONE_NUMBER = 'contact_phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number' <commit_msg>Update 99DOTS phone number property<commit_after>
PRIMARY_PHONE_NUMBER = 'phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
PRIMARY_PHONE_NUMBER = 'contact_phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number' Update 99DOTS phone number propertyPRIMARY_PHONE_NUMBER = 'phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
<commit_before>PRIMARY_PHONE_NUMBER = 'contact_phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number' <commit_msg>Update 99DOTS phone number property<commit_after>PRIMARY_PHONE_NUMBER = 'phone_number' BACKUP_PHONE_NUMBER = 'secondary_contact_phone_number'
0ddf70338c6522cccfa3dbb2a3eb5efffd46052b
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', ] install_requires = [ 'xmltodict >= 0.9.0',...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', 'nose >= 1.3.4', ] install_requires = [ ...
Switch to nosetests framework for testing
Switch to nosetests framework for testing
Python
mit
sait-berkeley-infosec/pynessus-api
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', ] install_requires = [ 'xmltodict >= 0.9.0',...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', 'nose >= 1.3.4', ] install_requires = [ ...
<commit_before>from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', ] install_requires = [ 'xmlto...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', 'nose >= 1.3.4', ] install_requires = [ ...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', ] install_requires = [ 'xmltodict >= 0.9.0',...
<commit_before>from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() tests_require = [ 'mock >= 1.0.1', ] install_requires = [ 'xmlto...
04ff248c628e5523bc22c532cf4518f210376307
setup.py
setup.py
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
Include bin/ansible-pull as part of the sdist in distutils.
Include bin/ansible-pull as part of the sdist in distutils.
Python
mit
thaim/ansible,thaim/ansible
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
<commit_before>#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ ...
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ from distutils....
<commit_before>#!/usr/bin/env python # NOTE: setup.py does NOT install the contents of the library dir # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. import os import sys sys.path.insert(0, os.path.abspath('lib')) from ansible import __version__, __author__ ...
a8826a8ce89dcb697b747285b276c4d2ccc9685d
setup.py
setup.py
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven.conf", "raven.handlers", "raven.processors" ] # Dependencies...
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven", "raven.conf", "raven.handlers", "raven.processors" ] #...
Fix missing raven module again
Fix missing raven module again
Python
mit
igboyes/virtool,virtool/virtool,igboyes/virtool,virtool/virtool
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven.conf", "raven.handlers", "raven.processors" ] # Dependencies...
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven", "raven.conf", "raven.handlers", "raven.processors" ] #...
<commit_before>from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven.conf", "raven.handlers", "raven.processors" ] ...
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven", "raven.conf", "raven.handlers", "raven.processors" ] #...
from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven.conf", "raven.handlers", "raven.processors" ] # Dependencies...
<commit_before>from cx_Freeze import setup, Executable packages = [ "encodings", "uvloop", "motor", "appdirs", "packaging", "packaging.version", "_cffi_backend", "asyncio", "asyncio.base_events", "asyncio.compat", "raven.conf", "raven.handlers", "raven.processors" ] ...
c45f04b91249e47284043adc56555f0cc3ed3513
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.1", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.3", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
Include all package data and add django dependency
Include all package data and add django dependency
Python
bsd-3-clause
nkuttler/django-webmaster-verification,nkuttler/django-webmaster-verification
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.1", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.3", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
<commit_before>try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.1", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Djang...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.3", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.1", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Django", long_de...
<commit_before>try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "django-webmaster-verification", version = "0.1.1", author = "Nicolas Kuttler", author_email = "pypi@nicolaskuttler.com", description = "Webmaster tools verification for Djang...
1be5076113608ac6cd7294dab8a8775396d6a5ba
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. git-svn-id: a6b788f8f337f972f2eef25e065b182c49e085b0@41 b1010a0a-674b-0410-b734-77272b80c875
Python
apache-2.0
freyes/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...
3c93818f907dbc4a28677231d9f5e60ed9fdb87c
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
Make development status be Alpha.
Make development status be Alpha.
Python
mit
wharris/dougrain
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
<commit_before>#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary...
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary.net', url ...
<commit_before>#!/usr/bin/env python from distutils.core import setup import dougrain base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = dougrain.__version__, description = 'HAL JSON parser and generator', author = 'Will Harris', author_email = 'will@greatlibrary...
3ed50012e47d4e3a07b5719f2f260663886ba0c7
setup.py
setup.py
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
Allow rdflib 6.0.0 to be used now that it should work
Allow rdflib 6.0.0 to be used now that it should work
Python
mit
NatLibFi/Skosify,NatLibFi/Skosify
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
<commit_before>#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os...
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here...
<commit_before>#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) here = os.path.abspath(os.path.dirname(__file__)) README = open(os...
a04477ca1566fa2cd9a4b208fcdeda7b03ef6a8c
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.0.1', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.1.0', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
Increment version number after RJMCMC addition
Increment version number after RJMCMC addition
Python
mit
bfarr/kombine,stevertaylor/kombine
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.0.1', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.1.0', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.0.1', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.1.0', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.0.1', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author='Ben Farr', ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='kombine', version='0.0.1', description='An embarrassingly parallel, kernel-density-based\ ensemble sampler', author...
fc3a02ed585bfb4d8ad404bceeebefae5496ebd4
setup.py
setup.py
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, ...
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, author='Zelenyak A...
Extend supported python versions and some pep8 fixes
Extend supported python versions and some pep8 fixes
Python
bsd-2-clause
zzzsochi/trans
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, ...
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, author='Zelenyak A...
<commit_before># coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_desc...
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, author='Zelenyak A...
# coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_description, ...
<commit_before># coding: utf8 from distutils.core import setup import trans long_description = open('README.rst', 'r').read() description = 'National characters transcription module.' setup( name='trans', version=trans.__version__, description=description, long_description=long_desc...
3d0a31ab12121ca387ebcc0eab38b42e1b5abe35
setup.py
setup.py
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
Upgrade all tangled deps to released versions
Upgrade all tangled deps to released versions
Python
mit
TangledWeb/tangled.website
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
<commit_before>from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', ...
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
<commit_before>from setuptools import setup, find_packages setup( name='tangled.website', version='0.1.dev0', description='tangledframework.com', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', ...
d411e2058053c5607b2bb49002cab0e110683624
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from github_backup import __version__ try: from setuptools import setup setup # workaround for pyflakes issue #13 except ImportError: from distutils.core import setup # Hack to prevent stupid TypeError: 'NoneType' object is not callable error on # e...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup from github_backup import __version__ def open_file(fname): return open(os.path.join(os.path.dirname(__file__), fname)) setup( name='github-backup', version=__version__, author='Jose Diaz-Gonzalez', author_emai...
Remove python 2 specific import logic
Remove python 2 specific import logic
Python
mit
josegonzalez/python-github-backup,josegonzalez/python-github-backup
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from github_backup import __version__ try: from setuptools import setup setup # workaround for pyflakes issue #13 except ImportError: from distutils.core import setup # Hack to prevent stupid TypeError: 'NoneType' object is not callable error on # e...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup from github_backup import __version__ def open_file(fname): return open(os.path.join(os.path.dirname(__file__), fname)) setup( name='github-backup', version=__version__, author='Jose Diaz-Gonzalez', author_emai...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- import os from github_backup import __version__ try: from setuptools import setup setup # workaround for pyflakes issue #13 except ImportError: from distutils.core import setup # Hack to prevent stupid TypeError: 'NoneType' object is not callab...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup from github_backup import __version__ def open_file(fname): return open(os.path.join(os.path.dirname(__file__), fname)) setup( name='github-backup', version=__version__, author='Jose Diaz-Gonzalez', author_emai...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from github_backup import __version__ try: from setuptools import setup setup # workaround for pyflakes issue #13 except ImportError: from distutils.core import setup # Hack to prevent stupid TypeError: 'NoneType' object is not callable error on # e...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- import os from github_backup import __version__ try: from setuptools import setup setup # workaround for pyflakes issue #13 except ImportError: from distutils.core import setup # Hack to prevent stupid TypeError: 'NoneType' object is not callab...
1c17d37deb97e46769d1fbdb9af7cd9b2c63dc2e
manage.py
manage.py
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
Fix indents, from 2 to 4 spaces.
Fix indents, from 2 to 4 spaces.
Python
mit
jaapverloop/massa
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
<commit_before># -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger =...
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
# -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger = True, use_...
<commit_before># -*- coding: utf-8 -*- from flask import current_app, g from flask.ext.script import Manager, Server, prompt_bool from massa import create_app manager = Manager(create_app) manager.add_option('-c', '--config', dest='config', required=False) manager.add_command('runserver', Server( use_debugger =...
0905772851b4911466eb8f31dd4853aefb88e478
manage.py
manage.py
import os from app import create_app, db from app.models import User, Category from flask_script import Manager from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand) #pyli...
import os from app import create_app, db from app.models import User, Category from flask_script import Manager, Server from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand...
Change the runserver command to run a server at a host ip of 127.0.0.1 to easily change the xternal visibility of the application later
Change the runserver command to run a server at a host ip of 127.0.0.1 to easily change the xternal visibility of the application later
Python
mit
finnurtorfa/aflafrettir.is,finnurtorfa/aflafrettir.is,finnurtorfa/aflafrettir.is,finnurtorfa/aflafrettir.is
import os from app import create_app, db from app.models import User, Category from flask_script import Manager from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand) #pyli...
import os from app import create_app, db from app.models import User, Category from flask_script import Manager, Server from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand...
<commit_before>import os from app import create_app, db from app.models import User, Category from flask_script import Manager from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', Migrate...
import os from app import create_app, db from app.models import User, Category from flask_script import Manager, Server from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand...
import os from app import create_app, db from app.models import User, Category from flask_script import Manager from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', MigrateCommand) #pyli...
<commit_before>import os from app import create_app, db from app.models import User, Category from flask_script import Manager from flask_migrate import Migrate, MigrateCommand app = create_app(os.getenv('FLASK_CONFIG') or 'default') manager = Manager(app) migrate = Migrate(app, db) manager.add_command('db', Migrate...
2294ac33ad60b49c1aa7490674d11521ab027033
setup.py
setup.py
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): requirements.append("pyt...
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", "PyHamcrest >= 1.8", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): ...
Add PyHamcrest as a unit test dependency
Add PyHamcrest as a unit test dependency
Python
isc
Yelp/firefly,Yelp/firefly,Yelp/firefly,Yelp/firefly
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): requirements.append("pyt...
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", "PyHamcrest >= 1.8", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): ...
<commit_before>import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): requireme...
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", "PyHamcrest >= 1.8", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): ...
import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): requirements.append("pyt...
<commit_before>import os import platform from setuptools import setup requirements = [ "pycurl", "pyyaml >= 3.09", "tornado >= 1.1, <2.0", "testify == 0.3.10", ] # python-rrdtool doesn't install cleanly out of the box on OS X if not (os.name == "posix" and platform.system() == "Darwin"): requireme...
b21d8d0352af8c1b2ff14151cc61418a8915fd7c
setup.py
setup.py
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
Enforce working version of svgpathtools
Enforce working version of svgpathtools
Python
mit
yaqwsx/PcbDraw,yaqwsx/PcbDraw
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
<commit_before># -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamraz...
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
# -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamrazek.cz", des...
<commit_before># -*- coding: utf-8 -*- import setuptools import versioneer with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="PcbDraw", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author="Jan Mrázek", author_email="email@honzamraz...
9e7b117835f438200528ae81a0d57b870c01e556
setup.py
setup.py
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
Upgrade project status from pre-alpha to alpha.
Upgrade project status from pre-alpha to alpha.
Python
mit
wylee/pyramid_restler
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
<commit_before>from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons P...
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons Pyramid', in...
<commit_before>from setuptools import setup, find_packages version = open('version.txt').read().strip() setup( name='pyramid_restler', version=version, description='RESTful views for Pyramid', author='Wyatt Lee Baldwin', author_email='wyatt.lee.baldwin@gmail.com', keywords='Web REST Pylons P...
a9c095969f574b43bc9daf240fe91947e16d9a31
setup.py
setup.py
from setuptools import setup, find_packages import sys import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') def read(*paths): """Build a file path from *paths* and return the contents.""" ...
from setuptools import setup, find_packages import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup( n...
Remove unnecessary dependency on ordereddict
Remove unnecessary dependency on ordereddict
Python
mit
ningyifan/annotator-store,openannotation/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,happybelly/annotator-store
from setuptools import setup, find_packages import sys import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') def read(*paths): """Build a file path from *paths* and return the contents.""" ...
from setuptools import setup, find_packages import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup( n...
<commit_before>from setuptools import setup, find_packages import sys import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') def read(*paths): """Build a file path from *paths* and return the ...
from setuptools import setup, find_packages import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup( n...
from setuptools import setup, find_packages import sys import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') def read(*paths): """Build a file path from *paths* and return the contents.""" ...
<commit_before>from setuptools import setup, find_packages import sys import os requires = [ 'Flask==0.9', 'elasticsearch', 'PyJWT==0.1.4', 'iso8601==0.1.4', ] if sys.version_info < (2, 7): requires.append('ordereddict==1.1') def read(*paths): """Build a file path from *paths* and return the ...
12953b9999bc8f01da2c254e69531bb2cb34c92e
setup.py
setup.py
from setuptools import setup, find_packages setup( name="irma-probe", version='1.0', author='QuarksLab', author_email='irma@quarkslab.com', packages=find_packages(), include_package_data=True, license='LICENSE', description='Probe package for IRMA', long_description=open('README.rst...
import os from setuptools import setup, find_packages, findall IRMA_PROBE_PKG_TARGET = os.environ.get('IRMA_PROBE_PKG_TARGET', "Windows") target = None target_linux = 0 target_windows = 1 if IRMA_PROBE_PKG_TARGET == "Linux": target = target_linux elif IRMA_PROBE_PKG_TARGET == "Windows": target = target_windo...
Revert "merge package windows and linux into one single irma-probe package"
Revert "merge package windows and linux into one single irma-probe package" This reverts commit 7e1b52c722f34a075c20048ce829ecb963573df2.
Python
apache-2.0
hirokihamasaki/irma,quarkslab/irma,hirokihamasaki/irma,quarkslab/irma,hirokihamasaki/irma,hirokihamasaki/irma,quarkslab/irma,hirokihamasaki/irma,quarkslab/irma
from setuptools import setup, find_packages setup( name="irma-probe", version='1.0', author='QuarksLab', author_email='irma@quarkslab.com', packages=find_packages(), include_package_data=True, license='LICENSE', description='Probe package for IRMA', long_description=open('README.rst...
import os from setuptools import setup, find_packages, findall IRMA_PROBE_PKG_TARGET = os.environ.get('IRMA_PROBE_PKG_TARGET', "Windows") target = None target_linux = 0 target_windows = 1 if IRMA_PROBE_PKG_TARGET == "Linux": target = target_linux elif IRMA_PROBE_PKG_TARGET == "Windows": target = target_windo...
<commit_before>from setuptools import setup, find_packages setup( name="irma-probe", version='1.0', author='QuarksLab', author_email='irma@quarkslab.com', packages=find_packages(), include_package_data=True, license='LICENSE', description='Probe package for IRMA', long_description=o...
import os from setuptools import setup, find_packages, findall IRMA_PROBE_PKG_TARGET = os.environ.get('IRMA_PROBE_PKG_TARGET', "Windows") target = None target_linux = 0 target_windows = 1 if IRMA_PROBE_PKG_TARGET == "Linux": target = target_linux elif IRMA_PROBE_PKG_TARGET == "Windows": target = target_windo...
from setuptools import setup, find_packages setup( name="irma-probe", version='1.0', author='QuarksLab', author_email='irma@quarkslab.com', packages=find_packages(), include_package_data=True, license='LICENSE', description='Probe package for IRMA', long_description=open('README.rst...
<commit_before>from setuptools import setup, find_packages setup( name="irma-probe", version='1.0', author='QuarksLab', author_email='irma@quarkslab.com', packages=find_packages(), include_package_data=True, license='LICENSE', description='Probe package for IRMA', long_description=o...
fce895e57f027d83c6c4aa2cec12f605bb7bd8e2
setup.py
setup.py
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
Fix the way it uses the 'src' dir so the package is no longer installed as 'src'.
Fix the way it uses the 'src' dir so the package is no longer installed as 'src'. Note that although there is this fancy package_dir renaming functionality available to setup.py, and it will work if you do a setup.py install, it doesn't work properly when you run setup.py develop.
Python
mit
JDeuce/powser
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
<commit_before>import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques'...
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques', author_em...
<commit_before>import setuptools from src.version import __VERSION_STR__ setuptools.setup( name='powser', version=__VERSION_STR__, description=( 'Front-end package manager inspired by bower utilizing cdnjs. ' 'See https://github.com/JDeuce/powser for more.' ), author='Josh Jaques'...
f89398d49b53b3ec43b196c22a5735696f2de021
setup.py
setup.py
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
Update pins to match horton dictionary/api
chore(pins): Update pins to match horton dictionary/api - Update pins to match horton dictionary/api
Python
apache-2.0
NCI-GDC/gdcdatamodel,NCI-GDC/gdcdatamodel
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
<commit_before>from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2....
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2.4.2', ], ...
<commit_before>from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'pytz==2016.4', 'graphviz==0.4.2', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dateutil==2....
dda6c02ed3dc66841a5085274b60965ce9159516
setup.py
setup.py
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.1.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.2.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
Handle query params, request bodies
v0.2.0: Handle query params, request bodies
Python
mit
pd/httpie-api-auth
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.1.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.2.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
<commit_before>from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.1.0', author='Kyle Hargraves', author_email='pd@krh.me...
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.2.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.1.0', author='Kyle Hargraves', author_email='pd@krh.me', license=...
<commit_before>from setuptools import setup try: import multiprocessing except ImportError: pass setup( name='httpie-api-auth', description='ApiAuth plugin for HTTPie.', long_description=open('README.rst').read().strip(), version='0.1.0', author='Kyle Hargraves', author_email='pd@krh.me...
e2ce105300b7aed62b689edd7dcab2fbd27cc04b
setup.py
setup.py
#!env python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"])
#!/usr/bin/python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"])
Use fully qualified interpreter path.
Use fully qualified interpreter path.
Python
mit
mustpax/dailypost
#!env python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"]) Use fully qualified interpreter path.
#!/usr/bin/python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"])
<commit_before>#!env python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"]) <commit_msg>Use fully qu...
#!/usr/bin/python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"])
#!env python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"]) Use fully qualified interpreter path.#!...
<commit_before>#!env python from distutils.core import setup setup(name="dailypost", version="0.2", description="Manage MOTD entries and keep your MOTD looking fine.", author="Mustafa Paksoy", url="https://github.com/mustpax/dailypost", scripts=["dailypost.py"]) <commit_msg>Use fully qu...
3571d4def52455bbef025c685c0950737d654a9c
setup.py
setup.py
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
Update name of cli executable
Update name of cli executable
Python
mit
jaredmichaelsmith/destroyer
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
<commit_before>"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scrip...
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scripts] des...
<commit_before>"""setup.py - Distutils setup file""" from setuptools import setup, find_packages setup( name='destroyer', version='0.1.0', packages=find_packages(), include_package_data=True, install_requires=[ 'Tweepy', 'Click', ], entry_points=''' [console_scrip...
e888ccc6d49347a00f78c5aa168f8f149638e6aa
setup.py
setup.py
import setuptools setuptools.setup( name="Mongothon", version="0.7.7", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
import setuptools setuptools.setup( name="Mongothon", version="0.7.8", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
Use latest version of schemer
Use latest version of schemer
Python
mit
gamechanger/mongothon
import setuptools setuptools.setup( name="Mongothon", version="0.7.7", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
import setuptools setuptools.setup( name="Mongothon", version="0.7.8", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
<commit_before>import setuptools setuptools.setup( name="Mongothon", version="0.7.7", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://git...
import setuptools setuptools.setup( name="Mongothon", version="0.7.8", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
import setuptools setuptools.setup( name="Mongothon", version="0.7.7", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://github.com/gamecha...
<commit_before>import setuptools setuptools.setup( name="Mongothon", version="0.7.7", author="Tom Leach", author_email="tom@gc.io", description="A MongoDB object-document mapping layer for Python", license="BSD", keywords="mongo mongodb database pymongo odm validation", url="http://git...
55e4391b3232edf0f222b02506c10bdb851d7afa
setup.py
setup.py
from setuptools import setup with open('README.md') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type="text/markdown", au...
from setuptools import setup with open('README.md', 'r', encoding='utf-8') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type=...
Add UTF-8 encoding to readme file
Add UTF-8 encoding to readme file
Python
mit
seb-angel/FuelSDK-Python-Wrapper
from setuptools import setup with open('README.md') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type="text/markdown", au...
from setuptools import setup with open('README.md', 'r', encoding='utf-8') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type=...
<commit_before>from setuptools import setup with open('README.md') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type="text/ma...
from setuptools import setup with open('README.md', 'r', encoding='utf-8') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type=...
from setuptools import setup with open('README.md') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type="text/markdown", au...
<commit_before>from setuptools import setup with open('README.md') as f: readme = f.read() setup( version='1.3.4', name='FuelSDKWrapper', description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)', long_description=readme, long_description_content_type="text/ma...
d4811ebf3c136bba2559a2156b88909a76cfac7b
setup.py
setup.py
from distutils.core import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['e...
from setuptools import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['enume...
Use Setuptools instead of the deprecated Disutils
Use Setuptools instead of the deprecated Disutils
Python
mit
sgabe/Enumerator
from distutils.core import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['e...
from setuptools import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['enume...
<commit_before>from distutils.core import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], ...
from setuptools import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['enume...
from distutils.core import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], packages=['e...
<commit_before>from distutils.core import setup setup( name='enumerator', version='0.1.4', author='Erik Dominguez, Steve Coward', author_email='maleus@overflowsecurity.com, steve@sugarstack.io', maintainer='Steve Coward', maintainer_email='steve@sugarstack.io', scripts=['bin/enumerator'], ...
e703e3d68dd9f3aa17cb3000eaf39044a65f676b
setup.py
setup.py
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.2a', ...
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.3a', ...
Change order of isomiR naming
Change order of isomiR naming
Python
mit
miRTop/mirtop,miRTop/mirtop
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.2a', ...
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.3a', ...
<commit_before>"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version...
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.3a', ...
"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version='0.1.2a', ...
<commit_before>"""small RNA-seq annotation""" from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() # with open("reqs.txt", "r") as f: # install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")] setup(name='mirtop', version...
ac4afca0a66638d8318e69f428d4869958fef0cd
setup.py
setup.py
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
Use pypi version of lucene-querybuilder
Use pypi version of lucene-querybuilder
Python
mit
bleib1dj/neomodel,pombredanne/neomodel,fpieper/neomodel,cristigociu/neomodel_dh,wcooley/neomodel,robinedwards/neomodel,bleib1dj/neomodel,andrefsp/neomodel,robinedwards/neomodel
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
<commit_before>from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='ht...
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='http://github.com...
<commit_before>from setuptools import setup, find_packages setup( name='neomodel', version='0.3.6', description='An object mapper for the neo4j graph database.', long_description=open('README.rst').read(), author='Robin Edwards', author_email='robin.ge@gmail.com', zip_safe=True, url='ht...
2bd62c4b241340ca79292c3b9ef3ad87715e64c8
setup.py
setup.py
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
Fix version to include 2.0 for now (3.0 appears unfindable)
Fix version to include 2.0 for now (3.0 appears unfindable)
Python
bsd-3-clause
django/asgiref
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
<commit_before>import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', au...
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', author='Django So...
<commit_before>import os from setuptools import find_packages, setup from asgiref import __version__ # We use the README as the long_description readme_path = os.path.join(os.path.dirname(__file__), "README.rst") setup( name='asgiref', version=__version__, url='http://github.com/django/asgiref/', au...
e97081c000804b24021946ac39245e2e7a76e2a3
setup.py
setup.py
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
Remove simplejson as a dependency for python 2.6+
Remove simplejson as a dependency for python 2.6+ Python 2.6 introduced the ``json`` module into the core language and so ``simplejson`` is only required in python versions prior to python 2.6. This fix ensures that pip will only install simplejson if the version of python being run is less than 2.6. This stops the un...
Python
mit
authy/authy-python,authy/authy-python
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
<commit_before>from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", ...
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", author="Authy I...
<commit_before>from authy import __version__ from setuptools import setup, find_packages # to install authy type the following command: # python setup.py install with open('README.md') as f: long_description = f.read() setup( name="authy", version=__version__, description="Authy API Client", ...
d8769ab9c5d1d8b1f5ccbd4e22d2ed2ed17601b5
setup.py
setup.py
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
Add "future" package for python2 compability
Add "future" package for python2 compability
Python
apache-2.0
ohld/instabot,instagrambot/instabot,instagrambot/instabot
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
<commit_before>from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmai...
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmail.com', url...
<commit_before>from setuptools import setup setup( name='instabot', packages=['instabot', 'instabot.bot', 'instabot.api'], version='0.3.5.2', description='Cool Instagram bot scripts and API python wrapper.', author='Daniil Okhlopkov, Evgeny Kemerov', author_email='ohld@icloud.com, eskemerov@gmai...
5c2435641ce8f2e680a78e64efac5809e94a1cb8
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
Add floscripts and start scripts
Add floscripts and start scripts
Python
apache-2.0
thatch45/rflo
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(name=NAME, ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- # Import python libs import os import sys if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules: from setuptools import setup else: from distutils.core import setup NAME = 'rflo' DESC = ('raft on raet and ioflo') VERSION = '0.0.1' setup(...
58ec2816c8ad8d54d30d4ca22dcbb4941995207e
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
Move to version 1.1.0 for Django 1.7 support.
Move to version 1.1.0 for Django 1.7 support.
Python
bsd-3-clause
adamchainz/django_atomic_signals,graingert/django_atomic_signals
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
<commit_before>#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic-signals', ...
<commit_before>#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup packages = [ 'django_atomic_signals', ] requires = [ 'Django>=1.6.0,<1.8', ] tests_require = [ 'flake8', 'django-nose', 'rednose', ] setup( name='django-atomic...
47e0bf3b451f37f09e1dd98edceec8a7432c184e
tests/test_appinfo.py
tests/test_appinfo.py
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.yield_fixture def pickled_data(): with ...
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.mark.usefixtures('vdf_data') def test_load_...
Remove unused fixture from a test
Remove unused fixture from a test
Python
mit
leovp/steamfiles
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.yield_fixture def pickled_data(): with ...
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.mark.usefixtures('vdf_data') def test_load_...
<commit_before>import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.yield_fixture def pickled_da...
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.mark.usefixtures('vdf_data') def test_load_...
import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.yield_fixture def pickled_data(): with ...
<commit_before>import io import os import pickle import pytest from steamfiles import appinfo test_file_name = os.path.join(os.path.dirname(__file__), 'test_data/appinfo.vdf') @pytest.yield_fixture def vdf_data(): with open(test_file_name, 'rb') as f: yield f.read() @pytest.yield_fixture def pickled_da...
105bd894666ffecc2e3b73928771c253bcdc1166
tests/test_gui_mpl.py
tests/test_gui_mpl.py
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
Fix relativ import of package
Fix relativ import of package
Python
mit
thouska/spotpy,thouska/spotpy,thouska/spotpy
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
<commit_before># -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__v...
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
# -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2....
<commit_before># -*- coding: utf-8 -*- ''' Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' import unittest import matplotlib matplotlib.use('Agg') import sys if sys.version_info >= (3, 5) and matplotlib.__v...
61ed42b7bbb63b3d4e7fdfedf0444c59cf5a35ad
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.16', 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.17', packages=['todoist', 'todoist.managers'], author='Doist Team...
Update the PyPI version to 0.2.17
Update the PyPI version to 0.2.17
Python
mit
Doist/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.16', 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.17', 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.16', packages=['todoist', 'todoist.managers'], aut...
# -*- 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.17', 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.16', 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.16', packages=['todoist', 'todoist.managers'], aut...
599f50a8006f80e5926029f5a9820f5606084497
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.3.0", "oauth2client==4.1.1" ], extras_requir...
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.21.0", "oauth2client==4.1.1" ], extras_requi...
Update requests to its latest version
Update requests to its latest version
Python
mit
panoplyio/panoply-python-sdk
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.3.0", "oauth2client==4.1.1" ], extras_requir...
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.21.0", "oauth2client==4.1.1" ], extras_requi...
<commit_before>try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.3.0", "oauth2client==4.1.1" ], ...
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.21.0", "oauth2client==4.1.1" ], extras_requi...
try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.3.0", "oauth2client==4.1.1" ], extras_requir...
<commit_before>try: from setuptools import setup except ImportError: from distutils.core import setup execfile('panoply/constants.py') setup( name=__package_name__, version=__version__, packages=["panoply"], install_requires=[ "requests==2.3.0", "oauth2client==4.1.1" ], ...
a404a37749b5d8a950621cbfd662ce31775ab515
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
Fix ImportError when importing after system-wide installation
Fix ImportError when importing after system-wide installation
Python
mit
Phyks/replot
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
<commit_before>#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1]...
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1][1:-1] ...
<commit_before>#!/usr/bin/env python try: from setuptools import setup except ImportError: print('[replot] setuptools not found.') raise with open('replot/constants.py') as fh: for line in fh: line = line.strip() if line.startswith('__VERSION__'): version = line.split()[-1]...
602f537ad3ee6365aa781bc7776d5e797bfb65a3
refactor_scripts/set_manufacturer.py
refactor_scripts/set_manufacturer.py
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
Handle refactoring manufacturers with spaces in their name.
Handle refactoring manufacturers with spaces in their name.
Python
apache-2.0
rcbuild-info/scrape,rcbuild-info/scrape
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
<commit_before>#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': man...
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': manufacturer, u're...
<commit_before>#!/usr/bin/python import copy import os import os.path import sys import merge def setManufacturer(manufacturer, destinations, test=False): base_part = {u'category': "", u'name': "", u'subpart': [], u'equivalent': [], u'urls': {u'store': [], u'related': [], u'manufacturer': []}, u'manufacturer': man...
ba1ca23964080e4b6c4fa5b3295a65ce1787f291
setup.py
setup.py
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", package_dir = {'ld35': 'src/ld35'}, packages = ['ld35'], package_data = {'ld35': [ 'assets/*.ogg', 'assets/*.wav', 'examples/*.png', '...
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", description = 'The SeventhRoot entry for Ludum Dare 35', long_description_markdown_filename='README.md', packages = ['ld35'], package_data = {'ld35': [ 'a...
Set package description and removed package dir setting.
Set package description and removed package dir setting.
Python
mit
seventhroot/ld35
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", package_dir = {'ld35': 'src/ld35'}, packages = ['ld35'], package_data = {'ld35': [ 'assets/*.ogg', 'assets/*.wav', 'examples/*.png', '...
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", description = 'The SeventhRoot entry for Ludum Dare 35', long_description_markdown_filename='README.md', packages = ['ld35'], package_data = {'ld35': [ 'a...
<commit_before>import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", package_dir = {'ld35': 'src/ld35'}, packages = ['ld35'], package_data = {'ld35': [ 'assets/*.ogg', 'assets/*.wav', 'examples/*....
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", description = 'The SeventhRoot entry for Ludum Dare 35', long_description_markdown_filename='README.md', packages = ['ld35'], package_data = {'ld35': [ 'a...
import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", package_dir = {'ld35': 'src/ld35'}, packages = ['ld35'], package_data = {'ld35': [ 'assets/*.ogg', 'assets/*.wav', 'examples/*.png', '...
<commit_before>import os from setuptools import setup setup( name = "ld35", version = "0.0.1.dev", url = "https://github.com/seventhroot/ld35", package_dir = {'ld35': 'src/ld35'}, packages = ['ld35'], package_data = {'ld35': [ 'assets/*.ogg', 'assets/*.wav', 'examples/*....
b654ac3811df48965b7eb599f7c47f63784c2e81
setup.py
setup.py
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
Include tiddlywebplugins.utils as a dependency
Include tiddlywebplugins.utils as a dependency
Python
bsd-3-clause
TiddlySpace/tiddlywebplugins.jsondispatcher
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
<commit_before> AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERS...
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERSION = '0.1.0' ...
<commit_before> AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' MAINTAINER = 'Ben Paddock' MAINTAINER_EMAIL = 'pads@thisispads.me.uk' NAME = 'tiddlywebplugins.jsondispatcher' DESCRIPTION = 'A TiddlyWeb plugin to allow the dispatching of tiddlers to non-Python handlers by serialising tiddler data to JSON' VERS...
c90b6b173e4e26063f9c0fa1e03c550c63c6a06d
setup.py
setup.py
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('src') bas...
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'docs', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('sr...
Add documentation to packaging script.
Add documentation to packaging script.
Python
bsd-2-clause
GitExl/WhackEd4,GitExl/WhackEd4
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('src') bas...
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'docs', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('sr...
<commit_before>import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].app...
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'docs', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('sr...
import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].append('src') bas...
<commit_before>import sys import os from cx_Freeze import setup, Executable paths = [] paths.extend(sys.path) paths.append('whacked4') build_exe_options = { 'packages': [], 'path': paths, 'include_files': ['res', 'cfg', 'LICENSE', 'README.md'], 'optimize': 2, 'include_msvcr': True } build_exe_options['path'].app...
a412de216896ddf5b1c2156927d39bade75b10d8
setup.py
setup.py
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
Add entrypoint for Dusty client
Add entrypoint for Dusty client
Python
mit
gamechanger/dusty,gamechanger/dusty,gamechanger/dusty,gamechanger/dusty,gamechanger/dusty
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
<commit_before>import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do p...
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do pip install rest...
<commit_before>import os import sys import imp from setuptools import find_packages try: from restricted_pkg import setup except: # allow falling back to setuptools only if # we are not trying to upload if 'upload' in sys.argv: raise ImportError('restricted_pkg is required to upload, first do p...
24c67ce5972c1edf51f23c0029d56fd2b30daa47
setup.py
setup.py
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
Add required author_email to package metadata
Add required author_email to package metadata
Python
apache-2.0
otovo/python-netsgiro
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
<commit_before>import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], des...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File ...
<commit_before>import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], des...
e5d81deba11a0b08e10829a3f30a0e8b63cb51ea
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
Add json as a keyword.
Add json as a keyword.
Python
bsd-2-clause
rasjidw/python-jsonte
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.....
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
<commit_before>#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.....
b87073e7c7d4387b6608142de7fd6216a1d093b9
setup.py
setup.py
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
Add trove classifier for Python 3
Add trove classifier for Python 3
Python
bsd-3-clause
dabeaz/bitey,dabeaz/bitey
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
<commit_before>from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license=""...
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license="""BSD""", ...
<commit_before>from distutils.core import setup setup(name = "bitey", description="Bitcode Import Tool", long_description = """ Bitey allows LLVM bitcode to be directly imported into Python as an high performance extension module without the need for writing wrappers. """, license=""...
acf731b9b147dcb184aa93e51b2ebe2373b2d11f
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.8', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.7', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
Undo accidental version bump caused by Makefile
Undo accidental version bump caused by Makefile
Python
bsd-3-clause
ueg1990/flask-restful,marrybird/flask-restful,Khan/flask-restful,flask-restful/flask-restful,justanr/flask-restful,mackjoner/flask-restful,ankravch/flask-restful,whitekid/flask-restful,frol/flask-restful,elatomo/flask-restful,liangmingjie/flask-restful,santtu/flask-restful,ihiji/flask-restful,gonboy/flask-restful,Canal...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.8', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.7', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.8', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', pa...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.7', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.8', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', packages=find_pac...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages setup( name='Flask-RESTful', version='0.1.8', url='https://www.github.com/twilio/flask-restful/', author='Kyle Conroy', author_email='kyle@twilio.com', description='Simple framework for creating REST APIs', pa...
88ccf2a17dd7d846c89659561809dde9df01da48
setup.py
setup.py
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
Update GitHub repos from blancltd to developersociety
Update GitHub repos from blancltd to developersociety
Python
bsd-2-clause
blancltd/glitter-news
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
<commit_before>#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, u...
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, url='https://git...
<commit_before>#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() setup( name='django-glitter-news', version='0.3.3', description='Django Glitter News for Django', long_description=readme, u...
b11166f648c6c9c225b45fd13d57eb3124df81cc
setup.py
setup.py
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
Declare Python 2.7 and 3.3 compatibility
Declare Python 2.7 and 3.3 compatibility
Python
mit
GuidoBR/python-skyfield,skyfielders/python-skyfield,ozialien/python-skyfield,skyfielders/python-skyfield,GuidoBR/python-skyfield,exoanalytic/python-skyfield,exoanalytic/python-skyfield,ozialien/python-skyfield
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
<commit_before>from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.or...
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.org', url='ht...
<commit_before>from distutils.core import setup import skyfield # to learn the version setup( name='skyfield', version=skyfield.__version__, description=skyfield.__doc__, long_description=open('README.rst').read(), license='MIT', author='Brandon Rhodes', author_email='brandon@rhodesmill.or...
2ad357bd15e50035c4914a9510eeb3b1f40d687b
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() except IOError: ...
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[3] is not None: version = "%d.%d.%d_%s" % version_tuple else: version = "%d.%d.%d" % version_tuple[:3] try: with open('README.rst') as f: readme = f.read() except IOErr...
Change version format to allow MAJOR.MINOR.PATCH.
Change version format to allow MAJOR.MINOR.PATCH.
Python
mit
nju520/PyMySQL,jheld/PyMySQL,aio-libs/aiomysql,NunoEdgarGub1/PyMySQL,pulsar314/Tornado-MySQL,anson-tang/PyMySQL,yeyinzhu3211/PyMySQL,xjzhou/PyMySQL,xjzhou/PyMySQL,pymysql/pymysql,eibanez/PyMySQL,yeyinzhu3211/PyMySQL,PyMySQL/PyMySQL,wraziens/PyMySQL,Geoion/Tornado-MySQL,modulexcite/PyMySQL,jwjohns/PyMySQL,DashaChuk/PyMy...
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() except IOError: ...
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[3] is not None: version = "%d.%d.%d_%s" % version_tuple else: version = "%d.%d.%d" % version_tuple[:3] try: with open('README.rst') as f: readme = f.read() except IOErr...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() exc...
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[3] is not None: version = "%d.%d.%d_%s" % version_tuple else: version = "%d.%d.%d" % version_tuple[:3] try: with open('README.rst') as f: readme = f.read() except IOErr...
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() except IOError: ...
<commit_before>#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() exc...
fc8ecdda75a9edb7b8f58cf247a9c26b05fdc20b
setup.py
setup.py
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
Remove Python 3.4 from classifiers
Remove Python 3.4 from classifiers
Python
bsd-3-clause
etianen/django-s3-storage
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
<commit_before>from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", aut...
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", author_email="dave...
<commit_before>from setuptools import setup, find_packages from django_s3_storage import __version__ version_str = ".".join(str(n) for n in __version__) setup( name="django-s3-storage", version=version_str, license="BSD", description="Django Amazon S3 file storage.", author="Dave Hall", aut...
7924c608fd7c44574c1a7b59fb7eb9f77b44340b
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
Fix datamodel version. Closes GH-1.
Fix datamodel version. Closes GH-1.
Python
mit
ProjetPP/PPP-CLI
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
<commit_before>#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.o...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', licens...
<commit_before>#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_cli', version='0.1', description='Command-line tool for debugging PPP modules', url='https://github.com/ProjetPP/PPP-CLI', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.o...
7d8adf2ba125e70c0a8a6b2fab67bbce7bff47de
setup.py
setup.py
from setuptools import setup, find_packages setup( name='panoptescli', version='1.1.3', 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.1.3', 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 from <5.4,>=5.1 to >=5.1,<5.5
Update pyyaml requirement from <5.4,>=5.1 to >=5.1,<5.5 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/pyy...
Python
apache-2.0
zooniverse/panoptes-cli
from setuptools import setup, find_packages setup( name='panoptescli', version='1.1.3', 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.1.3', 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.1.3', 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.1.3', 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.1.3', 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.1.3', 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...
5f23b65fc1ea40d4d9cd8f17a4b439304840f57c
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
Add mock as a requirement, this is required for all Python releases prior to 3.3
Add mock as a requirement, this is required for all Python releases prior to 3.3
Python
mit
mina-asham/pictures-dedupe-and-rename
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
<commit_before># -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and-rename', l...
<commit_before># -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='pictures-dedupe-and-rename', version='1.0.0', description='Dedupe a set of pictures in a given folder and rename them using the yyyymmdd_HHMMss format', url='https://github.com/mina-asham/pictures-dedupe-and...
19e2753f957d26883be1703a1c3098c4f858424c
setup.py
setup.py
from distutils.core import setup import pkg_resources import sys requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') version = pkg_resources.require("fitparse")[0].version setup( name='fitparse', version=version, description='Python library to parse ANT/Garmin .FIT files', ...
# -*- coding: utf-8 -*- import re import sys from distutils.core import setup requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') with open('fitparse/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTIL...
Read the __version__ from the fitparse/__init__.py without importing it
Read the __version__ from the fitparse/__init__.py without importing it It avoids having to read an extra VERSION file in the module code itself and leaves all the ugliness in setup.py, where ugliness belongs. This is the same technique that the requests module uses.
Python
isc
K-Phoen/python-fitparse
from distutils.core import setup import pkg_resources import sys requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') version = pkg_resources.require("fitparse")[0].version setup( name='fitparse', version=version, description='Python library to parse ANT/Garmin .FIT files', ...
# -*- coding: utf-8 -*- import re import sys from distutils.core import setup requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') with open('fitparse/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTIL...
<commit_before>from distutils.core import setup import pkg_resources import sys requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') version = pkg_resources.require("fitparse")[0].version setup( name='fitparse', version=version, description='Python library to parse ANT/Garmin...
# -*- coding: utf-8 -*- import re import sys from distutils.core import setup requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') with open('fitparse/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTIL...
from distutils.core import setup import pkg_resources import sys requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') version = pkg_resources.require("fitparse")[0].version setup( name='fitparse', version=version, description='Python library to parse ANT/Garmin .FIT files', ...
<commit_before>from distutils.core import setup import pkg_resources import sys requires = ['six'] if sys.version_info < (2, 7): requires.append('argparse') version = pkg_resources.require("fitparse")[0].version setup( name='fitparse', version=version, description='Python library to parse ANT/Garmin...
058b484b997158219b9c0eda34ec6ac3d897f563
setup.py
setup.py
import os import json from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( name=package['name'...
import os import io import json from setuptools import setup with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with io.open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( nam...
Use io.open for py2/py3 compat
Use io.open for py2/py3 compat
Python
mit
bradleyg/django-s3direct,bradleyg/django-s3direct,bradleyg/django-s3direct
import os import json from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( name=package['name'...
import os import io import json from setuptools import setup with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with io.open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( nam...
<commit_before>import os import json from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( name...
import os import io import json from setuptools import setup with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with io.open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( nam...
import os import json from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( name=package['name'...
<commit_before>import os import json from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f: readme = f.read() with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f: package = json.loads(f.read()) setup( name...
f3055b0804beeee52bed748ed56c2f407e736efb
setup.py
setup.py
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
Make short desc less fudful
Make short desc less fudful
Python
mit
stripe/sentry-restricted-github
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
<commit_before>#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] ...
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] install_require...
<commit_before>#!/usr/bin/env python """ # sentry-restricted-github A limited alternavite to sentry-github which doesn't require write access to repos. It allows creating tickets but doesn't link them to the sentry error group. """ from setuptools import setup, find_packages # tests_require = [ # 'nose', # ] ...
f9ee920b402356555de1198bceb2b26b321c5cbf
setup.py
setup.py
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md') as f: return f.read().encode('ascii', errors='ignore').decode() reqs = [line.strip() for line in open('r...
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md', 'rb') as f: return f.read().decode('utf-8', errors='ignore') reqs = [line.strip() for line in open('requ...
Fix for Windows builds (for real this time)
Fix for Windows builds (for real this time)
Python
mit
pyoceans/pocean-core,pyoceans/pocean-core
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md') as f: return f.read().encode('ascii', errors='ignore').decode() reqs = [line.strip() for line in open('r...
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md', 'rb') as f: return f.read().decode('utf-8', errors='ignore') reqs = [line.strip() for line in open('requ...
<commit_before>from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md') as f: return f.read().encode('ascii', errors='ignore').decode() reqs = [line.strip() for ...
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md', 'rb') as f: return f.read().decode('utf-8', errors='ignore') reqs = [line.strip() for line in open('requ...
from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md') as f: return f.read().encode('ascii', errors='ignore').decode() reqs = [line.strip() for line in open('r...
<commit_before>from __future__ import with_statement from setuptools import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() def readme(): with open('README.md') as f: return f.read().encode('ascii', errors='ignore').decode() reqs = [line.strip() for ...
5e92c0ef714dea823e1deeef21b5141d9e0111a0
setup.py
setup.py
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as f:...
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'opsimsummary') versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as...
Revert "Changed back due to problems, will fix later"
Revert "Changed back due to problems, will fix later" This reverts commit 613dad26fdb260f586f829b00f6eb25c4b28e448. modified: setup.py
Python
mit
rbiswas4/simlib
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as f:...
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'opsimsummary') versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as...
<commit_before>from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionF...
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'opsimsummary') versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as...
from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionFile, 'r') as f:...
<commit_before>from distutils.core import setup import sys import os import re PACKAGENAME = 'OpSimSummary' packageDir = os.path.join(os.path.dirname(os.path.abspath(__file__)), PACKAGENAME) versionFile = os.path.join(packageDir, 'version.py') # Obtain the package version with open(versionF...
1525d327adf76a37bdbd6b0b9f63308ad55c5dbc
setup.py
setup.py
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
Change the pkg url to its github repo
Change the pkg url to its github repo
Python
bsd-3-clause
Alir3z4/django-databrowse,Alir3z4/django-databrowse
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
<commit_before>from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html...
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html', ...
<commit_before>from distutils.core import setup setup( name='django-databrowse', version='1.3', packages=['django_databrowse', 'django_databrowse.plugins'], package_dir={'django_databrowse': 'django_databrowse'}, package_data={ 'django_databrowse': [ 'templates/databrowse/*.html...
aac588a758f43bf517aba0afbb0455d86035a893
setup.py
setup.py
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages()+['argparse'], scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchem...
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages(), scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchemy>=0.7, <1.0'...
Fix installation error: remove argparse from list of packages
Fix installation error: remove argparse from list of packages
Python
mit
coinbox/coinbox-core
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages()+['argparse'], scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchem...
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages(), scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchemy>=0.7, <1.0'...
<commit_before>from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages()+['argparse'], scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=...
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages(), scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchemy>=0.7, <1.0'...
from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages()+['argparse'], scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=[ 'sqlalchem...
<commit_before>from setuptools import setup, find_packages setup( name="Coinbox-pos", version="0.2", packages=find_packages()+['argparse'], scripts=['coinbox'], zip_safe=True, namespace_packages=['cbmod'], include_package_data=True, install_requires=...
eeeab2aae49dadff6e51ae8819d0dfe811ab107d
setup.py
setup.py
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.1', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.2', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
Bump version 0.2.1 -> 0.2.2
Bump version 0.2.1 -> 0.2.2
Python
apache-2.0
calidae/python-aeat_sii
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.1', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.2', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
<commit_before> from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.1', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", a...
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.2', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.1', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", author_email="de...
<commit_before> from setuptools import setup from setuptools import find_packages install_requires = [ 'zeep>=1.6', ] tests_require = [ 'pytest>3', 'mock', ] setup( name='pyAEATsii', version='0.2.1', description='A python wrapper for the AEAT SII webservices', author="Calidae S.L.", a...
8b9d789ccc5ed1840e8a7173c304c86f954a5447
setup.py
setup.py
import setuptools setuptools.setup( name='warlock', version='0.1', description='', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'], )
import setuptools setuptools.setup( name='warlock', version='0.0.1', description='Python object model built on top of JSON schema', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'],...
Set reasonable version and add description
Set reasonable version and add description
Python
apache-2.0
bcwaldon/warlock
import setuptools setuptools.setup( name='warlock', version='0.1', description='', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'], ) Set reasonable version and add description
import setuptools setuptools.setup( name='warlock', version='0.0.1', description='Python object model built on top of JSON schema', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'],...
<commit_before>import setuptools setuptools.setup( name='warlock', version='0.1', description='', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'], ) <commit_msg>Set reasonable vers...
import setuptools setuptools.setup( name='warlock', version='0.0.1', description='Python object model built on top of JSON schema', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'],...
import setuptools setuptools.setup( name='warlock', version='0.1', description='', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'], ) Set reasonable version and add descriptionimpo...
<commit_before>import setuptools setuptools.setup( name='warlock', version='0.1', description='', author='Brian Waldon', author_email='bcwaldon@gmail.com', url='http://github.com/bcwaldon/warlock', packages=['warlock'], install_requires=['jsonschema'], ) <commit_msg>Set reasonable vers...
47038d4ababa7054a35a1471aec34ca7b8a686d4
setup.py
setup.py
# coding=utf-8 """Install config.""" from setuptools import setup setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', author_emai...
# coding=utf-8 """Install config.""" from setuptools import setup with open('README.md') as f: long_description = f.read() setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/p...
Use README.md as package description
Use README.md as package description
Python
mit
carlthome/python-audio-effects
# coding=utf-8 """Install config.""" from setuptools import setup setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', author_emai...
# coding=utf-8 """Install config.""" from setuptools import setup with open('README.md') as f: long_description = f.read() setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/p...
<commit_before># coding=utf-8 """Install config.""" from setuptools import setup setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', ...
# coding=utf-8 """Install config.""" from setuptools import setup with open('README.md') as f: long_description = f.read() setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/p...
# coding=utf-8 """Install config.""" from setuptools import setup setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', author_emai...
<commit_before># coding=utf-8 """Install config.""" from setuptools import setup setup( name='pysndfx', version='0.3.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', ...
aba21ccde199e49c693d05bd16e9b243c9ef4172
setup.py
setup.py
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
Add more metadata for pypi
Add more metadata for pypi
Python
mit
anchor/pymarquise,anchor/pymarquise
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
<commit_before>from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting t...
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting the CFFI stuff f...
<commit_before>from setuptools import setup import marquise.marquise extension = marquise.marquise.FFI.verifier.get_extension() with open('VERSION', 'r') as f: VERSION = f.readline().strip() # These notes suggest that there's not yet any "correct" way to do packageable # CFFI interfaces. For now I'm splitting t...