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
ee2c0bd3c41183e32e6c36cfb8d5a0ffb4a2df60
Bump version number.
wharris/dougrain
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2013 Will Harris # See the file license.txt for copying permission. from distutils.core import setup VERSION = "0.5" base_url = "http://github.com/wharris/dougrain/" setup( name='dougrain', version=VERSION, description='HAL JSON parser and generator', author='Wi...
#!/usr/bin/env python # Copyright (c) 2013 Will Harris # See the file license.txt for copying permission. from distutils.core import setup VERSION = "0.4" base_url = "http://github.com/wharris/dougrain/" setup( name='dougrain', version=VERSION, description='HAL JSON parser and generator', author='Wi...
mit
Python
fc46ee05a40f18380bc9fe75247bcbb981d66e1c
use pybitcoin 0.9.9
blockstack/blockstack-registrar,blockstack/blockstack-registrar
setup.py
setup.py
#!/usr/bin/python from setuptools import setup, find_packages # to set __version__ exec(open('blockstack_storage_drivers/version.py').read()) setup( name='blockstack-storage-drivers', version=__version__, url='https://github.com/blockstack/blockstack-storage-drivers', license='MIT', author='Block...
#!/usr/bin/python from setuptools import setup, find_packages # to set __version__ exec(open('blockstack_storage_drivers/version.py').read()) setup( name='blockstack-storage-drivers', version=__version__, url='https://github.com/blockstack/blockstack-storage-drivers', license='MIT', author='Block...
mit
Python
b08c8cb0454c0dd6375f7204f3d6999b3806a7b7
change package description to "Jon's Python modules"
jribbens/jonpy,jribbens/jonpy
setup.py
setup.py
#!/usr/bin/env python # $Id$ from distutils.core import setup setup(name="jonpy", version="0.04", description="Jon's Python modules", author="Jon Ribbens", author_email="jon+jonpy@unequivocal.co.uk", url="http://jonpy.sourceforge.net/", packages=['jon', 'jon.wt'] )
#!/usr/bin/env python # $Id$ from distutils.core import setup setup(name="jonpy", version="0.04", description="Python Web Utilities", author="Jon Ribbens", author_email="jon+jonpy@unequivocal.co.uk", url="http://jonpy.sourceforge.net/", packages=['jon', 'jon.wt'] )
mit
Python
4baff0c3418eb5c3324e356d4fdecd15e254055d
switch from distutils to more modern setuptools, use setup_requires
hips/autograd,HIPS/autograd,HIPS/autograd,barak/autograd,hips/autograd,kcarnold/autograd
setup.py
setup.py
from __future__ import absolute_import from setuptools import setup from setuptools.extension import Extension from setuptools.command.build_ext import build_ext as _build_ext from distutils.errors import CompileError from warnings import warn try: from Cython.Distutils import build_ext as _build_ext except Import...
from __future__ import absolute_import from distutils.core import setup from distutils.extension import Extension from distutils.command.build_ext import build_ext as _build_ext from distutils.errors import CompileError from warnings import warn try: from Cython.Distutils import build_ext as _build_ext except Impo...
mit
Python
27691cdb95e68e2d691720a8d362aee57f101fab
Bump to version 0.2.0
jstutters/Plumbium
setup.py
setup.py
from setuptools import setup setup( name='plumbium', version='0.2.0', packages=['plumbium'], zip_safe=True, author='Jon Stutters', author_email='j.stutters@ucl.ac.uk', description='Record the inputs and outputs of scripts', url='https://github.com/jstutters/plumbium', license='MIT',...
from setuptools import setup setup( name='plumbium', version='0.1.0', packages=['plumbium'], zip_safe=True, author='Jon Stutters', author_email='j.stutters@ucl.ac.uk', description='Record the inputs and outputs of scripts', url='https://github.com/jstutters/plumbium', license='MIT',...
mit
Python
e0c5f47b3808f0cef3adda9bbe445a0c60b7a5be
bump version to 0.1.0
Pixelapse/pyglass
setup.py
setup.py
#!/usr/bin/env python # System modules import sys import os import shlex import subprocess import shutil import platform from os.path import join # Library modules try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup from distutils.dir_util import copy_tree from ...
#!/usr/bin/env python # System modules import sys import os import shlex import subprocess import shutil import platform from os.path import join # Library modules try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup from distutils.dir_util import copy_tree from ...
mit
Python
e7afdb05a8bafd0661fd3510c786f6e8c37df6ed
Bump version to 0.3.1
sirex/datapackage-py,okfn/datapackage-model-py,sirex/datapackage-py,okfn/datapackage-py,datapackages/datapackage-py,okfn/datapackage-py,okfn/datapackage-model-py,datapackages/datapackage-py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import io from setuptools import setup, find_packages description = "A Python library to validate Data Package datapackage.json files." with io.open('README.md') ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import io from setuptools import setup, find_packages description = "A Python library to validate Data Package datapackage.json files." with io.open('README.md') ...
mit
Python
de5ed8bec3b31b6d19ec6e22fe1fcc99f51d7b2e
Bump version 1.6.8
EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi
setup.py
setup.py
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "1.6.8" install_requirements = [] with open(_requirements) as f: ...
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "1.6.7" install_requirements = [] with open(_requirements) as f: ...
apache-2.0
Python
71df49ab1a818a47b2aa63c5866855ba923ad36a
Upgrade requirement
rescale/django-money,tsouvarev/django-money,AlexRiina/django-money,tsouvarev/django-money,iXioN/django-money,recklessromeo/django-money,iXioN/django-money,recklessromeo/django-money
setup.py
setup.py
from distutils.core import setup # Load in babel support, if available. try: from babel.messages import frontend as babel cmdclass = {"compile_catalog": babel.compile_catalog, "extract_messages": babel.extract_messages, "init_catalog": babel.init_catalog, "updat...
from distutils.core import setup # Load in babel support, if available. try: from babel.messages import frontend as babel cmdclass = {"compile_catalog": babel.compile_catalog, "extract_messages": babel.extract_messages, "init_catalog": babel.init_catalog, "updat...
bsd-3-clause
Python
3b0f8e2445a0364e89ffde2bd164134fdc465ecb
Use newest pygame
aldryn/aldryn-client,aldryn/aldryn-client
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from cmscloud_client import __version__ INSTALL_REQUIRES = [ 'GitPython==0.3.2.RC1', 'requests', 'docopt', 'pyyaml', 'watchdog', ] DEPENDENCY_LINKS = [ 'https://github.com/gorakhargosh/watchdog/archive/v0...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from cmscloud_client import __version__ INSTALL_REQUIRES = [ 'GitPython==0.3.2.RC1', 'requests', 'docopt', 'pyyaml', 'watchdog', ] DEPENDENCY_LINKS = [ 'https://github.com/gorakhargosh/watchdog/archive/v0...
bsd-3-clause
Python
4a465d9c5d6b44ec905234c3d6580f6f98630f32
Build work
pombredanne/dpath-python,lexhung/dpath-python,akesterson/dpath-python,calebcase/dpath-python,benthomasson/dpath-python
setup.py
setup.py
from distutils.core import setup import version import os import sys if __name__ == "__main__": setup( name="dpath", version=version.VERSION, description="Filesystem-like pathing and searching for dictionaries", long_description="dpath", author=("Caleb Case, " ...
from distutils.core import setup import version import os import sys if __name__ == "__main__": setup( name="dpath", version=version.VERSION, description="Filesystem-like pathing and searching for dictionaries", long_description="librelman", author=("Caleb Case, " ...
mit
Python
0076c3d234e076f9aed1a486887f9139b4bf5dd5
Update the version
xethorn/sukimu
setup.py
setup.py
from setuptools import find_packages from setuptools import setup setup( name='Schema', version='0.0.1', url='https://github.com/xethorn/schema', author='Michael Ortali', author_email='hello@xethorn.net', description=( 'Standardized way to perform CRUD operations with Field validation'...
from setuptools import find_packages from setuptools import setup setup( name='Schema', version=version, url='https://github.com/xethorn/schema', author='Michael Ortali', author_email='hello@xethorn.net', description=( 'Standardized way to perform CRUD operations with Field validation'...
mit
Python
315c88ff3996e2effc0d38be40d854c8b44d563c
bump version to 2.0.1
Yelp/pyramid_zipkin
setup.py
setup.py
#!/usr/bin/python from setuptools import find_packages from setuptools import setup __version__ = '2.0.1' setup( name='pyramid_zipkin', version=__version__, provides=["pyramid_zipkin"], author='Yelp, Inc.', author_email='opensource+pyramid-zipkin@yelp.com', license='Copyright Yelp 2018', u...
#!/usr/bin/python from setuptools import find_packages from setuptools import setup __version__ = '2.0.0' setup( name='pyramid_zipkin', version=__version__, provides=["pyramid_zipkin"], author='Yelp, Inc.', author_email='opensource+pyramid-zipkin@yelp.com', license='Copyright Yelp 2018', u...
apache-2.0
Python
ec5545c81369497304382a132b1143ac21a18b01
Drop `mock` and `nose` as package dependencies
color/clrsvsim
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup(name = "clrsvsim", version = "0.0.2", description = "Color Genomics Structural Variant Simulator", author = "Color Genomics", author_email = "dev@color.com", url = "https://github.com/Col...
try: from setuptools import setup except ImportError: from distutils.core import setup setup(name = "clrsvsim", version = "0.0.2", description = "Color Genomics Structural Variant Simulator", author = "Color Genomics", author_email = "dev@color.com", url = "https://github.com/Col...
apache-2.0
Python
00319e51268272562eb807f417377f56f0ff0397
fix setup.py
sophilabs/django-solr
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-solr', version='0.0.2', description='Django-Solr search', author='Sophilabs', author_email='contact@sophilabs.com', url='https://github.com/sophilabs/django-solr', download_url='https://github.com/sophilabs/django-solr/download...
from setuptools import setup, find_packages setup( name='django-solr', version='0.0.2', description='Django-Solr search', author='Sophilabs', author_email='contact@sophilabs.com', url='https://github.com/sophilabs/django-solr', download_url='https://github.com/sophilabs/django-solr/download...
bsd-3-clause
Python
4301049ac2ad9d0c79b5f50fea2055ec2d567019
Move to Development Status :: 4 - Beta
vshymanskyy/blynk-library-python
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name = "blynk-library-python", version = "0.1.0", #blynk.lib.__version__ description = "Blynk library", platforms = "any", url = "http://www.blynk.cc", license = "MIT", author = "Volodymyr Shyman...
#!/usr/bin/env python from setuptools import setup setup( name = "blynk-library-python", version = "0.1.0", #blynk.lib.__version__ description = "Blynk library", platforms = "any", url = "http://www.blynk.cc", license = "MIT", author = "Volodymyr Shyman...
mit
Python
49d997f060b3b3432c3475fcab20a98b71f6e9cc
fix backport
google/uv-metrics
setup.py
setup.py
from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() def with_versioneer(f, default=None): """Attempts to execute the supplied single-arg function by passing it versioneer if available; else, returns the default. """ try: import versioneer return f(versioneer) ...
from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() def with_versioneer(f, default=None): """Attempts to execute the supplied single-arg function by passing it versioneer if available; else, returns the default. """ try: import versioneer return f(versioneer) ...
apache-2.0
Python
8ceb2ed1c08fec070ec9edfcf7db7b8691481b62
update version number to 0.3.1
SuLab/WikidataIntegrator,sebotic/WikidataIntegrator
setup.py
setup.py
from setuptools import setup, find_packages VERSION = "0.3.1" setup( name='wikidataintegrator', version=VERSION, author='Andra Waagmeester, Greg Stupp, Sebastian Burgstaller-Muehlbacher ', author_email='andra@micel.io', description='Python package for reading and writing to/from Wikidata', lic...
from setuptools import setup, find_packages VERSION = "0.3.0" setup( name='wikidataintegrator', version=VERSION, author='Andra Waagmeester, Greg Stupp, Sebastian Burgstaller-Muehlbacher ', author_email='andra@micel.io', description='Python package for reading and writing to/from Wikidata', lic...
mit
Python
8819e2d203df49f2843059d981b7347d9881c82b
bump version to 1.6.2
adafruit/Adafruit_Python_SSD1306
setup.py
setup.py
import os import io from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) # Import the README and use it as the long-description. with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = '\n' + f.read() classifiers = ['Development Status :: ...
import os import io from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) # Import the README and use it as the long-description. with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = '\n' + f.read() classifiers = ['Development Status :: ...
mit
Python
cb9fe00a654b9fdb59724797c45fb70e2acc128b
fix python3
satels/django-ipgeobase
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from distutils.core import setup import sys is_py2 = sys.version_info < (3, 0, 0) if is_py2: reload(sys).setdefaultencoding("UTF-8") long_description = open('README.rst').read() if is_py2: long_description = long_description.decode('utf8') setup( name='django-ipge...
#!/usr/bin/env python # coding: utf-8 from distutils.core import setup import sys if sys.version_info < (3, 0, 0): reload(sys).setdefaultencoding("UTF-8") setup( name='django-ipgeobase', version='1.0.3', author='Ivan Petukhov', author_email='satels@gmail.com', packages=['django_ipgeobase', 'd...
mit
Python
196129252c52635fd2fd33e6c77b8e77861a5fcc
remove nose dependency
h2non/filetype.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup description = ''' Infer file type and MIME type of any file/buffer. No libmagic dependency. ''' config = { 'name': 'filetype', 'description': description, 'author':...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup description = ''' Infer file type and MIME type of any file/buffer. No libmagic dependency. ''' config = { 'name': 'filetype', 'description': description, 'author':...
mit
Python
e5fc494aa2bf07e0f9bdcb0fd858ce4332503b44
fix setup.py so poetry doesn't pick up enum34
manrajgrover/py-spinners
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error install_requires = [] def dependencies(file): with open(file) as f: return f.read().splitlines() setup( name='spinners', packages=find_packages(exclude=('tests', 'exa...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error install_requires = [] # Python < 3.4 doesn't have enum34 if sys.version_info[0:2] < (3, 4): install_requires = ['enum34==1.1.6'] def dependencies(file): with open(file) as f: ...
mit
Python
ebaa3c75e2aeca6076e4e57eab3b6cf8e8929f42
Set download URL to version 1.2
wouterboomsma/eigency,wouterboomsma/eigency
setup.py
setup.py
import os from distutils import file_util from distutils import dir_util from distutils import sysconfig from distutils.core import setup from distutils.extension import Extension from Cython.Build import cythonize import eigency import numpy as np __package_name__ = "eigency" __eigen_dir__ = eigency.__eigen_dir__ e...
import os from distutils import file_util from distutils import dir_util from distutils import sysconfig from distutils.core import setup from distutils.extension import Extension from Cython.Build import cythonize import eigency import numpy as np __package_name__ = "eigency" __eigen_dir__ = eigency.__eigen_dir__ e...
mit
Python
0974abf82c6d329ed561c36ca86159069e9d3656
修正了setup.py
vex1023/vxTrader
setup.py
setup.py
# encoding = utf-8 from __future__ import print_function from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import unittest import io import codecs import os import sys import vxTrader here = os.path.abspath(os.path.dirname(__file__)) requirements = [ 'six', '...
# encoding = utf-8 from __future__ import print_function from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import unittest import io import codecs import os import sys import vxTrader here = os.path.abspath(os.path.dirname(__file__)) with open('requirements.txt') as ...
mit
Python
1b953be2592d2e9fc68da9e6c5a683ea8dee6b10
Fix typo in file_util import
crashlytics/riemann-sumd
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from distutils.file_util import copy_file import platform version = "0.1.0" setup(name="riemann-sumd", version=version, description="Python agent for scheduling event generating processes and sending the results to Riemann", author="Brian Hatfie...
#!/usr/bin/env python from distutils.core import setup from distutils.file_utl import copy_file import platform version = "0.1.0" setup(name="riemann-sumd", version=version, description="Python agent for scheduling event generating processes and sending the results to Riemann", author="Brian Hatfiel...
mit
Python
1318519353f41b583802c8fd29bc0a0d0dd1038d
Bump version to 2.3.2
tolbertam/ccm,mike-tr-adamson/ccm,bcantoni/ccm,pcmanus/ccm,mike-tr-adamson/ccm,thobbs/ccm,pcmanus/ccm,bcantoni/ccm,pcmanus/ccm,mikefero/ccm,mike-tr-adamson/ccm,thobbs/ccm,mikefero/ccm,tolbertam/ccm
setup.py
setup.py
#!/usr/bin/env python from os.path import abspath, join, dirname from platform import system from shutil import copyfile try: from setuptools import setup except ImportError: from distutils.core import setup ccmscript = 'ccm' if system() == "Windows": copyfile('ccm', 'ccm.py') ccmscript = 'ccm.py' s...
#!/usr/bin/env python from os.path import abspath, join, dirname from platform import system from shutil import copyfile try: from setuptools import setup except ImportError: from distutils.core import setup ccmscript = 'ccm' if system() == "Windows": copyfile('ccm', 'ccm.py') ccmscript = 'ccm.py' s...
apache-2.0
Python
a4f89f31cee2d4bd9f0068df25b26c604014c0e7
update the package name to django_contactform_bootstrap
alainivars/django-contact-form,alainivars/django-contact-form
setup.py
setup.py
#!/usr/bin/python # ex:set fileencoding=utf-8: import os from setuptools import setup, find_packages import contact_form_bootstrap README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() install_requires = [ 'django==1.7.8', 'argparse==1.2.1', 'django-crispy-bootstrap==0.1.1.1', ...
#!/usr/bin/python # ex:set fileencoding=utf-8: import os from setuptools import setup, find_packages import contact_form_bootstrap README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() install_requires = [ 'django==1.7.8', 'argparse==1.2.1', 'django-crispy-bootstrap==0.1.1.1', ...
bsd-3-clause
Python
0ccec3f4ead92b7bc02e9356e571db314da7da24
use setuptools instead of distutils
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.2', 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='http...
from distutils.core import setup setup( name='check_mk_web_api', packages=['check_mk_web_api'], version='1.2', 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='...
mit
Python
25a852dfb8aa8cd2e1de4dba075efe88aaf927bb
increment version number
jetbox/pybitcoin,jetbox/pybitcoin,blockstack/pybitcoin
setup.py
setup.py
""" pybitcoin ============== """ from setuptools import setup, find_packages setup( name='pybitcoin', version='0.8.2', url='https://github.com/namesystem/pybitcoin', license='MIT', author='Halfmoon Labs, Inc.', author_email='hello@onename.com', description=("Tools for Bitcoin & other cryp...
""" pybitcoin ============== """ from setuptools import setup, find_packages setup( name='pybitcoin', version='0.8.1', url='https://github.com/namesystem/pybitcoin', license='MIT', author='Halfmoon Labs, Inc.', author_email='hello@onename.com', description=("Tools for Bitcoin & other cryp...
mit
Python
8df2a9b388555c8b6a4ae3c76dfae45e90c264e4
Add flake8-bugbear test dependency
Lubo/zxinglight,Lubo/zxinglight
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages, Extension with open('README.rst') as readme: long_description = readme.read() ext_libraries = [ 'zxing' ] if sys.platform == 'darwin': ext_libraries += [ 'iconv' ] setup( name='zxinglight', version='1.0....
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages, Extension with open('README.rst') as readme: long_description = readme.read() ext_libraries = [ 'zxing' ] if sys.platform == 'darwin': ext_libraries += [ 'iconv' ] setup( name='zxinglight', version='1.0....
mit
Python
3ed984c402a74d3b3411f3410d932d12b164737b
Increment version for django 1.9 support
Rootbuzz/JSONate
setup.py
setup.py
from setuptools import setup setup( name='jsonate', version='0.4.0', author='James Robert', author_email='jiaaro@gmail.com', description=('Django library that can make ANYTHING into json'), long_description=open('README.markdown').read(), license='MIT', keywords='django j...
from setuptools import setup setup( name='jsonate', version='0.3.2', author='James Robert', author_email='jiaaro@gmail.com', description=('Django library that can make ANYTHING into json'), long_description=open('README.markdown').read(), license='MIT', keywords='django j...
mit
Python
06bd8618795b9e161b285978683db4301ae82737
fix fix importing version in setup.py (#16)
mintar/ros-infrastructure-rosdistro
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages exec(open(os.path.join(os.path.dirname(__file__), 'src', 'rosdistro', '_version.py')).read()) setup( name='rosdistro', version=__version__, install_requires=['argparse', 'catkin_pkg', 'distribute', 'rospkg', 'PyYAML'], packag...
#!/usr/bin/env python from setuptools import setup, find_packages exec(open(os.path.join(os.path.dirname(__file__), 'src', 'rosdistro', '_version.py')).read()) setup( name='rosdistro', version=__version__, install_requires=['argparse', 'catkin_pkg', 'distribute', 'rospkg', 'PyYAML'], packages=find_pa...
bsd-3-clause
Python
ef0d18f4b1769b2ad738d7ba4034a8a86d73f31b
Bump to v.1.3.1
google/trax,google/trax
setup.py
setup.py
# coding=utf-8 # Copyright 2020 The Trax Authors. # # 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 a...
# coding=utf-8 # Copyright 2020 The Trax Authors. # # 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 a...
apache-2.0
Python
3c24a3cd3e764f8d566df3df1408230be3c522ea
Bump to 0.1.24
berdario/pew,berdario/pew
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup long_desc = '''Python Env Wrapper is a set of commands to manage multiple [virtual environments](http://pypi.python.org/pypi/virtualenv). Pew can create, delete and copy your environments, using a single command to switch to them wherever you are, while keeping them...
#! /usr/bin/env python from setuptools import setup long_desc = '''Python Env Wrapper is a set of commands to manage multiple [virtual environments](http://pypi.python.org/pypi/virtualenv). Pew can create, delete and copy your environments, using a single command to switch to them wherever you are, while keeping them...
mit
Python
2f14a6bdf4158c2c14903300339e8b813c1d1038
Add avatar url to user model
hodorsec/hodor-backend
hodor/models/user.py
hodor/models/user.py
# -*- coding: utf-8 -*- from hodor import db from sqlalchemy import inspect from sqlalchemy_utils import PasswordType class User(db.Model): __tablename__ = 'users' # Values entered by the user username = db.Column(db.String(32), primary_key=True, nullable=False) first_name = db.Column(db.String(32),...
# -*- coding: utf-8 -*- from hodor import db from sqlalchemy import inspect from sqlalchemy_utils import PasswordType class User(db.Model): __tablename__ = 'users' # Values entered by the user username = db.Column(db.String(32), primary_key=True, nullable=False) first_name = db.Column(db.String(32),...
mit
Python
38db5bcaf42d1fa2035a74da8e0c4a2726468a21
Update version to 1.0.5
yunojuno/django-appmail,yunojuno/django-appmail
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name="django-appmail", versi...
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name="django-appmail", versi...
mit
Python
a6a2a8ff2e7614009af4104f79db5f8cc4a3c910
Bump pre-commit from 2.14.0 to 2.14.1
egnyte/gitlabform,egnyte/gitlabform
setup.py
setup.py
import codecs import os from setuptools import setup, find_packages with codecs.open("README.md", encoding="utf-8") as f: README = f.read() def get_version_file_path(): github_actions_path = "/home/runner/work/gitlabform/gitlabform" if os.path.isfile(github_actions_path + "/version"): return git...
import codecs import os from setuptools import setup, find_packages with codecs.open("README.md", encoding="utf-8") as f: README = f.read() def get_version_file_path(): github_actions_path = "/home/runner/work/gitlabform/gitlabform" if os.path.isfile(github_actions_path + "/version"): return git...
mit
Python
9e3f0a49b1973312133e8f2c6dd038dabdcc533c
update version again, removed extraneous return
RedKrieg/pysparklines
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages readme = open('README.rst').read() long_description = "%s" % readme setup( name='pysparklines', version=0.5, description="pysparklines is a unicode sparkline generation library.", long_description=long_description, author="Brandon...
#!/usr/bin/env python from setuptools import setup, find_packages readme = open('README.rst').read() long_description = "%s" % readme setup( name='pysparklines', version=0.4, description="pysparklines is a unicode sparkline generation library.", long_description=long_description, author="Brandon...
bsd-2-clause
Python
3d1f616af6f7d1d662682485c6e118ffd44e5491
Fix Swift requirement
cschwede/swift-containerlist
setup.py
setup.py
# -*- encoding: utf-8 -*- __author__ = "Christian Schwede <info@cschwede.de>" name = 'containerlist' entry_point = '%s.middleware:filter_factory' % (name) version = '0.3' from setuptools import setup, find_packages setup( name=name, version=version, description='Swift guest container middleware', lice...
# -*- encoding: utf-8 -*- __author__ = "Christian Schwede <info@cschwede.de>" name = 'containerlist' entry_point = '%s.middleware:filter_factory' % (name) version = '0.3' from setuptools import setup, find_packages setup( name=name, version=version, description='Swift guest container middleware', lice...
apache-2.0
Python
ecc2a444294bffd8295f7cfe92f9b6612205019d
Break multiple imports to multiple lines
stackforge/inception,stackforge/inception
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2013 AT&T. All right reserved. from setuptools import find_packages from setuptools import setup # move version string out of setup so it is readily available to others from inception import __version__ setup( name='inception', version=__version__, description="Incep...
#!/usr/bin/env python # Copyright (c) 2013 AT&T. All right reserved. from setuptools import setup, find_packages # move version string out of setup so it is readily available to others from inception import __version__ setup( name='inception', version=__version__, description="Inception: Towards a Nested...
apache-2.0
Python
982323e1e82699ff42292f53cd3bbf3cd180912c
Add missing dependency to setup.py
google/uncertainty-baselines
setup.py
setup.py
"""Uncertainty Baselines. See more details in the [`README.md`](https://github.com/google/uncertainty-baselines). """ import os import sys from setuptools import find_packages from setuptools import setup # To enable importing version.py directly, we add its path to sys.path. version_path = os.path.join(os.path.dir...
"""Uncertainty Baselines. See more details in the [`README.md`](https://github.com/google/uncertainty-baselines). """ import os import sys from setuptools import find_packages from setuptools import setup # To enable importing version.py directly, we add its path to sys.path. version_path = os.path.join(os.path.dir...
apache-2.0
Python
c8f5c2c07d2fec7630f06855aea97db4788cf54f
Update setup.py
sisl/Chimp
setup.py
setup.py
import os import subprocess import numpy """ This script creates a symbolic link to the chimp source code in your python's site-packages directory """ np_path = numpy.__file__ source_path = os.path.dirname(os.path.realpath("setup.py")) + "/chimp" np_split = np_path.split("/") target_path = '/'.join(np_split[:-2]) + ...
import os import subprocess import numpy """ This script creates a symbolic link to the chimp source code in your pytohn's site-packages directory """ np_path = numpy.__file__ source_path = os.path.dirname(os.path.realpath("setup.py")) + "/chimp" np_split = np_path.split("/") target_path = '/'.join(np_split[:-2]) + ...
apache-2.0
Python
484342d0efef06e9fe1b08f9c025252140b92d08
Update version.
davidwaroquiers/monty,davidwaroquiers/monty,gmatteo/monty,materialsvirtuallab/monty,gmatteo/monty,materialsvirtuallab/monty
setup.py
setup.py
import os from setuptools import setup, find_packages import io current_dir = os.path.dirname(os.path.abspath(__file__)) with io.open(os.path.join(current_dir, "README.rst"), "rt") as f: long_desc = f.read() setup( name="monty", packages=find_packages(), version="2.0.1", install_requires=["six"],...
import os from setuptools import setup, find_packages import io current_dir = os.path.dirname(os.path.abspath(__file__)) with io.open(os.path.join(current_dir, "README.rst"), "rt") as f: long_desc = f.read() setup( name="monty", packages=find_packages(), version="1.0.6", install_requires=["six"],...
mit
Python
26c7807b03254215ff4e0efb823dd4533a83a2ee
Increment version
finish06/pyunifi,finish06/unifi-api
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='pyunifi', version='2.15', description='API for Ubiquity Networks UniFi controller', author='Caleb Dunn', author_email='finish.06@gmail.com', url='https://github.com/finish06/unifi-api', packages=['pyunifi'], scrip...
#!/usr/bin/env python from setuptools import setup setup(name='pyunifi', version='2.14', description='API for Ubiquity Networks UniFi controller', author='Caleb Dunn', author_email='finish.06@gmail.com', url='https://github.com/finish06/unifi-api', packages=['pyunifi'], scrip...
mit
Python
01dd482c2c0d278bbb2ad61b3e62360e9f78f049
Bump version number
rtyler/Spawning
setup.py
setup.py
from setuptools import find_packages, setup setup( name='Spawning', description='Spawning is a wsgi server plugin for paste which uses eventlet to do non-blocking IO ' 'for http requests and responses. It supports multiple Python processes as well as a threadpool. ' 'It supports graceful rel...
from setuptools import find_packages, setup setup( name='Spawning', description='Spawning is a wsgi server plugin for paste which uses eventlet to do non-blocking IO ' 'for http requests and responses. It supports multiple Python processes as well as a threadpool. ' 'It supports graceful rel...
mit
Python
d8004e6f8e368079189420a9366f98225e7c1949
Bump version number to 1.21a11
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'), encoding='utf-8') as readme: README = readme.read().split('h1>\n\n', 2)[1] setup( name='django-postgres-extra', version='1.21a11', packages=find_packages(), include_package_data=...
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8') as readme: README = readme.read().split('h1>\n\n', 2)[1] setup( name='django-postgres-extra', version='1.21a10', packages=find_packages(), include_package_data=...
mit
Python
a60c011721b4e89f4f02d8a79f0d91107d828cbb
Correct pyScss module name in setup.py, as per pypi.
fusionbox/django-pyscss,PhilipGarnero/django-pyscss
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import subprocess import os __doc__ = "Makes it easier to use PySCSS in Django." def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ 'Django>=1.4', 'pyScss>=1.2.0,<1.3.0', ] tests_requ...
#!/usr/bin/env python from setuptools import setup, find_packages import subprocess import os __doc__ = "Makes it easier to use PySCSS in Django." def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ 'Django>=1.4', 'PyScss>=1.2.0,<1.3.0', ] tests_requ...
bsd-2-clause
Python
7784284d46f0e5ed427b8e4d0625954a0fb2a914
fix import of parse_requirements for pip v10
mattloper/chumpy
setup.py
setup.py
""" Author(s): Matthew Loper See LICENCE.txt for licensing and contact information. """ from distutils.core import setup try: # for pip >= 10 from pip._internal.req import parse_requirements except ImportError: # for pip <= 9.0.3 from pip.req import parse_requirements from runpy import run_path install_reqs ...
""" Author(s): Matthew Loper See LICENCE.txt for licensing and contact information. """ from distutils.core import setup from pip.req import parse_requirements from runpy import run_path install_reqs = parse_requirements('requirements.txt', session=False) install_requires = [str(ir.req) for ir in install_reqs] def ...
mit
Python
fab8db6011a49203acc7de71dfef7a67f42c1b2c
Prepare openprocurement.api 2.3.64.
openprocurement/openprocurement.api
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'li...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() requires = [ 'barbecue', 'chaussette', 'cornice', 'couchdb-schematics', 'gevent', 'iso8601', 'jsonpatch', 'li...
apache-2.0
Python
b84522ca578865e258f3f3d1948d95a6debe4f14
Bump version to 0.3.2
thombashi/DateTimeRange
setup.py
setup.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import os.path import sys import setuptools MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-ru...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import unicode_literals import os.path import sys import setuptools MISC_DIR = "misc" REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-ru...
mit
Python
c0e2f6dc07d55c1f290bae4dbb51fcb4d2d1b241
Bump version
zach-taylor/splunk_handler,sullivanmatt/splunk_handler
setup.py
setup.py
from distutils.core import setup setup( name = 'splunk_handler', version = '2.0.2', license = 'MIT License', description = 'A Python logging handler that sends your logs to Splunk', long_description = open('README.md').read(), author = 'Zach Taylor', author_email = 'ztaylor234@gmail.com', ...
from distutils.core import setup setup( name = 'splunk_handler', version = '2.0.1', license = 'MIT License', description = 'A Python logging handler that sends your logs to Splunk', long_description = open('README.md').read(), author = 'Zach Taylor', author_email = 'ztaylor234@gmail.com', ...
mit
Python
37ffb9777324038c73381f4e6a4c7bc4b8797982
Prepare setup.py for first release
nemesisdesign/nodeshot-citysdk-synchronizers
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import re import os import sys from nodeshot_citysdk_synchronizers import get_version name = 'nodeshot-citysdk-synchronizers' package = 'nodeshot_citysdk_synchronizers' description = 'Additional synchronizers for nodeshot.interop.sync' url = ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import re import os import sys from nodeshot_citysdk_synchronizers import get_version name = 'nodeshot-citysdk-synchronizers' package = 'nodeshot_citysdk_synchronizers' description = 'Additional synchronizers for nodeshot.interop.sync' url = ...
mit
Python
edd3225acb21fcb0e36d8889d7bdfa5dedc5d67b
update version for dev
wq/django-rest-pandas,wq/django-rest-pandas,wq/django-rest-pandas,wq/django-rest-pandas
setup.py
setup.py
import subprocess from setuptools import setup, find_packages LONG_DESCRIPTION = ( "Serves up pandas dataframes via the Django REST Framework for client-side" "(i.e. d3.js) visualizations" ) def parse_markdown_readme(): """ Convert README.md to RST via pandoc, and load into memory (fallback to LO...
import subprocess from setuptools import setup, find_packages LONG_DESCRIPTION = """ Serves up pandas dataframes via the Django REST Framework for client-side (i.e. d3.js) visualizations """ def parse_markdown_readme(): """ Convert README.md to RST via pandoc, and load into memory (fallback to LONG_DESCR...
mit
Python
a5b4fc9f78a94c09514137b92c92d4c094ce2bc6
update dependency google-api-core to v2 (#74)
googleapis/python-access-context-manager,googleapis/python-access-context-manager
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
255441648360fbb175c1378b100161a20e596b5e
Clean up the classifiers
sontek/bulby
setup.py
setup.py
''' Setup configuration ''' from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path from pip.req import parse_requirements from pip.download import PipSession # parse_requirements() returns generator of pip.req.InstallRequirement objects install_reqs = p...
''' Setup configuration ''' from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path from pip.req import parse_requirements from pip.download import PipSession # parse_requirements() returns generator of pip.req.InstallRequirement objects install_reqs = p...
mit
Python
6742a489c6fc5e73ad396ffa5375c5ac077d8564
bump up version
developmentseed/sentinel-s3
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path __version__ = '0.6.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.5.2' here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() # get the depende...
cc0-1.0
Python
69134b4935240d9e696aace664118a763ecd7b20
Bump version.
heavenshell/py-robo-misawa
setup.py
setup.py
# -*- coding: utf-8 -*- """ robo.handlers.misawa ~~~~~~~~~~~~~~~~~~~~ Generate horesase boy image matching with the keyword. :copyright: (c) 2015 Shinya Ohyanagi, All rights reserved. :license: BSD, see LICENSE for more details. """ import os from setuptools import setup, find_packages requires ...
# -*- coding: utf-8 -*- """ robo.handlers.misawa ~~~~~~~~~~~~~~~~~~~~ Generate horesase boy image matching with the keyword. :copyright: (c) 2015 Shinya Ohyanagi, All rights reserved. :license: BSD, see LICENSE for more details. """ import os from setuptools import setup, find_packages requires ...
bsd-3-clause
Python
66b66609a1ad5121cdf8c3c14bc31dcc09290af9
Update version number
sammchardy/python-binance
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='python-binance', version='0.1.2', packages=['binance'], description='Binance API python implementation', url='https://github.com/sammchardy/python-binance', author='Sam McHardy', license='MIT', author_email='', install_...
#!/usr/bin/env python from setuptools import setup setup( name='python-binance', version='0.1.1', packages=['binance'], description='Binance API python implementation', url='https://github.com/sammchardy/python-binance', author='Sam McHardy', license='MIT', author_email='', install_...
mit
Python
804f23b0967ea2db084170002791fa5f40c514ad
Fix setup.py
bmispelon/django-formtags,bmispelon/django-formtags
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-formtags", version="0.1", description="Customize form fields directly from templates", keywords="django, forms, tags", author="Baptiste Mispelon", author_email="bmispelon@gmail.com", url="https://github.com/bmispelon/django-for...
from setuptools import setup setup( name="django-formtags", version="0.1", description="Customize form fields directly from templates", keywords="django, forms, tags", author="Baptiste Mispelon <bmispelon@gmail.com>", url="https://github.com/bmispelon/django-formtags/", license="BSD", p...
mit
Python
ec96a0fa112ebeb906c1a4a4b44eb3bf32a6bccc
Bump to version 0.15.6
reubano/hdxscraper-fts,reubano/hdxscraper-fts,reubano/hdxscraper-fts
setup.py
setup.py
import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename))...
import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename))...
mit
Python
6d3cb33f92deb2b9b2fdbb2714d7b6ecb0fabacf
Change setup.py link to github3.py fork to use https
appfolio/farcy,balloob/farcy,balloob/farcy,appfolio/farcy,balloob/farcy,appfolio/farcy
setup.py
setup.py
"""Farcy setup.py.""" import os import re from setuptools import setup PACKAGE_NAME = 'farcy' HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, 'README.rst')) as fp: README = fp.read() with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp: VERSION = re.search("__version__...
"""Farcy setup.py.""" import os import re from setuptools import setup PACKAGE_NAME = 'farcy' HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, 'README.rst')) as fp: README = fp.read() with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp: VERSION = re.search("__version__...
bsd-2-clause
Python
c6f36b517c294d368a7bc75dc359ab32b5917228
Switch to find_packages. Bump for PyPI.
ilanbm/django-waffle,JeLoueMonCampingCar/django-waffle,ilanbm/django-waffle,isotoma/django-waffle,ilanbm/django-waffle,groovecoder/django-waffle,rsalmaso/django-waffle,mark-adams/django-waffle,JeLoueMonCampingCar/django-waffle,rodgomes/django-waffle,TwigWorld/django-waffle,webus/django-waffle,paulcwatts/django-waffle,e...
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-waffle', version='0.7.1', description='A feature flipper for Django.', long_description=open('README.rst').read(), author='James Socol', author_email='james.socol@gmail.com', url='http://github.com/jsocol/django-waffle', li...
from setuptools import setup setup( name='django-waffle', version='0.7', description='A feature flipper for Django.', long_description=open('README.rst').read(), author='James Socol', author_email='james.socol@gmail.com', url='http://github.com/jsocol/django-waffle', license='BSD', ...
bsd-3-clause
Python
6a6fe1212a77261d0a6ab8b2de8b0ef12b467a9a
Use README as long_description.
rsenk330/pylibsass
setup.py
setup.py
from setuptools import Extension, setup from setuptools.command.test import test as TestCommand VERSION = '0.1' class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pyte...
""" pylibsass --------- Links ````` * `pylibsass <http://github.com/rsenk330/pylibsass>`_ * `libsass <https://github.com/hcatlin/libsass>`_ """ from setuptools import Extension, setup from setuptools.command.test import test as TestCommand VERSION = '0.1' class PyTest(TestCommand): def finalize_options(self): ...
mit
Python
03539087c9c32e2970c37aab5a76710561e1fa97
Bump version: 0.0.26 → 0.0.27
polysquare/travis-bump-version
setup.py
setup.py
# /setup.py # # Installation and setup script for travis-bump-version # # See /LICENCE.md for Copyright information """Installation and setup script for travis-bump-version.""" from setuptools import find_packages from setuptools import setup setup(name="travis-bump-version", version="0.0.27", description...
# /setup.py # # Installation and setup script for travis-bump-version # # See /LICENCE.md for Copyright information """Installation and setup script for travis-bump-version.""" from setuptools import find_packages from setuptools import setup setup(name="travis-bump-version", version="0.0.26", description...
mit
Python
b076dfd6ef2d65a3a2166157997db10cbfc66b83
install files in share/
geertj/ravstack,geertj/ravstack
setup.py
setup.py
# # This file is part of ravstack. Ravstack is free software available under # the terms of the MIT license. See the file "LICENSE" that was provided # together with this source file for the licensing terms. # # Copyright (c) 2015 the ravstack authors. See the file "AUTHORS" for a # complete list. from __future__ impo...
# # This file is part of ravstack. Ravstack is free software available under # the terms of the MIT license. See the file "LICENSE" that was provided # together with this source file for the licensing terms. # # Copyright (c) 2015 the ravstack authors. See the file "AUTHORS" for a # complete list. from __future__ impo...
mit
Python
29c8fe82baa12b1b674ef27e0b831fce18d8019f
Add six to requirements
EDITD/runners
setup.py
setup.py
from __future__ import print_function import re import sys import setuptools REQUIREMENTS = [ "kazoo==2.0", "six==1.11.0", ] # Regex matching pattern followed by 3 numerical values separated by . pattern = re.compile("[0-9]+\.[0-9]+\.?[0-9]*") def get_version(): with open("CHANGELOG.md", "r") as fn: ...
from __future__ import print_function import re import sys import setuptools REQUIREMENTS = [ "kazoo==2.0", ] # Regex matching pattern followed by 3 numerical values separated by . pattern = re.compile("[0-9]+\.[0-9]+\.?[0-9]*") def get_version(): with open("CHANGELOG.md", "r") as fn: while True:...
mit
Python
dd1309ca85fff7aa809f6ed9da006b4597b66021
add long_desctipyion to setup.py
Arello-Mobile/confluence-publisher,dopuskh3/confluence-publisher
setup.py
setup.py
import os from setuptools import setup, find_packages os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='confluence-publisher', version='1.1.0', packages=find_packages(exclude=['tests', 'tests.*']), include_package_data=True, license='MIT', description=...
import os from setuptools import setup, find_packages os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='confluence-publisher', version='1.1.0', packages=find_packages(exclude=['tests', 'tests.*']), include_package_data=True, license='MIT', description=...
mit
Python
b0934ac7cfb190a52621df29681f2a1ecdcfa2e4
Reorder catalog exceptions
sileht/keystoneauth,citrix-openstack-build/keystoneauth,jamielennox/keystoneauth
keystoneauth/exceptions/catalog.py
keystoneauth/exceptions/catalog.py
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under t...
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under t...
apache-2.0
Python
689c179b92c622a40c3696f1ea332a177b5f7dfa
fix typo in setup.py
tiddlyweb/tiddlywebplugins.markdown
setup.py
setup.py
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' NAME = 'tiddlywebplugins.markdown' DESCRIPTION = 'Markdown rendering for TiddlyWeb' VERSION = '0.9.5' import os from setuptools import setup, find_packages setup( namespace_packages = ['tiddlywebplugins'], name = NAME, version = VERSIO...
AUTHOR = 'Chris Dent' AUTHOR_EMAIL = 'cdent@peermore.com' NAME = 'tiddlywebplugins.markdown' DESCRIPTION = 'Markdown rendering for TiddlyWeb' VERSION = '0.9.5' import os from setuptools import setup, find_packages setup( namespace_packages = ['tiddlywebplugins'], name = NAME, version = VERSIO...
bsd-2-clause
Python
284cc09283785697bd7db796a5dd11cedc531dc7
Bump version number
cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup_args = dict( name = 'jupyterlmod', packages = ['jupyterlmod', 'lmod'], package_data = {'jupyterlmod' : ['static/*']}, version = "1.6.0", description = "jupyterlmod: noteboo...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup_args = dict( name = 'jupyterlmod', packages = ['jupyterlmod', 'lmod'], package_data = {'jupyterlmod' : ['static/*']}, version = "1.4.1", description = "jupyterlmod: noteboo...
mit
Python
72ab88b892209249f731242e85603dab691180c2
Rename the python package to barn.
pudo/archivekit
setup.py
setup.py
from setuptools import setup, find_packages setup( name='barn', version='0.0.1', description="Store a set of files and metadata in an organized way", long_description="", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Operating System ::...
import os from setuptools import setup, find_packages setup( name='docstash', version='0.2.2', description="Store a set of documents and metadata in an organized way", long_description="", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "O...
mit
Python
9e9f24d8de4ae371af5811fcbb90cbb9dd12c7d9
update version number
waustin/django-text-blocks,waustin/django-text-blocks
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-text-blocks', version='0.2', packages=['text_block...
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-text-blocks', version='0.1', packages=['text_block...
bsd-3-clause
Python
cad2f12ffd93772da113e9779729ec2ea10c80f8
Fix broken inquirer
scriptotek/almar,scriptotek/lokar
setup.py
setup.py
#!/usr/bin/env python # encoding=utf-8 import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() setup(name='almar', version='0.7.2', # Use bumpversio to update description='Search and replace for subject fields in Alma ...
#!/usr/bin/env python # encoding=utf-8 import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() setup(name='almar', version='0.7.2', # Use bumpversio to update description='Search and replace for subject fields in Alma ...
agpl-3.0
Python
b37fd0cc2291dae9e301ccf12f8cd2a6e92eb0c1
Reformat some setup arguments.
benspaulding/django-shortwave
setup.py
setup.py
import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-shortwave', version='0.9.0', description='Shortwave command file management for Django apps.', url='http://github.com/benspaulding/django-shortwave/',...
import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-shortwave', version='0.9.0', description='Shortwave command file management for Django apps.', url='http://github.com/benspaulding/django-shortwave/',...
bsd-3-clause
Python
6dfb5ea195df1dcbcb182b07b83d8872890d63d3
Add upcoming dependency
crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute
setup.py
setup.py
import sys from os.path import abspath, dirname, join from setuptools import find_packages, setup ENTRY_POINTS = """ [console_scripts] crosscompute = crosscompute.scripts:launch [crosscompute] setup = crosscompute.scripts.setup:SetupScript run = crosscompute.scripts.run:RunScript serve = crosscompute.scripts.serve:Se...
import sys from os.path import abspath, dirname, join from setuptools import find_packages, setup ENTRY_POINTS = """ [console_scripts] crosscompute = crosscompute.scripts:launch [crosscompute] setup = crosscompute.scripts.setup:SetupScript run = crosscompute.scripts.run:RunScript serve = crosscompute.scripts.serve:Se...
mit
Python
28bc91bdeaf676b6985b6f18d6134e1e4155dcab
update project description
brettlangdon/greenrpc
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from greenrpc import __version__ with open("./requirements.txt") as fp: requirements = fp.read() requirements = requirements.split("\n") setup( name="greenrpc", version=__version__, description="TCP & HTTP RPC Servers written with...
#!/usr/bin/env python from setuptools import setup, find_packages from greenrpc import __version__ with open("./requirements.txt") as fp: requirements = fp.read() requirements = requirements.split("\n") setup( name="greenrpc", version=__version__, description="msgpack TCP & HTTP RPC Servers writ...
mit
Python
0195b53d534840f8190038d8920bc8f1b9fb892d
edit docstring setup.py
google/packet-queue,google/packet-queue,google/packet-queue
setup.py
setup.py
# Copyright 2016 Google Inc. 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 applicable law or a...
# Copyright 2016 Google Inc. 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 applicable law or a...
apache-2.0
Python
56f9e9994ff2e8032562bf332430be5715cfdcf8
Upgrade Core and Web API
antoinearnoud/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france,sgmap/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '21.9.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OS...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '21.9.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OS...
agpl-3.0
Python
c2fd3c3a581b0a4d114b4ed0c51189583b9d25a0
Update requirements
cloudwatt/contrail-api-cli-extra,cloudwatt/contrail-api-cli-extra
setup.py
setup.py
import sys from setuptools import setup, find_packages install_requires = [ 'contrail-api-cli>=0.1b1' ] test_requires = [] if sys.version_info[0] == 2: test_requires.append('mock') setup( name='contrail-api-cli-extra', version='0.1a', description="Supplementary commands for contrail-api-cli", ...
import sys from setuptools import setup, find_packages install_requires = [ 'contrail-api-cli' ] test_requires = [] if sys.version_info[0] == 2: test_requires.append('mock') setup( name='contrail-api-cli-extra', version='0.1a', description="Supplementary commands for contrail-api-cli", autho...
mit
Python
0b014343c321c212cd67724772080ae54b19f557
update tags
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.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...
cc0-1.0
Python
f17c2a7647dfb62cf3e6540d0f1f8bb71138e826
increase version 0.4.1 -> 0.4.2
SiLab-Bonn/online_monitor
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import pkg_resources version = '0.4.2' author = 'David-Leon Pohl' author_email = 'pohl@physik.uni-bonn.de' # Requirements for core functionality from requirements.txt with open('requirements.txt') as f: install_requires = f.read().splitlines() set...
#!/usr/bin/env python from setuptools import setup, find_packages import pkg_resources version = '0.4.1' author = 'David-Leon Pohl' author_email = 'pohl@physik.uni-bonn.de' # Requirements for core functionality from requirements.txt with open('requirements.txt') as f: install_requires = f.read().splitlines() set...
mit
Python
cae58126a112318c8d827f003530b76d4096695e
Update changelog generation link to use release branch, not tag
SamuelMarks/fabric,TarasRudnyk/fabric,rodrigc/fabric,cgvarela/fabric,ploxiln/fabric,amaniak/fabric,fernandezcuesta/fabric,getsentry/fabric,rane-hs/fabric-py3,cmattoon/fabric,jaraco/fabric,pgroudas/fabric,itoed/fabric,haridsv/fabric,mathiasertl/fabric,qinrong/fabric,elijah513/fabric,MjAbuz/fabric,tolbkni/fabric,kxxoling...
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup, find_packages from fabric.version import get_version readme = open('README.rst').read() long_description = """ To find out what's new in this version of Fabric, please see `the changelog <http://docs.fabfile.org/en/%s/changelog.html>`_. You can also ...
#!/usr/bin/env python import sys from setuptools import setup, find_packages from fabric.version import get_version readme = open('README.rst').read() v = get_version('short') long_description = """ To find out what's new in this version of Fabric, please see `the changelog <http://docs.fabfile.org/en/%s/changelo...
bsd-2-clause
Python
29efe44aec4de14a38bff749172dd7682289621e
update dependencies
fpliger/statz,fpliger/statz
setup.py
setup.py
from __future__ import print_function import sys import os.path from setuptools import setup, find_packages readme = os.path.join(os.path.dirname(__file__), 'README.rst') long_description = open(readme).read() setup( name='statz', version='0.0.1', author='Fabio Pliger', author_email='fabio.pliger@gma...
from __future__ import print_function import sys import os.path from setuptools import setup, find_packages readme = os.path.join(os.path.dirname(__file__), 'README.rst') long_description = open(readme).read() setup( name='statz', version='0.0.1', author='Fabio Pliger', author_email='fabio.pliger@gma...
mit
Python
f93362273afc341ba4b5c458adc5946d8019a992
Add a few PyPI classifiers.
jtriley/pystun,b1naryth1ef/pystun
setup.py
setup.py
import os.path from setuptools import setup, find_packages import stun def main(): src = os.path.realpath(os.path.dirname(__file__)) README = open(os.path.join(src, 'README.rst')).read() setup( name='pystun', version=stun.__version__, packages=find_packages(), scripts=['b...
import os.path from setuptools import setup, find_packages import stun def main(): src = os.path.realpath(os.path.dirname(__file__)) README = open(os.path.join(src, 'README.rst')).read() setup( name='pystun', version=stun.__version__, packages=find_packages(), scripts=['b...
mit
Python
1afcae4eb6e508a5181ae544fdfd7ca5b1d3486c
Bump version to 1.0.5
changwu-tw/pyethapp,ethereum/pyethapp,changwu-tw/pyethapp,gsalgado/pyethapp,RomanZacharia/pyethapp,gsalgado/pyethapp,ethereum/pyethapp,RomanZacharia/pyethapp
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
mit
Python
97fca5a16b3c1df7530f874a4351edb20688a4b3
bump version
Clinical-Genomics/scout,Clinical-Genomics/scout,Clinical-Genomics/scout
setup.py
setup.py
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def parse_reqs(req_path='./requirements.txt'): """Recursively parse requirements from nested pip files.""" install_requires = [] with codecs.open(req_path, 'r') as handle: # remove comments and empty lines li...
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def parse_reqs(req_path='./requirements.txt'): """Recursively parse requirements from nested pip files.""" install_requires = [] with codecs.open(req_path, 'r') as handle: # remove comments and empty lines li...
bsd-3-clause
Python
eaf011ac27b459a7994611d6902001d8385dd05a
add pypi settings
frankier/django-betterforms,fusionbox/django-betterforms,fusionbox/django-betterforms,frankier/django-betterforms
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import subprocess import os __doc__ = """ App for Django featuring improved form base classes. """ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ 'Django>=1.4', 'markdown', ] ver...
#!/usr/bin/env python from setuptools import setup, find_packages import subprocess import os __doc__ = """ App for Django featuring improved form base classes. """ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() install_requires = [ 'Django>=1.4', 'markdown', ] ver...
bsd-2-clause
Python
0f3936fe860eb9e1426eb8669f6edc5716e4d166
Update tests dependencies for Python 3.5 compatibility
ad-m/django-tinycontent,dominicrodger/django-tinycontent,ad-m/django-tinycontent,dominicrodger/django-tinycontent
setup.py
setup.py
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import tinycontent class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): ...
import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import tinycontent class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): ...
bsd-3-clause
Python
c25a5c55f704fb396ea0e79bf41165cb813277ca
add extras_require to setup.py
aartur/mschematool
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'mschematool', version = '0.6.3', packages = ['mschematool', 'mschematool.executors'], install_requires = ['click==3.3'], entry_points = { 'console_scripts': [ 'mschematool = mschematool.cli:ma...
from setuptools import setup, find_packages setup( name = 'mschematool', version = '0.6.3', packages = ['mschematool', 'mschematool.executors'], install_requires = ['click==3.3'], entry_points = { 'console_scripts': [ 'mschematool = mschematool.cli:ma...
bsd-3-clause
Python
7bb696a3bc0611d9ca4b65764e52bc754723db75
update travis
vidalalcala/ml-tools
setup.py
setup.py
from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() setup(name='mltools', version='0.0.1', description=u'Machine Learning Tools', l...
from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() setup(name='mltools', version='0.0.1', description=u'Machine Learning Tools', l...
mit
Python
475170acd3119cfa35112f6e470a33dc1f47e5ef
Update to not include test packages.
pyconll/pyconll,pyconll/pyconll
setup.py
setup.py
from setuptools import setup import os def read(fn): """ Read the contents of the provided filename. Args: fn: The filename to read in. Returns: The contents of the file. """ abs_fn = os.path.join(os.path.dirname(__file__), fn) f = open(abs_fn) contents = f.read() f.close(...
from setuptools import setup, find_packages import os def read(fn): """ Read the contents of the provided filename. Args: fn: The filename to read in. Returns: The contents of the file. """ abs_fn = os.path.join(os.path.dirname(__file__), fn) f = open(abs_fn) contents = f.read...
mit
Python
148defed683ef357317a4f187ebb046c6cf1a866
Upgrade legacy web api
antoinearnoud/openfisca-france,sgmap/openfisca-france,sgmap/openfisca-france,antoinearnoud/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '18.10.1', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: O...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '18.10.1', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: O...
agpl-3.0
Python
8641bed28d54c33d30da21db3759ad1b365a939b
test deployment
yacoma/morepath-realworld-example-app,yacoma/morepath-realworld-example-app
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages name = 'conduit-morepath' description = ( 'Morepath Conduit implementation' ) version = '0.0.1' setup( name=name, version=version, description=description, author='Henri Hulski', author_email='henri.hulski@gazeta.pl', li...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages name = 'conduit-morepath' description = ( 'Morepath Conduit implementation' ) version = '0.0.1' setup( name=name, version=version, description=description, author='Henri Hulski', author_email='henri.hulski@gazeta.pl', li...
mit
Python
f6a77df08b2824fd4c44bbb39f9dc18daca38743
update setup info
CrowsT/MongoNorm
setup.py
setup.py
from setuptools import setup VERSION = '0.1.2' CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', "Programming Language :: Python :: 3", ...
from setuptools import setup VERSION = '0.1.1' CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', "Programming Language :: Python :: 3", ...
bsd-2-clause
Python
dcba98b5fbb7306acedc8c96b5f47eacfca0dcd5
Increment to 0.1.3
konstantinfarrell/hotrc,konstantinfarrell/hotrc
setup.py
setup.py
import os import sys import subprocess from setuptools import setup, find_packages from setuptools.command.install import install class PostInstall(install): def run(self): install.run(self) path = sys.path[0] + '/hotrc/path.sh' sys.path.append(sys.path[0]) subprocess.call(path, she...
import os import sys import subprocess from setuptools import setup, find_packages from setuptools.command.install import install class PostInstall(install): def run(self): install.run(self) path = sys.path[0] + '/hotrc/path.sh' sys.path.append(sys.path[0]) subprocess.call(path, she...
mit
Python
37b81d37deda654eae3dfbed01a63650bbb21d67
bump the no
fijal/jitpy,tempbottle/jitpy
setup.py
setup.py
if __name__ == '__main__': from setuptools import setup, Feature, Extension setup( name='jitpy', description='A library to embed PyPy in CPython.', long_description=""" jitpy ===== A library that let's you embed PyPy into CPython. Please see the `Documentation <http://jitpy.readthedocs.org/>`_. Cont...
if __name__ == '__main__': from setuptools import setup, Feature, Extension setup( name='jitpy', description='A library to embed PyPy in CPython.', long_description=""" jitpy ===== A library that let's you embed PyPy into CPython. Please see the `Documentation <http://jitpy.readthedocs.org/>`_. Cont...
mit
Python
bd9ae8fc0976e19b00d4859de9676acfc826141e
Fix release version in setup.py to match tag version
jetyang2005/elastalert,rprabhat/elastalert,Yelp/elastalert,dvopsway/elastalert,jetyang2005/elastalert,jetyang2005/elastalert
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) setup( name='elastalert', version='0.0.96', description='Runs custom filters on Elasticsearch and alerts on matches', author='Quentin Long', author_email='qlo@y...
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) setup( name='elastalert', version='0.0.95', description='Runs custom filters on Elasticsearch and alerts on matches', author='Quentin Long', author_email='qlo@y...
apache-2.0
Python
f2fc4412c677c5648cbe12a86f01699118279a56
exclude docs and tests from package (#79)
googleapis/python-billing,googleapis/python-billing
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (C) 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable ...
# -*- coding: utf-8 -*- # Copyright (C) 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable ...
apache-2.0
Python
c00289c9c0a841f731c9f857a955fcfe54040ea1
Update setup.py
pombredanne/relent,RHInception/relent
setup.py
setup.py
#!/usr/bin/env python # Copyright (C) 2014 SEE AUTHORS FILE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # #...
#!/usr/bin/env python # Copyright (C) 2014 SEE AUTHORS FILE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # #...
agpl-3.0
Python
645a7eefc0aa8434da3f65cfc09986b7c830b39e
fix setup.py
ITCase-django/django-unisender,ITCase-django/django-unisender
setup.py
setup.py
import os from unisender import __version__ from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-unisender', version=__version__, url='http://github.com/ITC...
import os from unisender import __version__ from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-unisender', version=__version__, url='http://github.com/ITC...
mit
Python