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
084bf875b403580b050a0b76916599e2108b8eb0
Use flask_script since flask.ext.script is deprecated (in admin.py)
SahilTikale/haas,CCI-MOC/haas
hil/commands/admin.py
hil/commands/admin.py
"""Implement the hil-admin command.""" from hil import config, model from hil.commands import db from hil.commands.migrate_ipmi_info import MigrateIpmiInfo from hil.commands.util import ensure_not_root from hil.flaskapp import app from flask_script import Manager manager = Manager(app) manager.add_command('db', db.com...
"""Implement the hil-admin command.""" from hil import config, model from hil.commands import db from hil.commands.migrate_ipmi_info import MigrateIpmiInfo from hil.commands.util import ensure_not_root from hil.flaskapp import app from flask.ext.script import Manager manager = Manager(app) manager.add_command('db', db...
apache-2.0
Python
ff7b1e1b709686a78a451a78571a36ba405bfb60
Update setup.py
ambitioninc/django-activatable-model,wesleykendall/django-activatable-model
setup.py
setup.py
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'activatable_mode...
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'activatable_mode...
mit
Python
af00468d63689bf9b379d8d93704e69c9a031ea1
add license and author to setup.py
dmahugh/pyfind
setup.py
setup.py
"""Setup program for pyfind CLI tool """ from setuptools import setup setup( name='Pyfind', version='1.0', license='MIT License', author='Doug Mahugh', py_modules=['pyfind'], install_requires=[ 'Click', ], entry_points=''' [console_scripts] pyfind=pyfind:cli ...
"""Setup program for pyfind CLI tool """ from setuptools import setup setup( name='Pyfind', version='1.0', py_modules=['pyfind'], install_requires=[ 'Click', ], entry_points=''' [console_scripts] pyfind=pyfind:cli ''' )
mit
Python
d6e9691e6c9b404d040021a687809b3c05d82e9e
increment build number
buildtimetrend/python-lib
setup.py
setup.py
#!/usr/bin/env python # vim: set expandtab sw=4 ts=4: ''' Setup file, specifying dependencies, package name and version, and other meta data. This file is part of buildtimetrend/python-lib <https://github.com/buildtimetrend/python-lib> ''' from setuptools import setup, find_packages setup( name="buildtimetrend",...
#!/usr/bin/env python # vim: set expandtab sw=4 ts=4: ''' Setup file, specifying dependencies, package name and version, and other meta data. This file is part of buildtimetrend/python-lib <https://github.com/buildtimetrend/python-lib> ''' from setuptools import setup, find_packages setup( name="buildtimetrend",...
agpl-3.0
Python
2c854ec94bf1e858bcb7eb7837b8c8a89053968f
update setup.py
mozillazg/baidu-pcs-python-sdk,mozillazg/baidu-pcs-python-sdk,mujiansu/baidu-pcs-python-sdk
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys import os __title__ = 'baidupcs' __version__ = '0.1.0' __author__ = 'mozillazg' __license__ = 'MIT' __copyright__ = 'Copyright (c) 2013 mozillazg' try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] =...
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys import os import baidupcs try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() requirements = [ 'requests>=1.1.0', ] pack...
mit
Python
d73b856e4e66a9f21eb452ece7ec99ea0ae3f74b
Add tabulate to setup.py
kahnjw/wincast
setup.py
setup.py
from setuptools import setup, find_packages install_requires = [ 'dill==0.2.5', 'easydict==1.6', 'h5py==2.6.0', 'jsonpickle==0.9.3', 'Keras==1.2.0', 'nflgame==1.2.20', 'numpy==1.11.2', 'pandas==0.19.1', 'scikit-learn==0.18.1', 'scipy==0.18.1', 'tensorflow==0.12.0rc1', '...
from setuptools import setup, find_packages install_requires = [ 'dill==0.2.5', 'easydict==1.6', 'h5py==2.6.0', 'jsonpickle==0.9.3', 'Keras==1.2.0', 'nflgame==1.2.20', 'numpy==1.11.2', 'pandas==0.19.1', 'scikit-learn==0.18.1', 'scipy==0.18.1', 'tensorflow==0.12.0rc1', '...
mit
Python
21cbc0739863cdf56d69607e831ee4b135bda861
update requirements
jaume-pinyol/locust,jaume-pinyol/locust,jaume-pinyol/locust
setup.py
setup.py
# encoding: utf-8 from setuptools import setup, find_packages, Command import sys, os version = '0.7.3' class Unit2Discover(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import sys, subprocess basecmd...
# encoding: utf-8 from setuptools import setup, find_packages, Command import sys, os version = '0.7.3' class Unit2Discover(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import sys, subprocess basecmd...
mit
Python
f5964481ea549908172190e688c5c4e8695a75cf
Hide kivy info in setup.py again
Bakterija/mmplayer
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from distutils.core import setup from kivy.config import Config from kivy.logger import Logger import sys import os Config.set('kivy', 'log_level', 'error') try: os.chdir('mmplayer/') sys.path.append(os.getcwd()) from mmplayer.app import __v...
#!/usr/bin/env python from setuptools import setup, find_packages from distutils.core import setup from kivy.config import Config from kivy.logger import Logger import sys import os # Avoid kivy log spam when importing main # Config.set('kivy', 'log_level', 'error') try: os.chdir('mmplayer/') sys.path.append(os...
mit
Python
e493ed3aef03768ba48d0bc5a149af55166e611c
Update my contacts and the copyright.
flyingcircusio/pycountry
setup.py
setup.py
# vim:fileencoding=utf-8 # Copyright -2014 (c) gocept gmbh & co. kg # Copyright 2015- (c) Flying Circus Internet Operations GmbH # See also LICENSE.txt from setuptools import setup, find_packages setup( name='pycountry', version='1.12.dev0', author='Christian Theune', author_email='ct@flyingcircus.io...
# vim:fileencoding=utf-8 # Copyright (c) gocept gmbh & co. kg # See also LICENSE.txt import os.path from setuptools import setup, find_packages setup( name='pycountry', version='1.12.dev0', author='Christian Theune', author_email='ct@gocept.com', description='ISO country, subdivision, language, c...
lgpl-2.1
Python
88d405cb9ccea8b591fd282d89e1b47f13a12d7c
Replace url with multiple project urls
remcohaszing/pywakeonlan
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- """ Install the wakeonlan module. """ from setuptools import setup with open('README.rst') as f: readme = f.read() setup( name='wakeonlan', description='A small python module for wake on lan.', project_urls={ 'Documentation': 'http://pywakeonla...
#!/usr/bin/env python # -*- encoding: utf-8 -*- """ Install the wakeonlan module. """ from setuptools import setup with open('README.rst') as f: readme = f.read() setup( name='wakeonlan', description='A small python module for wake on lan.', url='https://github.com/remcohaszing/pywakeonlan', aut...
mit
Python
92f88e171035d870825acfb25c4584297607fcbc
Increase version to 0.1.3 for the next PyPI release.
deepmind/xmanager,deepmind/xmanager
setup.py
setup.py
# Copyright 2021 DeepMind Technologies Limited # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agr...
# Copyright 2021 DeepMind Technologies Limited # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agr...
apache-2.0
Python
5334d203ec1b5eb74e330245a924ef5b49640d09
bump to 0.6.1
PythonJS/PythonJS,kustomzone/Rusthon,pombredanne/Rusthon,pombredanne/Rusthon,kustomzone/Rusthon,chiyama/PythonJS,tempbottle/Rusthon,pombredanne/PythonJS,pombredanne/PythonJS,pombredanne/Rusthon,rootfs/Rusthon,rusthon/Rusthon,tempbottle/Rusthon,rusthon/Rusthon,kustomzone/Rusthon,rusthon/Rusthon,pombredanne/PythonJS,chiy...
setup.py
setup.py
from setuptools import setup setup( name='PythonScriptTranslator', version='0.6.1', description='Python translator for the browser', author='Amirouche Boubekki', author_email='amirouche.boubekki@gmail.com', url='https://github.com/amirouche/PythonScript', zip_safe=False, packages=['pyt...
from setuptools import setup setup( name='PythonScriptTranslator', version='0.6', description='Python translator for the browser', author='Amirouche Boubekki', author_email='amirouche.boubekki@gmail.com', url='https://github.com/amirouche/PythonScript', zip_safe=False, packages=['pytho...
bsd-3-clause
Python
a928084f4cadc2ab96fe561f43325fde3fc35d61
Bump to dev version
texastribune/tt_streams
setup.py
setup.py
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
apache-2.0
Python
198a6c17319b2dfff08e3df83c03cd49473d0bd6
bump version
averagehuman/mezzanine-invites
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand __version__ = '0.2.2' class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True ...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand __version__ = '0.2.1' class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True ...
bsd-2-clause
Python
9a935bf1a82742f223442fa3174db04fad075a6a
Fix bug in ParticleSorter initialization
joaander/hoomd-blue,joaander/hoomd-blue,joaander/hoomd-blue,joaander/hoomd-blue,joaander/hoomd-blue,joaander/hoomd-blue
hoomd/tuner/sorter.py
hoomd/tuner/sorter.py
from hoomd.operation import _Tuner from hoomd.parameterdicts import ParameterDict from hoomd.typeconverter import OnlyType from hoomd.trigger import Trigger from hoomd import _hoomd from math import log2, ceil def to_power_of_two(value): return int(2. ** ceil(log2(value))) def natural_number(value): try: ...
from hoomd.operation import _Tuner from hoomd.parameterdicts import ParameterDict from hoomd.typeconverter import OnlyType from hoomd.trigger import Trigger from hoomd import _hoomd from math import log2, ceil def to_power_of_two(value): return int(2. ** ceil(log2(value))) def natural_number(value): try: ...
bsd-3-clause
Python
ddadbef59df96c62f0479e828f5f26e3273ded5c
Bump patch number to account for recent fix
kevinconway/rpmvenv
setup.py
setup.py
"""Setuptools configuration for rpmvenv.""" from setuptools import setup from setuptools import find_packages with open('README.rst', 'r') as readmefile: README = readmefile.read() setup( name='rpmvenv', version='0.2.1', url='https://github.com/kevinconway/rpmvenv', description='RPM packager fo...
"""Setuptools configuration for rpmvenv.""" from setuptools import setup from setuptools import find_packages with open('README.rst', 'r') as readmefile: README = readmefile.read() setup( name='rpmvenv', version='0.2.0', url='https://github.com/kevinconway/rpmvenv', description='RPM packager fo...
mit
Python
fa14c092c0deb60735366a935df82743b354e95b
Update setup.py to make version support explicit
Rosy-S/twilio-python,Stackdriver/twilio-python,cinemapub/bright-response,YeelerG/twilio-python,twilio/twilio-python,johannakate/twilio-python,cinemapub/bright-response,RobSpectre/twilio-python,Stackdriver/twilio-python,bcorwin/twilio-python,Mobii/twilio-python,supermanheng21/twilio-python,tysonholub/twilio-python,clear...
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "twilio", version = "3.2.2", description = "Twilio API client and TwiML generator", author = "Twilio", author_email = "help@twilio.com", url = "http://github.com/twilio/twilio-python/", keywords = ["twilio","twiml"], install_requi...
from setuptools import setup, find_packages setup( name = "twilio", version = "3.2.2", description = "Twilio API client and TwiML generator", author = "Twilio", author_email = "help@twilio.com", url = "http://github.com/twilio/twilio-python/", keywords = ["twilio","twiml"], install_requi...
mit
Python
fcb8f33c1295ccac3a79103e3fc92fa1b354c4e2
bump version
miroli/frenchy
setup.py
setup.py
from distutils.core import setup setup( name = 'frenchy', packages = ['frenchy'], version = '0.2', description = 'A pandas friendly french election scraper', author = 'Robin Linderborg', author_email = 'robin.linderborg@gmail.com', url = 'https://github.com/miroli/frenchy', download_url ...
from distutils.core import setup setup( name = 'frenchy', packages = ['frenchy'], version = '0.1', description = 'A pandas friendly french election scraper', author = 'Robin Linderborg', author_email = 'robin.linderborg@gmail.com', url = 'https://github.com/miroli/frenchy', download_url ...
mit
Python
9fa2d2083d3976d8db9dbd344686d226c2ae5d13
add more packages
rande/python-element,rande/python-element,rande/python-element,rande/python-element
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="element", version="0.0.2", description="Element: a node based cms", author="Thomas Rabaix", author_email="thomas.rabaix@gmail.com", url="https://github.com/rande/python-element", packages = find_...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="element", version="0.0.2", description="Element: a node based cms", author="Thomas Rabaix", author_email="thomas.rabaix@gmail.com", url="https://github.com/rande/python-element", packages = find_...
apache-2.0
Python
98b19961034f8f71b4072b074bb126e748d067b6
Update scarp_diffusion_no_component.py
landlab/drivers
scripts/diffusion/scarp_diffusion_no_component.py
scripts/diffusion/scarp_diffusion_no_component.py
#Import statements so that you will have access to the necessary methods import numpy from landlab import RasterModelGrid from landlab.plot.imshow import imshow_node_grid from pylab import show, figure #Create a raster grid with 25 rows, 40 columns, and cell spacing of 10 m mg = RasterModelGrid(25, 40, 10.0) #Create ...
#Import statements so that you will have access to the necessary methods import numpy from landlab import RasterModelGrid from landlab.plot.imshow import imshow_node_grid, imshow_core_node_grid from pylab import show, figure #Create a raster grid with 25 rows, 40 columns, and cell spacing of 10 m mg = RasterModelGrid(...
mit
Python
3f991c33786f803a673a29ea8283631da099fb0c
Bump apispec minimum version to 3.0.0
Nobatek/flask-rest-api,Nobatek/flask-rest-api
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages # Get the long description from the README file with open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='flask-rest-api', version='0.16.1', description='Build a REST API with Flask', long_descriptio...
#!/usr/bin/env python3 from setuptools import setup, find_packages # Get the long description from the README file with open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='flask-rest-api', version='0.16.1', description='Build a REST API with Flask', long_descriptio...
mit
Python
dd8de3f9a150d7bdf72886bd53a0b31aee44a108
Update Trove classifiers.
ohsu-qin/qiprofile-rest,ohsu-qin/qirest
setup.py
setup.py
import os import re import glob from setuptools import (setup, find_packages) from pip.req import parse_requirements def version(package): """ Return package version as listed in the `__init__.py` `__version__` variable. """ init_py = open(os.path.join(package, '__init__.py')).read() return re....
import os import re import glob from setuptools import (setup, find_packages) from pip.req import parse_requirements def version(package): """ Return package version as listed in the `__init__.py` `__version__` variable. """ init_py = open(os.path.join(package, '__init__.py')).read() return re....
bsd-2-clause
Python
a82a9108221ec28c4d8e83a096d9a24599ae83e3
update to latest pyannote.core
pyannote/pyannote-metrics
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 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 limitation ...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 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 limitation ...
mit
Python
5ffb26b0f0157bbc01ca86149fe31a50eaae70fd
Bump version
mochawich/fake-useragent,hellysmile/fake-useragent,hellysmile/fake-useragent,sebalas/fake-useragent,hellysmile/fake-useragent
setup.py
setup.py
from setuptools import setup classifiers = '''\ Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP Topic :: Software Development :: Libraries License :: OSI Approved :: Apache Software License Development Status :: 5 - Production/Stable Natural Language :: English Programming...
from setuptools import setup classifiers = '''\ Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP Topic :: Software Development :: Libraries License :: OSI Approved :: Apache Software License Development Status :: 5 - Production/Stable Natural Language :: English Programming...
apache-2.0
Python
6690196a1769be100c0598b2c6651ce734901c82
remove old files
hph/drake
setup.py
setup.py
#/usr/bin/python #coding=utf8 import os import sys def authenticate(): '''Prompt the user for the superuser password if required.''' # The euid (effective user id) of the superuser is 0. euid = os.geteuid() if euid != 0: args = ['sudo', '-E', sys.executable] + sys.argv[:] + [os.environ] ...
#/usr/bin/python #coding=utf8 import os import sys def authenticate(): '''Prompt the user for the superuser password if required.''' # The euid (effective user id) of the superuser is 0. euid = os.geteuid() if euid != 0: args = ['sudo', '-E', sys.executable] + sys.argv[:] + [os.environ] ...
mit
Python
d926471b6e6c0b835ada5fd98745712c66074d2b
Add comma to setup.py for pip
mlgill/mfoutparser
setup.py
setup.py
#! /usr/bin/env python from mfoutparser import DOCSTRING, VERSION DESCRIPTION = 'mfoutparser: efficient and convenient parsing of ModelFree output files.' LONG_DESCRIPTION = DOCSTRING DISTNAME = 'mfoutparser' MAINTAINER = 'Michelle Gill' MAINTAINER_EMAIL = 'michelle@michellelynngill.com' URL = 'https://github.com/ml...
#! /usr/bin/env python from mfoutparser import DOCSTRING, VERSION DESCRIPTION = 'mfoutparser: efficient and convenient parsing of ModelFree output files.' LONG_DESCRIPTION = DOCSTRING DISTNAME = 'mfoutparser' MAINTAINER = 'Michelle Gill' MAINTAINER_EMAIL = 'michelle@michellelynngill.com' URL = 'https://github.com/ml...
bsd-3-clause
Python
131f93a80202625eadb1166253998145da1c47fe
Split dependencies in required and optional in setup.py
jefemagril/fermipy,jefemagril/fermipy,fermiPy/fermipy,jefemagril/fermipy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from fermipy.version import get_git_version setup( name='fermipy', version=get_git_version(), author='The Fermipy developers', author_email='fermipy.developers@gmail.com', description='A Python package for analysis of Fermi-LAT data'...
#!/usr/bin/env python from setuptools import setup, find_packages import os import sys from fermipy.version import get_git_version ##Check to make sure we're using the python in the STs. #if 'GLAST_EXT' in os.environ: # print("Looks like you're using the SLAC version of the tools.") # print("Not checking for c...
bsd-3-clause
Python
2c0d520934991253a9cf707f9f604feb452119b9
Increment version to 1.3.0.
getwarped/powershift-cli,getwarped/powershift-cli
setup.py
setup.py
import sys import os from setuptools import setup long_description = open('README.rst').read() classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Pytho...
import sys import os from setuptools import setup long_description = open('README.rst').read() classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Pytho...
bsd-2-clause
Python
299977eeef300b46be40f42baf3929be742d2ff4
exclude examples dir from setup.py find_packages
google/jax,google/jax,google/jax,tensorflow/probability,google/jax,tensorflow/probability
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
3ac58bda8fe113963ee694b6e9c1528f9b92a5df
Fix install problems
Uname-a/knife_scraper,Uname-a/knife_scraper,Uname-a/knife_scraper
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from willie import __version__ import tempfile import os import shutil def do_setup(): setup(name='willie', version=__version__, description='Simple and extendible IRC bot', author='Edward Powell', author_email='powell...
#!/usr/bin/env python from distutils.core import setup from willie import __version__ import tempfile import os import shutil def do_setup(): try: tmp_dir = tempfile.mkdtemp() tmp_main_script = os.path.join(tmp_dir, 'willie') shutil.copy('willie.py', tmp_main_script) setup(name='...
mit
Python
537d662691ebbead05d627d7d5c913d151fc30bc
Fix required settings for weather
onkelpit/i3pystatus,juliushaertl/i3pystatus,ismaelpuerto/i3pystatus,paulollivier/i3pystatus,plumps/i3pystatus,claria/i3pystatus,opatut/i3pystatus,enkore/i3pystatus,teto/i3pystatus,drwahl/i3pystatus,drwahl/i3pystatus,schroeji/i3pystatus,m45t3r/i3pystatus,enkore/i3pystatus,richese/i3pystatus,fmarchenko/i3pystatus,MaicoTi...
i3pystatus/weather.py
i3pystatus/weather.py
from i3pystatus import IntervalModule import pywapi class Weather(IntervalModule): """ This module gets the weather from weather.com using pywapi module First, you need to get the code for the location from the www.weather.com Available formatters: {current_temp} {humidity} Requir...
from i3pystatus import IntervalModule import pywapi class Weather(IntervalModule): """ This module gets the weather from weather.com using pywapi module First, you need to get the code for the location from the www.weather.com Available formatters: {current_temp} {humidity} """ ...
mit
Python
a843f1cce7084499bc2179c11a56b4b7af9e6748
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.rst') as file: long_description = file.read() setup( name='django-qa', version='0.0.35', description='Pluggable django app for Q&A', long_description=long_description, author='arjunkomat...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup with open('README.rst') as file: long_description = file.read() setup( name='django-qa', version='0.0.34', description='Pluggable django app for Q&A', long_description=long_description, author='arjunkomat...
mit
Python
0ded19b813d41d2fc2cfdf5a4975aa8ec773a645
bump version 2.7.3
Yelp/yelp_clog,Yelp/yelp_clog
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2015 Yelp Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ...
# -*- coding: utf-8 -*- # Copyright 2015 Yelp Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ...
apache-2.0
Python
c4499b7a9686fdf1163771184c09c615c29c055b
prepare for release
tradebyte/paci,tradebyte/paci
setup.py
setup.py
"""Packaging settings.""" from codecs import open from os.path import abspath, dirname from setuptools import find_packages, setup from paci import __version__ this_dir = abspath(dirname(__file__)) with open("README.md") as f: readme = f.read() with open("LICENSE") as f: license_file = f.read() setup( ...
"""Packaging settings.""" from codecs import open from os.path import abspath, dirname, join from subprocess import call from setuptools import Command, find_packages, setup from paci import __version__ this_dir = abspath(dirname(__file__)) with open("README.md") as f: readme = f.read() with open("LICENSE") a...
mit
Python
e42db2036118752df609d13c6487686a07b0b6b3
Remove dependency links for pybloom.
mdshw5/fastqp
setup.py
setup.py
from setuptools import setup setup( name = 'fastqp', provides = 'fastqp', version = "0.1.6", author = 'Matthew Shirley', author_email = 'mdshw5@gmail.com', url = 'http://mattshirley.com', description = 'Simple NGS read quality assessment using Python', l...
from setuptools import setup setup( name = 'fastqp', provides = 'fastqp', version = "0.1.5", author = 'Matthew Shirley', author_email = 'mdshw5@gmail.com', url = 'http://mattshirley.com', description = 'Simple NGS read quality assessment using Python', l...
mit
Python
1f2bedbef71bacf715340289f4973d85a3c1dc97
bump version
uwescience/raco,uwescience/raco,uwescience/raco,uwescience/raco,uwescience/raco
setup.py
setup.py
from setuptools import setup ### Add find_packages function, see # https://wiki.python.org/moin/Distutils/Cookbook/AutoPackageDiscovery import os def is_package(path): return ( os.path.isdir(path) and os.path.isfile(os.path.join(path, '__init__.py')) ) def find_packages(path=".", base="",...
from setuptools import setup ### Add find_packages function, see # https://wiki.python.org/moin/Distutils/Cookbook/AutoPackageDiscovery import os def is_package(path): return ( os.path.isdir(path) and os.path.isfile(os.path.join(path, '__init__.py')) ) def find_packages(path=".", base="",...
bsd-3-clause
Python
186bffb65be24225c0f4a253d85f12b5d8063ed0
bump version in setup
sendwithus/sendwithus_python,mefyl/sendwithus_python
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages with open('README.md') as fp: long_description = fp.read() setup( name='sendwithus', version='1.5.4', author='sendwithus', author_email='us@sendwithus.com', packages=find_packages(), scripts=[], url='https://github.c...
from distutils.core import setup from setuptools import find_packages with open('README.md') as fp: long_description = fp.read() setup( name='sendwithus', version='1.5.3', author='sendwithus', author_email='us@sendwithus.com', packages=find_packages(), scripts=[], url='https://github.c...
apache-2.0
Python
956e5ae05ea628f5e961a0656ede9eab50d41dff
bump version to 1.3.1
parrt/dtreeviz,parrt/dtreeviz
setup.py
setup.py
from setuptools import setup, find_packages # python setup.py sdist upload setup( name='dtreeviz', version='1.3.1', url='https://github.com/parrt/dtreeviz', license='MIT', packages=find_packages(), install_requires=['graphviz>=0.9','pandas','numpy','scikit-learn', 'matp...
from setuptools import setup, find_packages # python setup.py sdist upload setup( name='dtreeviz', version='1.3', url='https://github.com/parrt/dtreeviz', license='MIT', packages=find_packages(), install_requires=['graphviz>=0.9','pandas','numpy','scikit-learn', 'matplo...
mit
Python
677a4f7602eee9719e4adc7c79dcc0570c3221f7
Return early only if no private_key is set for URL
imbo/imboclient-python,imbo/imboclient-python,imbo/imboclient-python
imboclient/url/url.py
imboclient/url/url.py
from imboclient.url import accesstoken try: from urllib.parse import urlencode except ImportError: from urllib import urlencode import json class Url(object): def __init__(self, base_url, public_key, private_key, user=None): self._base_url = base_url self._public_key = public_key ...
from imboclient.url import accesstoken try: from urllib.parse import urlencode except ImportError: from urllib import urlencode import json class Url(object): def __init__(self, base_url, public_key, private_key, user=None): self._base_url = base_url self._public_key = public_key ...
mit
Python
b1e8753330a8a8caa2930d4a6ce36b663c93b117
Fix python version compatibility
jmaupetit/md2pdf
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ md2pdf - setup file """ import md2pdf from setuptools import setup, find_packages def parse_requirements(requirements, ignore=('setuptools',)): """ Read dependencies from requirements file (with version numbers if any) Notes: - this implementati...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ md2pdf - setup file """ import md2pdf from setuptools import setup, find_packages def parse_requirements(requirements, ignore=('setuptools',)): """ Read dependencies from requirements file (with version numbers if any) Notes: - this implementati...
mit
Python
7146519bbeeb779bad6636a4808c9e85adb70609
Update version to v1.1
Kangaroux/hamplify
setup.py
setup.py
from setuptools import setup setup(name="hamplify", version="1.1.0", author="kangaroux", author_email="roux.jesse@gmail.com", packages=["hamplify", "hamplify.parsers", "scripts"], url="https://github.com/Kangaroux/hamplify", license="MIT", entry_points={ 'console_scripts': [ 'hamplify=scripts.h...
from setuptools import setup setup(name="hamplify", version="1.0.1", author="kangaroux", author_email="roux.jesse@gmail.com", packages=["hamplify", "hamplify.parsers", "scripts"], url="https://github.com/Kangaroux/hamplify", license="MIT", entry_points={ 'console_scripts': [ 'hamplify=scripts.h...
mit
Python
c23f4f02e44083c62e63eec09aa368496b30be39
Bump to 0.1.1
virtru-ops/salt-verifier
setup.py
setup.py
from setuptools import setup, find_packages VERSION = '0.1.1' LONG_DESCRIPTION = open('README.rst').read() setup( name='salt-verifier', version=VERSION, description="salt-verifier - The salt verifier", long_description=LONG_DESCRIPTION, keywords='', author='Reuven V. Gonzales', author_ema...
from setuptools import setup, find_packages VERSION = '0.1.0' LONG_DESCRIPTION = open('README.rst').read() setup( name='salt-verifier', version=VERSION, description="salt-verifier - The salt verifier", long_description=LONG_DESCRIPTION, keywords='', author='Reuven V. Gonzales', author_ema...
mit
Python
9bd67ce0d157b4d8195f392f10f8f5571d474e9c
Add django-extensions to requirements
locarise/locarise-drf-oauth2-support,locarise/locarise-drf-oauth2-support
setup.py
setup.py
from setuptools import setup, find_packages setup( name='locarise-drf-oauth2-support', version=__import__('locarise_drf_oauth2_support').__version__, description=__import__('locarise_drf_oauth2_support').__doc__, long_description=open('README.md').read(), author='Charles Vallantin Dulac', autho...
from setuptools import setup, find_packages setup( name='locarise-drf-oauth2-support', version=__import__('locarise_drf_oauth2_support').__version__, description=__import__('locarise_drf_oauth2_support').__doc__, long_description=open('README.md').read(), author='Charles Vallantin Dulac', autho...
mit
Python
91d3dccc88401bbbe1128475890aceb9f511dedd
Add py_modules to setup.py
spatialaudio/schunk
setup.py
setup.py
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = '--doctest-modules --ignore setup.py' self.test_suite = True def ru...
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = '--doctest-modules --ignore setup.py' self.test_suite = True def ru...
mit
Python
8d61b6fae9effb6d9d93616c23bf545c14be30ed
Fix PEP8 issues in setup.py
Cito/DBUtils,Cito/DBUtils
setup.py
setup.py
"""Setup Script for DBUtils""" import warnings try: from setuptools import setup except ImportError: from distutils.core import setup from sys import version_info py_version = version_info[:2] if py_version != (2, 7) and not (3, 5) <= py_version < (4, 0): raise ImportError('Python %d.%d is not supported b...
"""Setup Script for DBUtils""" import warnings try: from setuptools import setup except ImportError: from distutils.core import setup from sys import version_info py_version = version_info[:2] if py_version != (2, 7) and not (3, 5) <= py_version < (4, 0): raise ImportError('Python %d.%d is not supported b...
mit
Python
62ced5f30b055ad8cb137b2613e997804010067b
Add proper python structured setup.py
mailjet/mailjet-apiv3-python
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 import os from setuptools import find_packages, setup HERE = os.path.abspath(os.path.dirname(__file__)) PACKAGE_NAME = 'mailjet_rest' with open("README.md", "r") as fh: long_description = fh.read() # Dynamically calculate the version based on mailjet_rest.VERSION. version = ...
#!/usr/bin/env python # coding=utf-8 import os from setuptools import find_packages, setup HERE = os.path.abspath(os.path.dirname(__file__)) PACKAGE_NAME = 'mailjet_rest' # Dynamically calculate the version based on mailjet_rest.VERSION. version = __import__('mailjet_rest').get_version() setup( name=PACKAGE_NAM...
mit
Python
1484dcfcd5240bb728bf9eb4cb076f8aed0065af
Bump to v0.6.0
gisce/oopgrade
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() dirname = os.path.dirname(__file__) setup( name='oopgrade', version='0.6.0', description='Upgrade and migration tools', long_de...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() dirname = os.path.dirname(__file__) setup( name='oopgrade', version='0.5.0', description='Upgrade and migration tools', long_de...
agpl-3.0
Python
100ca6c9cb534a63de075e7bbf9812edaf174eab
Update minimum version of the redis client library required. (@justinvdm)
vishwaprakashmishra/xmatrix,vishwaprakashmishra/xmatrix,harrissoerja/vumi,harrissoerja/vumi,TouK/vumi,vishwaprakashmishra/xmatrix,harrissoerja/vumi,TouK/vumi,TouK/vumi
setup.py
setup.py
from setuptools import setup, find_packages setup( name="vumi", version="0.5.17a", url='http://github.com/praekelt/vumi', license='BSD', description="Super-scalable messaging engine for the delivery of SMS, " "Star Menu and chat messages to diverse audiences in " "e...
from setuptools import setup, find_packages setup( name="vumi", version="0.5.17a", url='http://github.com/praekelt/vumi', license='BSD', description="Super-scalable messaging engine for the delivery of SMS, " "Star Menu and chat messages to diverse audiences in " "e...
bsd-3-clause
Python
2f1b96454ac2f787325f222597d8871bc16eedb6
update version
jaebradley/nba_data
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'nba_data', packages = find_packages(exclude=['tests*']), install_requires=['requests', 'enum34'], version = '1.9.1', description = 'An NBA Stats Client', author = 'Jae Bradley', author_email = 'jae.b.bradley@gmail.com', url = 'https://github.com...
from setuptools import setup, find_packages setup( name = 'nba_data', packages = find_packages(exclude=['tests*']), install_requires=['requests', 'enum34'], version = '1.8.2', description = 'An NBA Stats Client', author = 'Jae Bradley', author_email = 'jae.b.bradley@gmail.com', url = 'https://github.com...
mit
Python
1c8862832a5b4cbb037ee0e76cf3694bcbf52511
Use the same packages for installing with pip and distutils
dex4er/mamba,eferro/mamba,markng/mamba,jaimegildesagredo/mamba,alejandrodob/mamba,angelsanz/mamba,nestorsalceda/mamba
setup.py
setup.py
from setuptools import setup, find_packages version = '0.1' setup(name='mamba', version=version, description="", long_description=open('README.md').read(), classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='', author...
from setuptools import setup, find_packages version = '0.1' setup(name='mamba', version=version, description="", long_description=open('README.md').read(), classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='', author...
mit
Python
aeee186b665be5126d9585403895c735c3e8eac3
increment version to 1.3.0
srob650/pytvmaze
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '1.3.0', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', license='MIT', classifiers = [ 'Development Status...
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '1.2.9', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', license='MIT', classifiers = [ 'Development Status...
mit
Python
266d268f4463f2ffeb6c0d79d9dd29b409c5510e
Remove progressbar as a requirement
aalto-speech/morfessor,aalto-speech/flatcat
setup.py
setup.py
#!/usr/bin/env python from distribute_setup import use_setuptools use_setuptools() from setuptools import setup import re main_py = open('morfessor.py').read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", main_py)) requires = [ # 'progressbar', ] setup(name='Morfessor', version=metadata['version...
#!/usr/bin/env python from distribute_setup import use_setuptools use_setuptools() from setuptools import setup import re main_py = open('morfessor.py').read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", main_py)) requires = [ 'progressbar', ] setup(name='Morfessor', version=metadata['version'...
bsd-2-clause
Python
f32cf5206ffb18dcf7c97b431648ec916f6324d4
Support Python 3.4 and below about pandas
yanqd0/csft
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- """ Setup script for csft """ from sys import version as VER from setuptools import find_packages, setup import csft REQUIRES = [ 'pandas >= 0.20.3', ] if VER < '3.4': REQUIRES = [ 'pandas >= 0.20.3, < 0.22', 'pathlib >= 1.0.1' ] if VER < '3...
#!/usr/bin/env python # -*- coding:utf-8 -*- """ Setup script for csft """ from sys import version as VER from setuptools import find_packages, setup import csft REQUIRES = [ 'pandas >= 0.20.3', ] if VER < '3.4': REQUIRES.append('pathlib >= 1.0.1') if VER < '3.5': REQUIRES.append('scandir >= 1.5') se...
mit
Python
93ad4ff98f493eb7484fef518aa9894a444caeaf
fix typo
alerta/python-alerta,alerta/python-alerta-client,alerta/python-alerta-client
setup.py
setup.py
#!/usr/bin/env python import os import sys import alerta try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as f: readme = f.read() setup( name="alerta", version=alerta.__version__, description="Alerta unified command-line tool", ...
#!/usr/bin/env python import os import sys import alerta try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as f: readme = f.read() setup( name="alerta", version=alerta.__version__, description="Alerta unified command-line tool", ...
apache-2.0
Python
b83ecfa49834c4b11a41c18cadef7ba19144bf3f
Fix classifier
DylannCordel/django-filer,DylannCordel/django-filer,stefanfoulis/django-filer,divio/django-filer,skirsdeda/django-filer,Flight/django-filer,stefanfoulis/django-filer,stefanfoulis/django-filer,skirsdeda/django-filer,jakob-o/django-filer,divio/django-filer,jakob-o/django-filer,jakob-o/django-filer,skirsdeda/django-filer,...
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import unicode_literals from setuptools import setup, find_packages import os version = __import__('filer').__version__ def read(fname): # read the contents of a text file return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="django-fil...
# -*- coding: utf-8 -*- from __future__ import unicode_literals from setuptools import setup, find_packages import os version = __import__('filer').__version__ def read(fname): # read the contents of a text file return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="django-fil...
bsd-3-clause
Python
a7f69f51853f03d97f9354ea592c0bb26410200e
Update Python test dependencies
kottenator/django-compressor-toolkit,kottenator/django-compressor-toolkit,kottenator/django-compressor-toolkit
setup.py
setup.py
from setuptools import setup, find_packages import compressor_toolkit setup( name='django-compressor-toolkit', version=compressor_toolkit.__version__, description='Set of add-ons for django-compressor', long_description=( 'Simply enable SCSS and ES6 in your Django project. ' 'Read mor...
from setuptools import setup, find_packages import compressor_toolkit setup( name='django-compressor-toolkit', version=compressor_toolkit.__version__, description='Set of add-ons for django-compressor', long_description=( 'Simply enable SCSS and ES6 in your Django project. ' 'Read mor...
mit
Python
bc3845a5e126d29ae08bb230ed7843c57ab9f588
Bump to 0.1.3
shaunduncan/helga-jira
setup.py
setup.py
import functools import pkg_resources from setuptools import setup, find_packages from pip.req import parse_requirements as parse_reqs # Compatibility with older versions of pip pip_dist = pkg_resources.get_distribution('pip') pip_version = tuple(map(int, pip_dist.version.split('.'))) # Use a base partial that wil...
import functools import pkg_resources from setuptools import setup, find_packages from pip.req import parse_requirements as parse_reqs # Compatibility with older versions of pip pip_dist = pkg_resources.get_distribution('pip') pip_version = tuple(map(int, pip_dist.version.split('.'))) # Use a base partial that wil...
mit
Python
dce2ca842bea322eff5b2476ea84d3a2a7dea2ff
Add redis as a test requirement
graingert/gutter-django,disqus/gutter-django,disqus/gutter-django,graingert/gutter-django,disqus/gutter-django,disqus/gutter-django,graingert/gutter-django
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import find_packages try: from notsetuptools import setup except ImportError: from setuptools import setup try: import multiprocessing except ImportError: pass tests_require = ['nose', 'unittest2', 'describe', 'exam', 'redis'] dependency_links = [ ...
#!/usr/bin/env python import sys from setuptools import find_packages try: from notsetuptools import setup except ImportError: from setuptools import setup try: import multiprocessing except ImportError: pass tests_require = ['nose', 'unittest2', 'describe', 'exam'] dependency_links = [ 'https...
apache-2.0
Python
890f0fca117e88a2c5e53d17b180d42cd53e6f2e
Fix url in setup.py
tk0miya/diff-highlight
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2...
apache-2.0
Python
1782d6c7a6c3a054701c803f6697a8ad02bb4854
bump version
ImaginaryLandscape/django-nocaptcha-recaptcha,ImaginaryLandscape/django-nocaptcha-recaptcha
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-nocaptcha-recaptcha', version='0.0.4', description='Django nocaptcha recaptcha form field/widget app.', long_description=open('README.md', 'r').read(), author='Imaginary Landscape', author_email='jjasinski@imgescape.com', keywo...
from setuptools import setup, find_packages setup( name='django-nocaptcha-recaptcha', version='0.0.3', description='Django nocaptcha recaptcha form field/widget app.', long_description=open('README.md', 'r').read(), author='Imaginary Landscape', author_email='jjasinski@imgescape.com', keywo...
bsd-3-clause
Python
0dea86a26e96237c236201b5cfcd7d4de953c279
bump to v 1.0.104
stkyle/libtaxii,TAXIIProject/libtaxii,Intelworks/libtaxii
setup.py
setup.py
#!/usr/bin/env python #Copyright (C) 2013 - The MITRE Corporation #For license information, see the LICENSE.txt file import os import sys from setuptools import setup, find_packages if sys.version_info < (2, 6): raise Exception('libtaxii requires Python 2.6 or higher.') install_requires = ['lxml>=2.3.2', 'python...
#!/usr/bin/env python #Copyright (C) 2013 - The MITRE Corporation #For license information, see the LICENSE.txt file import os import sys from setuptools import setup, find_packages if sys.version_info < (2, 6): raise Exception('libtaxii requires Python 2.6 or higher.') install_requires = ['lxml>=2.3.2', 'python...
bsd-3-clause
Python
c76c0246ddf3b45d32a572f6426e8cf3bd0683d5
Move version to __version__
di/disposable-email-domains,di/disposable-email-domains
setup.py
setup.py
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) __version__ = '0.0.4' with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='disposable-email-domains', version=__version__, descrip...
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='disposable-email-domains', version='0.0.4', description='A set of disposable e...
mit
Python
a9e89ee7b13323997a285226db4967659468c028
Exclude docs when finding packages in setup.py
numberoverzero/bloop,numberoverzero/bloop
setup.py
setup.py
""" Setup file """ import os from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, "README.markdown")) as f: README = f.read() def get_version(): with open("bloop/__init__.py") as f: for line in f: if line.startswith("__...
""" Setup file """ import os from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, "README.markdown")) as f: README = f.read() def get_version(): with open("bloop/__init__.py") as f: for line in f: if line.startswith("__...
mit
Python
8a4652eb595f7663bef437a88038465c34d5ee05
bump version
HubSpot/hapipy,CBitLabs/hapipy,CurataEng/hapipy,jonathan-s/happy,ack8006/hapipy
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='hapipy', version='2.1.1', description='Python HubSpot Api Wrapper', author='Adrian Mott', author_email='adrianmott@gmail.com', url='', packages=['hapi'], install_requires=[ 'nose==1.1.2', 'unittest2==0.5...
#!/usr/bin/env python from distutils.core import setup setup( name='hapipy', version='2.1.0', description='Python HubSpot Api Wrapper', author='Adrian Mott', author_email='adrianmott@gmail.com', url='', packages=['hapi'], install_requires=[ 'nose==1.1.2', 'unittest2==0.5...
apache-2.0
Python
ddf3d92f614971a0d5b1c64a7017cd1a590abea7
Fix broken setup, bump version
jdmcbr/Shapely,abali96/Shapely,abali96/Shapely,mindw/shapely,mouadino/Shapely,mindw/shapely,mouadino/Shapely,jdmcbr/Shapely
setup.py
setup.py
from setuptools import setup, Extension # Get text from README.txt readme_text = file('README.txt', 'rb').read() setup(name = 'Shapely', version = '1.0b2', description = 'Geospatial geometries, predicates, and operations', license = 'BSD', keywords = 'geometry topo...
from setuptools import setup, Extension # Get text from README.txt readme_text = file('README.txt', 'rb').read() setup(name = 'Shapely', version = '1.0b1', description = 'Geospatial geometries, predicates, and operations', license = 'BSD', keywords = 'geometry topo...
bsd-3-clause
Python
d3fcab008cab0cb186d49218c4fae3805f93c938
Bump Version to 2.0.9-dev
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
bsd-2-clause
Python
3ba96bb0c6b3e68018bea9d96841bf154e91337d
Add github url to setup.py
Phxntxm/osuapi,khazhyk/osuapi
setup.py
setup.py
from setuptools import setup, find_packages import os from osuapi import __version__ as version, __title__ as name, __author__ as author, __license__ as license def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name=name, version=version, author=author, ur...
from setuptools import setup, find_packages import os from osuapi import __version__ as version, __title__ as name, __author__ as author, __license__ as license def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name=name, version=version, author=author, li...
mit
Python
5306d5cdbeaa6e01ebc3de765ae9684ae5d69dbb
Add migrations to package. Bump version.
skolsuper/pybbm_private_messages,skolsuper/pybbm_private_messages,skolsuper/pybbm_private_messages
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='pybbm-private-messages', version='0...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='pybbm-private-messages', version='0...
mit
Python
6e7309077168f2ab9d6625574929395e1836d0e3
Bump version
mph-/lcapy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() setup(name='lcapy', version='0.46.0', author='Michael Hayes', author_email='michael.hayes@canterbury.ac.nz', description='Symbolic linear circuit analysis', ...
#!/usr/bin/env python from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() setup(name='lcapy', version='0.45.0', author='Michael Hayes', author_email='michael.hayes@canterbury.ac.nz', description='Symbolic linear circuit analysis', ...
lgpl-2.1
Python
4272094e1455ea113dc1770c97271ba7ac4c013e
Fix setup to include requirements file
TensorLab/tensorfx,TensorLab/tensorfx
setup.py
setup.py
#!/usr/bin/python # Copyright 2016 TensorLab. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicab...
#!/usr/bin/python # Copyright 2016 TensorLab. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicab...
apache-2.0
Python
398ee3e427f6b2fe194a52c95ef03b6546a54218
fix issue #44
florent1933/django-materializecss-form,florent1933/django-materializecss-form
setup.py
setup.py
import codecs import os import re from setuptools import find_packages, setup ################################################################### NAME = "django-materializecss-form" PACKAGES = find_packages() META_PATH = os.path.join("materializecssform", "meta.py") KEYWORDS = ["materialize", "django", "css", "mater...
import codecs import os import re from setuptools import setup, find_packages ################################################################### NAME = "django-materializecss-form" PACKAGES = find_packages(where="") META_PATH = os.path.join("materializecssform", "meta.py") KEYWORDS = ["materialize", "django", "css"...
mit
Python
20c613c4ac2414aa5d2161f4a0ee4b19e40ebf7a
update setup.py to use setuptools to make it pip friendly, bump version
whitews/FlowUtils,whitews/FlowUtils
setup.py
setup.py
from setuptools import setup, Extension try: from numpy import get_include except ImportError: raise RuntimeError( "NumPy is required to build the C extension in FlowUtils") logicle_extension = Extension( 'flowutils.logicle_c', sources=[ 'flowutils/logicle_c_ext/_logicle.c', 'f...
from distutils.core import setup, Extension from numpy import get_include logicle_extension = Extension( 'flowutils.logicle_c', sources=[ 'flowutils/logicle_c_ext/_logicle.c', 'flowutils/logicle_c_ext/logicle.c' ], include_dirs=[get_include()] ) setup( name='FlowUtils', version...
bsd-3-clause
Python
bc606c910db1460812f4bfabc144c8a0e9c10d78
Update version number to 0.6.1
kata-csc/ckanext-oaipmh,kata-csc/ckanext-oaipmh,kata-csc/ckanext-oaipmh
setup.py
setup.py
from setuptools import setup, find_packages version = '0.6.1' setup( name='ckanext-oaipmh', version=version, description="OAI-PMH server and harvester for CKAN", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywor...
from setuptools import setup, find_packages version = '0.6' setup( name='ckanext-oaipmh', version=version, description="OAI-PMH server and harvester for CKAN", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords...
agpl-3.0
Python
367d1c29c213a123974ca97cf4705f08a76a3bda
Add patool requirement.
tsroten/pynlpir
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from io import open import os import sys from setuptools import setup import pynlpir if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() def open_file(filename): """Open and read the file *filename*.""" with open(filename,...
#!/usr/bin/env python # -*- coding: utf-8 -*- from io import open import os import sys from setuptools import setup import pynlpir if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() def open_file(filename): """Open and read the file *filename*.""" with open(filename,...
mit
Python
3002ab90450feadf0fc3de927facd4ebc6e7d398
Bump version.
EmilStenstrom/conllu
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '2.3' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__), ...
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '2.2.2' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__)...
mit
Python
b2545d509fd345320cd45a85881a5eda4611bd9b
Test with ‘setup.py nosetests’.
ajdavis/GreenletProfiler,ajdavis/GreenletProfiler,ajdavis/GreenletProfiler
setup.py
setup.py
from setuptools import setup import sys classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: Apache Software License Development Status :: 1 - Planning Natural Language :: English Programming Language :: Python :: 2 Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Pr...
from setuptools import setup import sys classifiers = """\ Intended Audience :: Developers License :: OSI Approved :: Apache Software License Development Status :: 1 - Planning Natural Language :: English Programming Language :: Python :: 2 Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Pr...
mit
Python
31dbea4ad06675257855f5e6acab94b8c7f6b584
Update version to 2.1.fb48
mikenawrocki/rtslib-fb,cvubrugier/rtslib-fb,agrover/rtslib-fb,mikenawrocki/rtslib-fb
setup.py
setup.py
#! /usr/bin/env python ''' This file is part of RTSLib. Copyright (c) 2011-2013 by Datera, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless...
#! /usr/bin/env python ''' This file is part of RTSLib. Copyright (c) 2011-2013 by Datera, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless...
apache-2.0
Python
7b4ce8ca42ad1d3360350c598bbc6c222a932215
Add mock dependency.
amorphic/braubuddy,amorphic/braubuddy,amorphic/braubuddy
setup.py
setup.py
from setuptools import setup, find_packages setup( name='braubuddy', version='0.2.0', author='James Stewart', author_email='jstewart101@gmail.com', description='An extensile thermostat framework', long_description=open('README.rst').read(), license='LICENSE.txt', packages=find_packages(...
from setuptools import setup, find_packages setup( name='braubuddy', version='0.2.0', author='James Stewart', author_email='jstewart101@gmail.com', description='An extensile thermostat framework', long_description=open('README.rst').read(), license='LICENSE.txt', packages=find_packages(...
bsd-3-clause
Python
0961f4ef7cda113fbae43f5350773519485c4793
Remove support for numpy 1.21.0 and 1.21.1 due to typing bug
dwavesystems/dimod,dwavesystems/dimod
setup.py
setup.py
# Copyright 2018 D-Wave Systems Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
# Copyright 2018 D-Wave Systems Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
apache-2.0
Python
9e77bd6f8fd1be4c9759a2fd067e3b26d7e3a08f
Improve version checking
stoq/stoqdrivers,Vauxoo/stoqdrivers,stoq/stoqdrivers,vauxoo-dev/stoqdrivers
setup.py
setup.py
#!/usr/bin/env python # Setup file for StoqDrivers # Code by Async Open Source <http://www.async.com.br> # # Dependency checking # dependencies = [('ZopeInterface', 'zope.interface', '3.0', 'http://www.zope.org/Products/ZopeInterface', None), ('kiwi', 'kiwi', (1, 9...
#!/usr/bin/env python # Setup file for StoqDrivers # Code by Async Open Source <http://www.async.com.br> # # Dependency checking # dependencies = [('zope.interface', '3.0', None), ('kiwi', (1, 9, 6), lambda x: x.kiwi_version), ('serial', '2.1', None)] for package_name, version, attr...
lgpl-2.1
Python
25d0112fb665353a6d12c21efd512b105f466c4a
Bump version
nanonyme/simplecpreprocessor
setup.py
setup.py
from setuptools import setup setup( name = "simplecpreprocessor", version = "0.0.4", author = "Seppo Yli-Olli", author_email = "seppo.yli-olli@iki.fi", description = "Simple C preprocessor for usage eg before CFFI", keywords = "python c preprocessor", license = "BSD", url = "http://pack...
from setuptools import setup setup( name = "simplecpreprocessor", version = "0.0.3", author = "Seppo Yli-Olli", author_email = "seppo.yli-olli@iki.fi", description = "Simple C preprocessor for usage eg before CFFI", keywords = "python c preprocessor", license = "BSD", url = "http://pack...
mit
Python
580bd8c2d478f67b6bdad248457f4e2dde102084
Correct extras_require
openego/ego.io,openego/ego.io
setup.py
setup.py
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='ego.io', author='openego development group', author_email='oemof@rl-institut.de', description='ego input/output repository', version='0.0.1rc5', url='https://github.com/openego/ego.io', p...
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='ego.io', author='openego development group', author_email='oemof@rl-institut.de', description='ego input/output repository', version='0.0.1rc4', url='https://github.com/openego/ego.io', p...
agpl-3.0
Python
a65050878609f5525935b663d414e3315036be6f
bump up version number to 0.4.0
kacchan822/django-chatwork
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand 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....
#!/usr/bin/env python import os import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand 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....
mit
Python
7aa102317816f3830afcbada05c7771aa36ea5f6
bump to 0.4.5
opencivicdata/python-opencivicdata-django,opencivicdata/python-opencivicdata-django,opencivicdata/python-opencivicdata-django,mileswwatkins/python-opencivicdata-django,influence-usa/python-opencivicdata-django,influence-usa/python-opencivicdata-django,rshorey/python-opencivicdata-django,mileswwatkins/python-opencivicda...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="opencivicdata", version='0.4.5', py_modules=['opencivicdata'], author="James Turk", author_email='jturk@sunlightfoundation.com', license="BSD", description="python opencivicdata library", long_descri...
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="opencivicdata", version='0.4.4', py_modules=['opencivicdata'], author="James Turk", author_email='jturk@sunlightfoundation.com', license="BSD", description="python opencivicdata library", long_descri...
bsd-3-clause
Python
74ff5936068b79a7cefe3c17ae5d944fac7fb47c
bump version to 1.9.9
singer-io/tap-mysql
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='tap-mysql', version='1.9.9', description='Singer.io tap for extracting data from MySQL', author='Stitch', url='https://singer.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_mysql'], ...
#!/usr/bin/env python from setuptools import setup setup(name='tap-mysql', version='1.9.8', description='Singer.io tap for extracting data from MySQL', author='Stitch', url='https://singer.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_mysql'], ...
agpl-3.0
Python
b051bceeb9980711fc6cd5f6375212855d2aece5
Bump version.
osuosl/django_object_permissions,osuosl/django_object_permissions,alanjds/django_object_permissions,alanjds/django_object_permissions
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup long_desc = open('README').read() setup(name='django-object-permissions', version="1.1", description='A method for adding object-level or row-level permissions', long_description=long_desc, author='Peter Krenesky', author_email='krenesk...
#!/usr/bin/env python from setuptools import setup long_desc = open('README').read() setup(name='django-object-permissions', version="1.0", description='A method for adding object-level or row-level permissions', long_description=long_desc, author='Peter Krenesky', author_email='krenesk...
mit
Python
274d20eba4ed69c48565146f1026a0b48b5dad91
Update version to 0.0.4
snaury/kitsu.http,snaury/kitsu.http
setup.py
setup.py
import os from setuptools import setup def read(name): return open(os.path.join(os.path.dirname(__file__), name), 'r').read() setup( name="kitsu.http", version="0.0.4", description="Low-level HTTP library for Python", long_description=read('README'), author="Alexey Borzenkov", author_email...
import os from setuptools import setup def read(name): return open(os.path.join(os.path.dirname(__file__), name), 'r').read() setup( name="kitsu.http", version="0.0.3", description="Low-level HTTP library for Python", long_description=read('README'), author="Alexey Borzenkov", author_email...
mit
Python
b9cf3e081c54fc00ed318c30b7099a2a9e690915
Bump version for the next release
samv/normalize,hearsaycorp/normalize,tomo-otsuka/normalize
setup.py
setup.py
from setuptools import find_packages, setup setup( author='Hearsay Labs, Inc', author_email='svilain@hearsaylabs.com', description="Declarative Python meta-model system and visitor utilities", license='MIT', long_description=""" This module lets you declare classes and object properties, and then ...
from setuptools import find_packages, setup setup( author='Hearsay Labs, Inc', author_email='svilain@hearsaylabs.com', description="Declarative Python meta-model system and visitor utilities", license='MIT', long_description=""" This module lets you declare classes and object properties, and then ...
mit
Python
7c9c550504ded75705ea018f56cf45ae9a0cbfc2
set long_descripton
nakagami/nmongo
setup.py
setup.py
from distutils.core import setup classifiers = [ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Database', ] setup( name="nmongo", vers...
from distutils.core import setup classifiers = [ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Database', ] setup( name="nmongo", vers...
mit
Python
ab52850381b85567dcd5ff20408e588986bbbf57
modify setup.py; adaptation for python 3
kmn/coincheck
setup.py
setup.py
#!/usr/bin/env python import os import re import sys from codecs import open from setuptools import find_packages, setup from distutils.core import setup try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist ...
#!/usr/bin/env python import os import re import sys from codecs import open from setuptools import find_packages, setup from distutils.core import setup try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist ...
mit
Python
de8979147b486ebe49eb6e9aa2c29d80eaa9919f
Bump version
jasonkeene/python-ubersmith,jasonkeene/python-ubersmith,hivelocity/python-ubersmith,hivelocity/python-ubersmith
setup.py
setup.py
from setuptools import setup, find_packages setup( name='ubersmith', version='0.3.2', author='Jason Keene', author_email='jasonkeene@gmail.com', description='Client library for the Ubersmith API 2.0', long_description=open('README.rst').read(), packages=find_packages(exclude=['tests']), ...
from setuptools import setup, find_packages setup( name='ubersmith', version='0.3.1', author='Jason Keene', author_email='jasonkeene@gmail.com', description='Client library for the Ubersmith API 2.0', long_description=open('README.rst').read(), packages=find_packages(exclude=['tests']), ...
mit
Python
e0c004a52ee19b7319a6d5ce9fc14fe6417871f1
Bump mypy from 0.800 to 0.812 (#205)
sloria/environs,sloria/environs
setup.py
setup.py
import re from setuptools import setup INSTALL_REQUIRES = ["marshmallow>=2.7.0", "python-dotenv"] DJANGO_REQUIRES = ["dj-database-url", "dj-email-url", "django-cache-url"] EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1...
import re from setuptools import setup INSTALL_REQUIRES = ["marshmallow>=2.7.0", "python-dotenv"] DJANGO_REQUIRES = ["dj-database-url", "dj-email-url", "django-cache-url"] EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1...
mit
Python
2c41da170bd09a15ae189298f85a7e92c3e77de8
Bump version to 0.6.6
yunojuno/django-perimeter,yunojuno/django-perimeter
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-perimeter', version='0.6.6', packages=['perimeter'...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-perimeter', version='0.6.5', packages=['perimeter'...
mit
Python
49fe5e040b518f94c7a1707f9a73b3d28e4e34d8
remove support for older versions
slhck/ffmpeg-normalize,slhck/audio-normalize
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # read version string with open(path.join(here, 'ffmpeg_normalize', '_version.py')) as version_file: version = eval(vers...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # read version string with open(path.join(here, 'ffmpeg_normalize', '_version.py')) as version_file: version = eval(vers...
mit
Python
f79c6411f0c6cc98c40b5fad26f57e2ecbbf4c13
add url in setup.py
elapouya/PyStrExt
setup.py
setup.py
from setuptools import setup setup(name='pystrext', version='0.1.2', description='Python string extension', classifiers=[ "Intended Audience :: Developers", "Development Status :: 4 - Beta", "Programming Language :: Python :: 2", "Programming Language :: Python...
from setuptools import setup setup(name='pystrext', version='0.1.1', description='Python string extension', classifiers=[ "Intended Audience :: Developers", "Development Status :: 4 - Beta", "Programming Language :: Python :: 2", "Programming Language :: Python...
lgpl-2.1
Python
62eee213130905bf895da42bd1611acd006b6030
Add dependencies for statistics generation to setup.py
janpascal/denyhosts_sync,sergey-dryabzhinsky/denyhosts_sync,sergey-dryabzhinsky/denyhosts_sync,janpascal/denyhosts_sync,sergey-dryabzhinsky/denyhosts_sync,janpascal/denyhosts_sync
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from glob import glob from dh_syncserver import version etcpath = "/etc" setup(name='dh_syncserver', version=version, description='DenyHosts Synchronisation Server', author='Jan-Pascal van Best', author_email='janpascal@vanbest.org', ur...
#!/usr/bin/env python from setuptools import setup from glob import glob from dh_syncserver import version etcpath = "/etc" setup(name='dh_syncserver', version=version, description='DenyHosts Synchronisation Server', author='Jan-Pascal van Best', author_email='janpascal@vanbest.org', ur...
agpl-3.0
Python
4d5d40c68c6771d8ef90513a5edb177e70605de0
Increment version.
chevah/pocket-lint,chevah/pocket-lint
setup.py
setup.py
from distutils.core import setup setup( name="pocketlint", description="Pocket-lint a composite linter and style checker.", version="0.5.4", maintainer="Curtis C. Hovey", maintainer_email="sinzui.is@verizon.net", url="https://launchpad.net/pocket-lint", packages=[ 'pocketlint', 'poc...
from distutils.core import setup setup( name="pocketlint", description="Pocket-lint a composite linter and style checker.", version="0.5.3", maintainer="Curtis C. Hovey", maintainer_email="sinzui.is@verizon.net", url="https://launchpad.net/pocket-lint", packages=[ 'pocketlint', 'poc...
mit
Python
56c8a9d6aa4d3310aad09bebcc3327a613215f43
bump up version to 0.2.0
developmentseed/sentinel-s3
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path __version__ = '0.2.0' here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() # get the depende...
from setuptools import setup, find_packages from codecs import open from os import path __version__ = '0.1.0' here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() # get the depende...
cc0-1.0
Python
f41d87856400ecd35c8f29e42ed4dec0f571ae41
Bump the version number for the next release
markwal/OctoPrint-PolarCloud,markwal/OctoPrint-PolarCloud
setup.py
setup.py
# coding=utf-8 ######################################################################################################################## plugin_identifier = "polarcloud" plugin_package = "octoprint_polarcloud" plugin_name = "OctoPrint-PolarCloud" plugin_version = "0.2.7Beta" plugin_description = """Connects OctoPrint t...
# coding=utf-8 ######################################################################################################################## plugin_identifier = "polarcloud" plugin_package = "octoprint_polarcloud" plugin_name = "OctoPrint-PolarCloud" plugin_version = "0.2.6Beta" plugin_description = """Connects OctoPrint t...
agpl-3.0
Python
dc31ac9d75fce72f9a980170cebbf18ad76ccb58
bump tox from 3.20.0 to 3.20.1
postlund/pyatv,postlund/pyatv
setup.py
setup.py
#!/usr/bin/env python3 # encoding: utf-8 from pathlib import Path from os.path import join, dirname from setuptools import setup, find_packages # Read in version without importing pyatv # http://stackoverflow.com/questions/6357361/alternative-to-execfile-in-python-3 exec(compile(open("pyatv/const.py", "rb").read(), "...
#!/usr/bin/env python3 # encoding: utf-8 from pathlib import Path from os.path import join, dirname from setuptools import setup, find_packages # Read in version without importing pyatv # http://stackoverflow.com/questions/6357361/alternative-to-execfile-in-python-3 exec(compile(open("pyatv/const.py", "rb").read(), "...
mit
Python