commit stringlengths 40 40 | subject stringlengths 4 1.73k | repos stringlengths 5 127k | old_file stringlengths 2 751 | new_file stringlengths 2 751 | new_contents stringlengths 1 8.98k | old_contents stringlengths 0 6.59k | license stringclasses 13
values | lang stringclasses 23
values |
|---|---|---|---|---|---|---|---|---|
f0ba6e1e8ac634d6dfd1213390e68529e826c5de | Normalize all setup.py files (#4909) | googleapis/python-dataproc,googleapis/python-dataproc | setup.py | setup.py | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2017 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
61145b95de38c56ac14528441ab1d279515c43c1 | Mark as a release | scottza/PyTOPKAPI,sahg/PyTOPKAPI | setup.py | setup.py | import os
import subprocess
# BEFORE importing distutils, remove MANIFEST. distutils doesn't
# properly update it when the contents of directories change.
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
from distutils.core import setup
MAJOR = 0
MINOR = 2
MICRO = 0
ISRE... | import os
import subprocess
# BEFORE importing distutils, remove MANIFEST. distutils doesn't
# properly update it when the contents of directories change.
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
from distutils.core import setup
MAJOR = 0
MINOR = 2
MICRO = 0
ISRE... | bsd-3-clause | Python |
e117478af6c6d96851283cd267f67efb9a98c93d | Include migrations package | sendgridlabs/loaderio-django | setup.py | setup.py | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-loaderio',
version='0.2.1',
packages=['loaderio', ... | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-loaderio',
version='0.2.0',
packages=['loaderio'],... | mit | Python |
98b71d99c491ed9247d5cdde0ab44d4936d70639 | Bump version to 0.3.1 | kezabelle/django-sniplates,kezabelle/django-sniplates,funkybob/django-sniplates,sergei-maertens/django-sniplates,sergei-maertens/django-sniplates,sergei-maertens/django-sniplates,wengole/django-sniplates,wengole/django-sniplates,kezabelle/django-sniplates,funkybob/django-sniplates | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-sniplates',
version='0.3.1',
description='Efficient template macro sets for Django',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='http://github.com/funkybob/django-sniplates',
keywords=['django', 'templates... | from setuptools import setup, find_packages
setup(
name='django-sniplates',
version='0.3.0',
description='Efficient template macro sets for Django',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='http://github.com/funkybob/django-sniplates',
keywords=['django', 'templates... | mit | Python |
5540c376a691be211f2ca2cb7db6f191157ce938 | Bump version to 0.2.0 | wglass/rotterdam | setup.py | setup.py | from setuptools import setup
setup(
name="rotterdam",
version="0.2.0",
description=(
"Simple distributed job queue via redis."
),
author="William Glass",
author_email="william.glass@gmail.com",
url="http://github.com/wglass/rotterdam",
packages=["rotterdam"],
include_package... | from setuptools import setup
setup(
name="rotterdam",
version="0.1.2",
description=(
"Simple distributed job queue via redis."
),
author="William Glass",
author_email="william.glass@gmail.com",
url="http://github.com/wglass/rotterdam",
packages=["rotterdam"],
include_package... | mit | Python |
8b17c38e18c650362822e985f0da7f00de0c2e1c | fix installation under Python 3 | phaustin/sphinxcontrib-fulltoc,sphinxcontrib/sphinxcontrib-fulltoc,dreamhost/sphinxcontrib-fulltoc | setup.py | setup.py | # -*- coding: utf-8 -*-
# Bootstrap installation of Distribute
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
long_desc = open('README.rst', 'r').read()
except IOError:
long_desc = ''
requir... | # -*- coding: utf-8 -*-
# Bootstrap installation of Distribute
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
try:
long_desc = open('README.rst', 'r').read()
except IOError:
long_desc = ''
requires = ['Sphinx>=0.6',
'docutils>=0.6',
... | apache-2.0 | Python |
a7f848d63d8eaa8f8c3b1165be71eb4c6c5ed07e | Bump version to 5.5.0 | hhursev/recipe-scraper | setup.py | setup.py | import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="recipe_scrapers",
url="https://github.com/hhursev/recipe-scrapers/",
version="5.5.0... | import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="recipe_scrapers",
url="https://github.com/hhursev/recipe-scrapers/",
version="5.4.1... | mit | Python |
f4357a4f2585aab3683bdfbf6a234f7fc3d3a211 | Support for CuReSim | karel-brinda/rnftools,karel-brinda/rnftools | setup.py | setup.py | import sys
from setuptools import setup , find_packages
if sys.version_info < (3,2):
print("At least Python 3.2 is required.\n", file=sys.stderr)
exit(1)
setup(
name = 'MIShmash',
packages = ['mishmash'],
package_dir = {"mishmash" : "mishmash"},
package_data = {"mishmash" : ["*.snake"] },
version = '0.0.5',
d... | import sys
from setuptools import setup , find_packages
if sys.version_info < (3,2):
print("At least Python 3.2 is required.\n", file=sys.stderr)
exit(1)
setup(
name = 'MIShmash',
packages = ['mishmash'],
package_dir = {"mishmash" : "mishmash"},
package_data = {"mishmash" : ["*.snake"] },
version = '0.0.4',
d... | mit | Python |
60a28fbd68b50f6ba28cced38066f5ad916b1575 | Make the setup.py Python 3 compatible | lorenzogil/yith-library-web-client,ablanco/yith-library-web-client,ablanco/yith-library-web-client,ablanco/yith-library-web-client,lorenzogil/yith-library-web-client,lorenzogil/yith-library-web-client,ablanco/yith-library-web-client,lorenzogil/yith-library-web-client | setup.py | setup.py | # Yith Library web client
# Copyright (C) 2012 Yaco Sistemas S.L.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later versio... | # Yith Library web client
# Copyright (C) 2012 Yaco Sistemas S.L.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later versio... | agpl-3.0 | Python |
e5c09b35ac0b28faf03248298333cc2d8e8d163c | Add elfesteem.macho to setup.py | LRGH/elfesteem,LRGH/elfesteem | setup.py | setup.py | #! /usr/bin/env python
from distutils.core import setup
setup(
name = 'ELF-Esteem',
version = '0.1',
packages = ['elfesteem', 'elfesteem.macho'],
requires = ['python (>= 2.3)'],
scripts = ['examples/readelf.py','examples/otool.py','examples/readpe.py'],
# Metadata
author = 'Philippe BI... | #! /usr/bin/env python
from distutils.core import setup
setup(
name = 'ELF-Esteem',
version = '0.1',
packages = ['elfesteem'],
requires = ['python (>= 2.3)'],
scripts = ['examples/readelf.py','examples/otool.py','examples/readpe.py'],
# Metadata
author = 'Philippe BIONDI',
author_e... | lgpl-2.1 | Python |
f24b751e9abf5707d84b5750d94f9b8f59024b83 | Add metadata information about python versions | flasgger/flasgger,flasgger/flasgger,flasgger/flasgger,rochacbruno/flasgger,flasgger/flasgger,rochacbruno/flasgger,rochacbruno/flasgger | setup.py | setup.py | # Fix for older setuptools
import re
import os
from setuptools import setup, find_packages
def fpath(name):
return os.path.join(os.path.dirname(__file__), name)
def read(fname):
return open(fpath(fname)).read()
def desc():
return read('README.md')
# grep flasgger/__init__.py since python 3.x cannot... | # Fix for older setuptools
import re
import os
from setuptools import setup, find_packages
def fpath(name):
return os.path.join(os.path.dirname(__file__), name)
def read(fname):
return open(fpath(fname)).read()
def desc():
return read('README.md')
# grep flasgger/__init__.py since python 3.x cannot... | mit | Python |
5250e1c9455d48165ae5ca62019d4d80fbc62e3e | Use absolute path to docs dir. Fixes issue #279. | pjdelport/pip,xavfernandez/pip,wkeyword/pip,benesch/pip,esc/pip,mujiansu/pip,patricklaw/pip,jythontools/pip,dstufft/pip,prasaianooz/pip,fiber-space/pip,alquerci/pip,jasonkying/pip,ianw/pip,ChristopherHogan/pip,fiber-space/pip,alex/pip,rouge8/pip,cjerdonek/pip,esc/pip,habnabit/pip,James-Firth/pip,willingc/pip,jythontool... | setup.py | setup.py | import sys
import os
from setuptools import setup
# If you change this version, change it also in docs/conf.py
version = "1.0.1"
doc_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), "docs")
index_filename = os.path.join(doc_dir, "index.txt")
news_filename = os.path.join(doc_dir, "news.txt")
long_descrip... | import sys
import os
from setuptools import setup
# If you change this version, change it also in docs/conf.py
version = "1.0.1"
doc_dir = os.path.join(os.path.dirname(__file__), "docs")
index_filename = os.path.join(doc_dir, "index.txt")
news_filename = os.path.join(doc_dir, "news.txt")
long_description = """
The m... | mit | Python |
adf5ffdb97092e91f7a8136083cebe8e3cb57c13 | Fix setup.py | RPi-Distro/python-energenie,rjw57/energenie,bennuttall/energenie | setup.py | setup.py | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "energenie",
version = "0.1.3",
author = "Ben Nuttall",
author_email = "ben@raspberrypi.org",
description = "Python module to control the Energenie add-on bo... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "energenie",
version = "0.1.3",
author = "Ben Nuttall",
author_email = "ben@raspberrypi.org",
description = "Python module to control the Energenie add-on bo... | bsd-3-clause | Python |
98577385c58e127cc1264667f72068af0ede6776 | Update setup.py to import version in a more correct way. | pbs/django-cms,pbs/django-cms,pbs/django-cms,pbs/django-cms | setup.py | setup.py | from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent... | from setuptools import setup, find_packages
import os
import cms
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS ... | bsd-3-clause | Python |
2e850a22d0fcf8441d47928f5d758e3cb6b6bbaa | Fix homepage url to point to the correct repo | zeekay/flask-uwsgi-websocket | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='Flask-uWSGI-WebSocket',
version='0.6.1',
url='https://github.com/zeekay/flask-uwsgi-websocket',
license='MIT',
author='Zach Kelling',
author_email='zk@monoid.io',
description='High-performance WebSockets for your... | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='Flask-uWSGI-WebSocket',
version='0.6.1',
url='https://github.com/zeekay/flask_uwsgi_websocket',
license='MIT',
author='Zach Kelling',
author_email='zk@monoid.io',
description='High-performance WebSockets for your... | mit | Python |
74852c6fa58fa23c96d40a4fbc819ed12e128a25 | upgrade version | vangj/py-bbn,vangj/py-bbn | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.rst', 'r') as fh:
long_desc = fh.read()
setup(
name='pybbn',
version='0.1.3',
author='Jee Vang',
author_email='vangjee@gmail.com',
packages=find_packages(),
description='Learning and Inference in Bayesian Belief Networks',
l... | from setuptools import setup, find_packages
with open('README.rst', 'r') as fh:
long_desc = fh.read()
setup(
name='pybbn',
version='0.1.2',
author='Jee Vang',
author_email='vangjee@gmail.com',
packages=find_packages(),
description='Learning and Inference in Bayesian Belief Networks',
l... | apache-2.0 | Python |
97f421f2e728cceb35e0515dcd8c1db5ac214996 | add 'import re' in setup.py | elapouya/python-docx-template,rgusmero/python-docx-template | setup.py | setup.py | from setuptools import setup
import os
import re
def read(*names):
values = dict()
for name in names:
filename = name + '.rst'
if os.path.isfile(filename):
fd = open(filename)
value = fd.read()
fd.close()
else:
value = ''
values[na... | from setuptools import setup
import os
def read(*names):
values = dict()
for name in names:
filename = name + '.rst'
if os.path.isfile(filename):
fd = open(filename)
value = fd.read()
fd.close()
else:
value = ''
values[name] = valu... | lgpl-2.1 | Python |
45c2a5c2e1d2eb76fe7eaa599cb2269f25bdf553 | Update version for PyPi | OrkoHunter/keep,OrkoHunter/keep,paci4416/keep,paci4416/keep | setup.py | setup.py | #! /usr/bin/env python
#! -*- coding: utf-8 -*-
import sys
from setuptools import setup
if __name__ == "__main__":
setup(
name = 'keep',
version = 1.2,
author = 'Himanshu Mishra',
author_email = 'himanshumishra@iitkgp.ac.in',
description = 'Personal shell command keeper',
... | #! /usr/bin/env python
#! -*- coding: utf-8 -*-
import sys
from setuptools import setup
if __name__ == "__main__":
setup(
name = 'keep',
version = 0.1,
author = 'Himanshu Mishra',
author_email = 'himanshumishra@iitkgp.ac.in',
description = 'Personal shell command keeper',
... | mit | Python |
780c1fe3b2f537463a46e335186b7741add88a1e | fix license info within classifiers | mweb/appconfig | setup.py | setup.py | import os
import multiprocessing
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['appdirs',
]
tests_requires = ['nose',
]
setup(nam... | import os
import multiprocessing
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['appdirs',
]
tests_requires = ['nose',
]
setup(nam... | bsd-2-clause | Python |
0af00a7f4cab009fe5c00674a0775a4854577444 | Tweak some stuff in setup() | TangledWeb/tangled | setup.py | setup.py | from setuptools import setup, PEP420PackageFinder
setup(
name='tangled',
version='1.0a13.dev0',
description='Tangled namespace and utilities',
long_description=open('README.rst').read(),
url='https://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled/tags',
author=... | from setuptools import setup, PEP420PackageFinder
setup(
name='tangled',
version='1.0a13.dev0',
description='Tangled namespace and utilities',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled/tags',
author='... | mit | Python |
7a5fc22287fcda6497065032967496afea3e49ce | fix travis CI | changsiyao/mousestyles,berkeley-stat222/mousestyles,togawa28/mousestyles | setup.py | setup.py | #! /usr/bin/env python
if __name__ == "__main__":
from setuptools import setup
setup(name="mousestyles",
packages=["mousestyles", "mousestyles.data", "mousestyles.data.tests"],
package_data={'mousestyles.data': ['*.npy', '*/*/*.npy']})
| #! /usr/bin/env python
if __name__ == "__main__":
from setuptools import setup
setup(name="mousestyles",
packages=["mousestyles", "mousestyles.data", "mousestyles.data.tests"])
| bsd-2-clause | Python |
dbbbc3f3b0d80e5f990dee631006e261fa6d09a7 | Bump version | tylerdave/devpi-plumber | setup.py | setup.py | # coding=utf-8
import multiprocessing # avoid crash on teardown
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='devpi-plumber',
version='0.2.0',
packages=find_packages(exclude=['tests']),
author='Stephan Erb',
author_email='stephan.erb@... | # coding=utf-8
import multiprocessing # avoid crash on teardown
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='devpi-plumber',
version='0.2.0.dev',
packages=find_packages(exclude=['tests']),
author='Stephan Erb',
author_email='stephan.... | bsd-3-clause | Python |
2a643d79824e0c303b2a1f112c225012f6e54e06 | Fix pkgname in setup.py | ConstellationApps/Forms,ConstellationApps/Forms,ConstellationApps/Forms | setup.py | setup.py | import os
from setuptools import setup
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='Constellation-Forms',
version='0.1.0',
packages=['constell... | import os
from setuptools import setup
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='Constellation-Forms',
version='0.1.0',
packages=['constell... | isc | Python |
08bad8b5cefd896520334200a6a8713a60c9a334 | Bump version | BillyBlaze/OctoPrint-TouchUI,BillyBlaze/OctoPrint-TouchUI,BillyBlaze/OctoPrint-TouchUI | setup.py | setup.py | # coding=utf-8
plugin_identifier = "touchui"
plugin_package = "octoprint_touchui"
plugin_name = "TouchUI"
plugin_version = "0.3.17"
plugin_description = """A touch friendly interface for a small TFT modules and or phones"""
plugin_author = "Paul de Vries"
plugin_author_email = "pablo+octoprint+touch+ui@aerosol.me"
plu... | # coding=utf-8
plugin_identifier = "touchui"
plugin_package = "octoprint_touchui"
plugin_name = "TouchUI"
plugin_version = "0.3.16"
plugin_description = """A touch friendly interface for a small TFT modules and or phones"""
plugin_author = "Paul de Vries"
plugin_author_email = "pablo+octoprint+touch+ui@aerosol.me"
plu... | agpl-3.0 | Python |
9c41b92ce5036064e0e2490056f15583cbe9bfe6 | Add python version classifiers | kennethreitz/grequests | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
GRequests allows you to use Requests with Gevent to make asynchronous HTTP
Requests easily.
Usage
-----
Usage is simple::
import grequests
urls = [
'http://www.heroku.com',
'http://tablib.org',
'http://httpbin.org',
'http://python-requests.org',
... | # -*- coding: utf-8 -*-
"""
GRequests allows you to use Requests with Gevent to make asynchronous HTTP
Requests easily.
Usage
-----
Usage is simple::
import grequests
urls = [
'http://www.heroku.com',
'http://tablib.org',
'http://httpbin.org',
'http://python-requests.org',
... | bsd-2-clause | Python |
676f33c1a8a2c4b35079468f14785aee8e625026 | Bump to v0.2 | yunojuno/django-appmail,yunojuno/django-appmail | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-appmail",
versi... | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-appmail",
versi... | mit | Python |
e738d5cb4bc4a1302ffe252e8fb2adb42c59c8b9 | Bump version: 0.1.6 -> 0.1.7 | polysquare/travis-bump-version | setup.py | setup.py | # /setup.py
#
# Installation and setup script for travis-bump-version
#
# See /LICENCE.md for Copyright information
"""Installation and setup script for travis-bump-version."""
from setuptools import find_packages
from setuptools import setup
setup(name="travis-bump-version",
version="0.1.7",
description=... | # /setup.py
#
# Installation and setup script for travis-bump-version
#
# See /LICENCE.md for Copyright information
"""Installation and setup script for travis-bump-version."""
from setuptools import find_packages
from setuptools import setup
setup(name="travis-bump-version",
version="0.1.6",
description=... | mit | Python |
6e5a65f0d8f7cd15375d720d962a1ea624ea9c18 | Update setup.py | ResidentMario/missingno | setup.py | setup.py | from setuptools import setup
setup(
name = 'missingno',
packages = ['missingno'], # this must be the same as the name above
install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'],
py_modules=['missingno'],
version = '0.2.1',
description = 'Missing data visualization module for Python.',
author = 'Al... | from setuptools import setup
setup(
name = 'missingno',
packages = ['missingno'], # this must be the same as the name above
install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'],
py_modules=['missingno'],
version = '0.2.0',
description = 'Missing data visualization module for Python.',
author = 'Al... | mit | Python |
2b931429833ddfcb26c89feb87dce860a5d6cbac | increment hm version | tsuru/rpaas,tsuru/rpaas,vfiebig/rpaas,vfiebig/rpaas | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright 2014 hm authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
import codecs
from setuptools import setup, find_packages
from rpaas import __version__
README = codecs.open('README.rst', encoding='utf-8')... | # -*- coding: utf-8 -*-
# Copyright 2014 hm authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
import codecs
from setuptools import setup, find_packages
from rpaas import __version__
README = codecs.open('README.rst', encoding='utf-8')... | bsd-3-clause | Python |
9cfc9d25bc1faae082b12fd7d35cd98a35289b27 | tweak description | rs/petl,thatneat/petl,rs/petl,psnj/petl,rs/petl,alimanfoo/petl,Marketing1by1/petl | setup.py | setup.py | from ast import literal_eval
from distutils.core import setup
def get_version(source='src/petl/__init__.py'):
with open(source) as f:
for line in f:
if line.startswith('__version__'):
return literal_eval(line.split('=')[-1].lstrip())
raise ValueError("__version__ not found"... | from ast import literal_eval
from distutils.core import setup
def get_version(source='src/petl/__init__.py'):
with open(source) as f:
for line in f:
if line.startswith('__version__'):
return literal_eval(line.split('=')[-1].lstrip())
raise ValueError("__version__ not found"... | mit | Python |
ea640001d0ad6e56369102e02b949c865c48726f | Support click-log 0.4.0 | untitaker/vdirsyncer,untitaker/vdirsyncer,untitaker/vdirsyncer | setup.py | setup.py | """
Vdirsyncer synchronizes calendars and contacts.
Please refer to https://vdirsyncer.pimutils.org/en/stable/packaging.html for
how to package vdirsyncer.
"""
from setuptools import Command
from setuptools import find_packages
from setuptools import setup
requirements = [
# https://github.com/mitsuhiko/click/iss... | """
Vdirsyncer synchronizes calendars and contacts.
Please refer to https://vdirsyncer.pimutils.org/en/stable/packaging.html for
how to package vdirsyncer.
"""
from setuptools import Command
from setuptools import find_packages
from setuptools import setup
requirements = [
# https://github.com/mitsuhiko/click/iss... | mit | Python |
3340a2841449e8f51bfccba353f7dc45a8c2d9aa | Add pytest-mock to tests_require | patricksnape/menpo,patricksnape/menpo,menpo/menpo,patricksnape/menpo,menpo/menpo,menpo/menpo | setup.py | setup.py | import sys
from setuptools import setup, find_packages
import versioneer
# Please see conda/meta.yaml for other binary dependencies
install_requires = ['numpy>=1.14',
'scipy>=1.0',
'matplotlib>=3.0',
'pillow>=4.0']
if sys.version_info.major == 2:
insta... | import sys
from setuptools import setup, find_packages
import versioneer
# Please see conda/meta.yaml for other binary dependencies
install_requires = ['numpy>=1.14',
'scipy>=1.0',
'matplotlib>=3.0',
'pillow>=4.0']
if sys.version_info.major == 2:
insta... | bsd-3-clause | Python |
f38b6126f931012889707f411d1d89581a12fba6 | bump up package to 0.0.2 | abhishekraok/GraphMap,abhishekraok/GraphMap | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('LICENSE') as f:
license = f.read()
setup(
name='graphmap',
version='0.0.2',
description='Images on a quad graph',
author='Abhishek Rao',
author_email='abhishek.rao.comm@gmail.com',
url='https://github.com/abhi... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('LICENSE') as f:
license = f.read()
setup(
name='graphmap',
version='0.0.1',
description='Images on a quad graph',
author='Abhishek Rao',
author_email='abhishek.rao.comm@gmail.com',
url='https://github.com/abhi... | apache-2.0 | Python |
937b8c26f6fd05dbac571fb300880053558ed904 | fix up deps | pudo/extractors | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='extractors',
version='0.2.0',
description="Wrapper script for data extractors.",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT... | from setuptools import setup, find_packages
setup(
name='extractors',
version='0.2.0',
description="Wrapper script for data extractors.",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT... | mit | Python |
fd32c9a95c895b2a05dbecb68ca466a123c276e4 | Update Beta classifiers to Alpha for specified services. | googleapis/python-translate,googleapis/python-translate | setup.py | setup.py | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
e62a8df4e61a1a3b5850df9b336f68596816e909 | Update setup.py | tariqdaouda/rabaDB | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rabaDB',
v... | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rabaDB',
v... | apache-2.0 | Python |
439ea916662a5ab215a9b0ee5b2a2f664dba7281 | Update dependencies to baseline on Ubuntu 18.04 | XML-Security/signxml,kislyuk/signxml,XML-Security/signxml | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='signxml',
version="2.5.2",
url='https://github.com/kislyuk/signxml',
license='Apache Software License',
author='Andrey Kislyuk',
author_email='kislyuk@gmail.com',
description='Python XML Signature library',
... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='signxml',
version="2.5.2",
url='https://github.com/kislyuk/signxml',
license='Apache Software License',
author='Andrey Kislyuk',
author_email='kislyuk@gmail.com',
description='Python XML Signature library',
... | apache-2.0 | Python |
c2ea0f05bf4d2f0cd73c020b40edd2d9af8d5a7e | update to 0.2.9 | gamechanger/schemer | setup.py | setup.py | import setuptools
setuptools.setup(
name="Schemer",
version="0.2.9",
author="Tom Leach",
author_email="tom@gc.io",
description="Powerful schema-based validation of Python dicts",
license="BSD",
keywords="validation schema dict list",
url="http://github.com/gamechanger/schemer",
pac... | import setuptools
setuptools.setup(
name="Schemer",
version="0.2.8",
author="Tom Leach",
author_email="tom@gc.io",
description="Powerful schema-based validation of Python dicts",
license="BSD",
keywords="validation schema dict list",
url="http://github.com/gamechanger/schemer",
pac... | mit | Python |
4ef4e9e3ea781fddba28454faf2984cf4df77341 | fix cms version requiredment | ZeitOnline/zeit.content.portraitbox | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='zeit.content.portraitbox',
version = '1.22.4dev',
author='gocept',
author_email='mail@gocept.com',
url='https://svn.gocept.com/repos/gocept-int/zeit.cms',
description="ZEIT portraitbox",
packages=find_packages('src'),
package_dir ... | from setuptools import setup, find_packages
setup(
name='zeit.content.portraitbox',
version = '1.22.4dev',
author='gocept',
author_email='mail@gocept.com',
url='https://svn.gocept.com/repos/gocept-int/zeit.cms',
description="ZEIT portraitbox",
packages=find_packages('src'),
package_dir ... | bsd-3-clause | Python |
e3b8b2f0127d4c18e9396f0d0b3164c87b01bd48 | Add homepage to setup.py | ppavlidis/rnaseq-pipeline,ppavlidis/rnaseq-pipeline,ppavlidis/rnaseq-pipeline | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='rnaseq_pipeline',
version='2.1.1',
description='RNA-Seq pipeline for the Pavlidis Lab',
license='Public Domain',
long_description='file: README.md',
url='https://github.com/pavlidisLab/rnaseq-pipeline',
author='Guillaume Poirie... | from setuptools import setup, find_packages
setup(name='rnaseq_pipeline',
version='2.1.1',
description='RNA-Seq pipeline for the Pavlidis Lab',
license='Public Domain',
long_description='file: README.md',
author='Guillaume Poirier-Morency',
author_email='poirigui@msl.ubc.ca',
... | unlicense | Python |
a3d1a266cea46e7a839483c0ae57371a3702dfee | create fixed pip package | nikolasibalic/ARC-Alkali-Rydberg-Calculator,nikolasibalic/ARC-Alkali-Rydberg-Calculator | setup.py | setup.py | #!/usr/bin/env python
# -*- mode: Python; coding: utf-8 -*-
import sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from numpy.distutils.misc_util import get_numpy_include_dirs
arc_ext = Extension(
... | #!/usr/bin/env python
# -*- mode: Python; coding: utf-8 -*-
import sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from numpy.distutils.misc_util import get_numpy_include_dirs
arc_ext = Extension(
... | bsd-3-clause | Python |
de31c6fc4cad949a137e4c293b784fc71daa025b | Fix get_natural_key invalid caching | Scholr/scholr-roles | setup.py | setup.py | from setuptools import setup, find_packages
from io import open
setup(
name='ScholrRoles',
version='0.1.01',
author='Jorge Alpedrinha Ramos',
author_email='jalpedrinharamos@gmail.com',
packages=find_packages(),
package_data = { '': ['*.yml']},
#scripts=['bin/stowe-towels.py','bin/wash-towel... | from setuptools import setup, find_packages
from io import open
setup(
name='ScholrRoles',
version='0.0.27',
author='Jorge Alpedrinha Ramos',
author_email='jalpedrinharamos@gmail.com',
packages=find_packages(),
package_data = { '': ['*.yml']},
#scripts=['bin/stowe-towels.py','bin/wash-towel... | bsd-3-clause | Python |
55b7e76b82b08e047b3e0fd0f9847680fd4ef530 | Update Django dependency to 1.4.1+ | sasha0/django-oscar,ka7eh/django-oscar,nickpack/django-oscar,john-parton/django-oscar,monikasulik/django-oscar,okfish/django-oscar,DrOctogon/unwash_ecom,lijoantony/django-oscar,jmt4/django-oscar,kapt/django-oscar,solarissmoke/django-oscar,WadeYuChen/django-oscar,pasqualguerrero/django-oscar,kapari/django-oscar,Jannes12... | setup.py | setup.py | #!/usr/bin/env python
"""
Installation script:
To release a new version to PyPi:
- Ensure the version is correctly set in oscar.__init__.py
- Run: python setup.py sdist upload
"""
from setuptools import setup, find_packages
from oscar import get_version
setup(name='django-oscar',
version=get_version().replac... | #!/usr/bin/env python
"""
Installation script:
To release a new version to PyPi:
- Ensure the version is correctly set in oscar.__init__.py
- Run: python setup.py sdist upload
"""
from setuptools import setup, find_packages
from oscar import get_version
setup(name='django-oscar',
version=get_version().replac... | bsd-3-clause | Python |
ffe56acf77c3c94670fb1e5654fcfb7377c655a7 | prepare release | exoscale/cs | setup.py | setup.py | # coding: utf-8
"""
A simple yet powerful CloudStack API client for Python and the command-line.
"""
from __future__ import unicode_literals
import sys
from codecs import open
from setuptools import find_packages, setup
with open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
install_req... | # coding: utf-8
"""
A simple yet powerful CloudStack API client for Python and the command-line.
"""
from __future__ import unicode_literals
import sys
from codecs import open
from setuptools import find_packages, setup
with open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
install_req... | bsd-3-clause | Python |
be34ce7cfea735e9dbcca3c641cbe46fd637c2ba | Add Throve classifier for Python 3.7 | founders4schools/django-donations,founders4schools/django-donations | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '1.1.0'
readme = codecs.open('README.rst', 'r', 'utf-8').read()
history = codecs.open('HISTORY.rst', 'r', 'utf-8').read().replace('.. :changelog:', '')
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '1.1.0'
readme = codecs.open('README.rst', 'r', 'utf-8').read()
history = codecs.open('HISTORY.rst', 'r', 'utf-8').read().replace('.. :changelog:', '')
... | bsd-3-clause | Python |
828f07e0d102afe7dfa5f4aec957bbf2a9849909 | Bump release number | consbio/tablo | setup.py | setup.py | from setuptools import setup
setup(
name='tablo',
description='A PostGIS table to feature service app for Django',
keywords='feature service, map server, postgis, django',
version='1.0',
packages=['tablo', 'tablo.migrations', 'tablo.interfaces', 'tablo.interfaces.arcgis'],
install_requires=['Dj... | from setuptools import setup
setup(
name='tablo',
description='A PostGIS table to feature service app for Django',
keywords='feature service, map server, postgis, django',
version='0.1.4.3',
packages=['tablo', 'tablo.migrations', 'tablo.interfaces', 'tablo.interfaces.arcgis'],
install_requires=... | bsd-3-clause | Python |
fbb0708aebf437de8a5d2e8faf6334fc46d89b45 | Add 'Python :: 3 :: Only' classifier | axsemantics/rohrpost,axsemantics/rohrpost | setup.py | setup.py | from setuptools import setup
from rohrpost import __version__
def read(filepath):
with open(filepath, "r", encoding="utf-8") as f:
return f.read()
setup(
name="rohrpost",
version=__version__,
description="rohrpost WebSocket protocol for ASGI",
long_description=read("README.rst"),
ur... | from setuptools import setup
from rohrpost import __version__
def read(filepath):
with open(filepath, "r", encoding="utf-8") as f:
return f.read()
setup(
name="rohrpost",
version=__version__,
description="rohrpost WebSocket protocol for ASGI",
long_description=read("README.rst"),
ur... | mit | Python |
622dbaff38c480b4fbe9525d41af47ab2ad00b6a | Update setup.py | stefanvanwouw/point-of-sales-proof-of-concept | setup.py | setup.py | from distutils.core import setup
setup(
name='pos',
version='1.0',
packages=['pos'],
url='https://github.com/stefanvanwouw/point-of-sales-proof-of-concept/',
license='MIT',
author='Stefan van Wouw',
author_email='stefanvanwouw@gmail.com',
description='Example how to use Luigi + Hive for... | from distutils.core import setup
setup(
name='pos',
version='1.0',
packages=['pos'],
url='',
license='MIT',
author='Stefan van Wouw',
author_email='stefanvanwouw@gmail.com',
description='Example how to use Luigi + Hive for processing transaction log data.',
requires=['luigi', 'mysql... | mit | Python |
528796cb2ebb83723f8b12bd4b60bedec4f12678 | Upgrade docker-compose version | lstephen/construi | setup.py | setup.py | from setuptools import setup
import codecs
import os
import re
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version():
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"... | from setuptools import setup
import codecs
import os
import re
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version():
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"... | apache-2.0 | Python |
7bb9ce2b430686518cab9338c072dc9afa205c94 | Bump version | orf/django-debug-toolbar-template-timings,orf/django-debug-toolbar-template-timings | setup.py | setup.py | import os
from setuptools import setup
license = ""
if os.path.isfile("LICENSE"):
with open('LICENSE') as f:
license = f.read()
readme = ""
if os.path.isfile("README.rst"):
with open("README.rst") as f:
readme = f.read()
setup(
zip_safe=False,
name='django-debug-toolbar-template-ti... | import os
from setuptools import setup
license = ""
if os.path.isfile("LICENSE"):
with open('LICENSE') as f:
license = f.read()
readme = ""
if os.path.isfile("README.rst"):
with open("README.rst") as f:
readme = f.read()
setup(
zip_safe=False,
name='django-debug-toolbar-template-ti... | mit | Python |
8ec364d123bf36cfa7f6aa7ed61d101641b9353b | bump version | mbelousov/django-erroneous,mbelousov/django-erroneous | setup.py | setup.py | import sys
from setuptools import setup, find_packages
setup(
name = "django-erroneous",
package_data = {
'erroneous': [
'README.rst',
'LICENSE.txt',
'erroneous.templates',
],
},
author = "Mridang Agarwalla",
author_email = "mridang.agarwalla@gmai... | import sys
from setuptools import setup, find_packages
setup(
name = "django-erroneous",
package_data = {
'erroneous': [
'README.rst',
'LICENSE.txt',
'erroneous.templates',
],
},
author = "Mridang Agarwalla",
author_email = "mridang.agarwalla@gmai... | mit | Python |
c0c2a3b2af5fa97fd2d4978d7dd81818b0514d1f | Bump version for 5th 1.0 alpha | wylee/django-local-settings,kfarr2/django-local-settings,PSU-OIT-ARC/django-local-settings | setup.py | setup.py | import sys
from setuptools import find_packages, setup
with open('README.md') as fp:
long_description = fp.read()
install_requires = [
'six',
]
if sys.version_info[:2] < (2, 7):
install_requires += [
'argparse',
'configparser',
]
setup(
name='django-local-settings',
versio... | import sys
from setuptools import find_packages, setup
with open('README.md') as fp:
long_description = fp.read()
install_requires = [
'six',
]
if sys.version_info[:2] < (2, 7):
install_requires += [
'argparse',
'configparser',
]
setup(
name='django-local-settings',
versio... | mit | Python |
b7c8542e5c85ee9d094e50fb9e3150186da8e8c5 | Update version to like the main expected | stmcli/stmcli,stmcli/stmcli | setup.py | setup.py | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
... | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
... | mit | Python |
6dbb1e087d5246b5d5f2e43103433d0c1ea25989 | bump version | hopshadoop/hops-util-py,hopshadoop/hops-util-py | setup.py | setup.py | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.3.1',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.3.0',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | apache-2.0 | Python |
1eaa58b7ef9405ff1162ef321d47d1a748c11225 | Fix flake8 warnings | neutrons/FastGR,neutrons/FastGR,neutrons/FastGR | setup.py | setup.py | from setuptools import setup, find_packages
import versioneer # https://github.com/warner/python-versioneer
setup(name="addie",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Need a description",
author="Dan, Wenduo, Jean",
author_email="oldsdp@ornl.go... | from setuptools import setup, find_packages
import os
import sys
import versioneer # https://github.com/warner/python-versioneer
setup(name="addie",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Need a description",
author="Dan, Wenduo, Jean",
author_... | mit | Python |
66c8a093eca70f9774e6db8b7490d6e44a219d33 | change version | UWKM/uwkm_streamfields,UWKM/uwkm_streamfields,UWKM/uwkm_streamfields | setup.py | setup.py | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
... | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
... | bsd-3-clause | Python |
bd266d7a60a9e9ea1523ab13fa941012858cfc56 | Set version for 0.1.0 release. | praekelt/vumi-wikipedia,praekelt/vumi-wikipedia | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='vumi-wikipedia',
version='0.1.0',
description='Vumi Wikipedia App',
packages=find_packages(),
include_package_data=True,
install_requires=[
'vumi>=0.5',
'unidecode',
],
url='http://github.com/praekelt/vumi-wikiped... | from setuptools import setup, find_packages
setup(
name='vumi-wikipedia',
version='0.1a',
description='Vumi Wikipedia App',
packages=find_packages(),
include_package_data=True,
install_requires=[
'vumi>=0.5',
'unidecode',
],
url='http://github.com/praekelt/vumi-wikipedi... | bsd-3-clause | Python |
87feb67efe527250a999ea032a5a8f647bea7de1 | remove dateutil requirement from setup.py because it fails | permamodel/permamodel,permamodel/permamodel | setup.py | setup.py | #! /usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='permamodel',
version='0.1.0',
author='Elchin Jafarov and Scott Stewart',
author_email='james.stewart@colorado.edu',
description='Permamodel',
long_descripti... | #! /usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='permamodel',
version='0.1.0',
author='Elchin Jafarov and Scott Stewart',
author_email='james.stewart@colorado.edu',
description='Permamodel',
long_descripti... | mit | Python |
471ef9a9c9f0a14a0077f3cb6cbedad918c2f166 | Delete obsolete PyPI tags | dargasea/gefion | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
# TODO: put package requirements here
]
test_requirements = [
# TOD... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
# TODO: put package requirements here
]
test_requirements = [
# TOD... | bsd-3-clause | Python |
d1d820633bb46c59897155df4f1d75396ae66c89 | Bump to 0.1.1 | debianitram/django-modalview,optiflows/django-modalview,debianitram/django-modalview,optiflows/django-modalview,optiflows/django-modalview,debianitram/django-modalview,optiflows/django-modalview | setup.py | setup.py | import os
from setuptools import setup, find_packages
def README():
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
return open('README.md').read()
setup(
name='django-modalview',
version='0.1.1',
packages=find_packages(),
... | import os
from setuptools import setup, find_packages
def README():
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
return open('README.md').read()
setup(
name='django-modalview',
version='0.1.1-dev',
packages=find_packages(),... | apache-2.0 | Python |
138755e72a580d16104b7662a611c0a9f2b65a0d | Update setup.py | MrMinimal64/timezonefinder,MrMinimal64/timezonefinder | setup.py | setup.py | # -*- coding:utf-8 -*-
from setuptools import setup
PACKAGE_NAME = "timezonefinder"
setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
# NOTE: package_data is not required. all data files should be included via MANIFEST.in
include_package_data=True,
description="fast python package for finding the... | # -*- coding:utf-8 -*-
from setuptools import setup
from timezonefinder.global_settings import PACKAGE_DATA_FILES, PACKAGE_NAME
setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
package_data={PACKAGE_NAME: PACKAGE_DATA_FILES},
include_package_data=True,
description="fast python package for findin... | mit | Python |
bb481940f4116bc3322c5f43802e26d6f76feff7 | Bump version | pokidovea/immobilus | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='immobilus',
version='1.4.3',
description='Say `Immobilus!` to freeze your tests',
long_description=long_description,
author='Eugene Pokidov',
author_email='pokido... | #!/usr/bin/env python
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='immobilus',
version='1.4.2',
description='Say `Immobilus!` to freeze your tests',
long_description=long_description,
author='Eugene Pokidov',
author_email='pokido... | apache-2.0 | Python |
fb63c0b3e356f54f333da84ce5097c3c5670969c | bump version to 0.6.8-bw2 | BetterWorks/slacker | setup.py | setup.py | from setuptools import setup
setup(
name='slacker',
version='0.6.8-bw2',
packages=['slacker'],
description='Slack API client',
author='Oktay Sancak',
author_email='oktaysancak@gmail.com',
url='http://github.com/os/slacker/',
install_requires=['requests >= 2.2.1'],
license='http://w... | from setuptools import setup
setup(
name='slacker',
version='0.6.8-bw',
packages=['slacker'],
description='Slack API client',
author='Oktay Sancak',
author_email='oktaysancak@gmail.com',
url='http://github.com/os/slacker/',
install_requires=['requests >= 2.2.1'],
license='http://ww... | apache-2.0 | Python |
b2310258d64d5071302ca251b7653fc0eb3cb3a5 | add progressbar as dependency | tomas789/kitti2bag,tomas789/kitti2bag | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='kitti2bag',
version='1.4',
description='Convert KITTI dataset to ROS bag file the easy way!',
author='Tomas Krejci',
author_email='tomas789@gmail.com',
url='https://github.com/tomas789/kitti2bag/',
download_url = 'https... | #!/usr/bin/env python
from setuptools import setup
setup(name='kitti2bag',
version='1.4',
description='Convert KITTI dataset to ROS bag file the easy way!',
author='Tomas Krejci',
author_email='tomas789@gmail.com',
url='https://github.com/tomas789/kitti2bag/',
download_url = 'https... | mit | Python |
31fe82f95c230dd0acb46f4d3af01b954fb5f080 | Bump to 0.9 | edenhill/trivup,edenhill/trivup | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
from glob import glob
data = dict()
app = 'trivup'
data[app] = list()
# Find Apps data
for d in glob('trivup/apps/*App'):
data[app] += [x[x.find('apps/'):] for x in glob('%s/*' % d)
if x[-1:] != '~']
setup(name='trivup',
... | from distutils.core import setup
from setuptools import find_packages
from glob import glob
data = dict()
app = 'trivup'
data[app] = list()
# Find Apps data
for d in glob('trivup/apps/*App'):
data[app] += [x[x.find('apps/'):] for x in glob('%s/*' % d)
if x[-1:] != '~']
setup(name='trivup',
... | bsd-2-clause | Python |
6bb8cf11389713b0428a08f3e108618b629e97f1 | Update download url | rentshare/python-googauth | setup.py | setup.py | from distutils.core import setup
setup(name='python-googauth',
version='0.1.0',
description='Python library for Google Authenticator.',
author='RentShare Inc',
url='https://github.com/rentshare/python-googauth',
download_url='https://github.com/downloads/rentshare/' + \
... | from distutils.core import setup
setup(name='python-googauth',
version='0.1.0',
description='Python library for Google Authenticator.',
author='RentShare Inc',
url='https://github.com/rentshare/python-googauth',
download_url='https://github.com/rentshare/python-googauth/downloads',
... | mit | Python |
1eb49850534c91b5e357ced1b6abaaa02ca0a316 | Add mock to test_require list | chimpler/pyhocon | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
required_packages = ['pyparsing>=2.0.3']
if sys.version_info[:2] == (2, 6):
required_packages.append('argparse')
required_packages.append('ordereddict')
class PyTestCommand(TestCommand):
... | #!/usr/bin/env python
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
required_packages = ['pyparsing>=2.0.3']
if sys.version_info[:2] == (2, 6):
required_packages.append('argparse')
required_packages.append('ordereddict')
class PyTestCommand(TestCommand):
... | apache-2.0 | Python |
b2162920e5a50d4eabe592e3326286e13d91252f | Update jax required version | google/neural-tangents | setup.py | setup.py | # Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
ae9022385543e03e731b1356121bbe459e3adb67 | Update version number in prep for release | collinstocks/eventlet,collinstocks/eventlet,lindenlab/eventlet,tempbottle/eventlet,lindenlab/eventlet,lindenlab/eventlet,tempbottle/eventlet | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='eventlet',
version='0.5',
description='Coroutine-based networking library',
author='Linden Lab',
author_email='eventletdev@lists.secondlife.com',
url='http://wiki.secondlife.com/wiki/Eventlet',
packages=find_p... | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='eventlet',
version='0.2',
description='Coroutine-based networking library',
author='Linden Lab',
author_email='eventletdev@lists.secondlife.com',
url='http://wiki.secondlife.com/wiki/Eventlet',
packages=find_p... | mit | Python |
94aa8314057afa95ec81188eeca7df61f5c6d472 | bump version to 0.3.0 | oconnor663/duct.py,oconnor663/duct | setup.py | setup.py | import setuptools
setuptools.setup(
name='duct',
version='0.3.0',
py_modules=['duct'],
)
| import setuptools
setuptools.setup(
name='duct',
version='0.2.0',
py_modules=['duct'],
)
| mit | Python |
741333866a0ed776791a4ac11a19259b9e94a208 | Update setup.py description and classifiers. | richardkiss/pycoin,XertroV/pycoin,shivaenigma/pycoin,pycoin/pycoin,tomholub/pycoin,thirdkey-solutions/pycoin,Pan0ram1x/pycoin,Pan0ram1x/pycoin,Tetchain/pycoin,Treefunder/pycoin,zsulocal/pycoin,shayanb/pycoin,tomholub/pycoin,antiface/pycoin,gitonio/pycoin,XertroV/pycoin,moocowmoo/pycoin,Magicking/pycoin,moocowmoo/pycoin... | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
version = "0.41"
setup(
name="pycoin",
version=version,
packages = [
"pycoin",
"pycoin.convention",
"pycoin.ecdsa",
"pycoin.key",
"pycoin.tx",
"pycoin.tx.script",
"pycoin.serialize",
"pycoin... | #!/usr/bin/env python
from setuptools import setup
version = "0.41"
setup(
name="pycoin",
version=version,
packages = [
"pycoin",
"pycoin.convention",
"pycoin.ecdsa",
"pycoin.key",
"pycoin.tx",
"pycoin.tx.script",
"pycoin.serialize",
"pycoin... | mit | Python |
02f044dbbf485d2a2990f0fca1e1359537006c25 | Document project as Python 3 only (#146) | adamchainz/flake8-comprehensions | setup.py | setup.py | import re
from setuptools import setup
def get_version(filename):
with open(filename, 'r') as fp:
contents = fp.read()
return re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents).group(1)
version = get_version('flake8_comprehensions.py')
with open('README.rst', 'r') as readme_file:
readm... | import re
from setuptools import setup
def get_version(filename):
with open(filename, 'r') as fp:
contents = fp.read()
return re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents).group(1)
version = get_version('flake8_comprehensions.py')
with open('README.rst', 'r') as readme_file:
readm... | mit | Python |
512747db8f1593cd4a2eec91a6405ec13fd6fbbe | Revert "mark dependencies, so readthedocs can properly build" | shuxin/androguard,huangtao2003/androguard,androguard/androguard,reox/androguard,androguard/androguard | setup.py | setup.py | #!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
# workaround issue on OSX, where sys.prefix is not an installable location
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
data_prefix = os.path.join('.', 'share', 'androguard')
elif sys.platform == 'win32':
... | #!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
# workaround issue on OSX, where sys.prefix is not an installable location
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
data_prefix = os.path.join('.', 'share', 'androguard')
elif sys.platform == 'win32':
... | apache-2.0 | Python |
f6f70f71cfce3ced5ffe7b6431ee12553c8a3b6a | Add development status | lpsinger/flask-twilio | setup.py | setup.py | """
Flask-Twilio
-------------
Make Twilio voice/SMS calls with Flask
"""
from setuptools import setup
exec(open('flask_twilio.py').readline())
setup(
name='Flask-Twilio',
version=__version__,
url='http://example.com/flask-twilio/',
license='BSD',
author='Leo Singer',
author_email='leo.singer... | """
Flask-Twilio
-------------
Make Twilio voice/SMS calls with Flask
"""
from setuptools import setup
exec(open('flask_twilio.py').readline())
setup(
name='Flask-Twilio',
version=__version__,
url='http://example.com/flask-twilio/',
license='BSD',
author='Leo Singer',
author_email='leo.singer... | bsd-3-clause | Python |
5f4ed7dd09d6010ae77dbe511fa55f02a8b92e99 | fix dependency version for hedgehog-server | PRIArobotics/HedgehogClient | setup.py | setup.py | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.absp... | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.absp... | agpl-3.0 | Python |
969021b4fba8061db7cd4c3d252d6943c36191b4 | Bump version | renalreg/radar,renalreg/radar,renalreg/radar,renalreg/radar | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='radar',
version='2.3.8',
description='RaDaR - Rare Disease Registry',
author='Rupert Bedford',
author_email='rupert.bedford@renalregistry.nhs.uk',
url='https://www.radar.nhs.uk/',
packages=find_packages(),
include_package_data=Tru... | from setuptools import setup, find_packages
setup(
name='radar',
version='2.3.7',
description='RaDaR - Rare Disease Registry',
author='Rupert Bedford',
author_email='rupert.bedford@renalregistry.nhs.uk',
url='https://www.radar.nhs.uk/',
packages=find_packages(),
include_package_data=Tru... | agpl-3.0 | Python |
790e392b6cce5b48003e9a5360d1fe0c791fddb6 | bump uber micro version | SEL-Columbia/bamboo,pld/bamboo,SEL-Columbia/bamboo,pld/bamboo,SEL-Columbia/bamboo,pld/bamboo | setup.py | setup.py | from distutils.core import setup
setup(
name='bamboo-data',
version='0.5.2.2',
author='Modi Research Group',
author_email='info@modilabs.org',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
... | from distutils.core import setup
setup(
name='bamboo-data',
version='0.5.2.1',
author='Modi Research Group',
author_email='info@modilabs.org',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
... | bsd-3-clause | Python |
893b68bf497e35d2f1404463338e01fb92a955a9 | Add long_description | kchmck/aiopipe | setup.py | setup.py | from setuptools import setup
with open("Readme.md") as f:
readme = f.read()
setup(
name="aiopipe",
version="0.1.2",
description="Multiprocess communication pipe for asyncio",
author="Mick Koch",
author_email="mick@kochm.co",
license="MIT",
url="https://github.com/kchmck/aiopipe",
p... | from setuptools import setup
setup(
name="aiopipe",
version="0.1.2",
description="Multiprocess communication pipe for asyncio",
author="Mick Koch",
author_email="mick@kochm.co",
license="MIT",
url="https://github.com/kchmck/aiopipe",
packages=["aiopipe"],
extras_require={
"d... | mit | Python |
4b653eeec32b88e4552869a485228cc05ce26b61 | remove pandas, add dateutil | stroy1/localFoodLearner | setup.py | setup.py | from setuptools import setup
setup(
name="localFoodLearner",
version="0.0.1",
author="Stacey Troy",
install_requires=[
"python-dateutil",
]
)
| from setuptools import setup
setup(
name="localFoodLearner",
version="0.0.1",
author="Stacey Troy",
install_requires=[
"pandas",
]
) | mit | Python |
1a8a6fb054623b6167cb9d83f683291fb8dcda33 | Set long_description_content_type for setup.py | a-roomana/django-jalali-date,a-roomana/django-jalali-date,a-roomana/django-jalali-date | setup.py | setup.py | #!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
def read_me(filename):
return codecs.open(filename, encoding='utf-8').read()
setup(
name='django-jalali-date',
version='0.3.0',
packages=find_packages(),
include_package_data=True,
description=(
'Jalali D... | #!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
try:
from pypandoc import convert
def read_me(filename):
return convert(filename, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
def read_me(filename):
... | mit | Python |
f340d2c10f287857bac778bb1b1d053506e9278f | Fix download_url in setup() | TangledWeb/tangled.site | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.site',
version='0.1a3.dev0',
description='Simple site/blog/cms',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.site/tags',
author='Wyatt Baldwin',
aut... | from setuptools import setup
setup(
name='tangled.site',
version='0.1a3.dev0',
description='Simple site/blog/cms',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.site',
author='Wyatt Baldwin',
author_e... | mit | Python |
68439e7cd6cd429c4aeec58a5b4e38375b95c52b | Bump version number for release. | klmitch/cli_tools | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
def readreq(filename):
result = []
with open(filename) as f:
for req in f:
req = req.partition('#')[0].strip()
if not req:
continue
result.append(req)
return result
def readfile(filename):
... | #!/usr/bin/env python
from setuptools import setup
def readreq(filename):
result = []
with open(filename) as f:
for req in f:
req = req.partition('#')[0].strip()
if not req:
continue
result.append(req)
return result
def readfile(filename):
... | apache-2.0 | Python |
fab75e9c6c6e4ebfffaeb5594f206022cadd5f31 | Increase flexibility of upload sample | pombredanne/PyMISP,grolinet/PyMISP,iglocska/PyMISP | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pymisp',
version='1.2',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISP',
description='Python API for MISP.',
packages=['pym... | #!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pymisp',
version='1.1.2',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISP',
description='Python API for MISP.',
packages=['p... | bsd-2-clause | Python |
b1712fde6c6b8bbe8ec753b0f094ce9292e6f75c | correct repository url | google/firmata.py | setup.py | setup.py | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirn... | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirn... | apache-2.0 | Python |
cf5c35dd8592afd226c1719762086b1370f3e26f | Update setup.py | igor-shevchenko/rutermextract | setup.py | setup.py | from setuptools import setup
import sys
from io import open
VERSION = '0.2'
install_requires = [
'pymorphy2 >=0.8'
]
if sys.version_info < (2, 7):
install_requires.append('backport_collections >=0.1')
if sys.version_info < (3, 4):
install_requires.append('enum34 >=1.0')
setup(
name = 'rutermextract'... | from setuptools import setup
import sys
VERSION = '0.2'
install_requires = [
'pymorphy2 >=0.8'
]
if sys.version_info < (2, 7):
install_requires.append('backport_collections >=0.1')
if sys.version_info < (3, 4):
install_requires.append('enum34 >=1.0')
setup(
name = 'rutermextract',
packages = ['r... | mit | Python |
a9ad3ed489a933ce1dbea58f9a15e59804e6d8d5 | Bump the version number | thread/wide-product,thread/wide-product | setup.py | setup.py | import io
from setuptools import setup, find_packages
with io.open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='wide-product',
version='0.0.2',
url='https://github.com/thread/wide-product',
description="Wide (partial Khatri-Rao) sparse matrix product",
... | import io
from setuptools import setup, find_packages
with io.open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='wide-product',
version='0.0.1',
url='https://github.com/thread/wide-product',
description="Wide (partial Khatri-Rao) sparse matrix product",
... | mit | Python |
963171602beced5c46a3c8980cfffea75b27077c | Bump version | SUNET/eduid-common | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2.1b10'
requires = [
'setuptools >= 2.2',
'eduid-userdb >= 0.0.5',
]
# Flavours
webapp_requires = [
'Flask==0.10.1',
'pysaml2 >= 4.0.3rc1', # version sync with dashboard to avoid pip catastrophes
'redis >= 2.10.5',
'pwgen == 0.4',
... | from setuptools import setup, find_packages
version = '0.2.1b9'
requires = [
'setuptools >= 2.2',
'eduid-userdb >= 0.0.5',
]
# Flavours
webapp_requires = [
'Flask==0.10.1',
'pysaml2 >= 4.0.3rc1', # version sync with dashboard to avoid pip catastrophes
'redis >= 2.10.5',
'pwgen == 0.4',
... | bsd-3-clause | Python |
c8e1c9f24937565f13828c9a7f1b1bb1171a6afe | add proso_feedback to setup.py | adaptive-learning/proso-apps,adaptive-learning/proso-apps,adaptive-learning/proso-apps | setup.py | setup.py | from setuptools import setup, find_packages
import proso.release
import os
VERSION = proso.release.VERSION
setup(
name='proso-apps',
version=VERSION,
description='General library for applications in PROSO projects',
author='Jan Papousek, Vit Stanislav',
author_email='jan.papousek@gmail.com, slawee... | from setuptools import setup, find_packages
import proso.release
import os
VERSION = proso.release.VERSION
setup(
name='proso-apps',
version=VERSION,
description='General library for applications in PROSO projects',
author='Jan Papousek, Vit Stanislav',
author_email='jan.papousek@gmail.com, slawee... | mit | Python |
81bea04d43f93ed0351abcd47924fd9d1c957997 | Include deleted cases for contact sync showing progress bar | dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq | corehq/apps/hqwebapp/management/commands/synch_phone_nums.py | corehq/apps/hqwebapp/management/commands/synch_phone_nums.py | from __future__ import absolute_import
from __future__ import unicode_literals
from django.core.management.base import BaseCommand
from corehq.apps.users.models import CommCareUser
from corehq.apps.sms.tasks import sync_user_phone_numbers as sms_sync_user_phone_numbers
from corehq.form_processor.models import CommCar... | from __future__ import absolute_import
from __future__ import unicode_literals
from django.core.management.base import BaseCommand
from corehq.apps.users.models import CommCareUser
from corehq.apps.sms.tasks import sync_user_phone_numbers as sms_sync_user_phone_numbers
from corehq.form_processor.models import CommCar... | bsd-3-clause | Python |
a02fd3c1616f1c4a1e284d0c0efdefec993579b1 | Bump version 0.3.1 | tkukushkin/asynqp-consumer | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='asynqp-consumer',
version='0.3.1',
author='Timofey Kukushkin',
author_email='tima@kukushkin.me',
url='https://github.com/tkukushkin/asynqp-consumer',
description='Consumer utility class for AMQP',
packages=find_packages('src'),
p... | from setuptools import setup, find_packages
setup(
name='asynqp-consumer',
version='0.3.0',
author='Timofey Kukushkin',
author_email='tima@kukushkin.me',
url='https://github.com/tkukushkin/asynqp-consumer',
description='Consumer utility class for AMQP',
packages=find_packages('src'),
p... | mit | Python |
04d0ae953aeda2afc6024acf77df401cc3fd8068 | Fix spacing issues reported by flake8 | ghisvail/nfft-cffi | setup.py | setup.py | # Copyright (c) 2016-2017, Imperial College London
# Copyright (c) 2016-2017, Ghislain Antony Vaillant
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the BSD license. See the accompanying LICENSE file
# or read the terms at https://opensource.org/... | # Copyright (c) 2016-2017, Imperial College London
# Copyright (c) 2016-2017, Ghislain Antony Vaillant
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the BSD license. See the accompanying LICENSE file
# or read the terms at https://opensource.org/... | bsd-3-clause | Python |
c015c4a4ddcabe4989f80e9ce102ccd61babd73c | add classifiers | gabfl/mysql-batch-update | setup.py | setup.py | from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='mysql_batch',
version='1.0.6',
description='Run large MySQL UPDATE and DELETE queries with small batc... | from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='mysql_batch',
version='1.0.5',
description='Run large MySQL UPDATE and DELETE queries with small batc... | mit | Python |
20b2df7a855709fdcb94870a5978c1965edf4c6a | Add markdown as a requirement. | chaudum/Cactus,PegasusWang/Cactus,dreadatour/Cactus,dreadatour/Cactus,andyzsf/Cactus-,eudicots/Cactus,Knownly/Cactus,page-io/Cactus,eudicots/Cactus,fjxhkj/Cactus,Knownly/Cactus,andyzsf/Cactus-,andyzsf/Cactus-,ibarria0/Cactus,chaudum/Cactus,page-io/Cactus,koenbok/Cactus,gone/Cactus,koenbok/Cactus,koobs/Cactus,koenbok/Ca... | setup.py | setup.py | import os
import sys
import subprocess
import shutil
from setuptools import setup
from distutils.sysconfig import get_python_lib
if "uninstall" in sys.argv:
def run(command):
try:
return subprocess.check_output(command, shell=True).strip()
except subprocess.CalledProcessError:
pass
cactusBinPath = ... | import os
import sys
import subprocess
import shutil
from setuptools import setup
from distutils.sysconfig import get_python_lib
if "uninstall" in sys.argv:
def run(command):
try:
return subprocess.check_output(command, shell=True).strip()
except subprocess.CalledProcessError:
pass
cactusBinPath = ... | bsd-3-clause | Python |
34dfce22bf88f8ba38836f9abc7d6a76c0f89854 | Fix hdf5-io requirement. | Z2PackDev/TBmodels,Z2PackDev/TBmodels | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2015-2018, ETH Zurich, Institut fuer Theoretische Physik
# Author: Dominik Gresch <greschd@gmx.ch>
import re
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 5):
raise 'must use Python version 3.5 or higher'
README = """TBmodels... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2015-2018, ETH Zurich, Institut fuer Theoretische Physik
# Author: Dominik Gresch <greschd@gmx.ch>
import re
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 5):
raise 'must use Python version 3.5 or higher'
README = """TBmodels... | apache-2.0 | Python |
e281faf997baef05f997535bf44d6ea3d8e37a4d | bump to v1.1. | thruflo/pyramid_hsts | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join as join_path
from setuptools import setup, find_packages
def _read(file_name):
sock = open(file_name)
text = sock.read()
sock.close()
return text
setup(
name = 'pyramid_hsts',
version = '1.1',
descriptio... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join as join_path
from setuptools import setup, find_packages
def _read(file_name):
sock = open(file_name)
text = sock.read()
sock.close()
return text
setup(
name = 'pyramid_hsts',
version = '1.0',
descriptio... | unlicense | Python |
10ee833b5303c83a4f3ca807346fbbf1e06197b3 | Bump version to 0.2.2 | hastexo/hastexo-xblock,hastexo/hastexo-xblock,arbrandes/hastexo-xblock,arbrandes/hastexo-xblock,arbrandes/hastexo-xblock,arbrandes/hastexo-xblock,hastexo/hastexo-xblock,arbrandes/hastexo-xblock,hastexo/hastexo-xblock | setup.py | setup.py | """Setup for hastexo XBlock."""
import os
from setuptools import setup
def package_scripts(root_list):
data = []
for root in root_list:
for dirname, _, files in os.walk(root):
for fname in files:
data.append(os.path.join(dirname, fname))
return data
def package_data(pk... | """Setup for hastexo XBlock."""
import os
from setuptools import setup
def package_scripts(root_list):
data = []
for root in root_list:
for dirname, _, files in os.walk(root):
for fname in files:
data.append(os.path.join(dirname, fname))
return data
def package_data(pk... | agpl-3.0 | Python |
8c228a79450c49ee1d494ca1e3cf61ea7bcc8177 | Set API key directly in test runner | miedzinski/steamodd,Lagg/steamodd | setup.py | setup.py | """
Copyright (c) 2010-2013, Anthony Garcia <anthony@lagg.me>
Distributed under the ISC License (see LICENSE)
"""
from distutils.core import setup, Command
from distutils.errors import DistutilsOptionError
from unittest import TestLoader, TextTestRunner
import steam
class run_tests(Command):
description = "Run th... | """
Copyright (c) 2010-2013, Anthony Garcia <anthony@lagg.me>
Distributed under the ISC License (see LICENSE)
"""
from distutils.core import setup, Command
from distutils.errors import DistutilsOptionError
from unittest import TestLoader, TextTestRunner
import os
import steam
class run_tests(Command):
description... | isc | Python |
8e20ba08517b716b11c097d83f93a1ecaa8bcea7 | Bump version | LedgerHQ/btchip-python,LedgerHQ/btchip-python,LedgerHQ/btchip-python | setup.py | setup.py | #from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
from os.path import dirname, join
here = dirname(__file__)
setup(
name='btchip-python',
version='0.1.24',
author='BTChip',
author_email='hello@ledger.fr',
description='Python library to commu... | #from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
from os.path import dirname, join
here = dirname(__file__)
setup(
name='btchip-python',
version='0.1.23',
author='BTChip',
author_email='hello@ledger.fr',
description='Python library to commu... | apache-2.0 | Python |
a908acf3ef01fcaf71ad5090fce7088191029bea | change version | claudiutopriceanu/django-lightpdf | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-lightpdf',
version='0.1.0',
... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-lightpdf',
version='0.1',
... | mit | Python |
f13d62214d1e9bf9d64cffbeb0b0de74bfbf9e9e | Put raw requirements back into setup file and increment version | jakelever/kindred,jakelever/kindred | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
VERSION='1.1.2'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
l... | #!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
VERSION='1.1.1'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
l... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.