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
40df9518549d923c6fa4f27c58fb68d84a890240
Update setup
percolate/redset
setup.py
setup.py
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='redset', version='0.1', author='jamesob, thekantian', author_email='jamesob@percolate.com, zach@percolate.com', packages=['redset'], url='https://github.com/percolate/redset', license='see LICENSE', description='Simpl...
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='quedis', version='0.1', author='thekantian', author_email='zach@percolate.com', packages=['quedis'], url='https://github.com/percolate/quedis', license='see LICENCE.txt', description='A simple way to get use Redis sor...
bsd-2-clause
Python
c5fa6915299165c606a54e105c5c8adfbe815eed
Add pypi required metadata to setup.py
nth10sd/lithium,MozillaSecurity/lithium,MozillaSecurity/lithium,nth10sd/lithium
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 # pylint: disable=missing-docstring # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. from setuptools import setup if __name__ ==...
#!/usr/bin/env python # coding=utf-8 # pylint: disable=missing-docstring # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. from setuptools import setup if __name__ ==...
mpl-2.0
Python
bce4d969bf310bb80fbe22013d665aab7bba46e9
Update setup.py requirement to include psycopg2
doyousoft/pyvac,sayoun/pyvac,sayoun/pyvac,sayoun/pyvac,doyousoft/pyvac,doyousoft/pyvac
setup.py
setup.py
import re import os import sys 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() with open(os.path.join(here, 'pyvac', '__init__.py')) as v_file: version = re...
import re import os import sys 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() with open(os.path.join(here, 'pyvac', '__init__.py')) as v_file: version = re...
bsd-3-clause
Python
c7a697266475ff048bd446cd1635a362d8f75086
Bump version
swappsco/django-qa,swappsco/django-qa
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup with open('README.md') as file: long_description = file.read() setup( name='django-qa', version='0.0.11', description='Pluggable django app for Q&A', long_description=long_description, author='arjunkomath...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup with open('README.md') as file: long_description = file.read() setup( name='django-qa', version='0.0.10', description='Pluggable django app for Q&A', long_description=long_description, author='arjunkomath...
mit
Python
b33e4e7d4941cb63982aa6b12fc3deac6bf3795a
Bump to dev2
markreidvfx/pyaaf2,markreidvfx/pyaaf2,markreidvfx/pyaaf2
setup.py
setup.py
import sys from setuptools import setup setup( name='pyaaf2', version='2.0.0.dev2', description='Read and Write Advanced Authoring Format Files', author='Mark Reid', author_email='mindmark@gmail.com', url='https://github.com/markreidvfx/pyaaf2', project_urls={ 'Source': ...
import sys from setuptools import setup setup( name='pyaaf2', version='2.0.0.dev1', description='Read and Write Advanced Authoring Format Files', author='Mark Reid', author_email='mindmark@gmail.com', url='https://github.com/markreidvfx/pyaaf2', project_urls={ 'Source': ...
mit
Python
14abf3ded3b62b3365e9db3fcfac5cb5fe8c9373
Add repo url to setup.py
yoavaviram/python-amazon-simple-product-api
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '1.0.0' setup(name='amazon-simple-product-api', version=version, description="A simple Python wrapper for the Amazon.com Product Advertising API", # http://pypi.python.org/pypi?:action=list_classifiers classifiers=[ ...
from setuptools import setup, find_packages import sys, os version = '1.0.0' setup(name='amazon-simple-product-api', version=version, description="A simple Python wrapper for the Amazon.com Product Advertising API", # http://pypi.python.org/pypi?:action=list_classifiers classifiers=[ ...
apache-2.0
Python
0e4e4a91506d8b965d705314732a74a10279e4c9
Bump package version to 0.5.0
instana/python-sensor,instana/python-sensor
setup.py
setup.py
from setuptools import setup, find_packages setup(name='instana', version='0.5.0', download_url='https://github.com/instana/python-sensor', url='https://www.instana.com/', license='MIT', author='Instana Inc.', author_email='peter.lombardo@instana.com', description='Metrics sen...
from setuptools import setup, find_packages setup(name='instana', version='0.4.2', download_url='https://github.com/instana/python-sensor', url='https://www.instana.com/', license='MIT', author='Instana Inc.', author_email='peter.lombardo@instana.com', description='Metrics sen...
mit
Python
e11cf7bf153bc1130a4b94c6e8b72ee3d8a0fbcc
Update dependency versions.
amol9/wallp
setup.py
setup.py
import ez_setup ez_setup.use_setuptools() import platform import sys from setuptools import setup, find_packages from wallp.version import __version__ entry_points = {} entry_points['console_scripts'] = ['wallp=wallp.main:main'] if platform.system() == 'Windows': entry_points['gui_scripts'] = ['wallps=wallp.main:m...
import ez_setup ez_setup.use_setuptools() import platform import sys from setuptools import setup, find_packages from wallp.version import __version__ entry_points = {} entry_points['console_scripts'] = ['wallp=wallp.main:main'] if platform.system() == 'Windows': entry_points['gui_scripts'] = ['wallps=wallp.main:m...
mit
Python
43444515e0ade3bc1cd6957a06a30bd101b26ce3
update setup.py readme path
yousong/yappi,yousong/yappi
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup from distutils.core import Extension from distutils.ccompiler import new_compiler f = open('README.md') long_description = f.read() HOMEPAGE = "http://yappi.googlecode.com/" NAME = "yappi" VERSION = "0.82" _DEBUG = False # compile/link code for ...
#!/usr/bin/env python import os import sys from setuptools import setup from distutils.core import Extension from distutils.ccompiler import new_compiler f = open('README') long_description = f.read() HOMEPAGE = "http://yappi.googlecode.com/" NAME = "yappi" VERSION = "0.82" _DEBUG = False # compile/link code for deb...
mit
Python
164103693bc0c03b1d596aef542489f75935a8a8
Bump to 2.1
BertieJim/thefuck,PLNech/thefuck,MJerty/thefuck,subajat1/thefuck,MJerty/thefuck,gogobebe2/thefuck,AntonChankin/thefuck,mcarton/thefuck,vanita5/thefuck,qingying5810/thefuck,mlk/thefuck,BertieJim/thefuck,beni55/thefuck,mbbill/thefuck,hxddh/thefuck,redreamality/thefuck,sekaiamber/thefuck,zhangzhishan/thefuck,mcarton/thefu...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import sys if sys.version_info < (2, 7): print('thefuck requires Python version 2.7 or later' + ' ({}.{} detected).'.format(*sys.version_info[:2])) sys.exit(-1) elif (3, 0) < sys.version_info < (3, 3): print('thefuck requires Pytho...
#!/usr/bin/env python from setuptools import setup, find_packages import sys if sys.version_info < (2, 7): print('thefuck requires Python version 2.7 or later' + ' ({}.{} detected).'.format(*sys.version_info[:2])) sys.exit(-1) elif (3, 0) < sys.version_info < (3, 3): print('thefuck requires Pytho...
mit
Python
476342462e838edc6c367d7f9d4f62a4de7a378e
Update setup.py
edyan/stakkr,edyan/stakkr,edyan/stakkr,inetprocess/docker-lamp,inetprocess/docker-lamp,inetprocess/docker-lamp
setup.py
setup.py
import os from setuptools import setup extra_packages = [] if os.name == 'nt': extra_packages.append('pypiwin32') __version__ = '4.1.8' # Get the long description from the README file def readme(): here = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(here, 'README.rst'), encoding='ut...
import os from setuptools import setup extra_packages = [] if os.name == 'nt': extra_packages.append('pypiwin32') __version__ = '4.1.8' # Get the long description from the README file def readme(): here = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(here, 'README.rst'), encoding='ut...
apache-2.0
Python
265363ac3ad0c33177aec17b358f96fee6f6f224
Set version to 0.2.2 in setup file.
fmenabe/python-yamlordereddictloader
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from distutils.core import setup requires = ['pyyaml'] if float('%d.%d' % sys.version_info[:2]) < 2.7: requires.append('ordereddict') setup( name='yamlordereddictloader', version='0.2.2', author='François Ménabé', author_email='francois.menabe@gmail.com', url...
# -*- coding: utf-8 -*- import sys from distutils.core import setup requires = ['pyyaml'] if float('%d.%d' % sys.version_info[:2]) < 2.7: requires.append('ordereddict') setup( name='yamlordereddictloader', version='0.2.0', author='François Ménabé', author_email='francois.menabe@gmail.com', url...
mit
Python
33a7658a552cc430d40ff4e490132a17590faa9b
Prepare openprocurement.api 2.3.3.
openprocurement/openprocurement.api
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'boto', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpat...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'boto', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpat...
apache-2.0
Python
fa14ae55f547fe28e78e46705ba0a31994616c0a
Fix setup.py django version
adlh/django-multinavigation,adlh/django-multinavigation
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-multinavigation', version='1.0', description='A Django app to easily generate navigation and breadcrumbs', url='https://github.com/adlh/django-multinavigation', license='MIT', author='Andrea de la Huerta', author_email='info@me...
from setuptools import setup, find_packages setup( name='django-multinavigation', version='1.0', description='A Django app to easily generate navigation and breadcrumbs', url='https://github.com/adlh/django-multinavigation', license='MIT', author='Andrea de la Huerta', author_email='info@me...
mit
Python
04e90313b9828fb99fb3306d590a2cb74a2235c9
Fix packages
hellysmile/django-redis-sessions-fork,ProDG/django-redis-sessions-fork
setup.py
setup.py
import sys from setuptools import setup packages = [ 'redis_sessions', 'redis_sessions.management', 'redis_sessions.management.commands' ] install_requires = [ 'redis>=2.4.10', 'django>=1.4' ] if not "__pypy__" in sys.builtin_module_names: install_requires.append('hiredis>=0.1.1') setup( ...
import sys from setuptools import setup packages = ['redis_sessions'] install_requires = [ 'redis>=2.4.10', 'django>=1.4' ] if not "__pypy__" in sys.builtin_module_names: install_requires.append('hiredis>=0.1.1') setup( name='django-redis-sessions-fork', version='0.5.4', description="Redi...
bsd-3-clause
Python
53c4964983282d544ef68199e2984d730db0210e
clean setup. use requires to requirements files
mmalter/dlstats,mmalter/dlstats,MichelJuillard/dlstats,Widukind/dlstats,MichelJuillard/dlstats,Widukind/dlstats,mmalter/dlstats,MichelJuillard/dlstats
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from dlstats import version setup(name='dlstats', version=version.version_str(), description='A python module that provides an interface between\ statistics providers and pandas.', author='Widukind team', u...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup, find_packages from dlstats import version setup(name='dlstats', version=version.version_str(), description='A python module that provides an interface between\ statistics providers and pandas.', author='W...
agpl-3.0
Python
2c34cdaa1934bb8355a49a8453b69515130ca09f
Update setup.py
biota/sourcetracker2
setup.py
setup.py
#!/usr/bin/env python # ---------------------------------------------------------------------------- # Copyright (c) 2016--, Biota Technology. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # -------------------------------------...
#!/usr/bin/env python # ---------------------------------------------------------------------------- # Copyright (c) 2016--, Biota Technology. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # -------------------------------------...
bsd-3-clause
Python
fce6621598fc2d6d1b877da089fb54f4c779d648
add a long description to setup.py
timlegrand/giterm,timlegrand/giterm
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup with open("requirements.txt") as f: required = [l for l in f.read().splitlines() if not l.startswith("#")] with open('README.rst') as f: long_description = f.read() setup( name='giterm', version='0.3.1.dev2', description='A terminal-based GUI cli...
#!/usr/bin/env python from setuptools import setup with open("requirements.txt") as f: required = [l for l in f.read().splitlines() if not l.startswith("#")] setup( name='giterm', version='0.2.2', description='A terminal-based GUI client for Git', keywords='git, client, terminal, console', cla...
bsd-2-clause
Python
0741483b04963f93f0f63526081c8d846852c31b
bump version post merge
garethr/django-timelog
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "django-timelog", version = "0.3", author = "Gareth Rushgrove", author_email = "gareth@morethanseven.net", url = "http://github.com/garethr/django-timelog/", packages = find_packages('src'), package_dir = {'':'src'}, license...
from setuptools import setup, find_packages setup( name = "django-timelog", version = "0.2", author = "Gareth Rushgrove", author_email = "gareth@morethanseven.net", url = "http://github.com/garethr/django-timelog/", packages = find_packages('src'), package_dir = {'':'src'}, license...
mit
Python
974d07694be03ad85df4c3f22e724abfdbe81746
use spaces instead of tabs for indentation
punkyoon/pokinator
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Progr...
#! /usr/bin/env python from setuptools import setup CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Program...
mit
Python
c59b102c079816a4ba023e593bb3fb260eb3a7e5
fix versin
miRTop/mirtop,miRTop/mirtop
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.7', ...
"""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.7a', ...
mit
Python
2d94c05f357954c1ab694c592258663e6cce24e0
fix license in setup
ikvk/imap_tools
setup.py
setup.py
import setuptools with open("README.rst", "r", encoding='utf-8') as fh: long_description = fh.read() setuptools.setup( name='imap_tools', version='0.9.8', packages=setuptools.find_packages(), url='https://github.com/ikvk/imap_tools', license='Apache-2.0', long_description=long_description,...
import setuptools with open("README.rst", "r", encoding='utf-8') as fh: long_description = fh.read() setuptools.setup( name='imap_tools', version='0.9.7', packages=setuptools.find_packages(), url='https://github.com/ikvk/imap_tools', license='Apache Software License 2.0 (Apache-2.0)', long...
apache-2.0
Python
1eee51b5acdbb3f9115401d8b6fc917a8bb3354a
Add PyPI classifier for Py 3.4 and 3.5
ifduyue/bottle,catroot/bottle,defnull/bottle,SmithSamuelM/bottle,bottlepy/bottle,fkazimierczak/bottle,ifduyue/bottle,defnull/bottle,Inndy/bottle,bottlepy/bottle,Inndy/bottle,oz123/bottle,fkazimierczak/bottle,catroot/bottle,oz123/bottle,SmithSamuelM/bottle
setup.py
setup.py
#!/usr/bin/env python import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info < (2, 6): raise NotImplementedError("Sorry, you need at least Python 2.6 or Python 3.2+ to use bottle.") import bottle setup(name='bottle', version=bottle.__v...
#!/usr/bin/env python import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info < (2, 6): raise NotImplementedError("Sorry, you need at least Python 2.6 or Python 3.2+ to use bottle.") import bottle setup(name='bottle', version=bottle.__v...
mit
Python
6123ca57cac5d61de833e1102297b0cc9d7a3e0c
Use read() utility to open README.
crsmithdev/arrow
setup.py
setup.py
import os.path import re try: from setuptools import setup except ImportError: from distutils.core import setup def fpath(name): return os.path.join(os.path.dirname(__file__), name) def read(fname): return open(fpath(fname)).read() def grep(attrname): pattern = r"{0}\W*=\W*'([^']+)'".format(...
import os.path import re try: from setuptools import setup except ImportError: from distutils.core import setup def fpath(name): return os.path.join(os.path.dirname(__file__), name) def read(fname): return open(fpath(fname)).read() def grep(attrname): pattern = r"{0}\W*=\W*'([^']+)'".format(...
apache-2.0
Python
fc09818351a8d44a28e9e447f0e4b2c43e5a2ae3
Bump to 3.16
Clpsplug/thefuck,mlk/thefuck,scorphus/thefuck,SimenB/thefuck,nvbn/thefuck,mlk/thefuck,Clpsplug/thefuck,nvbn/thefuck,SimenB/thefuck,scorphus/thefuck
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import pkg_resources import sys import os try: if int(pkg_resources.get_distribution("pip").version.split('.')[0]) < 6: print('pip older than 6.0 not supported, please upgrade pip with:\n\n' ' pip install -U pip') sy...
#!/usr/bin/env python from setuptools import setup, find_packages import pkg_resources import sys import os try: if int(pkg_resources.get_distribution("pip").version.split('.')[0]) < 6: print('pip older than 6.0 not supported, please upgrade pip with:\n\n' ' pip install -U pip') sy...
mit
Python
b2bc4ab3a816b61cd6d02a1a1425e30a5a73bdc7
Change mail address.
worblehat/FredIRC
setup.py
setup.py
#! /usr/bin/env python # # Copyright (c) 2014 Tobias Marquardt # # Distributed under terms of the (2-clause) BSD license. import sys if sys.version < '3.3': print('ERROR: At least python version 3.3 is required!') sys.exit(1) import os from setuptools import setup if sys.version_info[0:2] == (3,3): de...
#! /usr/bin/env python # # Copyright (c) 2014 Tobias Marquardt # # Distributed under terms of the (2-clause) BSD license. import sys if sys.version < '3.3': print('ERROR: At least python version 3.3 is required!') sys.exit(1) import os from setuptools import setup if sys.version_info[0:2] == (3,3): de...
bsd-2-clause
Python
5f6361f2678f2016f26affff3aabe664ff6591d2
Bump version to v0.1.1
PenguinComputing/python-beoweb-client
setup.py
setup.py
import sys from setuptools import setup, find_packages requires = [ 'requests', 'python-cloud-auth-client == 0.1.1' ] pyversion = sys.version_info[:2] if pyversion < (2, 6): requires.append('simplejson') setup( name="python-beoweb-client", version="0.1.1", description="Client library for Scy...
import os import sys from setuptools import setup, find_packages requires = [ 'requests', 'python-cloud-auth-client == 0.1.1' ] pyversion = sys.version_info[:2] if pyversion < (2, 6): requires.append('simplejson') setup( name="python-beoweb-client", version="0.1", description="Client lib...
apache-2.0
Python
f1cba9b90d4b85a88b799a43a05807484e9b9910
Fix long description format to be markdown
c4fcm/CLIFF-API-Client
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup import re from os import path version = '' with open('cliff/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_...
#! /usr/bin/env python from setuptools import setup import re from os import path version = '' with open('cliff/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_...
mit
Python
02a24a07a0ba40d84251d3970da4393cc5a85cda
Use distutils if setuptools is not available
gforcada/isort,PyCQA/isort,graingert/isort,levic/isort,leepa/isort,jmullan/isort,graingert/isort,adamchainz/isort,aequitas/isort,PyCQA/isort,pahko/isort,wimglenn/isort,pahko/isort,jamesbroadhead/isort,tomviner/isort,aequitas/isort,tomviner/isort,jmullan/isort,leepa/isort,adamchainz/isort,jamesbroadhead/isort,levic/isor...
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup setup(name='isort', version='1.3.0', description='A Python utility / library to sort Python imports.', author='Timothy Crosley', author_email='timothy.crosley@gmail.com', ...
#!/usr/bin/env python from setuptools import setup setup(name='isort', version='1.3.0', description='A Python utility / library to sort Python imports.', author='Timothy Crosley', author_email='timothy.crosley@gmail.com', url='https://github.com/timothycrosley/isort', download_url=...
mit
Python
748306db88d68b9f83e64a99aef9840de1bdc4a7
Fix setup script.
jorik041/txrudp,OpenBazaar/txrudp,Renelvon/txrudp
setup.py
setup.py
"""Setup module for txrudp.""" import codecs from os import path import sys from setuptools import find_packages, setup _HERE = path.abspath(path.dirname(__file__)) with codecs.open(path.join(_HERE, 'README.md'), encoding='utf-8') as f: _LONG_DESCRIPTION = f.read() requirements = ['jsonschema', 'twisted'] pyth...
"""Setup module for txrudp.""" import codecs from os import path import sys from setuptools import find_packages, setup _HERE = path.abspath(path.dirname(__file__)) with codecs.open(path.join(_HERE, 'README.md'), encoding='utf-8') as f: _LONG_DESCRIPTION = f.read() requirements = ('jsonschema', 'twisted') pyth...
mit
Python
c9c8f1aa3540b1d69068862c51d4db3db457cf23
Mark python 3 as a supported language
akaihola/django-page-cms,pombredanne/django-page-cms-1,batiste/django-page-cms,akaihola/django-page-cms,remik/django-page-cms,pombredanne/django-page-cms-1,batiste/django-page-cms,remik/django-page-cms,akaihola/django-page-cms,remik/django-page-cms,batiste/django-page-cms,remik/django-page-cms,pombredanne/django-page-c...
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from pkg_resources import require, DistributionNotFound import pages import os package_name = 'django-page-cms' def local_open(fname): return open(os.path.join(os.path.dirname(__file__), fname)) requirements = local_open('requirements/external_a...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from pkg_resources import require, DistributionNotFound import pages import os package_name = 'django-page-cms' def local_open(fname): return open(os.path.join(os.path.dirname(__file__), fname)) requirements = local_open('requirements/external_a...
bsd-3-clause
Python
e282ae0befc73819937898ca33d804a3c0b8b2a5
prepare for version 1.0.2
simudream/pyre2,facebook/pyre2,simudream/pyre2,facebook/pyre2
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Extension setup( name="fb-re2", version="1.0.2", url="https://github.com/facebook/pyre2", description="Python wrapper for Google's RE2", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License"...
#!/usr/bin/env python from distutils.core import setup, Extension setup( name="fb-re2", version="1.0.1", url="https://github.com/facebook/pyre2", description="Python wrapper for Google's RE2", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License"...
bsd-3-clause
Python
fc5b41ef085557af63fc59119ff75ba8eb8a5216
Set version to 0.13-hp
dakra/pyramid_mailer
setup.py
setup.py
""" pyramid_mailer is a package for taking the pain out of sending emails in your Pyramid project. It is compatible with Python 2.5, 2.6, 2.7, and 3.2. This includes: 1. Wrapping the low-level Python email library with an easy-to-use API, which includes attachments and mulipart content. 2. Send emails immediatel...
""" pyramid_mailer is a package for taking the pain out of sending emails in your Pyramid project. It is compatible with Python 2.5, 2.6, 2.7, and 3.2. This includes: 1. Wrapping the low-level Python email library with an easy-to-use API, which includes attachments and mulipart content. 2. Send emails immediatel...
bsd-3-clause
Python
5c53ea6f29e6f8a94df724f347cec5e06e52eb44
fix grappelli dependency
michalwerner/django-filebrowser,michalwerner/django-filebrowser-tinymce4,michalwerner/django-filebrowser-tinymce4,michalwerner/django-filebrowser,michalwerner/django-filebrowser,michalwerner/django-filebrowser-tinymce4
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-filebrowser', version='3.5.7', description='Media-Management with Grappelli', long_description = read('README.rst'), url = 'http://djang...
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-filebrowser', version='3.5.7', description='Media-Management with Grappelli', long_description = read('README.rst'), url = 'http://djang...
bsd-3-clause
Python
e772417259e14a1eb2127285c542ba36af4cbff6
Update setup.py to 3.10
ForeverWintr/metafunctions
setup.py
setup.py
''' MetaFunctions is a function composition and data pipelining library. For more information, please visit the `project on github <https://github.com/ForeverWintr/metafunctions>`_. ''' import os import sys import contextlib import pathlib import shutil from setuptools import setup, find_packages, Command import met...
''' MetaFunctions is a function composition and data pipelining library. For more information, please visit the `project on github <https://github.com/ForeverWintr/metafunctions>`_. ''' import os import sys import contextlib import pathlib import shutil from setuptools import setup, find_packages, Command import met...
mit
Python
9cd64b888c346f42255158447f27839f1bceedc7
Bump minimal Django version in tests_require.
zsiciarz/django-markitup,zsiciarz/django-markitup,carljm/django-markitup,carljm/django-markitup,carljm/django-markitup,zsiciarz/django-markitup
setup.py
setup.py
from setuptools import setup long_description = (open('README.rst').read() + open('CHANGES.rst').read() + open('TODO.rst').read()) def _static_files(prefix): return [prefix+'/'+pattern for pattern in [ 'markitup/*.*', 'markitup/sets/*/*.*', 'markitu...
from setuptools import setup long_description = (open('README.rst').read() + open('CHANGES.rst').read() + open('TODO.rst').read()) def _static_files(prefix): return [prefix+'/'+pattern for pattern in [ 'markitup/*.*', 'markitup/sets/*/*.*', 'markitu...
bsd-3-clause
Python
7d269389acf4af72c6b20908eade701a787f4b9d
Bump version
Sberned/djaio
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages base = os.path.dirname(os.path.abspath(__file__)) install_requires = [ 'aiohttp==1.0.5', 'aiohttp_jinja2', 'asyncio', 'aiohttp_debugtoolbar', 'aiohttp_autoreload', 'schematics>=2.0.0.dev2', 'aiopg==0.11.0', 'ip...
#!/usr/bin/env python import os from setuptools import setup, find_packages base = os.path.dirname(os.path.abspath(__file__)) install_requires = [ 'aiohttp==1.0.5', 'aiohttp_jinja2', 'asyncio', 'aiohttp_debugtoolbar', 'aiohttp_autoreload', 'schematics>=2.0.0.dev2', 'aiopg==0.11.0', 'ip...
apache-2.0
Python
a0325e9b29e41badf576c699163aef081df2ab32
Use context manager for open
martinrusev/imbox
setup.py
setup.py
from setuptools import setup import os # Get version without importing, which avoids dependency issues def get_version(): import re with open('imbox/version.py') as version_file: return re.search(r"""__version__\s+=\s+(['"])(?P<version>.+?)\1""", version_file.read()).group('ve...
from setuptools import setup import os # Get version without importing, which avoids dependency issues def get_version(): import re with open('imbox/version.py') as version_file: return re.search(r"""__version__\s+=\s+(['"])(?P<version>.+?)\1""", version_file.read()).group('ve...
mit
Python
e786d22bb33806a7cc2f9b05ecadc38825907db2
Update version for release (#118)
quiltdata/quilt,quiltdata/quilt,quiltdata/quilt,quiltdata/quilt-compiler,quiltdata/quilt-compiler,quiltdata/quilt-compiler,quiltdata/quilt,quiltdata/quilt-compiler,quiltdata/quilt
setup.py
setup.py
from setuptools import setup, find_packages def readme(): readme_short = """ ``quilt`` is a command-line utility that builds, pushes, and installs data packages. A `data package <https://blog.quiltdata.com/data-packages-for-fast-reproducible-python-analysis-c74b78015c7f>`_ is a versioned bundle of seri...
from setuptools import setup, find_packages def readme(): readme_short = """ ``quilt`` is a command-line utility that builds, pushes, and installs data packages. A `data package <https://blog.quiltdata.com/data-packages-for-fast-reproducible-python-analysis-c74b78015c7f>`_ is a versioned bundle of seri...
apache-2.0
Python
80252e7d7986a02d75e8e04ad40135d739b196f9
switch to pyannote.database 0.8
pyannote/pyannote-db-prism
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # # Copyright (c) 2016 CNRS # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitatio...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # # Copyright (c) 2016 CNRS # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitatio...
mit
Python
9da7f07e2a6900b1df2cc0d8e0766409d4a41495
Include static subdirectories in package
favien/favien,favien/favien,favien/favien
setup.py
setup.py
""" Favien ====== Network canvas community. """ from setuptools import setup setup( name='Favien', version='dev', url='https://github.com/limeburst/favien', author='Jihyeok Seo', author_email='me@limeburst.net', description='Network canvas community', long_description=__doc__, zip_sa...
""" Favien ====== Network canvas community. """ from setuptools import setup setup( name='Favien', version='dev', url='https://github.com/limeburst/favien', author='Jihyeok Seo', author_email='me@limeburst.net', description='Network canvas community', long_description=__doc__, zip_sa...
agpl-3.0
Python
ab7b75b4a5b23c47b0408c3cc5cc167bf345071d
bump version for pypi
secondguard/secondguard-python
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages # read the contents of your README file from os import path from io import open this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() # https://s...
#!/usr/bin/env python3 from setuptools import setup, find_packages # read the contents of your README file from os import path from io import open this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() # https://s...
apache-2.0
Python
effd0a0d83c062ea13ef25c028d0c2a2273c2286
support MacOS X
mexicarne/tmuxp,thomasballinger/tmuxp,tony/tmuxp,thomasballinger/tmuxp,mexicarne/tmuxp
setup.py
setup.py
"""tmuxp lives at <https://github.com/tony/tmuxp>. tmuxp ----- Manage tmux workspaces from JSON and YAML, pythonic API, shell completion. """ import sys from setuptools import setup about = {} with open("tmuxp/__about__.py") as fp: exec(fp.read(), about) with open('requirements.pip') as f: install_reqs = ...
"""tmuxp lives at <https://github.com/tony/tmuxp>. tmuxp ----- Manage tmux workspaces from JSON and YAML, pythonic API, shell completion. """ import sys from setuptools import setup about = {} with open("tmuxp/__about__.py") as fp: exec(fp.read(), about) with open('requirements.pip') as f: install_reqs = ...
bsd-3-clause
Python
4523e55f7a7c5333b1087a037c6a96b6af30e111
Install the proper version of Django
thomwiggers/django-mongodbforms
setup.py
setup.py
#!/usr/bin/env python from subprocess import check_call, CalledProcessError from setuptools import setup import six requirements = ['setuptools', 'mongoengine>=0.10.0'] if six.PY3: requirements.append('django') else: requirements.append('django<2') def convert_readme(): try: check_call(["pand...
#!/usr/bin/env python from subprocess import check_call, CalledProcessError from setuptools import setup def convert_readme(): try: check_call(["pandoc", "-f", "markdown_github", "-t", "rst", "-o", "README.rst", "README.md"]) except (OSError, CalledProcessError): return o...
bsd-3-clause
Python
bc4e66a5229ea6863b39ce62a35e19c7cca217aa
Include kafka-check, bump to v0.2.6
anthonysandrin/kafka-utils,Yelp/kafka-utils,anthonysandrin/kafka-utils,Yelp/kafka-utils
setup.py
setup.py
from setuptools import setup from setuptools import find_packages from yelp_kafka_tool import __version__ setup( name="yelp-kafka-tool", version=__version__, author="Distributed systems team", author_email="team-dist-sys@yelp.com", description="Kafka management tools", packages=find_packages(...
from setuptools import setup from setuptools import find_packages from yelp_kafka_tool import __version__ setup( name="yelp-kafka-tool", version=__version__, author="Distributed systems team", author_email="team-dist-sys@yelp.com", description="Kafka management tools", packages=find_packages(...
apache-2.0
Python
7ce983084b78f6e1e68d4df759f58a6d0e070663
Update required mozlog version.
mozilla-b2g/fxos-certsuite,askeing/fxos-certsuite,ShakoHo/fxos-certsuite,ShakoHo/fxos-certsuite,cr/fxos-certsuite,ShakoHo/fxos-certsuite,cr/fxos-certsuite,askeing/fxos-certsuite,oouyang/fxos-certsuite,ShakoHo/fxos-certsuite,cr/fxos-certsuite,Conjuror/fxos-certsuite,oouyang/fxos-certsuite,ypwalter/fxos-certsuite,Conjuro...
setup.py
setup.py
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup PACKAGE_VERSION = '0.1' deps = ['fxos-appgen>=0.2.7', 'marionette_client>=0.7.1.1'...
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup PACKAGE_VERSION = '0.1' deps = ['fxos-appgen>=0.2.7', 'marionette_client>=0.7.1.1'...
mpl-2.0
Python
b74dace2845882743cbf9f4bab42695107efebc8
bump version for pypi update, fixes #120
hips/autograd,HIPS/autograd,hips/autograd,HIPS/autograd
setup.py
setup.py
from setuptools import setup setup( name='autograd', version='1.1.5', description='Efficiently computes derivatives of numpy code.', author='Dougal Maclaurin and David Duvenaud and Matthew Johnson', author_email="maclaurin@physics.harvard.edu, duvenaud@cs.toronto.edu, mattjj@csail.mit.edu", pac...
from setuptools import setup setup( name='autograd', version='1.1.4', description='Efficiently computes derivatives of numpy code.', author='Dougal Maclaurin and David Duvenaud and Matthew Johnson', author_email="maclaurin@physics.harvard.edu, duvenaud@cs.toronto.edu, mattjj@csail.mit.edu", pac...
mit
Python
c20bc55c7cc81be41bd532da4f8362dffd86619f
Update install_requires
ymyzk/python-gyazo
setup.py
setup.py
#!/usr/bin/env python import sys try: from setuptools import setup except ImportError: from distutils.core import setup __author__ = 'Yusuke Miyazaki <miyazaki.dev@gmail.com>' __version__ = '0.7.0' requires = [ 'Jinja2>=2.7.0', 'progress>=1.2', 'python-dateutil>=2.4', 'requests>=2.7.0', ...
#!/usr/bin/env python import sys try: from setuptools import setup except ImportError: from distutils.core import setup __author__ = 'Yusuke Miyazaki <miyazaki.dev@gmail.com>' __version__ = '0.7.0' requires = [ 'Jinja2>=2.7.0', 'progress>=1.2', 'python-dateutil>=2.4', 'requests>=2.5.0', ...
mit
Python
0024d5e74abc8785a7d8b8cb9b39a1859db5ba32
add missing requirements
pyannote/pyannote-features
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 CNRS (Hervé BREDIN - http://herve.niderb.fr) # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without re...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 CNRS (Hervé BREDIN - http://herve.niderb.fr) # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without re...
mit
Python
3a2aab86c787b9893385107d2d46dad8573d6b69
Remove unnecessary distutils fallback from setup.py
python-cas/python-cas
setup.py
setup.py
#!/usr/bin/env python from __future__ import absolute_import import codecs from setuptools import setup with codecs.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( author='Ming Chen', author_email='mockey.chen@gmail.com', classifiers=[ 'Development Status :: 5 - Production...
#!/usr/bin/env python from __future__ import absolute_import import codecs try: from setuptools import setup except ImportError: from distutils.core import setup with codecs.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( author='Ming Chen', author_email='mockey.chen@gmail.com...
mit
Python
610dbe5a21859fa489d24737f2b77da1190b1257
Add operating system
tranlyvu/find-link,tranlyvu/findLink
setup.py
setup.py
""" wikilink ~~~~~~~~ wikilink is a web-scraping application to find minimum number of links between two given wiki pages. :copyright: (c) 2016 - 2019 by Tran Ly VU. All Rights Reserved. :license: Apache License 2.0. """ from setuptools import setup, find_packages with open("README.md",...
""" wikilink ~~~~~~~~ wikilink is a web-scraping application to find minimum number of links between two given wiki pages. :copyright: (c) 2016 - 2019 by Tran Ly VU. All Rights Reserved. :license: Apache License 2.0. """ from setuptools import setup, find_packages with open("README.md",...
apache-2.0
Python
88549d12a646cf9cca45fc2830842663ab7b21b9
change version to 1.9.901 so it is a development copy
djhenderson/pymssql,thegooglecodearchive/pymssql,JimDennis/pymssql,djhenderson/pymssql,klothe/pymssql,msabramo/pymssql,Aloomaio/pymssql,JimDennis/pymssql,djhenderson/pymssql,AlanZatarain/pymssql,zerolugithub/pymssql,Aloomaio/pymssql,thegooglecodearchive/pymssql,klothe/pymssql,zerolugithub/pymssql,thegooglecodearchive/p...
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup, Extension from Cython.Distutils import build_ext _extra_compile_args = [ '-DMSDBLIB' ] if sys.platform == 'win32': print ('ERROR: This version of pymssql is not support on windows') sys.exit(1) else: include_dirs = [ '/...
#!/usr/bin/env python import os import sys from setuptools import setup, Extension from Cython.Distutils import build_ext _extra_compile_args = [ '-DMSDBLIB' ] if sys.platform == 'win32': print ('ERROR: This version of pymssql is not support on windows') sys.exit(1) else: include_dirs = [ '/...
lgpl-2.1
Python
8967690247ab972803963007bde8d1410140778c
update storage to v2 (#95)
googleapis/docuploader,googleapis/docuploader
setup.py
setup.py
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
apache-2.0
Python
6f70619717ed6c5f44156644b01d75635573f32e
Fix dependencies in setup.py
noisyboiler/wampy
setup.py
setup.py
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup, find_packages from os import path here = path.abspath(path.dirname(__file__)) # Get th...
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup, find_packages from os import path here = path.abspath(path.dirname(__file__)) # Get th...
mpl-2.0
Python
cc9b6e39c41430c6ad0ea7ede4b40053e6c0fcbc
update version
icoxfog417/pykintone
setup.py
setup.py
from distutils.core import setup setup( name='pykintone', packages=[ 'pykintone', 'pykintone.application_settings', 'pykintone.user_api' ], install_requires=[ 'PyYAML', 'requests' ], version='0.3.0', description='Python library to access kintone', ...
from distutils.core import setup setup( name='pykintone', packages=['pykintone', 'pykintone.application_settings'], install_requires=[ 'PyYAML', 'requests' ], version='0.2.0.1', description='Python library to access kintone', author='icoxfog417', author_email='icoxfog417...
apache-2.0
Python
d0ed0d6e3d57fdce6bc6eee569fa4f2ca62d6fda
Add missing classifiers to setup.py (close #148)
snowplow/snowplow-python-tracker,snowplow/snowplow-python-tracker
setup.py
setup.py
""" setup.py Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved. This program is licensed to you under the Apache License Version 2.0, and you may not use this file except in compliance with the Apache License Version 2.0. You may obtain a copy of the Apache License Version 2.0 at...
""" setup.py Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved. This program is licensed to you under the Apache License Version 2.0, and you may not use this file except in compliance with the Apache License Version 2.0. You may obtain a copy of the Apache License Version 2.0 at...
apache-2.0
Python
191a67fabe636240b8d5a133c1eed4bf245e4fc1
update version
EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi
setup.py
setup.py
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "0.2.0" install_requirements = [] with open(_requirements) as f: ...
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "0.2.1" install_requirements = [] with open(_requirements) as f: ...
apache-2.0
Python
4359912ce0898c6c4a8d54c7328fb11a7eb486c9
Enable module to be compiled with msvc and gcc compilers
dplucenio/heat_diffusion_experiment
setup.py
setup.py
from setuptools import setup, Extension import numpy import sys if sys.platform == 'linux' extra_compile_args = ['-fopenmp' extra_link_args = ['-fopenmp'] else: extra_compile_args = ['-/openmp'] extra_link_args = ['-/openmp'] ext_modules=[ Extension( "heat_diffusion_experi...
from setuptools import setup, Extension import numpy ext_modules=[ Extension( "heat_diffusion_experiment.cython_versions", ["heat_diffusion_experiment/cython_versions.pyx"], language='c++', extra_compile_args=['/openmp'], # extra_link_args=['/openmp'], ), ] ...
mit
Python
bf1829860a51ef0f7a9ece449c8c07e2cb3dff58
Bump version
lambdalisue/django-permission
setup.py
setup.py
# vim: set fileencoding=utf-8 : from setuptools import setup, find_packages version = '0.4.0' def read(filename): import os.path return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name="django-permission", version=version, description = "A enhanced permission system whic...
# vim: set fileencoding=utf-8 : from setuptools import setup, find_packages version = '0.3.8' def read(filename): import os.path return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name="django-permission", version=version, description = "A enhanced permission system whic...
mit
Python
7728b9e61dec862c7604982669deb5431b1e8fbf
Add matplotlib framework classifier
wright-group/WrightTools,wright-group/WrightTools
setup.py
setup.py
#! /usr/bin/env python3 import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) def read(fname): return open(os.path.join(here, fname)).read() extra_files = { "WrightTools": [ "datasets", "datasets/*", "datasets/*/*", "datase...
#! /usr/bin/env python3 import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) def read(fname): return open(os.path.join(here, fname)).read() extra_files = { "WrightTools": [ "datasets", "datasets/*", "datasets/*/*", "datase...
mit
Python
393f900c3478eb154c9079ba88548eb5d666cec2
fix setup.py
tumb1er/django-celery-rpc,bourivouh/django-celery-rpc,ttyS15/django-celery-rpc
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # https://github.com/msabramo/virtualenv/commit/ddd0aa02cf822fc690ff9c4bfead70c3e6767eee try: import multiprocessing except ImportError: pass setup( name='django-celery-rpc', version='0.11', packages=find_packages(), url='https...
#!/usr/bin/env python from setuptools import setup, find_packages # https://github.com/msabramo/virtualenv/commit/ddd0aa02cf822fc690ff9c4bfead70c3e6767eee try: import multiprocessing except ImportError: pass setup( name='django-celery-rpc', version='0.11', packages=find_packages(), url='https...
unlicense
Python
0ae50f681d4bcacb49d34047e9a10bed10829356
Add setup.py.
abogoyavlensky/python-ponominalu
setup.py
setup.py
from setuptools import setup setup( name='python-ponominalu', version='0.0.1', url='https://github.com/abogoyavlensky/python-ponominalu', license='MIT', author='Andrey Bogoyavlensky', author_email='abogoyavlensky@gmail.com', description='Python client for Ponominalu API.', platforms='a...
# -*- coding: utf-8 -*- """ path.to.file ~~~~~~~~~~~~ Short description. :copyright: (c) 2015 by Rambler&Co. """
mit
Python
a0cb14b912882adf11e984ab01cead8d00174712
bump version to 0.2.0
newsapps/django-boundaryservice,SpokesmanReview/django-boundaryservice
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name="django-boundaryservice", version="0.2.0", description="A reusable system for aggregating and providing API access to regional boundary data.", long_description='See `django-boundaryservice <https://github.com/newsapps/django-boundarys...
#!/usr/bin/env python from distutils.core import setup setup( name = "django-boundaryservice", version = "0.1.11", description = "A reusable system for aggregating and providing API access to regional boundary data.", long_description = 'See `django-boundaryservice <https://github.com/newsapps/django-...
mit
Python
5e9854d7b7bed6eb6e182808379342355e2bfca4
update release procedure
haypo/trollius,haypo/trollius,haypo/trollius
setup.py
setup.py
# Release procedure: # - fill trollius changelog # - run maybe ./update-asyncio-step1.sh # - run all tests: tox # - test examples # - check that "python setup.py sdist" contains all files tracked by # the SCM (Mercurial): update MANIFEST.in if needed # - run test on Windows: releaser.py test # - update versio...
# Release procedure: # - fill trollius changelog # - run maybe ./update_asyncio_step1.sh # - run all tests: tox # - test examples # - update version in setup.py (version) and doc/conf.py (version, release) # - check that "python setup.py sdist" contains all files tracked by # the SCM (Mercurial): update MANIFE...
apache-2.0
Python
923a6ebd3865a879925610d2e417c2755c8d47ee
Upgrade version
Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey
setup.py
setup.py
import sys from os import path import setuptools if sys.version_info < (3, 6): sys.exit("Sorry, Python < 3.6 is not supported") DESCRIPTION = ( "A django survey app, based on and compatible with " '"django-survey". You will be able to migrate your data from an ancient ' "version of django-survey, but...
import sys from os import path import setuptools if sys.version_info < (3, 6): sys.exit("Sorry, Python < 3.6 is not supported") DESCRIPTION = ( "A django survey app, based on and compatible with " '"django-survey". You will be able to migrate your data from an ancient ' "version of django-survey, but...
agpl-3.0
Python
b1d9d8041984647c02cc45bd5172f6418041dbd4
Bump version.
google/jax-md,google/jax-md
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
9f35812978111e8315b60f633763fcd317bddbb4
Bump version.
wharris/dougrain
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2013 Will Harris # See the file license.txt for copying permission. from distutils.core import setup VERSION = "0.3" base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = VERSION, description = 'HAL JSON parser and generator', auth...
#!/usr/bin/env python # Copyright (c) 2013 Will Harris # See the file license.txt for copying permission. from distutils.core import setup VERSION = "0.2" base_url = "http://github.com/wharris/dougrain/" setup( name = 'dougrain', version = VERSION, description = 'HAL JSON parser and generator', auth...
mit
Python
dd4eb94f00d723d05ca207cbd262ee5d064933b1
update version
dowjones/dj-dna-streams-python,dowjones/dj-dna-streams-python
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages setup( name='dj-dna-streaming-python', version='1.3.1', description='Dow Jones DNA Streaming Project', author='Chris Flesche', author_email='chris.flesche@dowjones.com', url='https://github.com/dowjones/dj-dna-streams-python...
from distutils.core import setup from setuptools import find_packages setup( name='dj-dna-streaming-python', version='1.3.0', description='Dow Jones DNA Streaming Project', author='Chris Flesche', author_email='chris.flesche@dowjones.com', url='https://github.com/dowjones/dj-dna-streams-python...
mit
Python
ae5d23e1feda439d903a50c8505362afee817da1
Save a relative path on "0compile setup" if the feed is inside the current directory
gfxmonk/0compile,timbertson/0compile,timbertson/0compile,0install/0compile,gfxmonk/0compile,0install/0compile,0install/0compile
setup.py
setup.py
# Copyright (C) 2006, Thomas Leonard # See http://0install.net/0compile.html import os, sys, __main__ from zeroinstall.injector import model, namespaces, qdom from zeroinstall import SafeException from support import BuildEnv def do_setup(args, get_dir_callback = None): "setup [ SOURCE-URI [ DIR ] ]" if len(args)...
# Copyright (C) 2006, Thomas Leonard # See http://0install.net/0compile.html import os, sys, __main__ from zeroinstall.injector import model, namespaces, qdom from zeroinstall import SafeException from support import BuildEnv def do_setup(args, get_dir_callback = None): "setup [ SOURCE-URI [ DIR ] ]" if len(args)...
lgpl-2.1
Python
5b0a0e777592a30b5d182752a6e6ab080ef69f2c
Update setup.py to use twine
mrtommyb/K2fov,KeplerGO/K2fov
setup.py
setup.py
#!/usr/bin/env python import sys import os # Prepare and send a new release to PyPI if "release" in sys.argv[-1]: os.system("python setup.py sdist") os.system("twine upload dist/K2fov*") os.system("rm -rf dist/K2fov*") sys.exit() try: from setuptools import setup setup except ImportError: ...
#!/usr/bin/env python import sys import os if "publish" in sys.argv[-1]: os.system("python setup.py sdist upload") sys.exit() try: from setuptools import setup setup except ImportError: from distutils.core import setup setup # Load the __version__ variable without importing the package exec(o...
mit
Python
ab438a361bf669a2ea20c625983b49e5980a8a60
Bump version to 2.0.21
UCBerkeleySETI/blimpy,UCBerkeleySETI/blimpy
setup.py
setup.py
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '2.0.21' with open("README.md", "r") as fh: long_description = fh.read() # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scri...
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '2.0.20' with open("README.md", "r") as fh: long_description = fh.read() # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scri...
bsd-3-clause
Python
0c7646170b521019f9a066b5b716ff64e5172f5e
Declare dependencies
ZeitOnline/zeit.edit,ZeitOnline/zeit.edit,ZeitOnline/zeit.edit
setup.py
setup.py
from setuptools import setup, find_packages import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() NEWS = open(os.path.join(here, 'CHANGES.txt')).read() setup( name='zeit.edit', version='2.1.9.dev0', description="Vivi Editor", long_descriptio...
from setuptools import setup, find_packages import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() NEWS = open(os.path.join(here, 'CHANGES.txt')).read() setup( name='zeit.edit', version='2.1.9.dev0', description="Vivi Editor", long_descriptio...
bsd-3-clause
Python
768bd5808b73c72232ac3fc8567bbc06821c842a
Update setup.py
maurycyp/vincenty
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='vincenty', version='0.1.0', description='Calculate the geographical distance between 2 points with extreme accuracy.', long_description=open('README.txt').read(), author='Maurycy Pietrzak', ...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='vincenty', version='0.1.0', description='Calculate the geographical distance between 2 points with extreme accuracy.', long_description=open('README.txt').read(), author='Maurycy Pietrzak', ...
unlicense
Python
db35a1a3ec515fb1268192fc784b0912c6497478
Remove unused 'setup.py publish'
adamchainz/flake8-tidy-imports
setup.py
setup.py
#!/usr/bin/env python # -*- encoding:utf-8 -*- from __future__ import absolute_import, division, print_function, unicode_literals import re from setuptools import setup def get_version(filename): """ Return package version as listed in `__version__` in `filename`. """ init_py = open(filename).read()...
#!/usr/bin/env python # -*- encoding:utf-8 -*- from __future__ import absolute_import, division, print_function, unicode_literals import os import re import sys from setuptools import setup def get_version(filename): """ Return package version as listed in `__version__` in `filename`. """ init_py = ...
mit
Python
eb355a4f5edfd6c51163cb04c9d79e3cb720ddd2
Add some keywords.
nwhitehead/pineapple-module
setup.py
setup.py
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup( name='pineapple', version='0.1', description='Utility functions for the Pineapple IPython/Jupyter front-end', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'License :: ...
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup( name='pineapple', version='0.1', description='Utility functions for the Pineapple IPython/Jupyter front-end', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'License :: ...
isc
Python
407e78aed645ee581c745929bbb97e408e2fd101
Fix openstack client versions to RDO versions
opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2' ] tests_requires = [ 'factory_boy==2.4.1', 'mock==1.0.1', 'mock-django==0.6.6', 'six>=1.7.3', 'django-celery==3.1.16', ] install_requires = [ 'Celery>=3.1.15,<3.2', 'croniter>=0.3.4,<0...
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2' ] tests_requires = [ 'factory_boy==2.4.1', 'mock==1.0.1', 'mock-django==0.6.6', 'six>=1.7.3', 'django-celery==3.1.16', ] install_requires = [ 'Celery>=3.1.15,<3.2', 'croniter>=0.3.4,<0...
mit
Python
b00c0da6a691b34b21d56d00ab0e8ecb90471a3e
Update setup.py
docker/docker-tutorial,sillvan/docker-tutorial,docker/docker-tutorial,docker/docker-tutorial,SvenDowideit/docker-tutorial,sillvan/docker-tutorial,sillvan/docker-tutorial,SvenDowideit/docker-tutorial,SvenDowideit/docker-tutorial
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup from setuptools import find_packages setup( name='docker-tutorial', version='0.2.1', author=u'Thatcher Peskens', author_email='thatcher@dotcloud.com', packages=find_packages(), url='https://github.com/dhrp/docker-tutorial/', license='To b...
# -*- coding: utf-8 -*- from setuptools import setup from setuptools import find_packages setup( name='docker-tutorial', version='0.2.0', author=u'Thatcher Peskens', author_email='thatcher@dotcloud.com', packages=find_packages(), url='https://github.com/dhrp/docker-tutorial/', license='To b...
apache-2.0
Python
5593462facb5fc57466307bf51c5d3faff0da9cd
fix all dependencies
SiLab-Bonn/ccpdv4
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from setuptools import find_packages f = open('VERSION', 'r') version = f.readline().strip() f.close() author = 'Jens Janssen' author_email = 'janssen@physik.uni-bonn.de' setup( name='CCPDv4', version=version, description='pyCPIX CCPDv4', url='h...
#!/usr/bin/env python from distutils.core import setup from setuptools import find_packages f = open('VERSION', 'r') version = f.readline().strip() f.close() author = 'Jens Janssen' author_email = 'janssen@physik.uni-bonn.de' setup( name='CCPDv4', version=version, description='pyCPIX CCPDv4', url='h...
bsd-3-clause
Python
96b995da8d6bc4e173121baa237940328690b022
Add schedule
jessepeng/coburg-city-memory,jessepeng/coburg-city-memory,fraunhoferfokus/mobile-city-memory,fraunhoferfokus/mobile-city-memory
setup.py
setup.py
import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages setup( name = "mobile-city-history", version = 0.1, author = "Jan-Christopher Pien", author_email = "jan_christopher.pien@fokus.fraunhofer.de", url = "http://www.foo.bar", license = "MIT", description = "...
import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages setup( name = "mobile-city-history", version = 0.1, author = "Jan-Christopher Pien", author_email = "jan_christopher.pien@fokus.fraunhofer.de", url = "http://www.foo.bar", license = "MIT", description = "...
mit
Python
f939fe7bb85120952976b48148679171568903f6
bump version
prisma-ai/torch2coreml,prisma-ai/torch2coreml,prisma-ai/torch2coreml
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path VERSION = '0.0.6' here = path.abspath(path.dirname(__file__)) try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): long_description = open('README.md').read() se...
from setuptools import setup, find_packages from codecs import open from os import path VERSION = '0.0.5' here = path.abspath(path.dirname(__file__)) try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): long_description = open('README.md').read() se...
mit
Python
51527351c4a607e053b8abdbb39ab74582f85211
Tidy entry_points
johnjohndoe/spendb,openspending/spendb,nathanhilbert/FPA_Core,spendb/spendb,USStateDept/FPA_Core,openspending/spendb,pudo/spendb,pudo/spendb,CivicVision/datahub,pudo/spendb,nathanhilbert/FPA_Core,johnjohndoe/spendb,USStateDept/FPA_Core,openspending/spendb,johnjohndoe/spendb,CivicVision/datahub,spendb/spendb,USStateDept...
setup.py
setup.py
from setuptools import setup, find_packages from openspending.ui import __version__ setup( name='openspending', version=__version__, description='OpenSpending', author='Open Knowledge Foundation', author_email='okfn-help at lists okfn org', url='http://github.com/okfn/openspending', instal...
from setuptools import setup, find_packages from openspending.ui import __version__ setup( name='openspending', version=__version__, description='OpenSpending', author='Open Knowledge Foundation', author_email='okfn-help at lists okfn org', url='http://github.com/okfn/openspending', instal...
agpl-3.0
Python
3791743cfb8a64e9e2296521b36dd275485ffe12
bump version
datadesk/p2p-python,newsapps/p2p-python
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="p2p", version="1.3.5", packages=find_packages(), install_requires=["python-dateutil", "requests", "iso8601", ], entry_points={ 'console_scripts': ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="p2p", version="1.3.4", packages=find_packages(), install_requires=["python-dateutil", "requests", "iso8601", ], entry_points={ 'console_scripts': ...
mit
Python
76fdd8f2da64c2f22aeaeb6d6083f1b3aade0216
Set version to 0.1.5
getsenic/gatt-python
setup.py
setup.py
from setuptools import setup setup( name='gatt', packages=['gatt'], version='0.1.5', description='Bluetooth GATT SDK for Python', keywords='gatt', url='https://github.com/getsenic/gatt-python', download_url='https://github.com/getsenic/gatt-python/archive/0.1.0.tar.gz', author='Senic Gm...
from setuptools import setup setup( name='gatt', packages=['gatt'], version='0.1.4', description='Bluetooth GATT SDK for Python', keywords='gatt', url='https://github.com/getsenic/gatt-python', download_url='https://github.com/getsenic/gatt-python/archive/0.1.0.tar.gz', author='Senic Gm...
mit
Python
491ac79540408e25c10a103d88c98517de31f982
bump version 2.10.4
gilesknap/gphotos-sync,gilesknap/gphotos-sync
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages, os module_name = "gphotos-sync" install_reqs = [ 'exif', 'appdirs', 'requests_oauthlib', 'PyYaml', 'selenium' ] if os.name == 'nt': install_reqs.append('pywin32') with open("README.rst", "rb") as f: long_description = f...
#!/usr/bin/env python3 from setuptools import setup, find_packages, os module_name = "gphotos-sync" install_reqs = [ 'exif', 'appdirs', 'requests_oauthlib', 'PyYaml', 'selenium' ] if os.name == 'nt': install_reqs.append('pywin32') with open("README.rst", "rb") as f: long_description = f...
apache-2.0
Python
2fcae4ccd2329a1d2a97f356a0c5a0984c7611c9
remove warning logic form setup.py
danhuss/faker,joke2k/faker,trtd/faker,joke2k/faker
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 import os import io from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read() version = '0.7.5' # this module can be zip-safe if the zipimporter implements iter_modul...
#!/usr/bin/env python # coding=utf-8 import os import io from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read() version = '0.7.5' package_name = 'Faker' if package_name == 'fake-factory': print("...
mit
Python
78306d8bd89bd52545d022ed16e2c2adb74d5c3c
bump to version 0.10
srittau/python-htmlgen
setup.py
setup.py
#!/usr/bin/python from setuptools import setup setup( name="htmlgen", version="0.10", description="HTML 5 Generator", author="Sebastian Rittau", author_email="srittau@rittau.biz", url="https://github.com/srittau/python-htmlgen", packages=["htmlgen", "test_htmlgen"], tests_require=["as...
#!/usr/bin/python from setuptools import setup setup( name="htmlgen", version="0.9", description="HTML 5 Generator", author="Sebastian Rittau", author_email="srittau@rittau.biz", url="https://github.com/srittau/python-htmlgen", packages=["htmlgen", "test_htmlgen"], tests_require=["ass...
mit
Python
6e9bb7c231e17b6051619c5ae29629f27592ebb0
Update developement status to beta
aisthesis/pynance,herberthudson/pynance,aisthesis/pynance,herberthudson/pynance
setup.py
setup.py
""" For instructions on how to put a package on PyPI: http://peterdowns.com/posts/first-time-with-pypi.html To upload a new version to PyPI: 1. Udate `VERSION` below. 2. Update version and release in `pynance/doc/source/conf.py` 3. Build documentation. 4. Commit all changes. 5. Create a tag for new version in git: ...
""" For instructions on how to put a package on PyPI: http://peterdowns.com/posts/first-time-with-pypi.html To upload a new version to PyPI: 1. Udate `VERSION` below. 2. Update version and release in `pynance/doc/source/conf.py` 3. Build documentation. 4. Commit all changes. 5. Create a tag for new version in git: ...
mit
Python
980a72d2bf8d0a8c16abd16ddb8d8b64cbb61493
Bump pytest from 3.7.1 to 3.7.2 (#176)
christabor/flask_jsondash,christabor/flask_jsondash,christabor/flask_jsondash
setup.py
setup.py
"""Setup for Flask Jsondash.""" import os from setuptools import setup SRCDIR = '.' folder = os.path.abspath(os.path.dirname(__file__)) test_requirements = [ 'pytest==3.7.2', 'pytest-cov==2.5.1', 'pyquery==1.4.0', 'requests_mock', ] extras_require = { 'wordcloud-utils': [ 'requests', ...
"""Setup for Flask Jsondash.""" import os from setuptools import setup SRCDIR = '.' folder = os.path.abspath(os.path.dirname(__file__)) test_requirements = [ 'pytest==3.7.1', 'pytest-cov==2.5.1', 'pyquery==1.4.0', 'requests_mock', ] extras_require = { 'wordcloud-utils': [ 'requests', ...
mit
Python
007e992a742f5e01baf68b6b1ca93a53152977cf
Bump version for minor improvement to retrying failed attempts at downloading currencies
markbrough/exchangerates
setup.py
setup.py
from setuptools import setup, find_packages setup( name='exchangerates', version='0.3.1', description="A module to make it easier to handle historical exchange rates", long_description="", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", ...
from setuptools import setup, find_packages setup( name='exchangerates', version='0.3.0', description="A module to make it easier to handle historical exchange rates", long_description="", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", ...
mit
Python
7b87fd776b56d727647e2c43cea44b21248546d1
bump required ptop version
qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='pillowfluff', version='0.0.4', description='Map over CouchDB changes feed built to run on Pillowtop', author='Dimagi', author_email='information@dimagi.com', url='http://www.dimagi.com/', packages=['fluff','fluff.fluff_filter']...
#!/usr/bin/env python from setuptools import setup setup( name='pillowfluff', version='0.0.4', description='Map over CouchDB changes feed built to run on Pillowtop', author='Dimagi', author_email='information@dimagi.com', url='http://www.dimagi.com/', packages=['fluff','fluff.fluff_filter']...
bsd-3-clause
Python
d72b77255d93c0e3714c36352ed108e77ef257d3
update 1.1.6 / namespace packages
akamai-open/NetStorageKit-Python,AstinCHOI/netstorage-python
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.rst', 'r') as f: readme = f.read() setup ( name = 'netstorageapi', version = '1.1.6', description = 'Akamai Netstorage API for Python', long_description = readme, namespace_packages=['akamai'], packages...
# -*- coding: utf-8 -*- from setuptools import setup with open('README.rst', 'r') as f: readme = f.read() setup ( name = 'netstorageapi', version = '1.1.5', description = 'Akamai Netstorage API for Python', long_description = readme, packages = ['akamai'], package_dir = {'akamai': 'akama...
apache-2.0
Python
beb5a91ce5acd81d7d122226bbe2daef00cdf190
Bump to version 0.19.0
nerevu/riko,nerevu/riko
setup.py
setup.py
#!/usr/bin/env python import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename)) ...
#!/usr/bin/env python import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename)) ...
mit
Python
aff8cc0a7d3e4c1d20d7ced0895f66161943d2cf
add comment explaining get_version implementation
brucetsao/python-devicecloud,brucetsao/python-devicecloud,ctrlaltdel/python-devicecloud,michaelcho/python-devicecloud,ctrlaltdel/python-devicecloud,digidotcom/python-devicecloud,digidotcom/python-devicecloud,michaelcho/python-devicecloud
setup.py
setup.py
import re import os from setuptools import setup, find_packages def get_version(): # In order to get the version safely, we read the version.py file # as text. This is necessary as devicecloud/__init__.py uses # things that won't yet be present when the package is being # installed. verstrline = ...
import re import os from setuptools import setup, find_packages def get_version(): verstrline = open("devicecloud/version.py", "r").read() version_string_re = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE) match = version_string_re.search(verstrline) if match: return match.gro...
mpl-2.0
Python
bdce2279dcdd4f8fbd3e343bbffe6d10926e8c56
bump version to 0.2.0dev
enthought/pikos,enthought/pikos,enthought/pikos
setup.py
setup.py
# -*- coding: utf-8 -*- #------------------------------------------------------------------------------ # file: setup.py # License: LICENSE.TXT # # Copyright (c) 2011, Enthought, Inc. # All rights reserved. #------------------------------------------------------------------------------ import os from setuptools imp...
# -*- coding: utf-8 -*- #------------------------------------------------------------------------------ # file: setup.py # License: LICENSE.TXT # # Copyright (c) 2011, Enthought, Inc. # All rights reserved. #------------------------------------------------------------------------------ import os from setuptools imp...
bsd-3-clause
Python
84ec8ca4598c7319d4b6759fa471acf390168976
Bump version - Added support for yaml extensions
AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Packaging """ from __future__ import with_statement import sys from setuptools import setup, find_packages with open('README.md') as f: LONG_DESCRIPTION = f.read() INSTALL_REQUIRES = [ 'argparse', 'PyYAML==3.11', 'Flask==0.11.1', 'Markdown==2.4',...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Packaging """ from __future__ import with_statement import sys from setuptools import setup, find_packages with open('README.md') as f: LONG_DESCRIPTION = f.read() INSTALL_REQUIRES = [ 'argparse', 'PyYAML==3.11', 'Flask==0.11.1', 'Markdown==2.4',...
apache-2.0
Python
7bd25cbd47b8d02079fecf0163117c9887533171
add console entry point for API
arenaoftitans/arena-of-titans-api,arenaoftitans/arena-of-titans-api
setup.py
setup.py
#!/usr/bin/env python3 ################################################################################ # Copyright (C) 2015-2016 by Arena of Titans Contributors. # # This file is part of Arena of Titans. # # Arena of Titans is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero...
#!/usr/bin/env python3 ################################################################################ # Copyright (C) 2015-2016 by Arena of Titans Contributors. # # This file is part of Arena of Titans. # # Arena of Titans is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero...
agpl-3.0
Python
bf7eca45bedcf26e304da2240af3fd9bd086b07d
update setup.py script
bast/gitink
setup.py
setup.py
from setuptools import setup import os import sys _here = os.path.abspath(os.path.dirname(__file__)) if sys.version_info[0] < 3: with open(os.path.join(_here, 'README.rst')) as f: long_description = f.read() else: with open(os.path.join(_here, 'README.rst'), encoding='utf-8') as f: long_descri...
#!/usr/bin/env python from distutils.core import setup setup(name='gitink', version='0.1.0', description='Git Ink - an ASCII to SVG Git log graph visualizer.', author='Radovan Bast', author_email='bast@users.noreply.github.com', url='https://github.com/bast/gitink', packages=['giti...
mpl-2.0
Python
e5087a5fde0531a31955ad49284252f67a606404
Change version to 0.9.12-wave
waveaccounting/django-tastypie,waveaccounting/django-tastypie,waveaccounting/django-tastypie
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup setup( name='django-tastypie', version='0.9.12-wave', description='A flexible & capable API layer for Django....
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup setup( name='django-tastypie', version='0.9.12-alpha', description='A flexible & capable API layer for Django...
bsd-3-clause
Python
e8d9f7abc16a1e1fd20f8e9423caa713af1ec1f9
bump version
STUnitas/metabase-py
setup.py
setup.py
from setuptools import setup, find_packages __version__ = "1.3.0" setup( name="metabase", version=__version__, description='python wrapper for metabase api', url="https://github.com/stunitas/metabase-py", license="MIT License", author="flrngel", author_email="fl...
from setuptools import setup, find_packages __version__ = "1.2.2" setup( name="metabase", version=__version__, description='python wrapper for metabase api', url="https://github.com/stunitas/metabase-py", license="MIT License", author="flrngel", author_email="fl...
mit
Python
9192fbad43b7df9153b63f04c444b3654626a9ec
Add pykqml dependency lower limit
bgyori/bioagents,sorgerlab/bioagents
setup.py
setup.py
from setuptools import setup, find_packages def main(): setup(name='bioagents', version='0.0.1', description='Biological Reasoning Agents', long_description='Biological Reasoning Agents', author='Benjamin Gyori', author_email='benjamin_gyori@hms.harvard.edu', ...
from setuptools import setup, find_packages def main(): setup(name='bioagents', version='0.0.1', description='Biological Reasoning Agents', long_description='Biological Reasoning Agents', author='Benjamin Gyori', author_email='benjamin_gyori@hms.harvard.edu', ...
bsd-2-clause
Python