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
ab0f6c38ab79cb6c11606fd110b36ec545177e26
Add lxml as dependancy and add keywords to package
titusz/onixcheck
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import os import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import relpath from os.path import splitext from setuptools import f...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import os import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import relpath from os.path import splitext from setuptools import f...
bsd-2-clause
Python
1e1ab475e05ad76056b7e0068cbd04e699926ca2
Make `python setup.py test` run the tests via nose2, and have it install the test dependencies beforehand.
Emantor/syslog2irc,homeworkprod/syslog2irc
setup.py
setup.py
# -*- coding: utf-8 -*- import codecs import sys from setuptools import setup with codecs.open('README.rst', encoding='utf-8') as f: long_description = f.read() # Require the 'enum34' package on Python versions before 3.4. version_dependent_install_requires = [] if sys.version_info[:2] < (3, 4): version_d...
# -*- coding: utf-8 -*- import codecs from setuptools import setup with codecs.open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='syslog2IRC', version='0.8', description='A proxy to forward syslog messages to IRC', long_description=long_description, url='ht...
mit
Python
d1af809109dc8c9746bba7faabf0be4eaf51d9d5
update version
TimeWz667/Kamanian
setup.py
setup.py
from setuptools import setup, find_packages setup(name='Kamanian', version='1.41', packages=find_packages(), install_requires=['pandas', 'numpy', 'scipy', 'matplotlib', 'networkx'], dependency_links=['git+git://github.com/TimeWz667/PyFire.git',] )
from setuptools import setup, find_packages setup(name='Kamanian', version='1.4', packages=find_packages(), install_requires=['pandas', 'numpy', 'scipy', 'matplotlib', 'networkx'], dependency_links=['git+git://github.com/TimeWz667/PyFire.git',] )
mit
Python
49d60b9213fb20518f2de74322a43abebf36a2b8
Fix install_requires
fabaff/python-mystrom
setup.py
setup.py
""" Copyright (c) 2015-2018 Fabian Affolter <fabian@affolter-engineering.ch> Licensed under MIT. All rights reserved. """ import os import sys from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: long_d...
""" Copyright (c) 2015-2018 Fabian Affolter <fabian@affolter-engineering.ch> Licensed under MIT. All rights reserved. """ import os import sys from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: long_d...
mit
Python
9122becffcc69d3b6f5b6f54d193ac0e6bd94939
revert last commit
trichter/qopen
setup.py
setup.py
# Copyright 2015-2017 Tom Eulenfeld, MIT license import os import re from setuptools import find_packages, setup def find_version(*paths): fname = os.path.join(os.path.dirname(__file__), *paths) with open(fname) as fp: code = fp.read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code...
# Copyright 2015-2017 Tom Eulenfeld, MIT license import os import re from setuptools import find_packages, setup def find_version(*paths): fname = os.path.join(os.path.dirname(__file__), *paths) with open(fname) as fp: code = fp.read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code...
mit
Python
bb4a81918ab27ad43e7615177eeca054372dc662
Remove requires from setup.py
jwineinger/django-graphiter
setup.py
setup.py
import os from setuptools import setup README=open(os.path.join(os.path.dirname(__file__), 'README.md')).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-graphiter', version='1.0', packages=['graphiter'], ...
import os from setuptools import setup README=open(os.path.join(os.path.dirname(__file__), 'README.md')).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-graphiter', version='1.0', requires=["Django<1.6", "p...
bsd-2-clause
Python
392204f5cba85ea12d73dd66c95b99be8a3d0bbe
Add probability prediction
KirovVerst/techson_server
random_forest/views.py
random_forest/views.py
from rest_framework.decorators import api_view from techson_server.settings import BASE_DIR from rest_framework.response import Response import pickle, json # Create your views here. @api_view(['POST']) def run(request): path = BASE_DIR + "/random_forest/classifier.pkl" with open(path, 'rb') as f: cl...
from django.http.response import JsonResponse from rest_framework.decorators import api_view from techson_server.settings import BASE_DIR import pickle # Create your views here. @api_view(['POST']) def run(request): path = BASE_DIR + "/random_forest/classifier.pkl" with open(path, 'rb') as f: classif...
mit
Python
20a8809d35650c3c328bd1b5c2fb45983bb591bf
Add verbose/non-verbose options for echo bridge
kfdm/gntp-regrowl
regrowl/bridge/echo.py
regrowl/bridge/echo.py
""" Echo a growl notification to the terminal This is just a simple regrowler to show the basic structure and provide a simple debug output Config Example: [regrowl.bridge.echo] verbose = True """ from __future__ import absolute_import import logging from regrowl.regrowler import ReGrowler logger = logging.getLog...
""" Echo a growl notification to the terminal This is just a simple regrowler to show the basic structure and provide a simple debug output """ from __future__ import absolute_import import logging from regrowl.regrowler import ReGrowler logger = logging.getLogger(__name__) __all__ = ['EchoNotifier'] SPACER = '=...
mit
Python
824ef0e8b691dc221c8cf0aad0127e57bb81ea0e
Fix missing execute flag on naclsdk script after unpacking with pythin zipfile
waywardmonkeys/oryol,code-disaster/oryol,ejkoy/oryol,aonorin/oryol,waywardmonkeys/oryol,floooh/oryol,tempbottle/oryol,xfxdev/oryol,code-disaster/oryol,floooh/oryol,mgerhardy/oryol,wangscript/oryol,aonorin/oryol,tempbottle/oryol,bradparks/oryol,zhakui/oryol,wangscript/oryol,waywardmonkeys/oryol,zhakui/oryol,floooh/oryol...
tools/sdksetup_nacl.py
tools/sdksetup_nacl.py
''' Helper functions for setting up the NaCl SDK. This is called from the main oryol script. ''' import sys import os import platform import subprocess import urllib import zipfile ProjectDirectory = os.path.dirname(os.path.abspath(__file__)) + '/..' #-----------------------------------------------------------------...
''' Helper functions for setting up the NaCl SDK. This is called from the main oryol script. ''' import sys import os import platform import subprocess import urllib import zipfile ProjectDirectory = os.path.dirname(os.path.abspath(__file__)) + '/..' #-----------------------------------------------------------------...
mit
Python
a90d18e04e1b12fef85ac23efccdab17aa161072
Declare Python 3 support.
musically-ut/python-glob2
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages # Figure out the version import re here = os.path.dirname(os.path.abspath(__file__)) version_re = re.compile( r'__version__ = (\(.*?\))') fp = open(os.path.join(here, 'src/glob2', '__init__.py')) version = None for line in fp: match =...
#!/usr/bin/env python import os from setuptools import setup, find_packages # Figure out the version import re here = os.path.dirname(os.path.abspath(__file__)) version_re = re.compile( r'__version__ = (\(.*?\))') fp = open(os.path.join(here, 'src/glob2', '__init__.py')) version = None for line in fp: match =...
bsd-2-clause
Python
ea0a4d6716303bca8031443e5a2432dcd12c0e2e
Fix hanging tests
fastmonkeys/pontus
setup.py
setup.py
""" Pontus ------ Flask utility for signing Amazon S3 POST requests and validating Amazon S3 files. """ import os import re import subprocess from setuptools import Command, setup def get_version(): filename = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'pontus', '__init__...
""" Pontus ------ Flask utility for signing Amazon S3 POST requests and validating Amazon S3 files. """ import os import re import subprocess from setuptools import Command, setup def get_version(): filename = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'pontus', '__init__...
mit
Python
6c7fe7701814972b8cb63be662c4af884ab3bec7
Fix installation
manrajgrover/py-spinners
setup.py
setup.py
from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error def readme(): with open('README.md') as f: return f.read() def dependencies(file): with open(file) as f: return f.read().splitlines() setup( name='spinners', packages=find_packages(exclude=('t...
from distutils.core import setup # pylint: disable=no-name-in-module,import-error setup( name='spinners', packages=['spinners'], version='0.0.2', description='Spinners for terminals', author='Manraj Singh', author_email='manrajsinghgrover@gmail.com', url='https://github.com/ManrajGrover/py-...
mit
Python
a53ea0ce2341973b5b86eaddc6f863611fbde1ba
Bump version for release
andrewgross/pyrelic
setup.py
setup.py
# #!/usr/bin/env python # -*- coding: utf-8 -*- import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links to pass them to the `install_requires` and `dependency...
# #!/usr/bin/env python # -*- coding: utf-8 -*- import re import os from setuptools import setup, find_packages def parse_requirements(): """ Rudimentary parser for the `requirements.txt` file We just want to separate regular packages from links to pass them to the `install_requires` and `dependency...
mit
Python
1f03e566e1b6da72724ceda35a909b42cb2cdb3e
Add dependencies to setup.py
fusionbox/django-widgy-facebook
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) 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-widgy-facebook', version='0...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) 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-widgy-facebook', version='0...
bsd-2-clause
Python
b61b06152a4cfd9972a4e132fe627a4858bf02bd
update `setup.py` to compile `fd.pyx`
scott-maddox/obpds
setup.py
setup.py
# # Copyright (c) 2015, Scott J Maddox # # This file is part of Open Band Parameters Device Simulator (OBPDS). # # OBPDS 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...
# # Copyright (c) 2015, Scott J Maddox # # This file is part of Open Band Parameters Device Simulator (OBPDS). # # OBPDS 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...
agpl-3.0
Python
ac2b3c8a2e0ced939bed157418b7abd308d703a3
Bump version
openmicroscopy/weberror,openmicroscopy/weberror
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2016 University of Dundee. # # 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...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2016 University of Dundee. # # 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...
agpl-3.0
Python
d10eb86abea0387797b91c591135e8085277d228
Update packaging
alexprengere/neobase,alexprengere/neobase
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup, find_packages with open('VERSION') as f: VERSION = f.read().rstrip() with open('README.md') as fl: LONG_DESCRIPTION = fl.read() setup( name='NeoBase', version=VERSION, author='Alex Pren...
#!/usr/bin/python # -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup, find_packages with open('VERSION') as f: VERSION = f.read().rstrip() with open('README.md') as fl: LONG_DESCRIPTION = fl.read() setup( name='NeoBase', version=VERSION, author='Alex Pren...
apache-2.0
Python
ca80cadadbe473ebe9d9e5e58cbf4fd6fc7480b3
Bump DUA dependency
pinax/pinax-invitations,eldarion/kaleo,jacobwegner/pinax-invitations,rizumu/pinax-invitations
setup.py
setup.py
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Team", author_email="team@pinaxproject.com", des...
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Team", author_email="team@pinaxproject.com", des...
unknown
Python
41c9c23360e5de2d3c3dde338d20ccb35eb0b84e
Allow to run test via setup.py
vadmium/python-quilt,bjoernricks/python-quilt
setup.py
setup.py
#!/usr/bin/env python # vim: fileencoding=utf-8 et sw=4 ts=4 tw=80: # python-quilt - A Python implementation of the quilt patch system # # Copyright (C) 2012 - 2017 Björn Ricks <bjoern.ricks@gmail.com> # # See LICENSE comming with the source of python-quilt for details. from setuptools import setup from codecs impor...
#!/usr/bin/env python # vim: fileencoding=utf-8 et sw=4 ts=4 tw=80: # python-quilt - A Python implementation of the quilt patch system # # Copyright (C) 2012 - 2017 Björn Ricks <bjoern.ricks@gmail.com> # # See LICENSE comming with the source of python-quilt for details. from setuptools import setup from codecs impor...
mit
Python
c6a60b74cc11a0bbf879f691067a21223ceb6ce1
Bump version to 0.18.0
thombashi/pytablewriter
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import io import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" ENCODING = "utf8" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = [...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import io import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" ENCODING = "utf8" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = [...
mit
Python
05587f46d9989c8cd64284732f3d87b822c40077
add opencv dependency for atari to fix tests
Farama-Foundation/Gymnasium,Farama-Foundation/Gymnasium
setup.py
setup.py
from setuptools import setup, find_packages import sys, os.path # Don't import gym module here, since deps may not be installed sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gym')) from version import VERSION # Environment-specific dependencies. extras = { 'atari': ['atari_py>=0.1.4', 'Pillow', 'PyOpe...
from setuptools import setup, find_packages import sys, os.path # Don't import gym module here, since deps may not be installed sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gym')) from version import VERSION # Environment-specific dependencies. extras = { 'atari': ['atari_py>=0.1.4', 'Pillow', 'PyOpe...
mit
Python
2f547ffe8365ea390dce303f3002bd3c1a5fb2ce
Change version
muupan/chainer,jnishi/chainer,ronekko/chainer,kikusu/chainer,hvy/chainer,niboshi/chainer,chainer/chainer,ktnyt/chainer,AlpacaDB/chainer,aonotas/chainer,keisuke-umezawa/chainer,keisuke-umezawa/chainer,benob/chainer,sinhrks/chainer,hvy/chainer,delta2323/chainer,chainer/chainer,cupy/cupy,hvy/chainer,keisuke-umezawa/chaine...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='chainer', version='1.4.1', description='A flexible framework of neural networks', author='Seiya Tokui', author_email='tokui@preferred.jp', url='http://chainer.org/', packages=['chainer', 'chainer.functions', ...
#!/usr/bin/env python from setuptools import setup setup( name='chainer', version='1.4.0', description='A flexible framework of neural networks', author='Seiya Tokui', author_email='tokui@preferred.jp', url='http://chainer.org/', packages=['chainer', 'chainer.functions', ...
mit
Python
2ffaeca1d56f16d54d6c5723218cc66fb23b429d
Add license to setup.py
Thezomg/mcw
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.di...
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.di...
mit
Python
5c5e49797358e7020d409adf74209c0647050465
Add classifiers for python versions
jayhetee/fuzzywuzzy,salilnavgire/fuzzywuzzy,beni55/fuzzywuzzy,beni55/fuzzywuzzy,blakejennings/fuzzywuzzy,shalecraig/fuzzywuzzy,pombredanne/fuzzywuzzy,salilnavgire/fuzzywuzzy,pombredanne/fuzzywuzzy,aeeilllmrx/fuzzywuzzy,medecau/fuzzywuzzy,zhahaoyu/fuzzywuzzy,zhahaoyu/fuzzywuzzy,jayhetee/fuzzywuzzy,shalecraig/fuzzywuzzy,...
setup.py
setup.py
from distutils.core import setup setup(name='fuzzywuzzy', version='0.2', description='Fuzzy string matching in python', author='Adam Cohen', author_email='adam@seatgeek.com', url='https://github.com/seatgeek/fuzzywuzzy/', packages=['fuzzywuzzy'], classifiers=( 'Programming Language ...
from distutils.core import setup setup(name='fuzzywuzzy', version='0.2', description='Fuzzy string matching in python', author='Adam Cohen', author_email='adam@seatgeek.com', url='https://github.com/seatgeek/fuzzywuzzy/', packages=['fuzzywuzzy'])
mit
Python
672cfcae1223a7510b098b497ab7f7f9b90d0dce
test 1 edge
MichSchli/QuestionAnsweringGCN,MichSchli/QuestionAnsweringGCN
track_edges_to_gold.py
track_edges_to_gold.py
from SPARQLWrapper import SPARQLWrapper, JSON import argparse from preprocessing.read_conll_files import ConllReader parser = argparse.ArgumentParser(description='Yields pairs of prediction from a strategy and gold to stdout.') parser.add_argument('--file', type=str, help='The location of the .conll-file to be parsed'...
from SPARQLWrapper import SPARQLWrapper, JSON import argparse from preprocessing.read_conll_files import ConllReader parser = argparse.ArgumentParser(description='Yields pairs of prediction from a strategy and gold to stdout.') parser.add_argument('--file', type=str, help='The location of the .conll-file to be parsed'...
mit
Python
7fcc097d1659d7ea11e648d4b21728b94d487b59
Upgrade dependencies
openfisca/openfisca-core,openfisca/openfisca-core
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-Core', version = '14.0.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI ...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-Core', version = '14.0.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI ...
agpl-3.0
Python
80265dcecc0e6d7c30224326850c3870d7d80f72
Bump version to 1.6
SectorLabs/django-postgres-extra
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() setup( name='django-postgres-extra', version='1.6', packages=find_packages(), include_package_data=True, license='MIT License', descript...
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() setup( name='django-postgres-extra', version='1.5', packages=find_packages(), include_package_data=True, license='MIT License', descript...
mit
Python
6a8687b8b9d63cbd38e683fc603f2c6c989d6f9b
bump version
veltzer/pytsv,veltzer/pytsv
setup.py
setup.py
import setuptools setuptools.setup( name='pytsv', version='0.1.9', description='pytsv is a module to help with all things TSV', long_description='pytsv is a module to help with all things TSV', url='https://github.com/veltzer/pytsv', download_url='https://github.com/veltzer/pytsv', author='...
import setuptools setuptools.setup( name='pytsv', version='0.1.8', description='pytsv is a module to help with all things TSV', long_description='pytsv is a module to help with all things TSV', url='https://github.com/veltzer/pytsv', download_url='https://github.com/veltzer/pytsv', author='...
mit
Python
d2aa09413411f346620a76f703573b2cecf2d17d
bump pgspecial req. (#981)
dbcli/pgcli,dbcli/pgcli
setup.py
setup.py
import re import ast import platform from setuptools import setup, find_packages _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('pgcli/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) description = 'CLI for Postgres Database....
import re import ast import platform from setuptools import setup, find_packages _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('pgcli/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) description = 'CLI for Postgres Database....
bsd-3-clause
Python
e5fe2994b05ffbb5abca5641ae75114da315e888
Use twine to upload package
jieter/python-lora
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup from lora import VERSION package_name = 'python-lora' if sys.argv[-1] == 'publish': os.system('python setup.py sdist') os.system('twine upload -r pypi dist/%s-%s.tar.gz' % (package_name, VERSION)) sys.exit() if sys.argv[-1] == 'ta...
#!/usr/bin/env python import os import sys from setuptools import setup from lora import VERSION if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() if sys.argv[-1] == 'tag': os.system("git tag -a v{} -m 'tagging v{}'".format(VERSION, VERSION)) os.system('git push && ...
mit
Python
3518f5ae323f5a390f8894557db8285eb1ec7e34
Bump patch version
gristlabs/asttokens
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import io from os import path from setuptools import setup here = path.dirname(__file__) # Get the long description from the README file with io.open(path.join(here, 'README.rs...
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ import io from os import path from setuptools import setup here = path.dirname(__file__) # Get the long description from the README file with io.open(path.join(here, 'README.rs...
apache-2.0
Python
f95567cde5a3abc3022f338a552ccf6319ff35ec
Bump version
nocarryr/python-dispatch
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "python-dispatch", version = "v0.0.4", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Lightweight Event Handling", url='https://github.com/nocarryr/python-dispatch', license='MIT', packages=f...
from setuptools import setup, find_packages setup( name = "python-dispatch", version = "v0.0.3", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Lightweight Event Handling", url='https://github.com/nocarryr/python-dispatch', license='MIT', packages=f...
mit
Python
b74dd7c08bbd8aa02709d35d447194ae933f80b1
Fix the setup.py
developerhannan/django-registration,jitendrakk/django-registration,salmanwahed/django-registration,google-code-export/django-registration
setup.py
setup.py
from distutils.core import setup setup(name='registration', version='0.1', description='User-registration application for Django', author='James Bennett', author_email='james@b-list.org', url='http://code.google.com/p/django-registration/', packages=['registration'], package_d...
from distutils.core import setup setup(name='registration', version='0.1', description='User-registration application for Django', author='James Bennett', author_email='james@b-list.org', url='http://code.google.com/p/django-registration/', packages=['registration'], classifie...
bsd-3-clause
Python
e23fac64fdc22baae8d28933e6cc06238c1d1b5d
Update version to 2.3.0
emitter-io/python
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="emitter-io", version="2.3.0", author="Florimond Husquinet", author_email="florimond@emitter.io", description="A Python library to interact with the Emitter API.", long_description=long...
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="emitter-io", version="2.2.0", author="Florimond Husquinet", author_email="florimond@emitter.io", description="A Python library to interact with the Emitter API.", long_description=long...
epl-1.0
Python
e5a154e4d15e1795a6ff4b1ec40429cccf6887e5
Update setup.py
genkosta/django-editor-ymaps,genkosta/django-editor-ymaps,genkosta/django-editor-ymaps
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2014 genkosta # # django-editor-ymaps is free software under terms of the MIT License. # from setuptools import find_packages, setup def get_readme(file_path): with open(file_path) as readme_file: result = readme_file.read() return res...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2014 genkosta # # django-editor-ymaps is free software under terms of the MIT License. # from setuptools import find_packages, setup def get_readme(file_path): with open(file_path) as readme_file: result = readme_file.read() return res...
mit
Python
af76a27a1907450db0cf906dc605d1f539d1ebd6
Add wellpathpy to install_requires
agile-geoscience/welly,agile-geoscience/welly
setup.py
setup.py
""" Python installation file for welly project. :copyright: 2021 Agile Scientific :license: Apache 2.0 """ from setuptools import setup import re verstr = 'unknown' VERSIONFILE = "welly/_version.py" with open(VERSIONFILE, "r") as f: verstrline = f.read().strip() pattern = re.compile(r"__version__ = ['\"](.*)[...
""" Python installation file for welly project. :copyright: 2021 Agile Scientific :license: Apache 2.0 """ from setuptools import setup import re verstr = 'unknown' VERSIONFILE = "welly/_version.py" with open(VERSIONFILE, "r") as f: verstrline = f.read().strip() pattern = re.compile(r"__version__ = ['\"](.*)[...
apache-2.0
Python
2c1caf83f99161ef2f1d17c50a1d3006d9834ecd
Drop explicit archlist for now.
fedora-infra/the-new-hotness,fedora-infra/the-new-hotness
hotness/repository.py
hotness/repository.py
import logging import subprocess from hotness.cache import cache log = logging.getLogger('fedmsg') def get_version(package_name, yumconfig): nvr_dict = build_nvr_dict(yumconfig) return nvr_dict[package_name] @cache.cache_on_arguments() def build_nvr_dict(yumconfig): cmdline = ["/usr/bin/repoquery", ...
import logging import subprocess from hotness.cache import cache log = logging.getLogger('fedmsg') def get_version(package_name, yumconfig): nvr_dict = build_nvr_dict(yumconfig) return nvr_dict[package_name] @cache.cache_on_arguments() def build_nvr_dict(yumconfig): cmdline = ["/usr/bin/repoquery", ...
lgpl-2.1
Python
1c8ad7256b7e1ed211ff4caa07bf516934fa398a
fix to more python standard manner
yosuke/SEATSAT,yosuke/SEATSAT
setup.py
setup.py
#!/usr/bin/env python '''setup script for SEAT and SAT Copyright (C) 2009-2010 Yosuke Matsusaka and Isao Hara Intelligent Systems Research Institute, National Institute of Advanced Industrial Science and Technology (AIST), Japan All rights reserved. Licensed under the Eclipse Public License -v 1.0...
#!/usr/bin/env python '''setup script for SEAT and SAT Copyright (C) 2009-2010 Yosuke Matsusaka and Isao Hara Intelligent Systems Research Institute, National Institute of Advanced Industrial Science and Technology (AIST), Japan All rights reserved. Licensed under the Eclipse Public License -v 1.0...
epl-1.0
Python
ea908afaed746e1c3405828617ba7a16d3472e4a
Update setup.py with new beta version of next release
caleb531/alfred-workflow-packager
setup.py
setup.py
#!/usr/bin/env python3 # coding=utf-8 from setuptools import setup # Get long description (used on PyPI project page) def get_long_description(): with open('README.md', 'r') as readme_file: return readme_file.read() setup( name='alfred-workflow-packager', version='2.0.0b1', description='A C...
#!/usr/bin/env python3 # coding=utf-8 from setuptools import setup # Get long description (used on PyPI project page) def get_long_description(): with open('README.md', 'r') as readme_file: return readme_file.read() setup( name='alfred-workflow-packager', version='1.2.1', description='A CLI...
mit
Python
4e464600aa867a409fb7a3a7d34838cfc717d660
Update classifiers.
DOV-Vlaanderen/pydov
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.md') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() with open('requirements.txt') as f: requirements =...
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.md') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() with open('requirements.txt') as f: requirements =...
mit
Python
be3f4f9e13c9e71dbbcdf6abe5a13a06160304b7
Remove entry-points from setup.py
choderalab/perses,choderalab/perses
setup.py
setup.py
# -*- coding: utf-8 -*- """Perses: Tools for expanded-ensemble simulations with OpenMM """ from __future__ import print_function, absolute_import DOCLINES = __doc__.split("\n") import os import sys import glob import traceback import numpy as np from os.path import join as pjoin from os.path import relpath from setu...
# -*- coding: utf-8 -*- """Perses: Tools for expanded-ensemble simulations with OpenMM """ from __future__ import print_function, absolute_import DOCLINES = __doc__.split("\n") import os import sys import glob import traceback import numpy as np from os.path import join as pjoin from os.path import relpath from setu...
mit
Python
11fa79921451e087b5e3e307bb646c83ee929296
make NetworkConvertors a new style object
fedora-conary/conary,fedora-conary/conary,fedora-conary/conary,fedora-conary/conary,fedora-conary/conary
repository/xmlshims.py
repository/xmlshims.py
# # Copyright (c) 2004 Specifix, Inc. # # This program is distributed under the terms of the Common Public License, # version 1.0. A copy of this license should have been distributed with this # source file in a file called LICENSE. If it is not present, the license # is always available at http://www.opensource.org/li...
# # Copyright (c) 2004 Specifix, Inc. # # This program is distributed under the terms of the Common Public License, # version 1.0. A copy of this license should have been distributed with this # source file in a file called LICENSE. If it is not present, the license # is always available at http://www.opensource.org/li...
apache-2.0
Python
1118191ebb51e5ffe2ce3a1be91ae79808f2fdcb
Support comma separators when printing numbers.
alexhanson/rdio-export
rdioexport/__init__.py
rdioexport/__init__.py
from ._client import get_rdio_client from ._exporter import get_exporter from itertools import chain, imap, islice # Thanks to Roberto Bonvallet # http://stackoverflow.com/a/1915307 def _split(iterable, batch_size): iterator = iter(iterable) batch = tuple(islice(iterator, batch_size)) while batch: ...
from ._client import get_rdio_client from ._exporter import get_exporter from itertools import chain, imap, islice # Thanks to Roberto Bonvallet # http://stackoverflow.com/a/1915307 def _split(iterable, batch_size): iterator = iter(iterable) batch = tuple(islice(iterator, batch_size)) while batch: ...
isc
Python
a34ce610a6f961158e15769f02926aeed6321e58
Bump version to 0.1.post1 to re-release on PyPi correctly packaged
gsnedders/Template-Python,gsnedders/Template-Python
setup.py
setup.py
#!/usr/bin/env python # # The Template-Python distribution is Copyright (C) Sean McAfee 2007-2008, # derived from the Perl Template Toolkit Copyright (C) 1996-2007 Andy # Wardley. All Rights Reserved. # # The file "LICENSE" at the top level of this source distribution describes # the terms under which this file ...
#!/usr/bin/env python # # The Template-Python distribution is Copyright (C) Sean McAfee 2007-2008, # derived from the Perl Template Toolkit Copyright (C) 1996-2007 Andy # Wardley. All Rights Reserved. # # The file "LICENSE" at the top level of this source distribution describes # the terms under which this file ...
artistic-2.0
Python
8581cf8d2e2d38dcc5ca0bcb8821d9f5c60b00ac
Change version back to 0.1
CxAalto/gtfspy,CxAalto/gtfspy
setup.py
setup.py
from distutils.core import setup from Cython.Build import cythonize setup( name="gfspy", packages=["gtfspy"], version="0.1", description="Python package for analyzing public transport timetables", author="Rainer Kujala", author_email="Rainer.Kujala@gmail.com", url="https://github.com/CxAal...
from distutils.core import setup from Cython.Build import cythonize setup( name="gfspy", packages=["gtfspy"], version="0.1", description="Python package for analyzing public transport timetables", author="Rainer Kujala", author_email="Rainer.Kujala@gmail.com", url="https://github.com/CxAal...
mit
Python
430d27997bf914ef7bb9af753c4a9a49a5854ced
fix imports order
cogniteev/yamlious
setup.py
setup.py
from setuptools import find_packages, setup module_name = 'yamlious' description = "Build voluptuous schema from yaml files" root_url = 'https://github.com/cogniteev/' + module_name # Extract version from module __init__.py init_file = '{}/__init__.py'.format(module_name.replace('-', '_').lower()) __version__ = None ...
from setuptools import setup, find_packages module_name = 'yamlious' description = "Build voluptuous schema from yaml files" root_url = 'https://github.com/cogniteev/' + module_name # Extract version from module __init__.py init_file = '{}/__init__.py'.format(module_name.replace('-', '_').lower()) __version__ = None ...
apache-2.0
Python
fba783e42696d86670432930ecdc3414fd4b08f9
add the license information to setup.py
dbaxa/python-junit-xml-output
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='junit_xml_output', author='David Black', author_email='dblack@atlassian.com', url='https://bitbucket.org/db_atlass/python-junit-xml-output-mod...
#!/usr/bin/env python from setuptools import setup, find_packages import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='junit_xml_output', author='David Black', author_email='dblack@atlassian.com', url='https://bitbucket.org/db_atlass/python-junit-xml-output-mod...
mit
Python
0c3106c17651fd56e25833c348442544a078c433
Bump to 0.3
ahal/b2g-commands
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 PACKAGE_VERSION = '0.3' deps = [] setup(name='b2g-commands', versio...
# 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 PACKAGE_VERSION = '0.2' deps = [] setup(name='b2g-commands', versio...
mpl-2.0
Python
a6c89d5c169c81cb41b56d79f153e1e9dfe5e50b
fix setup.py
rtqichen/torchdiffeq
setup.py
setup.py
import setuptools setuptools.setup( name="torchdiffeq", version="0.0.1", author="Ricky Tian Qi Chen", author_email="rtqichen@cs.toronto.edu", description="ODE solvers and adjoint sensitivity analysis in PyTorch.", url="https://github.com/rtqichen/torchdiffeq", packages=setuptools.find_packa...
import setuptools setuptools.setup( name="torchdiffeq", version="0.0.1", author="Ricky Tian Qi Chen", author_email="rtqichen@cs.toronto.edu", description="ODE solvers and adjoint sensitivity analysis in PyTorch.", url="https://github.com/rtqichen/torchdiffeq", packages=['torchdiffeq', 'torc...
mit
Python
9590a881bdfae21a1c332c859459f709871e0d59
Add check if configuration section merge needed
beezz/pg_bawler,beezz/pg_bawler
pg_bawler/bawlerd/conf.py
pg_bawler/bawlerd/conf.py
import collections import itertools import os import yaml #: Default name for bawlerd configuration file DEFAULT_CONFIG_FILENAME = 'pg_bawler.yml' #: List of location where bawlerd searches for configuration #: Order matters. Configuration in current working directory takes precedence #: over configuration from user...
import collections import itertools import os import yaml #: Default name for bawlerd configuration file DEFAULT_CONFIG_FILENAME = 'pg_bawler.yml' #: List of location where bawlerd searches for configuration #: Order matters. Configuration in current working directory takes precedence #: over configuration from user...
bsd-3-clause
Python
9d92a6d2b93cfba258e5f0fda4484dccfad8ada8
Remove "Open-Dynamics-Engine" dep.
EmbodiedCognition/pagoda,EmbodiedCognition/pagoda
setup.py
setup.py
import os import setuptools setuptools.setup( name='pagoda', version='0.0.2', packages=setuptools.find_packages(), author='Leif Johnson', author_email='leif@cs.utexas.edu', description='yet another OpenGL-with-physics simulation framework', long_description=open(os.path.join(os.path.dirname...
import os import setuptools setuptools.setup( name='pagoda', version='0.0.2', packages=setuptools.find_packages(), author='Leif Johnson', author_email='leif@cs.utexas.edu', description='yet another OpenGL-with-physics simulation framework', long_description=open(os.path.join(os.path.dirname...
mit
Python
930656c062e6d0424dd0292f5cb09865fec3e1aa
Fix dependency issue
OMS-NetZero/FAIR
setup.py
setup.py
from setuptools import setup from setuptools import find_packages import versioneer # README # def readme(): with open('README.rst') as f: return f.read() setup(name='fair', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), description='Python package to perform calcu...
from setuptools import setup from setuptools import find_packages import versioneer # README # def readme(): with open('README.rst') as f: return f.read() setup(name='fair', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), description='Python package to perform calcu...
apache-2.0
Python
f1a4f76641683aa0f1919e8d3a1442bcd1b6f920
Tidy up route import
pimterry/pipeline-notifier
pipeline_notifier/main.py
pipeline_notifier/main.py
import os import cherrypy from pipeline_notifier.routes import setup_routes from flask import Flask app = Flask("Pipeline Notifier") setup_routes(app, []) def run_server(): cherrypy.tree.graft(app, '/') cherrypy.config.update({ 'engine.autoreload_on': True, 'log.screen': True, 'server...
import os import cherrypy from .routes import setup_routes from flask import Flask app = Flask("Pipeline Notifier") setup_routes(app, []) def run_server(): cherrypy.tree.graft(app, '/') cherrypy.config.update({ 'engine.autoreload_on': True, 'log.screen': True, 'server.socket_port': in...
mit
Python
6316302b58e448d62e4fd99b2c5509eb4c504409
Bring functions up to package level
gogoair/foremast,gogoair/foremast
pipes/configs/__init__.py
pipes/configs/__init__.py
from .outputs import * from .prepare_configs import * from .utils import *
from .prepare_configs import *
apache-2.0
Python
ccf44cd62c72c4a5f0eb578bf78f2c82f9241c07
Update setup script
UPOLSearch/UPOL-Search-Engine,UPOLSearch/UPOL-Search-Engine,UPOLSearch/UPOL-Search-Engine,UPOLSearch/UPOL-Search-Engine
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup setup(name='UPOL-Search-Engine', version='0.6-dev', description='UPOL Search engine is search engine for upol.cz domain, \ topic of Master thesis on Department of Computer Science UPOL', author='Tomas Mikula', author_email...
#!/usr/bin/env python from setuptools import find_packages, setup setup(name='UPOL-Search-Engine', version='0.6-dev', description='UPOL Search engine is search engine for upol.cz domain, \ topic of Master thesis on Department of Computer Science UPOL', author='Tomas Mikula', author_email...
mit
Python
be300b38339f28eaa9c79c0a0f7a9baa0cf91465
bump in setup too
fsspec/filesystem_spec,intake/filesystem_spec,fsspec/filesystem_spec
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup import versioneer here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() setup( name="fsspec", version=versioneer.get_version(), cmdclass=versioneer....
#!/usr/bin/env python import os from setuptools import setup import versioneer here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() setup( name="fsspec", version=versioneer.get_version(), cmdclass=versioneer....
bsd-3-clause
Python
dc73d33108c013272d3f776ccd0d1c649aee0b3e
Use list instead of set for install_requires
jni/skan
setup.py
setup.py
from setuptools import setup descr = """skan: skeleton analysis in Python. Inspired by the "Analyze skeletons" Fiji plugin, by Ignacio Arganda-Carreras. """ DISTNAME = 'skan' DESCRIPTION = 'Analysis of object skeletons' LONG_DESCRIPTION = descr MAINTAINER = 'Juan Nunez-Iglesias' MAINTA...
from setuptools import setup descr = """skan: skeleton analysis in Python. Inspired by the "Analyze skeletons" Fiji plugin, by Ignacio Arganda-Carreras. """ DISTNAME = 'skan' DESCRIPTION = 'Analysis of object skeletons' LONG_DESCRIPTION = descr MAINTAINER = 'Juan Nunez-Iglesias' MAINTA...
bsd-3-clause
Python
6d69373a442f6afc7ebf1a861eab90c84244adc5
Bump version.
francisleunggie/openface,cmusatyalab/openface,xinfang/face-recognize,Alexx-G/openface,francisleunggie/openface,nmabhi/Webface,nmabhi/Webface,nmabhi/Webface,nhzandi/openface,xinfang/face-recognize,Alexx-G/openface,xinfang/face-recognize,Alexx-G/openface,cmusatyalab/openface,nmabhi/Webface,nhzandi/openface,nhzandi/openfa...
setup.py
setup.py
from distutils.core import setup setup( name='openface', version='0.2.0', description="Face recognition with Google's FaceNet deep neural network.", url='https://github.com/cmusatyalab/openface', packages=['openface'], package_data={'openface': ['*.lua']}, )
from distutils.core import setup setup( name='openface', version='0.1.1', description="Face recognition with Google's FaceNet deep neural network.", url='https://github.com/cmusatyalab/openface', packages=['openface'], package_data={'openface': ['*.lua']}, )
apache-2.0
Python
7c95e01bdbdbe95a6c42005b278473d05f82e2ef
Update setup.py
poldracklab/pydeface
setup.py
setup.py
#!/usr/bin/env python # # Copyright (C) 2013-2015 Russell Poldrack <poldrack@stanford.edu> # # Some portions were borrowed from: # https://github.com/mwaskom/lyman/blob/master/setup.py # and: # https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/ import os from setuptools import...
#!/usr/bin/env python # # Copyright (C) 2013-2015 Russell Poldrack <poldrack@stanford.edu> # # Some portions were borrowed from: # https://github.com/mwaskom/lyman/blob/master/setup.py # and: # https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/ import os from setuptools import...
mit
Python
58458a98735304b77c8f3665b87b220d2401b47b
Bump to 0.1.3
ulule/django-badgify,ulule/django-badgify
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages # Vagrant / tox workaround (http://bugs.python.org/issue8876#msg208792) if os.environ.get('USER', '') == 'vagrant': del os.link root = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(root, 'README.rst')) as f: REA...
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages # Vagrant / tox workaround (http://bugs.python.org/issue8876#msg208792) if os.environ.get('USER', '') == 'vagrant': del os.link root = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(root, 'README.rst')) as f: REA...
mit
Python
efed896d21ad90075a5c7bff2b2ef1300a237ea4
Add quick-fix
daGrevis/mdx_linkify
setup.py
setup.py
import os.path as path from setuptools import setup def get_readme(filename): if not path.exists(filename): return "" with open(path.join(path.dirname(__file__), filename)) as readme: content = readme.read() return content setup(name="mdx_linkify", version="0.4", author="Rait...
import os.path as path from setuptools import setup def get_readme(filename): with open(path.join(path.dirname(__file__), filename)) as readme: content = readme.read() return content setup(name="mdx_linkify", version="0.4", author="Raitis (daGrevis) Stengrevics", author_email="dagre...
mit
Python
93b96f2e50ad917a61078ce6420eb025d9d5b862
fix setup.py
cemerick/nrepl-python-client
setup.py
setup.py
''' nrepl-python-client ------------------- A Python client for the nREPL Clojure networked-REPL server. Links ````` * `documentation <http://packages.python.org/nrepl-python-client>`_ * `development version <https://github.com/cemerick/nrepl-python-client>`_ ''' from setuptools import se...
''' nrepl-python-client ------------------- A Python client for the nREPL Clojure networked-REPL server. Links ````` * `documentation <http://packages.python.org/nrepl-python-client>`_ * `development version <https://github.com/cemerick/nrepl-python-client>`_ ''' from setuptools import se...
mit
Python
a3296cf5bf2201bd216e3a5b263a7c31beee4d1d
add Pylons as a dependency, r=fredj (closes #97)
mapfish/mapfish,mapfish/mapfish,mapfish/mapfish
setup.py
setup.py
# # Copyright (C) 2007-2008 Camptocamp # # This file is part of MapFish # # MapFish is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later...
# # Copyright (C) 2007-2008 Camptocamp # # This file is part of MapFish # # MapFish is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later...
bsd-3-clause
Python
8494b08bf0db08cbe4162a97f9bef4f108747cb9
bump minor version: fixed .perform and added tests.
thruflo/pyramid_torque_engine,opendesk/pyramid_torque_engine
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'pyramid_torque_engine', version = '0.2.6', description = 'Pyramid and nTorque based dual queue work engine system.', author = 'James Arthur', author_email = 'username: thruflo, domain: gmail.co...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'pyramid_torque_engine', version = '0.2.5', description = 'Pyramid and nTorque based dual queue work engine system.', author = 'James Arthur', author_email = 'username: thruflo, domain: gmail.co...
unlicense
Python
9d2df9cbeebaee7ff87957b49e72e5d762550aee
Add keywords and classifiers to setup.py
aldur/RedditWallpaperChooser
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ Python setup file. """ import setuptools import os.path from RedditWallpaperChooser import __version__ __author__ = 'aldur' _readme = "README.md" _requirements = "requirements.txt" _requirements_extra = "requirements_extra.txt" def readme(): """Open and return the ...
#!/usr/bin/env python # encoding: utf-8 """ Python setup file. """ import setuptools import os.path from RedditWallpaperChooser import __version__ __author__ = 'aldur' _readme = "README.md" _requirements = "requirements.txt" _requirements_extra = "requirements_extra.txt" def readme(): """Open and return the ...
mit
Python
f2282fa651fbf4df3a96315bd03e2241c0e4319b
Add package classifiers
thusoy/pwm,thusoy/pwm
setup.py
setup.py
#!/usr/bin/env python """ pwm ~~~~~~~~~~~~~~ pwm is a simple, secure password manager that can't disclose your passwords - since it's doesn't know them. """ import sys from setuptools import setup, find_packages install_requires = [ 'sqlalchemy', 'requests', ] if sys.version_info < (2, 7, 0): ...
#!/usr/bin/env python """ pwm ~~~~~~~~~~~~~~ pwm is a simple, secure password manager that can't disclose your passwords - since it's doesn't know them. """ import sys from setuptools import setup, find_packages install_requires = [ 'sqlalchemy', 'requests', ] if sys.version_info < (2, 7, 0): ...
mit
Python
92b2524f977ef1b5f14496fbfc9e00363ca42099
fix imports
django-py/django-doberman,dobermanapp/django-doberman,dobermanapp/django-doberman,django-py/django-doberman
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages requirements = ['Django>=1.7.0', ] try: from unittest import mock except ImportError: requirements.append('mock') setup( name="django-doberman", version="0.5.3", author="Nicolas Mendoza", author_email="niccolasmendoza@gmail.com...
#!/usr/bin/env python from setuptools import setup, find_packages requirements = ['Django>=1.7.0', ] try: from unittest import mock except ImportError: requirements.append('mock') setup( name="django-doberman", version="0.5.2", author="Nicolas Mendoza", author_email="niccolasmendoza@gmail.com...
mit
Python
b4d51f0e5bc5be63d818171cf21e989de1398038
add a test command
gazpachoking/jsonref
setup.py
setup.py
from distutils.core import setup, Command from jsonref import __version__ class PyTest(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import sys,subprocess errno = subprocess.call(['py.test', 'tests.py']) ...
from distutils.core import setup from jsonref import __version__ with open("README.rst") as readme: long_description = readme.read() classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Indepen...
mit
Python
c607cf3331fa055e183a3d88be1cc808ac9c4063
fix threading locking textinput
flower-pot/xf-indicator
travis_xf/indicator.py
travis_xf/indicator.py
#!/usr/bin/env python import requests import sys import threading from repository import Repository from repository_list import RepositoryList from preferences_window import PreferencesWindow from build_status import BuildStatus from gi.repository import AppIndicator3 from gi.repository import GObject, Gtk, GLib REF...
#!/usr/bin/env python import requests import sys import threading from repository import Repository from repository_list import RepositoryList from preferences_window import PreferencesWindow from build_status import BuildStatus from gi.repository import AppIndicator3 from gi.repository import GObject, Gtk, GLib REF...
mit
Python
d0d50f5a0a7dd325f35401745d9e6d8ed983a0f4
bump version to 1.8.0
brennerm/check-mk-web-api
setup.py
setup.py
from setuptools import setup setup( name='check_mk_web_api', packages=['check_mk_web_api'], version='1.8.0', description='Library to talk to Check_Mk Web API', author='Max Brenner', author_email='xamrennerb@gmail.com', url='https://github.com/brennerm/check-mk-web-api', download_url='ht...
from setuptools import setup setup( name='check_mk_web_api', packages=['check_mk_web_api'], version='1.7.1', description='Library to talk to Check_Mk Web API', author='Max Brenner', author_email='xamrennerb@gmail.com', url='https://github.com/brennerm/check-mk-web-api', download_url='ht...
mit
Python
01a7ee9f45b85d42cf97ed59b3aa74f799c16ed2
Set long_description_content_type
wbinglee/awscli-plugin-endpoint
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup requires = ['awscli>=1.11.0'] setup( name='awscli-plugin-endpoint', packages=['awscli_plugin_endpoint'], version='0.3', description='Endpoint plugin for AWS CLI', long_description=open('README.md').read(), long_description_content_t...
#!/usr/bin/env python import sys from setuptools import setup requires = ['awscli>=1.11.0'] setup( name='awscli-plugin-endpoint', packages=['awscli_plugin_endpoint'], version='0.3', description='Endpoint plugin for AWS CLI', long_description=open('README.md').read(), author='Wenbing Li', a...
apache-2.0
Python
7b906b954b29b78709c8270d6920196f0b53ddf2
remove long description so there's a README.
buchuki/opterator
setup.py
setup.py
from setuptools import setup import opterator setup( name="opterator", version=opterator.__version__, py_modules=['opterator', 'test_opterator'], author="Dusty Phillips", author_email="dusty@buchuki.com", license="MIT", keywords="opterator option parse parser opt...
from setuptools import setup import opterator setup( name="opterator", version=opterator.__version__, py_modules=['opterator', 'test_opterator'], author="Dusty Phillips", author_email="dusty@buchuki.com", license="MIT", keywords="opterator option parse parser opt...
mit
Python
ecdd0aeaeae9abafde149b8231fb54053384581f
Bump version
gizmag/django-generic-follow,gizmag/django-generic-follow
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-generic-follow', version='0.5.2', description='Generic follow system for Django', long_description=open('README.rst').read(), author='Gizmag', author_email='tech@gizmag.com', url='https://github.com/gizma...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-generic-follow', version='0.5.1', description='Generic follow system for Django', long_description=open('README.rst').read(), author='Gizmag', author_email='tech@gizmag.com', url='https://github.com/gizma...
mit
Python
a4bf060b62524f6fc4258b736ffe6b0a041c5d49
Add requires metadata for django and python-openid.
redsolution/django-openid-auth
setup.py
setup.py
#!/usr/bin/env python # django-openid-auth - OpenID integration for django.contrib.auth # # Copyright (C) 2009 Canonical Ltd. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # * Redistributions of source code must ...
#!/usr/bin/env python # django-openid-auth - OpenID integration for django.contrib.auth # # Copyright (C) 2009 Canonical Ltd. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # * Redistributions of source code must ...
bsd-2-clause
Python
ef30ed4a6a7b856aaefa658f05e01c58b79d38b9
fix dev status
shadowfax-chc/pycsync
setup.py
setup.py
#!/bin/env python # vim: set et ts=4 sw=4 fileencoding=utf-8: ''' Setup script for pycsync ''' import os from setuptools import setup # Ensure we are in pycsync source dir SETUP_DIRNAME = os.path.dirname(__file__) if SETUP_DIRNAME != '': os.chdir(SETUP_DIRNAME) PYCSYNC_VERSION = os.path.join(os.path.abspath(SETU...
#!/bin/env python # vim: set et ts=4 sw=4 fileencoding=utf-8: ''' Setup script for pycsync ''' import os from setuptools import setup # Ensure we are in pycsync source dir SETUP_DIRNAME = os.path.dirname(__file__) if SETUP_DIRNAME != '': os.chdir(SETUP_DIRNAME) PYCSYNC_VERSION = os.path.join(os.path.abspath(SETU...
isc
Python
ef72edebc38c88d7c9fbd49b36ce55408867b3b9
Update inversetoon init.
tody411/InverseToon
setup.py
setup.py
# -*- coding: utf-8 -*- ## @package setup # # setup utility package. # @author tody # @date 2015/07/29 from setuptools import setup, find_packages from inversetoon import __author__, __version__, __license__ setup( name = 'inversetoon', version = __version__, description = 'Sam...
# -*- coding: utf-8 -*- ## @package setup # # setup utility package. # @author tody # @date 2015/07/29 from setuptools import setup, find_packages from npr_sfs import __author__, __version__, __license__ setup( name = 'inversetoon', version = __version__, description = 'Sample ...
mit
Python
d3025e05ba0dba3ca19996438666c6dc277814a6
Bump version
relip/django-model-repr
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='django-model-repr', version='0.0.2', description='A django library for Model\'s __repr__ to be more informative', author='Larry Kim', author_email='pypi@relip.org', packages=['django_model_repr'], )
#!/usr/bin/env python from distutils.core import setup setup(name='django-model-repr', version='0.0.1', description='A django library for Model\'s __repr__ to be more informative', author='Larry Kim', author_email='pypi@relip.org', packages=['django_model_repr'], )
mit
Python
dab2112a8db676d47c8068c559fdf89ee9857516
Bump version number
thegreatnew/python-ideal
setup.py
setup.py
from distutils.core import setup setup(name='python-ideal', version='0.2', py_modules=['ideal'], )
from distutils.core import setup setup(name='python-ideal', version='0.1', py_modules=['ideal'], )
mit
Python
e31e6bd602ce797de879e50ff396eb535abda17b
Update project status
rolobio/pgpydict,rolobio/DictORM
setup.py
setup.py
from setuptools import setup from dictorm.dictorm import __version__, __doc__ as ddoc config = { 'name':'dictorm', 'version':str(__version__), 'author':'rolobio', 'author_email':'rolobio+dictorm@rolobio.com', 'description':ddoc, 'license':'Apache2', 'keywords':'psycopg2 dictionary python di...
from setuptools import setup from dictorm.dictorm import __version__, __doc__ as ddoc config = { 'name':'dictorm', 'version':str(__version__), 'author':'rolobio', 'author_email':'rolobio+dictorm@rolobio.com', 'description':ddoc, 'license':'Apache2', 'keywords':'psycopg2 dictionary python di...
apache-2.0
Python
70c2f479b320d0d7ea8b05fb48e135150632a969
bump version
ldgabbay/foostache-python
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages def read(*paths): with open(os.path.join(*paths), 'r') as f: return f.read() setup( name='foostache', version='1.2.dev0', description='Implementation of foostache template language', long_description=read('de...
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages def read(*paths): with open(os.path.join(*paths), 'r') as f: return f.read() setup( name='foostache', version='1.1.2', description='Implementation of foostache template language', long_description=read('descr...
mit
Python
eb193700f884379705f2f23624eb907868eca0af
Fix setup.py so it installs actual modules
jstasiak/python-cg,jstasiak/python-cg
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import platform from distutils.core import setup from distutils.extension import Extension from os import environ from Cython.Distutils import build_ext if platform.system() == 'Darwin': environ['LDFLAGS']='-framework Cg' libraries=[] else: libraries=['Cg', 'CgGL', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import platform from distutils.core import setup from distutils.extension import Extension from os import environ from Cython.Distutils import build_ext if platform.system() == 'Darwin': environ['LDFLAGS']='-framework Cg' libraries=[] else: libraries=['Cg', 'CgGL', ...
mit
Python
800812fabd27c939761a7c435d5ecd2250cefeb2
apply cosmetic changes
pyannote/pyannote-audio,pyannote/pyannote-audio,pyannote/pyannote-audio
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2016-2019 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 limita...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2016-2019 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 limita...
mit
Python
fd7e51c3290b8932b367d0d9318b1802a930e899
Bump version
netbek/chrys,netbek/chrys,netbek/chrys
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="chrys", version="3.0.5", author="Hein Bekker", author_email="hein@netbek.co.za", description="A collection of color palettes for mapping and visualisation", long_description=long_descr...
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="chrys", version="3.0.4", author="Hein Bekker", author_email="hein@netbek.co.za", description="A collection of color palettes for mapping and visualisation", long_description=long_descr...
bsd-3-clause
Python
b5f5332713e321cae056499dc12165b0fc91d884
Bump version to 1.0.1
freyley/sql-layer-adapter-django
setup.py
setup.py
# FoundationDB SQL Layer Adapter for Django # Copyright (c) 2013-2014 FoundationDB, LLC # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the ...
# FoundationDB SQL Layer Adapter for Django # Copyright (c) 2013-2014 FoundationDB, LLC # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the ...
mit
Python
eb08a3fa792e3ead859358d4038cedbd6b08d8c4
Resolve import error introduced in last commit.
koordinates/python-client,koordinates/python-client
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup import re import os from codecs import open version = '' with open('koordinates/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup version = '' with open('koordinates/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE)...
bsd-3-clause
Python
549779cf95a5a70b5bd1e3d80ce6245e28d6d77d
Adjust 2.1 to 2.1.0
gwu-libraries/sfm-utils,gwu-libraries/sfm-utils
setup.py
setup.py
from setuptools import setup setup( name='sfmutils', version='2.1.0', url='https://github.com/gwu-libraries/sfm-utils', author='Social Feed Manager', author_email='sfm@gwu.edu', packages=['sfmutils'], description="Utilities to support Social Feed Manager.", platforms=['POSIX'], test...
from setuptools import setup setup( name='sfmutils', version='2.1', url='https://github.com/gwu-libraries/sfm-utils', author='Social Feed Manager', author_email='sfm@gwu.edu', packages=['sfmutils'], description="Utilities to support Social Feed Manager.", platforms=['POSIX'], test_s...
mit
Python
04ca16e0d3ca599678ceeec26a2f12d860b20556
Bump major version: backward-incompatible changes
plish/Trolly
setup.py
setup.py
''' Created on 15 Feb 2013 @author: plish ''' from distutils.core import setup setup( name = 'Trolly', version = '1.0.0', author = 'plish', author_email = 'plish.development@gmail.com', url = 'https://github.com/plish/Trolly', packages = ['trolly'], license ...
''' Created on 15 Feb 2013 @author: plish ''' from distutils.core import setup setup( name = 'Trolly', version = '1.2.2', author = 'plish', author_email = 'plish.development@gmail.com', url = 'https://github.com/plish/Trolly', packages = ['trolly'], license ...
mit
Python
e9ea79213f3abfde29d91abdfa9381fe4c56edf5
Update version for PyPi to 0.2.2
thecynic/pylutron
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'pylutron', version = '0.2.2', license = 'MIT', description = 'Python library for Lutron RadioRA 2', author = 'Dima Zavin', author_email = 'thecynic@gmail.com', url = 'http://github.com/thecynic/pylutron', ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'pylutron', version = '0.2.1', license = 'MIT', description = 'Python library for Lutron RadioRA 2', author = 'Dima Zavin', author_email = 'thecynic@gmail.com', url = 'http://github.com/thecynic/pylutron', ...
mit
Python
a494cd4a456d9ac1ad60b37830d04454fd28ef0b
prepare 0.4.9
banga/powerline-shell,milkbikis/powerline-shell,banga/powerline-shell,b-ryan/powerline-shell,b-ryan/powerline-shell
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="powerline-shell", version="0.4.9", description="A pretty prompt for your shell", author="Buck Ryan", url="https://github.com/banga/powerline-shell", classifiers=[], packages=[ "powerline_shell", "...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="powerline-shell", version="0.4.8", description="A pretty prompt for your shell", author="Buck Ryan", url="https://github.com/banga/powerline-shell", classifiers=[], packages=[ "powerline_shell", "...
mit
Python
fe5a1b42e23ffac76dd3bc48cee12c14da470ece
Add package dodo_commands.framework.system_commands
mnieber/dodo_commands
setup.py
setup.py
from setuptools import setup setup(name='dodo_commands', version='0.7.1', description='Project-aware development environments, inspired by django-manage', url='https://github.com/mnieber/dodo_commands', download_url='https://github.com/mnieber/dodo_commands/tarball/0.7.1', author='Maarte...
from setuptools import setup setup(name='dodo_commands', version='0.7.1', description='Project-aware development environments, inspired by django-manage', url='https://github.com/mnieber/dodo_commands', download_url='https://github.com/mnieber/dodo_commands/tarball/0.7.1', author='Maarte...
mit
Python
3c102b52f058c87ff14602f34756db212d065bd8
Bump status to "alpha".
dave-shawley/glinda
setup.py
setup.py
#!/usr/bin/env python import codecs import setuptools import sys from glinda import __version__ def read_requirements_file(name): reqs = [] try: with open(name) as req_file: for line in req_file: if '#' in line: line = line[0:line.index('#')] ...
#!/usr/bin/env python import codecs import setuptools import sys from glinda import __version__ def read_requirements_file(name): reqs = [] try: with open(name) as req_file: for line in req_file: if '#' in line: line = line[0:line.index('#')] ...
bsd-3-clause
Python
4a316ea725efae3fec5e070e04e9592770479f54
Update to version
robinandeer/cosmid
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'An automatic genomics database updater.', 'author': 'Robin Andeer', 'url': 'https://github.com/robinandeer/Genie.', 'download_url': 'https://github.com/robinandeer/Genie/archive/mas...
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'An automatic genomics database updater.', 'author': 'Robin Andeer', 'url': 'https://github.com/robinandeer/Genie.', 'download_url': 'https://github.com/robinandeer/Genie/archive/mas...
mit
Python
ed90a04bdb981e7e7c5c7419e2727a822f5efc01
Update template version to 3.0.9
luzfcb/cookiecutter-django,luzfcb/cookiecutter-django,trungdong/cookiecutter-django,pydanny/cookiecutter-django,ryankanno/cookiecutter-django,trungdong/cookiecutter-django,trungdong/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,luzfcb/cookiecutter-django,pydanny/cookiecutter-django,ryanka...
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup # Our version ALWAYS matches the version of Django we support # If Django has a new release, we branch, tag, then update this setting after the tag. version = "3.0.9" if sys.argv...
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup # Our version ALWAYS matches the version of Django we support # If Django has a new release, we branch, tag, then update this setting after the tag. version = "3.0.8-01" if sys.a...
bsd-3-clause
Python
09a455bdb9022936db8b441d468339e1f3a91309
Use coverage v4.4.2
macbre/index-digest,macbre/index-digest
setup.py
setup.py
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexdigest', version=VERSION, author='Maciej Brencz', author_email='maciej.brencz@gmail.com', license='MIT', description='Analyses your da...
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexdigest', version=VERSION, author='Maciej Brencz', author_email='maciej.brencz@gmail.com', license='MIT', description='Analyses your da...
mit
Python
4f5e5c373a90e7af5fbc0248652965a01ac795d6
bump version
perrygeo/simanneal,perrygeo/simanneal
setup.py
setup.py
#!/usr/bin/env/python import sys import os import warnings try: from setuptools import setup except ImportError: from distutils.core import setup LONG_DESCRIPTION = """`simanneal` is a python implementation of the [simulated annealing optimization](http://en.wikipedia.org/wiki/Simulated_annealing) technique....
#!/usr/bin/env/python import sys import os import warnings try: from setuptools import setup except ImportError: from distutils.core import setup LONG_DESCRIPTION = """`simanneal` is a python implementation of the [simulated annealing optimization](http://en.wikipedia.org/wiki/Simulated_annealing) technique....
isc
Python
ad67e13572f227035693b69872ea20cd15b929c3
update version of package
nuagenetworks/bambou
setup.py
setup.py
from setuptools import setup setup( name='bambou', version='1.0-a1', url='http://www.nuagenetworks.net/', author='Christophe Serafin', author_email='christophe.serafin@alcatel-lucent.com', packages=['bambou', 'bambou.utils'], description='REST Library for Nuage Networks', long_descript...
from setuptools import setup setup( name='bambou', version='0.0.2', url='http://www.nuagenetworks.net/', author='Christophe Serafin', author_email='christophe.serafin@alcatel-lucent.com', packages=['bambou', 'bambou.utils'], description='REST Library for Nuage Networks', long_descripti...
bsd-3-clause
Python
f61d2368998a45dfda99d65d097fed5fb43ad061
Remove Python 2.5 support, add support for Python 3.2
gears/gears-uglifyjs,gears/gears-uglifyjs
setup.py
setup.py
import os from setuptools import setup, find_packages def read(filename): return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name='gears-uglifyjs', version='0.1', url='https://github.com/gears/gears-uglifyjs', license='ISC', author='Mike Yumatov', author_email='...
import os from setuptools import setup, find_packages def read(filename): return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name='gears-uglifyjs', version='0.1', url='https://github.com/gears/gears-uglifyjs', license='ISC', author='Mike Yumatov', author_email='...
isc
Python
9cda4c670bf8a7c929a2794e040bed955b4a6aa5
Add s3fs to requirements (#1316)
ContinuumIO/dask,gameduell/dask,blaze/dask,mraspaud/dask,jcrist/dask,jakirkham/dask,mrocklin/dask,cpcloud/dask,jcrist/dask,mrocklin/dask,dask/dask,ContinuumIO/dask,dask/dask,cowlicks/dask,blaze/dask,jakirkham/dask,chrisbarber/dask,mraspaud/dask
setup.py
setup.py
#!/usr/bin/env python from os.path import exists from setuptools import setup import dask extras_require = { 'array': ['numpy', 'toolz >= 0.7.2'], 'bag': ['cloudpickle >= 0.2.1', 'toolz >= 0.7.2', 'partd >= 0.3.3'], 'dataframe': ['numpy', 'pandas >= 0.18.0', 'toolz >= 0.7.2', 'partd >= 0.3.3', '...
#!/usr/bin/env python from os.path import exists from setuptools import setup import dask extras_require = { 'array': ['numpy', 'toolz >= 0.7.2'], 'bag': ['cloudpickle >= 0.2.1', 'toolz >= 0.7.2', 'partd >= 0.3.3'], 'dataframe': ['numpy', 'pandas >= 0.18.0', 'toolz >= 0.7.2', 'partd >= 0.3.3', '...
bsd-3-clause
Python
7a68cffe45fb7ba1fbe603804365954f055c1c45
Declare supported Python versions, closes #174. (#175)
EricFromCanada/sphinx-bootstrap-theme,EricFromCanada/sphinx-bootstrap-theme,wildintellect/sphinx-bootstrap-theme,ryan-roemer/sphinx-bootstrap-theme,wildintellect/sphinx-bootstrap-theme,EricFromCanada/sphinx-bootstrap-theme,wildintellect/sphinx-bootstrap-theme,ryan-roemer/sphinx-bootstrap-theme,ryan-roemer/sphinx-bootst...
setup.py
setup.py
"""Sphinx Bootstrap Theme package.""" import os from setuptools import setup, find_packages from sphinx_bootstrap_theme import __version__ ############################################################################### # Environment and Packages. #######################################################################...
"""Sphinx Bootstrap Theme package.""" import os from setuptools import setup, find_packages from sphinx_bootstrap_theme import __version__ ############################################################################### # Environment and Packages. #######################################################################...
mit
Python
10698e232939b7aec11cb6c13ae3209e0f5dadec
add bottle mongo on requires
avelino/bottle-auth
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import bottle_auth description = "Bootle authentication, for Personal, Google, Twitter and "\ "facebook." setup( name='bottle-auth', version=bottle_auth.__version__, description=description, author=bottle_auth.__author__, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import bottle_auth description = "Bootle authentication, for Personal, Google, Twitter and "\ "facebook." setup( name='bottle-auth', version=bottle_auth.__version__, description=description, author=bottle_auth.__author__, ...
mit
Python