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
be8c0bf0000e10a8e33581dddd70ea5cec84ddeb
Check if runtime is Python2
freaker2k7/chalice,awslabs/chalice
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import sys with open('README.rst') as readme_file: README = readme_file.read() install_requires = [ 'click==6.2', 'botocore>=1.4.8,<2.0.0', 'virtualenv>=15.0.0,<16.0.0', 'typing==3.5.2.2', ] if sys.version_info < (3, 0): raise RuntimeError("chalice requires only Python 2.7") setup( name='chalice', version='0.5.0', description="Microframework", long_description=README, author="James Saryerwinnie", author_email='js@jamesls.com', url='https://github.com/jamesls/chalice', packages=find_packages(exclude=['tests']), install_requires=install_requires, license="Apache License 2.0", package_data={'chalice': ['*.json']}, include_package_data=True, zip_safe=False, keywords='chalice', entry_points={ 'console_scripts': [ 'chalice = chalice.cli:main', ] }, classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', "Programming Language :: Python :: 2", 'Programming Language :: Python :: 2.7', ], )
#!/usr/bin/env python from setuptools import setup, find_packages with open('README.rst') as readme_file: README = readme_file.read() install_requires = [ 'click==6.2', 'botocore>=1.4.8,<2.0.0', 'virtualenv>=15.0.0,<16.0.0', 'typing==3.5.2.2', ] setup( name='chalice', version='0.5.0', description="Microframework", long_description=README, author="James Saryerwinnie", author_email='js@jamesls.com', url='https://github.com/jamesls/chalice', packages=find_packages(exclude=['tests']), install_requires=install_requires, license="Apache License 2.0", package_data={'chalice': ['*.json']}, include_package_data=True, zip_safe=False, keywords='chalice', entry_points={ 'console_scripts': [ 'chalice = chalice.cli:main', ] }, classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', "Programming Language :: Python :: 2", 'Programming Language :: Python :: 2.7', ], )
apache-2.0
Python
6b9ef0d12826d1fdcbf81da17ae76a125d2ecaae
Bump version to 0.2.3
polyaxon/polyaxon,polyaxon/polyaxon,polyaxon/polyaxon
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import find_packages, 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): import pytest errcode = pytest.main(self.test_args) sys.exit(errcode) setup(name='polyaxon-schemas', version='0.2.3', description='Schema definitions and validation for Polyaxon.', maintainer='Mourad Mourafiq', maintainer_email='mouradmourafiq@gmail.com', author='Mourad Mourafiq', author_email='mouradmourafiq@gmail.com', url='https://github.com/polyaxon/polyaxon-schemas', license='MIT', platforms='any', packages=find_packages(), keywords=[ 'polyaxon', 'tensorFlow', 'deep-learning', 'machine-learning', 'data-science', 'neural-networks', 'artificial-intelligence', 'ai', 'reinforcement-learning', 'kubernetes', ], install_requires=[ 'Jinja2==2.10', 'marshmallow==2.15.3', 'numpy==1.15.0', 'python-dateutil==2.7.3', 'pytz==2018.5', 'rhea==0.3.5' ], classifiers=[ 'Programming Language :: Python', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Artificial Intelligence' ], tests_require=['pytest'], cmdclass={'test': PyTest})
#!/usr/bin/env python import sys from setuptools import find_packages, 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): import pytest errcode = pytest.main(self.test_args) sys.exit(errcode) setup(name='polyaxon-schemas', version='0.2.0', description='Schema definitions and validation for Polyaxon.', maintainer='Mourad Mourafiq', maintainer_email='mouradmourafiq@gmail.com', author='Mourad Mourafiq', author_email='mouradmourafiq@gmail.com', url='https://github.com/polyaxon/polyaxon-schemas', license='MIT', platforms='any', packages=find_packages(), keywords=[ 'polyaxon', 'tensorFlow', 'deep-learning', 'machine-learning', 'data-science', 'neural-networks', 'artificial-intelligence', 'ai', 'reinforcement-learning', 'kubernetes', ], install_requires=[ 'Jinja2==2.10', 'marshmallow==2.15.3', 'numpy==1.15.0', 'python-dateutil==2.7.3', 'pytz==2018.5', 'rhea==0.3.5' ], classifiers=[ 'Programming Language :: Python', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Artificial Intelligence' ], tests_require=['pytest'], cmdclass={'test': PyTest})
apache-2.0
Python
b30ce86b57b764c7b736e3b688acc98c3cc08d5c
Increment version to 0.8.0
ko-zu/psl
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs from setuptools import setup description = codecs.open('README.md', encoding='utf-8').read() setup(name="publicsuffixlist", version="0.8.0", packages=["publicsuffixlist"], package_data={ "publicsuffixlist": [ "public_suffix_list.dat", "test_psl.txt", ]}, author="ko-zu", author_email="causeless@gmail.com", description="publicsuffixlist implement", long_description=description, long_description_content_type="text/markdown", url="https://github.com/ko-zu/psl", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Topic :: Internet :: Name Service (DNS)", "Topic :: Text Processing :: Filters", "Operating System :: OS Independent", ], python_requires=">=2.6", extras_require={ "update": ["requests"], "readme": ["pandoc"], }, entry_points={ "console_scripts": [ "publicsuffixlist-download = publicsuffixlist.update:updatePSL", ]}, test_suite="publicsuffixlist.test", license='MPL-2.0', )
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs from setuptools import setup description = codecs.open('README.md', encoding='utf-8').read() setup(name="publicsuffixlist", version="0.7.14", packages=["publicsuffixlist"], package_data={ "publicsuffixlist": [ "public_suffix_list.dat", "test_psl.txt", ]}, author="ko-zu", author_email="causeless@gmail.com", description="publicsuffixlist implement", long_description=description, long_description_content_type="text/markdown", url="https://github.com/ko-zu/psl", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Topic :: Internet :: Name Service (DNS)", "Topic :: Text Processing :: Filters", "Operating System :: OS Independent", ], python_requires=">=2.6", extras_require={ "update": ["requests"], "readme": ["pandoc"], }, entry_points={ "console_scripts": [ "publicsuffixlist-download = publicsuffixlist.update:updatePSL", ]}, test_suite="publicsuffixlist.test", license='MPL-2.0', )
mpl-2.0
Python
d308453a8339406e3919f98aed9380472c33eabb
add root_numpy.tests
rootpy/root_numpy,rootpy/root_numpy,ibab/root_numpy,rootpy/root_numpy,rootpy/root_numpy,ibab/root_numpy,ndawe/root_numpy,ndawe/root_numpy,scikit-hep/root_numpy,ndawe/root_numpy,scikit-hep/root_numpy,ndawe/root_numpy,ibab/root_numpy,scikit-hep/root_numpy,scikit-hep/root_numpy,ibab/root_numpy
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Extension import distutils.util import subprocess import numpy as np import os from glob import glob root_inc = '' root_ldflags = [] try: root_inc = subprocess.Popen(["root-config", "--incdir"], stdout=subprocess.PIPE).communicate()[0].strip() root_ldflags = subprocess.Popen(["root-config", "--libs"], stdout=subprocess.PIPE).communicate()[0].strip().split(' ') except OSError: rootsys = os.environ['ROOTSYS'] root_inc = subprocess.Popen([rootsys+"/bin/root-config", "--incdir"], stdout=subprocess.PIPE).communicate()[0].strip() root_ldflags = subprocess.Popen([rootsys+"/bin/root-config", "--libs"], stdout=subprocess.PIPE).communicate()[0].strip().split(' ') librootnumpy = Extension('root_numpy._librootnumpy', sources=['root_numpy/src/_librootnumpy.cpp'], include_dirs=[ np.get_include(), root_inc, 'root_numpy/src'], extra_compile_args = [], extra_link_args=[] + root_ldflags) libnumpyhist = Extension('root_numpy._libnumpyhist', sources=['root_numpy/src/_libnumpyhist.cpp'], include_dirs=[np.get_include(), root_inc, 'root_numpy'], extra_compile_args = [], extra_link_args=[] + root_ldflags) execfile('root_numpy/info.py') setup( name='root_numpy', version=__version__, description='An interface between ROOT and NumPy', long_description=''.join(open('README.rst').readlines()[2:]), author='the rootpy developers', author_email='rootpy-dev@googlegroups.com', url='https://github.com/rootpy/root_numpy', download_url='http://pypi.python.org/packages/source/r/' 'root_numpy/root_numpy-%s.tar.gz' % __version__, packages=['root_numpy','root_numpy.tests'], package_data={ 'root_numpy': ['tests/*.root']}, ext_modules=[librootnumpy, libnumpyhist], classifiers=[ "Programming Language :: Python", "Topic :: Utilities", "Operating System :: POSIX :: Linux", "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", ] )
#!/usr/bin/env python from distutils.core import setup, Extension import distutils.util import subprocess import numpy as np import os from glob import glob root_inc = '' root_ldflags = [] try: root_inc = subprocess.Popen(["root-config", "--incdir"], stdout=subprocess.PIPE).communicate()[0].strip() root_ldflags = subprocess.Popen(["root-config", "--libs"], stdout=subprocess.PIPE).communicate()[0].strip().split(' ') except OSError: rootsys = os.environ['ROOTSYS'] root_inc = subprocess.Popen([rootsys+"/bin/root-config", "--incdir"], stdout=subprocess.PIPE).communicate()[0].strip() root_ldflags = subprocess.Popen([rootsys+"/bin/root-config", "--libs"], stdout=subprocess.PIPE).communicate()[0].strip().split(' ') librootnumpy = Extension('root_numpy._librootnumpy', sources=['root_numpy/src/_librootnumpy.cpp'], include_dirs=[ np.get_include(), root_inc, 'root_numpy/src'], extra_compile_args = [], extra_link_args=[] + root_ldflags) libnumpyhist = Extension('root_numpy._libnumpyhist', sources=['root_numpy/src/_libnumpyhist.cpp'], include_dirs=[np.get_include(), root_inc, 'root_numpy'], extra_compile_args = [], extra_link_args=[] + root_ldflags) execfile('root_numpy/info.py') setup( name='root_numpy', version=__version__, description='An interface between ROOT and NumPy', long_description=''.join(open('README.rst').readlines()[2:]), author='the rootpy developers', author_email='rootpy-dev@googlegroups.com', url='https://github.com/rootpy/root_numpy', download_url='http://pypi.python.org/packages/source/r/' 'root_numpy/root_numpy-%s.tar.gz' % __version__, packages=['root_numpy'], package_data={ 'root_numpy': ['tests/*.root']}, ext_modules=[librootnumpy, libnumpyhist], classifiers=[ "Programming Language :: Python", "Topic :: Utilities", "Operating System :: POSIX :: Linux", "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", ] )
bsd-3-clause
Python
f0fdb40ad8d1a4e6f7f9e30471a9c16a6c4361f2
Remove cyclical dependency
crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute
setup.py
setup.py
from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = [] def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest errno = pytest.main(self.pytest_args) exit(errno) ENTRY_POINTS = """ [crosscompute] run = crosscompute.scripts.run:RunScript serve = crosscompute.scripts.serve:ServeScript """ REQUIREMENTS = [ 'configparser', 'invisibleroads_macros', 'invisibleroads_posts', 'invisibleroads_repositories', 'pyramid', 'pyramid_jinja2', 'six', 'stevedore', ] FOLDER = dirname(abspath(__file__)) DESCRIPTION = '\n\n'.join(open(join(FOLDER, x)).read().strip() for x in [ 'README.rst', 'CHANGES.rst']) setup( name='crosscompute', version='0.2.1', description='Publish your computational model', long_description=DESCRIPTION, classifiers=[ 'Programming Language :: Python', 'Framework :: Pyramid', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], author='Roy Hyunjin Han', author_email='rhh@crosscompute.com', url='https://crosscompute.com', keywords='web pyramid pylons crosscompute', package_dir={'': 'lib'}, packages=['crosscompute'], include_package_data=True, zip_safe=False, install_requires=REQUIREMENTS, tests_require=['lxml', 'pytest', 'werkzeug'], cmdclass={'test': PyTest}, entry_points=ENTRY_POINTS, scripts=['bin/crosscompute'])
from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = [] def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest errno = pytest.main(self.pytest_args) exit(errno) ENTRY_POINTS = """ [crosscompute] run = crosscompute.scripts.run:RunScript serve = crosscompute.scripts.serve:ServeScript """ REQUIREMENTS = [ 'configparser', 'invisibleroads', 'invisibleroads_macros', 'invisibleroads_posts', 'invisibleroads_repositories', 'pyramid', 'pyramid_jinja2', 'six', 'stevedore', ] FOLDER = dirname(abspath(__file__)) DESCRIPTION = '\n\n'.join(open(join(FOLDER, x)).read().strip() for x in [ 'README.rst', 'CHANGES.rst']) setup( name='crosscompute', version='0.2', description='Publish your computational model', long_description=DESCRIPTION, classifiers=[ 'Programming Language :: Python', 'Framework :: Pyramid', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], author='Roy Hyunjin Han', author_email='rhh@crosscompute.com', url='https://crosscompute.com', keywords='web pyramid pylons crosscompute', package_dir={'': 'lib'}, packages=['crosscompute'], include_package_data=True, zip_safe=False, install_requires=REQUIREMENTS, tests_require=['lxml', 'pytest', 'werkzeug'], cmdclass={'test': PyTest}, entry_points=ENTRY_POINTS, scripts=['bin/crosscompute'])
mit
Python
e74e1d9d4dbd50b37d17b4827332cb4256eb7245
Change syutil dependency link to point at github.
matrix-org/synapse,illicitonion/synapse,matrix-org/synapse,howethomas/synapse,iot-factory/synapse,TribeMedia/synapse,rzr/synapse,matrix-org/synapse,TribeMedia/synapse,iot-factory/synapse,illicitonion/synapse,TribeMedia/synapse,matrix-org/synapse,rzr/synapse,rzr/synapse,howethomas/synapse,matrix-org/synapse,howethomas/synapse,rzr/synapse,illicitonion/synapse,rzr/synapse,howethomas/synapse,iot-factory/synapse,TribeMedia/synapse,matrix-org/synapse,illicitonion/synapse,iot-factory/synapse,TribeMedia/synapse,howethomas/synapse,illicitonion/synapse,iot-factory/synapse
setup.py
setup.py
import os from setuptools import setup, find_packages # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="SynapseHomeServer", version="0.1", packages=find_packages(exclude=["tests"]), description="Reference Synapse Home Server", install_requires=[ "syutil==0.0.1", "Twisted>=14.0.0", "service_identity>=1.0.0", "pyasn1", "pynacl", "daemonize", "py-bcrypt", ], dependency_links=[ "git+ssh://git@github.com:matrix-org/syutil.git#egg=syutil-0.0.1", ], setup_requires=[ "setuptools_trial", "setuptools>=1.0.0", # Needs setuptools that supports git+ssh. It's not obvious when support for this was introduced. "mock" ], include_package_data=True, long_description=read("README.rst"), entry_points=""" [console_scripts] synapse-homeserver=synapse.app.homeserver:run """ )
import os from setuptools import setup, find_packages # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="SynapseHomeServer", version="0.1", packages=find_packages(exclude=["tests"]), description="Reference Synapse Home Server", install_requires=[ "syutil==0.0.1", "Twisted>=14.0.0", "service_identity>=1.0.0", "pyasn1", "pynacl", "daemonize", "py-bcrypt", ], dependency_links=[ "git+ssh://git@git.openmarket.com/tng/syutil.git#egg=syutil-0.0.1", ], setup_requires=[ "setuptools_trial", "setuptools>=1.0.0", # Needs setuptools that supports git+ssh. It's not obvious when support for this was introduced. "mock" ], include_package_data=True, long_description=read("README.rst"), entry_points=""" [console_scripts] synapse-homeserver=synapse.app.homeserver:run """ )
apache-2.0
Python
656f0d2da7b27ccb3f523c66b7f62a69e6e2691e
add extra_require for ced and nwb
INM-6/python-neo,samuelgarcia/python-neo,apdavison/python-neo,JuliaSprenger/python-neo,NeuralEnsemble/python-neo
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os long_description = open("README.rst").read() install_requires = ['packaging', 'numpy>=1.18.5', 'quantities>=0.12.1'] extras_require = { 'igorproio': ['igor'], 'kwikio': ['scipy', 'klusta'], 'neomatlabio': ['scipy>=1.0.0'], 'nixio': ['nixio>=1.5.0'], 'stimfitio': ['stfio'], 'tiffio': ['pillow'], 'edf': ['pyedflib'], 'ced': ['sonpy'], 'nwb': ['pynwb'], } with open("neo/version.py") as fp: d = {} exec(fp.read(), d) neo_version = d['version'] setup( name="neo", version=neo_version, packages=find_packages(), install_requires=install_requires, extras_require=extras_require, author="Neo authors and contributors", author_email="samuel.garcia@cnrs.fr", description="Neo is a package for representing electrophysiology data in " "Python, together with support for reading a wide range of " "neurophysiology file formats", long_description=long_description, license="BSD-3-Clause", url='https://neuralensemble.org/neo', python_requires=">=3.7", classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Scientific/Engineering'] )
#!/usr/bin/env python from setuptools import setup, find_packages import os long_description = open("README.rst").read() install_requires = ['packaging', 'numpy>=1.18.5', 'quantities>=0.12.1'] extras_require = { 'igorproio': ['igor'], 'kwikio': ['scipy', 'klusta'], 'neomatlabio': ['scipy>=1.0.0'], 'nixio': ['nixio>=1.5.0'], 'stimfitio': ['stfio'], 'tiffio': ['pillow'], 'edf': ['pyedflib'] } with open("neo/version.py") as fp: d = {} exec(fp.read(), d) neo_version = d['version'] setup( name="neo", version=neo_version, packages=find_packages(), install_requires=install_requires, extras_require=extras_require, author="Neo authors and contributors", author_email="samuel.garcia@cnrs.fr", description="Neo is a package for representing electrophysiology data in " "Python, together with support for reading a wide range of " "neurophysiology file formats", long_description=long_description, license="BSD-3-Clause", url='https://neuralensemble.org/neo', python_requires=">=3.7", classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Scientific/Engineering'] )
bsd-3-clause
Python
b37c5db65355353630debda2f0ddb604994d345b
Add python implementation tag for pypi.
kinverarity1/pyexperiment,kinverarity1/pyexperiment,DeercoderResearch/pyexperiment,kinverarity1/pyexperiment,shaunstanislaus/pyexperiment,kinverarity1/pyexperiment,duerrp/pyexperiment,shaunstanislaus/pyexperiment,DeercoderResearch/pyexperiment,shaunstanislaus/pyexperiment,shaunstanislaus/pyexperiment,duerrp/pyexperiment,DeercoderResearch/pyexperiment,duerrp/pyexperiment,DeercoderResearch/pyexperiment
setup.py
setup.py
"""Setup for pyexperiment """ from __future__ import print_function # from __future__ import unicode_literals from __future__ import division from __future__ import absolute_import import os from setuptools import setup read_plain = lambda fname: open( os.path.join(os.path.dirname(__file__), fname), 'r').read() try: from pypandoc import convert read_md = lambda fname: convert(fname, 'rst') except ImportError: print("Warning: pypandoc module not found") read_md = read_plain LONG_DESCRIPTION = 'Framework for easy and clean experiments with python.' if os.path.exists('README.rst'): print("README.rst found...") LONG_DESCRIPTION = read_plain('README.rst') elif os.path.exists('README.md'): print("RADME.md found, converting to rst") LONG_DESCRIPTION = read_md('README.md') setup( name="pyexperiment", version="0.1.18", author="Peter Duerr", author_email="duerrp@gmail.com", description="Run experiments with Python - quick and clean.", license="MIT", keywords="science experiment", url="https://github.com/duerrp/pyexperiment", packages=['pyexperiment', 'pyexperiment.conf', 'pyexperiment.state', 'pyexperiment.utils', 'pyexperiment.log', ], long_description=LONG_DESCRIPTION, classifiers=[ "Development Status :: 3 - Alpha", "Topic :: Utilities", "License :: OSI Approved :: MIT License", 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: CPython', ], )
"""Setup for pyexperiment """ from __future__ import print_function # from __future__ import unicode_literals from __future__ import division from __future__ import absolute_import import os from setuptools import setup read_plain = lambda fname: open( os.path.join(os.path.dirname(__file__), fname), 'r').read() try: from pypandoc import convert read_md = lambda fname: convert(fname, 'rst') except ImportError: print("Warning: pypandoc module not found") read_md = read_plain LONG_DESCRIPTION = 'Framework for easy and clean experiments with python.' if os.path.exists('README.rst'): print("README.rst found...") LONG_DESCRIPTION = read_plain('README.rst') elif os.path.exists('README.md'): print("RADME.md found, converting to rst") LONG_DESCRIPTION = read_md('README.md') setup( name="pyexperiment", version="0.1.17", author="Peter Duerr", author_email="duerrp@gmail.com", description="Run experiments with Python - quick and clean.", license="MIT", keywords="science experiment", url="https://github.com/duerrp/pyexperiment", packages=['pyexperiment', 'pyexperiment.conf', 'pyexperiment.state', 'pyexperiment.utils', 'pyexperiment.log', ], long_description=LONG_DESCRIPTION, classifiers=[ "Development Status :: 3 - Alpha", "Topic :: Utilities", "License :: OSI Approved :: MIT License", 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], )
mit
Python
79ba247c70764cb31498637fed153f166f1096b7
Increment version.
chriscannon/highlander
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup __version__ = '0.1.1' setup( name='highlander-one', version=__version__, author='Christopher T. Cannon', author_email='christophertcannon@gmail.com', description='A simple decorator to ensure that your ' 'program is only running once on a system.', url='https://github.com/chriscannon/highlander', install_requires=[ 'funcy>=1.4', 'psutil>=2.2.1' ], license='MIT', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], download_url='https://github.com/chriscannon/highlander/tarball/{0}'.format(__version__), packages=['highlander'], test_suite='tests.highlander_tests.get_suite', )
#!/usr/bin/env python from setuptools import setup __version__ = '0.1.0' setup( name='highlander-one', version=__version__, author='Christopher T. Cannon', author_email='christophertcannon@gmail.com', description='A simple decorator to ensure that your ' 'program is only running once on a system.', url='https://github.com/chriscannon/highlander', install_requires=[ 'funcy>=1.4', 'psutil>=2.2.1' ], license='MIT', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], download_url='https://github.com/chriscannon/highlander/tarball/{0}'.format(__version__), packages=['highlander'], test_suite='tests.highlander_tests.get_suite', )
mit
Python
333067f1bed8af3bf6ef72fb9996b2d73c1649bd
include data files; fixed #17
pine/opoona
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import setuptools setuptools.setup( name = 'opoona', version = '0.1.0', description = 'Opoona, the thicket opener.', license = 'MIT', author = 'Pine, Mihyaeru', author_email = 'pinemz@gmail.com, mihyaeru@gmail.com', url = 'http://github.com/pine/opoona', keywords = 'opoona git issue github', packages = ['opoona', 'opoona.tickets'], package_data = {'opoona': ['*.yaml']}, entry_points = {'console_scripts': ['opoona = opoona:main']}, install_requires = [ 'docopt >= 0.6.2', 'github3.py >= 0.9.6', 'PyYAML >= 3.12', 'requests >= 2.12.4', 'six >= 1.10.0', ], )
#!/usr/bin/env python # -*- coding: utf-8 -*- import setuptools setuptools.setup( name = 'opoona', version = '0.1.0', description = 'Opoona, the thicket opener.', license = 'MIT', author = 'Pine, Mihyaeru', author_email = 'pinemz@gmail.com, mihyaeru@gmail.com', url = 'http://github.com/pine/opoona', keywords = 'opoona git issue github', packages = ['opoona', 'opoona.tickets'], entry_points = {'console_scripts': ['opoona = opoona:main']}, install_requires = [ 'docopt >= 0.6.2', 'github3.py >= 0.9.6', 'PyYAML >= 3.12', 'requests >= 2.12.4', 'six >= 1.10.0', ], )
mit
Python
ecdaedcec8e63facad0cb49fbdd91f9ae2b92d50
add tqdm
shellphish/fuzzer,shellphish/fuzzer
setup.py
setup.py
import os from distutils.core import setup setup( name='fuzzer', version='1.1', description="Python wrapper for multiarch AFL", packages=['fuzzer', 'fuzzer.extensions'], data_files = [ ("bin", (os.path.join("bin", "create_dict.py"),)) ], scripts = [ 'shellphuzz' ], install_requires=['angr', 'shellphish-qemu', 'shellphish-afl', 'tqdm'] )
import os from distutils.core import setup setup( name='fuzzer', version='1.1', description="Python wrapper for multiarch AFL", packages=['fuzzer', 'fuzzer.extensions'], data_files = [ ("bin", (os.path.join("bin", "create_dict.py"),)) ], scripts = [ 'shellphuzz' ], install_requires=['angr', 'shellphish-qemu', 'shellphish-afl'] )
bsd-2-clause
Python
bc57c91682ddb10749185c1526eeae9e9b049471
correct setup.py
tsterbak/kernel_eca
setup.py
setup.py
import io import os import re from distutils.core import setup def read(path, encoding='utf-8'): path = os.path.join(os.path.dirname(__file__), path) with io.open(path, encoding=encoding) as fp: return fp.read() def version(path): """Obtain the packge version from a python file e.g. pkg/__init__.py See <https://packaging.python.org/en/latest/single_source_version.html>. """ version_file = read(path) version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""", version_file, re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") DESCRIPTION = "Python implementation of Kernel entropy component analysis" LONG_DESCRIPTION = """ Kernel entropy component analysis ================================= This is a scikit-learn compatible implementation of Kernel entropy component analysis. For more information, see the github project page: http://github.com/ """ NAME = "kernel_eca" AUTHOR = "Tobias Sterbak" AUTHOR_EMAIL = "sterbak-it@outlook.com" MAINTAINER = "Tobias Sterbak" MAINTAINER_EMAIL = "sterbak-it@outlook.com" URL = 'http://github.com/tsterbak/kernel_eca' DOWNLOAD_URL = 'http://github.com/tsterbak/kernel_eca' LICENSE = 'BSD' VERSION = version('kernel_eca/__init__.py') setup(name=NAME, version=VERSION, description=DESCRIPTION, long_description=LONG_DESCRIPTION, author=AUTHOR, author_email=AUTHOR_EMAIL, maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, url=URL, download_url=DOWNLOAD_URL, license=LICENSE, packages=['KECA', ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5'], )
import io import os import re from distutils.core import setup def read(path, encoding='utf-8'): path = os.path.join(os.path.dirname(__file__), path) with io.open(path, encoding=encoding) as fp: return fp.read() def version(path): """Obtain the packge version from a python file e.g. pkg/__init__.py See <https://packaging.python.org/en/latest/single_source_version.html>. """ version_file = read(path) version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""", version_file, re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") DESCRIPTION = "Python implementation of Kernel entropy component analysis" LONG_DESCRIPTION = """ Kernel entropy component analysis ================================= This is a scikit-learn compatible implementation of Kernel entropy component analysis. For more information, see the github project page: http://github.com/ """ NAME = "kernel_eca" AUTHOR = "Tobias Sterbak" AUTHOR_EMAIL = "sterbak-it@outlook.com" MAINTAINER = "Tobias Sterbak" MAINTAINER_EMAIL = "sterbak-it@outlook.com" URL = 'http://github.com/tsterbak/kernel_eca' DOWNLOAD_URL = 'http://github.com/tsterbak/kernel_eca' LICENSE = 'BSD' VERSION = version('KECA/__init__.py') setup(name=NAME, version=VERSION, description=DESCRIPTION, long_description=LONG_DESCRIPTION, author=AUTHOR, author_email=AUTHOR_EMAIL, maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, url=URL, download_url=DOWNLOAD_URL, license=LICENSE, packages=['KECA', ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5'], )
bsd-3-clause
Python
2018d7275403d412b448f9ddb038dcf53323ed91
Update numpy requirement from <1.21.0,>=1.11.0 to >=1.11.0,<1.22.0
espdev/csaps
setup.py
setup.py
# -*- coding: utf-8 -*- import pathlib from setuptools import setup ROOT_DIR = pathlib.Path(__file__).parent def _get_version(): about = {} ver_mod = ROOT_DIR / 'csaps' / '_version.py' exec(ver_mod.read_text(), about) return about['__version__'] def _get_long_description(): readme = ROOT_DIR / 'README.md' changelog = ROOT_DIR / 'CHANGELOG.md' return '{}\n{}'.format( readme.read_text(encoding='utf-8'), changelog.read_text(encoding='utf-8') ) setup( name='csaps', version=_get_version(), packages=['csaps'], python_requires='>=3.6, <4', install_requires=[ 'numpy >=1.11.0, <1.22.0', 'scipy >=1.0.0, <1.7.0', ], extras_require={ 'docs': ['sphinx >=3.0.0, <5', 'matplotlib >=3.1', 'numpydoc', 'm2r2'], 'tests': ['pytest', 'coverage <6', 'pytest-cov', 'coveralls'], }, package_data={"csaps": ["py.typed"]}, url='https://github.com/espdev/csaps', project_urls={ 'Documentation': 'https://csaps.readthedocs.io', 'Code': 'https://github.com/espdev/csaps', 'Issue tracker': 'https://github.com/espdev/csaps/issues', }, license='MIT', author='Eugene Prilepin', author_email='esp.home@gmail.com', description='Cubic spline approximation (smoothing)', long_description=_get_long_description(), long_description_content_type='text/markdown', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Software Development :: Libraries', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', ], )
# -*- coding: utf-8 -*- import pathlib from setuptools import setup ROOT_DIR = pathlib.Path(__file__).parent def _get_version(): about = {} ver_mod = ROOT_DIR / 'csaps' / '_version.py' exec(ver_mod.read_text(), about) return about['__version__'] def _get_long_description(): readme = ROOT_DIR / 'README.md' changelog = ROOT_DIR / 'CHANGELOG.md' return '{}\n{}'.format( readme.read_text(encoding='utf-8'), changelog.read_text(encoding='utf-8') ) setup( name='csaps', version=_get_version(), packages=['csaps'], python_requires='>=3.6, <4', install_requires=[ 'numpy >=1.11.0, <1.21.0', 'scipy >=1.0.0, <1.7.0', ], extras_require={ 'docs': ['sphinx >=3.0.0, <5', 'matplotlib >=3.1', 'numpydoc', 'm2r2'], 'tests': ['pytest', 'coverage <6', 'pytest-cov', 'coveralls'], }, package_data={"csaps": ["py.typed"]}, url='https://github.com/espdev/csaps', project_urls={ 'Documentation': 'https://csaps.readthedocs.io', 'Code': 'https://github.com/espdev/csaps', 'Issue tracker': 'https://github.com/espdev/csaps/issues', }, license='MIT', author='Eugene Prilepin', author_email='esp.home@gmail.com', description='Cubic spline approximation (smoothing)', long_description=_get_long_description(), long_description_content_type='text/markdown', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Software Development :: Libraries', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', ], )
mit
Python
ca98cc4a2367d847302d4f6ceff4d583e8ba2f0b
Update setup.py file
JKThanassi/xpdView,NSLS-II-XPD/xpdView
setup.py
setup.py
""" use 'python setup.py install' while in file folder in anaconda to install this package """ from setuptools import setup, find_packages setup( name='xpd_view', version='0.vista', packages=find_packages(), description='Visualization Code for Beam line', zip_safe=False, url='https://github.com/cduff4464/xpdView.git' )
""" use 'python setup.py install' while in file folder in anaconda to install this package """ from setuptools import setup, find_packages setup( name='2016_summer_XPD', version='0.0.2', packages=find_packages(), description='Experimental code for summer project', zip_safe=False, url='https://github.com/cduff4464/xpdView.git' )
bsd-3-clause
Python
c8a92a72eaff9a4c271d56cd48bfca3b7e5b31fa
use python3
simbuerg/benchbuild,simbuerg/benchbuild
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup(name='pprof', version='0.9.8', packages=find_packages(), install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0", "regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6", "virtualenv==13.1.0", "sphinxcontrib-napoleon", "psycopg2"], author="Andreas Simbuerger", author_email="simbuerg@fim.uni-passau.de", description="This is the experiment driver for the pprof study", license="MIT", entry_points={ 'console_scripts': ['pprof=pprof.driver:main'] })
#!/usr/bin/evn python2 from setuptools import setup, find_packages setup(name='pprof', version='0.9.8', packages=find_packages(), install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0", "regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6", "virtualenv==13.1.0", "sphinxcontrib-napoleon", "psycopg2"], author="Andreas Simbuerger", author_email="simbuerg@fim.uni-passau.de", description="This is the experiment driver for the pprof study", license="MIT", entry_points={ 'console_scripts': ['pprof=pprof.driver:main'] })
mit
Python
bcf556284d51f3bc3e4b8b4272fc2d270b882f61
Increment Version number
fabianvf/scrapi,mehanig/scrapi,felliott/scrapi,ostwald/scrapi,CenterForOpenScience/scrapi,fabianvf/scrapi,erinspace/scrapi,felliott/scrapi,icereval/scrapi,CenterForOpenScience/scrapi,erinspace/scrapi,mehanig/scrapi,jeffreyliu3230/scrapi,alexgarciac/scrapi
setup.py
setup.py
from distutils.core import setup setup( name='scrAPI Utils', version='0.4.5', author='Chris Seto', author_email='Chris@seto.xyz', packages=['scrapi.linter'], package_data={'scrapi.linter': ['../__init__.py']}, url='http://www.github.com/chrisseto/scrapi', license='LICENSE.txt', description='Package to aid in consumer creation for scrAPI', long_description=open('README.md').read(), )
from distutils.core import setup setup( name='scrAPI Utils', version='0.4.4', author='Chris Seto', author_email='Chris@seto.xyz', packages=['scrapi.linter'], package_data={'scrapi.linter': ['../__init__.py']}, url='http://www.github.com/chrisseto/scrapi', license='LICENSE.txt', description='Package to aid in consumer creation for scrAPI', long_description=open('README.md').read(), )
apache-2.0
Python
700c5d282ffd62b7d66ffde1ed493db092d87aae
Update support for 3.6.
smarlowucf/wxcast
setup.py
setup.py
#!/usr/bin/python3 # -*- coding: utf-8 -*- # # wxcast: A Python API and cli to collect weather information. # # Copyright (C) 2017 Sean Marlow # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. from setuptools import setup with open('README.adoc') as readme_file: readme = readme_file.read() with open('CHANGES.adoc') as changes_file: changes = changes_file.read() requirements = [ 'certifi', 'Click>=6.0', 'geopy', 'requests', ] test_requirements = [ 'pytest', ] setup( name='wxcast', version='1.0.6', description='A CLI utility for retrieving weather information.', long_description=readme + '\n\n' + changes, author="Sean Marlow", url='https://github.com/smarlowucf/wxcast', packages=[ 'wxcast', ], package_dir={'wxcast': 'wxcast'}, entry_points={ 'console_scripts': [ 'wxcast=wxcast.cli:main' ] }, install_requires=requirements, license='GPLv3+', zip_safe=False, keywords='wxcast', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements )
#!/usr/bin/python3 # -*- coding: utf-8 -*- # # wxcast: A Python API and cli to collect weather information. # # Copyright (C) 2017 Sean Marlow # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. from setuptools import setup with open('README.adoc') as readme_file: readme = readme_file.read() with open('CHANGES.adoc') as changes_file: changes = changes_file.read() requirements = [ 'certifi', 'Click>=6.0', 'geopy', 'requests', ] test_requirements = [ 'pytest', ] setup( name='wxcast', version='1.0.6', description='A CLI utility for retrieving weather information.', long_description=readme + '\n\n' + changes, author="Sean Marlow", url='https://github.com/smarlowucf/wxcast', packages=[ 'wxcast', ], package_dir={'wxcast': 'wxcast'}, entry_points={ 'console_scripts': [ 'wxcast=wxcast.cli:main' ] }, install_requires=requirements, license='GPLv3+', zip_safe=False, keywords='wxcast', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], test_suite='tests', tests_require=test_requirements )
mit
Python
3de79ecba9a9bbef39cf324cc5dc62f703767cc3
Change author_email to my own email
hobarrera/django-afip,hobarrera/django-afip
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='django-afip', version='0.8.0', description='AFIP integration for django', author='Hugo Osvaldo Barrera', author_email='hugo@barrera.io', url='https://gitlab.com/hobarrera/django-afip', license='ISC', packages=find_packages(), include_package_data=True, long_description=open('README.rst').read(), install_requires=open('requirements.txt').read().splitlines()[:-1] + ['suds-py3==1.0.0.0'], dependency_links=( 'git+https://github.com/hobarrera/suds-py3.git#egg=suds-py3-1.0.0.0', ), use_scm_version={'version_scheme': 'post-release'}, setup_requires=['setuptools_scm'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='django-afip', version='0.8.0', description='AFIP integration for django', author='Hugo Osvaldo Barrera', author_email='hbarrera@z47.io', url='https://gitlab.com/hobarrera/django-afip', license='ISC', packages=find_packages(), include_package_data=True, long_description=open('README.rst').read(), install_requires=open('requirements.txt').read().splitlines()[:-1] + ['suds-py3==1.0.0.0'], dependency_links=( 'git+https://github.com/hobarrera/suds-py3.git#egg=suds-py3-1.0.0.0', ), use_scm_version={'version_scheme': 'post-release'}, setup_requires=['setuptools_scm'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
isc
Python
ab92ce1be3fa31884da9834803bc661c75402d67
bump to 0.2.0
juanpabloaj/pypptx
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages def read(*paths): """ read files """ with open(os.path.join(*paths), 'r') as filename: return filename.read() install_requires = read('requirements.txt').splitlines() try: long_description = open("README.rst").read() except IOError: long_description = "" setup( name="pypptx", version="0.2.0", description="Create a pptx from plain text", license="MIT", author="JuanPablo AJ", author_email="jpabloaj@gmail.com", packages=find_packages(), install_requires=install_requires, long_description=long_description, url="https://github.com/juanpabloaj/pypptx", test_suite="tests", entry_points={ 'console_scripts': [ 'pptx=pypptx:main', ], }, classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 2.7", ] )
# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages def read(*paths): """ read files """ with open(os.path.join(*paths), 'r') as filename: return filename.read() install_requires = read('requirements.txt').splitlines() try: long_description = open("README.rst").read() except IOError: long_description = "" setup( name="pypptx", version="0.1.1", description="Create a pptx from plain text", license="MIT", author="JuanPablo AJ", author_email="jpabloaj@gmail.com", packages=find_packages(), install_requires=install_requires, long_description=long_description, url="https://github.com/juanpabloaj/pypptx", test_suite="tests", entry_points={ 'console_scripts': [ 'pptx=pypptx:main', ], }, classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 2.7", ] )
mit
Python
5438848037167696dbe4bf9081506415de94795f
include package data
maykinmedia/django-timeline-logger,maykinmedia/django-timeline-logger
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-timeline-logger', version='0.2', description='Generic event logger for Django models.', author='Maykin Media', author_email='support@maykinmedia.nl', url='https://github.com/maykinmedia/django-timeline-logger', install_requires=[ 'Django>=1.8', 'django-appconf', ], packages=find_packages(exclude=['tests*']), include_package_data=True, zip_safe=False, setup_requires=['pytest-runner'], tests_require=[ 'psycopg2', 'pytest', 'pytest-cov', 'pytest-django', 'pytest-pep8', 'pytest-pylint', 'pytest-pythonpath', ], classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django :: 1.9', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: Unix', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries :: Application Frameworks' ] )
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='django-timeline-logger', version='0.2', description='Generic event logger for Django models.', author='Maykin Media', author_email='support@maykinmedia.nl', url='https://github.com/maykinmedia/django-timeline-logger', install_requires=[ 'Django>=1.8', 'django-appconf', ], packages=find_packages(exclude=['tests*']), setup_requires=['pytest-runner'], tests_require=[ 'psycopg2', 'pytest', 'pytest-cov', 'pytest-django', 'pytest-pep8', 'pytest-pylint', 'pytest-pythonpath', ], classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django :: 1.9', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: Unix', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries :: Application Frameworks' ] )
mit
Python
16ae133af1977f35e1bf85b1c6ce57614418356c
use latest setuptest
joao-bjsoftware/django-ckeditor,BlastPy/django-ckeditor,Govexec/django-ckeditor,MarcJoan/django-ckeditor,sergey-romanov/django-ckeditor,williamdev/django-ckeditor,BlastPy/django-ckeditor,Josephpaik/django-ckeditor,ZG-Tennis/django-ckeditor,makinacorpus/django-ckeditor,Xangis/django-ckeditor,Josephpaik/django-ckeditor,lDuffy/django-ckeditor,zatarus/django-ckeditor,stkrp/django-ckeditor,simon-db/django-ckeditor,joao-bjsoftware/django-ckeditor,simon-db/django-ckeditor,uhuramedia/django-ckeditor,Govexec/django-ckeditor,sergey-romanov/django-ckeditor,luzfcb/django-ckeditor,MarcJoan/django-ckeditor,Xangis/django-ckeditor,ZG-Tennis/django-ckeditor,unomena/django-ckeditor-new,jonny5532/django-ckeditor,gushedaoren/django-ckeditor,unomena/django-ckeditor-new,luzfcb/django-ckeditor,joao-bjsoftware/django-ckeditor,Josephpaik/django-ckeditor,jonny5532/django-ckeditor,stkrp/django-ckeditor,jonny5532/django-ckeditor,lDuffy/django-ckeditor,Xangis/django-ckeditor,Sponsorcraft/django-ckeditor,jsnjack/django-ckeditor4,riklaunim/django-ckeditor,riklaunim/django-ckeditor,ZG-Tennis/django-ckeditor,BlastPy/django-ckeditor,Govexec/django-ckeditor,gushedaoren/django-ckeditor,williamdev/django-ckeditor,Xangis/django-ckeditor,joao-bjsoftware/django-ckeditor,zatarus/django-ckeditor,sergey-romanov/django-ckeditor,riklaunim/django-ckeditor,sergey-romanov/django-ckeditor,Xangis/django-ckeditor,lDuffy/django-ckeditor,unomena/django-ckeditor-new,stkrp/django-ckeditor,williamdev/django-ckeditor,luzfcb/django-ckeditor,ZG-Tennis/django-ckeditor,lDuffy/django-ckeditor,zatarus/django-ckeditor,uhuramedia/django-ckeditor,gushedaoren/django-ckeditor,Govexec/django-ckeditor,jsnjack/django-ckeditor4,jsnjack/django-ckeditor4,simon-db/django-ckeditor,Sponsorcraft/django-ckeditor,MarcJoan/django-ckeditor,makinacorpus/django-ckeditor,Sponsorcraft/django-ckeditor,uhuramedia/django-ckeditor,ZG-Tennis/django-ckeditor,BlastPy/django-ckeditor,williamdev/django-ckeditor,simon-db/django-ckeditor,uhuramedia/django-ckeditor
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-ckeditor', version='0.0.9', description='Django admin CKEditor integration.', long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Shaun Sephton', author_email='shaunsephton@gmail.com', url='http://github.com/shaunsephton/django-ckeditor', packages = find_packages(), dependency_links = [ 'http://dist.plone.org/thirdparty/', ], install_requires = [ 'PIL', ], include_package_data=True, test_suite="setuptest.SetupTestSuite", tests_require=[ 'django-setuptest>=0.0.6', ], classifiers=[ "Programming Language :: Python", "License :: OSI Approved :: BSD License", "Development Status :: 4 - Beta", "Operating System :: OS Independent", "Framework :: Django", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", ], zip_safe=False, )
from setuptools import setup, find_packages from setuptools.command.test import test def run_tests(self): from setuptest.runtests import runtests return runtests(self) test.run_tests = run_tests setup( name='django-ckeditor', version='0.0.9', description='Django admin CKEditor integration.', long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Shaun Sephton', author_email='shaunsephton@gmail.com', url='http://github.com/shaunsephton/django-ckeditor', packages = find_packages(), dependency_links = [ 'http://dist.plone.org/thirdparty/', ], install_requires = [ 'PIL', ], include_package_data=True, test_suite="ckeditor.tests", tests_require=[ 'django-setuptest', ], classifiers=[ "Programming Language :: Python", "License :: OSI Approved :: BSD License", "Development Status :: 4 - Beta", "Operating System :: OS Independent", "Framework :: Django", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", ], zip_safe=False, )
bsd-3-clause
Python
b5c42664c567f7aac714fe3f78dfeca2ab92d38e
Bump version to 1.0.3
bertrandvidal/parse_this
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup README_PATH = os.path.join(os.path.dirname(__file__), 'README.rst') with open(README_PATH, "r") as README_FILE: README = README_FILE.read() setup( name="parse_this", version="1.0.3", description=("Makes it easy to create a command line interface for any " "function, method or classmethod.."), long_description=README, packages=["parse_this", "test"], author="Bertrand Vidal", author_email="vidal.bertrand@gmail.com", download_url="https://pypi.python.org/pypi/parse_this", url="https://github.com/bertrandvidal/parse_this", license="License :: MIT", classifiers=[ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", ], setup_requires=[ "nose", ], )
#!/usr/bin/env python import os from setuptools import setup README_PATH = os.path.join(os.path.dirname(__file__), 'README.rst') with open(README_PATH, "r") as README_FILE: README = README_FILE.read() setup( name="parse_this", version="1.0.2", description=("Makes it easy to create a command line interface for any " "function, method or classmethod.."), long_description=README, packages=["parse_this", "test"], author="Bertrand Vidal", author_email="vidal.bertrand@gmail.com", download_url="https://pypi.python.org/pypi/parse_this", url="https://github.com/bertrandvidal/parse_this", license="License :: MIT", classifiers=[ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", ], setup_requires=[ "nose", ], )
mit
Python
9cc85936a0b64ff82c427d1fc35dfc7297838810
use raw string for regex
red-hat-storage/rhcephcompose,red-hat-storage/rhcephcompose
setup.py
setup.py
import os import re import sys import subprocess from setuptools.command.test import test as TestCommand from setuptools import setup, Command readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(re.findall(r"__([a-z]+)__\s*=\s*'([^']+)'", module_file)) version = metadata['version'] class ReleaseCommand(Command): """ Tag and push a new release. """ user_options = [('sign', 's', 'GPG-sign the Git tag and release files')] def initialize_options(self): self.sign = False def finalize_options(self): pass def run(self): # Create Git tag tag_name = 'v%s' % version cmd = ['git', 'tag', '-a', tag_name, '-m', 'version %s' % version] if self.sign: cmd.append('-s') print(' '.join(cmd)) subprocess.check_call(cmd) # Push Git tag to origin remote cmd = ['git', 'push', 'origin', tag_name] print(' '.join(cmd)) subprocess.check_call(cmd) # Push package to pypi cmd = ['python', 'setup.py', 'sdist', 'upload'] if self.sign: cmd.append('--sign') print(' '.join(cmd)) subprocess.check_call(cmd) class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = '' def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest errno = pytest.main('rhcephcompose ' + self.pytest_args) sys.exit(errno) setup( name='rhcephcompose', description='Distribution compose tool', packages=['rhcephcompose'], author='Ken Dreyer', author_email='kdreyer@redhat.com', version=version, license='MIT', zip_safe=False, keywords='compose, pungi', long_description=LONG_DESCRIPTION, scripts=['bin/rhcephcompose'], install_requires=[ 'kobo', 'requests', ], tests_require=[ 'pytest', ], cmdclass={'test': PyTest, 'release': ReleaseCommand}, )
import os import re import sys import subprocess from setuptools.command.test import test as TestCommand from setuptools import setup, Command readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file)) version = metadata['version'] class ReleaseCommand(Command): """ Tag and push a new release. """ user_options = [('sign', 's', 'GPG-sign the Git tag and release files')] def initialize_options(self): self.sign = False def finalize_options(self): pass def run(self): # Create Git tag tag_name = 'v%s' % version cmd = ['git', 'tag', '-a', tag_name, '-m', 'version %s' % version] if self.sign: cmd.append('-s') print(' '.join(cmd)) subprocess.check_call(cmd) # Push Git tag to origin remote cmd = ['git', 'push', 'origin', tag_name] print(' '.join(cmd)) subprocess.check_call(cmd) # Push package to pypi cmd = ['python', 'setup.py', 'sdist', 'upload'] if self.sign: cmd.append('--sign') print(' '.join(cmd)) subprocess.check_call(cmd) class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_options(self) self.pytest_args = '' def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest errno = pytest.main('rhcephcompose ' + self.pytest_args) sys.exit(errno) setup( name='rhcephcompose', description='Distribution compose tool', packages=['rhcephcompose'], author='Ken Dreyer', author_email='kdreyer@redhat.com', version=version, license='MIT', zip_safe=False, keywords='compose, pungi', long_description=LONG_DESCRIPTION, scripts=['bin/rhcephcompose'], install_requires=[ 'kobo', 'requests', ], tests_require=[ 'pytest', ], cmdclass={'test': PyTest, 'release': ReleaseCommand}, )
mit
Python
ef1cc78b1798f71e48ccd0793f40c6d181e72e74
update download_url (fixes #18)
dbtsai/python-mimeparse
setup.py
setup.py
#!/usr/bin/env python import os import codecs import mimeparse from setuptools import setup def read(fname): path = os.path.join(os.path.dirname(__file__), fname) return codecs.open(path, encoding='utf-8').read() setup( name="python-mimeparse", py_modules=["mimeparse"], version=mimeparse.__version__, description=("A module provides basic functions for parsing mime-type " "names and matching them against a list of media-ranges."), author="DB Tsai", author_email="dbtsai@dbtsai.com", url="https://github.com/dbtsai/python-mimeparse", download_url=("https://github.com/dbtsai/python-mimeparse/tarball/" + mimeparse.__version__), keywords=["mime-type"], classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", ], long_description=read('README.md') )
#!/usr/bin/env python import os import codecs import mimeparse from setuptools import setup def read(fname): path = os.path.join(os.path.dirname(__file__), fname) return codecs.open(path, encoding='utf-8').read() setup( name="python-mimeparse", py_modules=["mimeparse"], version=mimeparse.__version__, description=("A module provides basic functions for parsing mime-type " "names and matching them against a list of media-ranges."), author="DB Tsai", author_email="dbtsai@dbtsai.com", url="https://github.com/dbtsai/python-mimeparse", download_url=("http://pypi.python.org/packages/source/p/python-mimeparse/" "python-mimeparse-" + mimeparse.__version__ + ".tar.gz"), keywords=["mime-type"], classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", ], long_description=read('README.md') )
mit
Python
d518fb597f55c698ad154f2885baf2022112381f
Bump lxml from 4.6.5 to 4.9.1
ilevn/aiodictcc
setup.py
setup.py
import os import sys if sys.version_info[0:2] < (3, 5): raise Exception("aiodictcc requires Python 3.5+") from setuptools import setup rootpath = os.path.abspath(os.path.dirname(__file__)) def extract_version(_module='aiodictcc'): version = None fname = os.path.join(rootpath, _module, '__init__.py') with open(fname) as f: for line in f: if line.startswith('__version__'): _, version = line.split('=') version = version.strip()[1:-1] break return version setup( name='aiodictcc', version=extract_version(), packages=['aiodictcc'], url='https://github.com/ilevn/aiodictcc', license='MIT', author='Nils Theres', author_email='nilsntth@gmail.com', description='An asyncio-based wrapper for dict.cc', install_requires=['aiohttp>=2.0.5', 'lxml==4.9.1'] )
import os import sys if sys.version_info[0:2] < (3, 5): raise Exception("aiodictcc requires Python 3.5+") from setuptools import setup rootpath = os.path.abspath(os.path.dirname(__file__)) def extract_version(_module='aiodictcc'): version = None fname = os.path.join(rootpath, _module, '__init__.py') with open(fname) as f: for line in f: if line.startswith('__version__'): _, version = line.split('=') version = version.strip()[1:-1] break return version setup( name='aiodictcc', version=extract_version(), packages=['aiodictcc'], url='https://github.com/ilevn/aiodictcc', license='MIT', author='Nils Theres', author_email='nilsntth@gmail.com', description='An asyncio-based wrapper for dict.cc', install_requires=['aiohttp>=2.0.5', 'lxml==4.6.5'] )
mit
Python
294327c5c56e9c93a5ff60975343eae10a454893
Fix typo in setup.py
dcos/dcos-launch,dcos/dcos-launch
setup.py
setup.py
from setuptools import setup setup( name='dcos-launch', version='0.1', description='DC/OS cluster provisioning', url='https://dcos.io', author='Mesosphere, Inc.', author_email='help@dcos.io', license='apache2', classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', ], packages=['dcos_launch', 'dcos_launch.platforms'], install_requires=[ 'azure-storage', 'azure-mgmt-network', 'azure-mgmt-resource', 'boto3', 'botocore', 'cerberus', 'docopt', 'google-api-python-client', 'oauth2client==3.0.0', 'pyinstaller==3.2', 'py', 'pytest', 'pyyaml', 'requests==2.14.1', 'retrying'], entry_points={ 'console_scripts': [ 'dcos-launch=dcos_launch.cli:main', ], }, dependency_links=[ 'https://github.com/mesosphere/dcos-test-utils@remove_dcos_launch' ], package_data={ 'dcos_launch': [ 'sample_configs/*.yaml', 'ip-detect/aws.sh', 'ip-detect/aws_public.sh', 'ip-detect/gce.sh', 'ip-detect/gce_public.sh', 'templates/vpc-cluster-template.json', 'templates/vpc-ebs-only-cluster-template.json' ], } )
from setuptools import setup setup( name='dcos-launch', version='0.1', description='DC/OS cluster provisioning', url='https://dcos.io', author='Mesosphere, Inc.', author_email='help@dcos.io', license='apache2', classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', ], packages=['dcos_launch', 'dcos_launch.platforms'], install_requires=[ 'azure-storage', 'azure-mgmt-network', 'azure-mgmt-resource', 'boto3', 'botocore', 'cerberus', 'docopt', 'google-api-python-client', 'oauth2client==3.0.0', 'pyinstaller==3.2', 'py', 'pytest', 'pyyaml', 'requests==2.14.1', 'retrying'], entry_points={ 'console_scripts': [ 'dcos-launch=dcos_launch.cli:main', ], }, dependency_links=[ 'https://github.com/mesosphere/dcos-test-utils@remove_dcos_launch' ], package_data={ 'dcos_launch': [ 'sample_configs/*.yaml' 'ip-detect/aws.sh', 'ip-detect/aws_public.sh', 'ip-detect/gce.sh', 'ip-detect/gce_public.sh', 'templates/vpc-cluster-template.json', 'templates/vpc-ebs-only-cluster-template.json' ], } )
apache-2.0
Python
16e4e3155733ad8c90312414cc975315ad8566d3
Remove minor python version in entry point.
jonathanslenders/ptpython
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup, find_packages long_description = open( os.path.join( os.path.dirname(__file__), 'README.rst' ) ).read() setup( name='ptpython', author='Jonathan Slenders', version='0.36', url='https://github.com/jonathanslenders/ptpython', description='Python REPL build on top of prompt_toolkit', long_description=long_description, packages=find_packages('.'), install_requires = [ 'docopt', 'jedi>=0.9.0', 'prompt_toolkit>=1.0.0,<2.0.0', 'pygments', ], entry_points={ 'console_scripts': [ 'ptpython = ptpython.entry_points.run_ptpython:run', 'ptipython = ptpython.entry_points.run_ptipython:run', 'ptpython%s = ptpython.entry_points.run_ptpython:run' % sys.version_info[0], 'ptipython%s = ptpython.entry_points.run_ptipython:run' % sys.version_info[0], ] }, extra_require={ 'ptipython': ['ipython'] # For ptipython, we need to have IPython } )
#!/usr/bin/env python import os import sys from setuptools import setup, find_packages long_description = open( os.path.join( os.path.dirname(__file__), 'README.rst' ) ).read() setup( name='ptpython', author='Jonathan Slenders', version='0.36', url='https://github.com/jonathanslenders/ptpython', description='Python REPL build on top of prompt_toolkit', long_description=long_description, packages=find_packages('.'), install_requires = [ 'docopt', 'jedi>=0.9.0', 'prompt_toolkit>=1.0.0,<2.0.0', 'pygments', ], entry_points={ 'console_scripts': [ 'ptpython = ptpython.entry_points.run_ptpython:run', 'ptipython = ptpython.entry_points.run_ptipython:run', 'ptpython%s = ptpython.entry_points.run_ptpython:run' % sys.version_info[0], 'ptpython%s.%s = ptpython.entry_points.run_ptpython:run' % sys.version_info[:2], 'ptipython%s = ptpython.entry_points.run_ptipython:run' % sys.version_info[0], 'ptipython%s.%s = ptpython.entry_points.run_ptipython:run' % sys.version_info[:2], ] }, extra_require={ 'ptipython': ['ipython'] # For ptipython, we need to have IPython } )
bsd-3-clause
Python
f2f5fcedb27402e4567f9f8f5cc017f41fec5870
fix included
leotrs/decu
setup.py
setup.py
""" decu ---- Decu is a Experimental Computation Utility. """ from setuptools import setup, find_packages def get_requirements(suffix=''): with open('requirements{}.txt'.format(suffix)) as file: result = file.read().splitlines() return result setup( name='decu', version='0.0.1', url='https://github.com/leotrs/decu', download_url='https://github.com/leotrs/decdu/archive/0.0.1.tar.gz', author='Leo Torres', author_email='leo@leotrs.com', description='Decu is a Experimental Computation Utility', long_description='', license='MIT', packages=find_packages(), entry_points={'console_scripts': ['decu=decu.__main__:main']}, zip_safe=False, data_files=[('decu/', ['decu/decu.cfg'])], include_package_data=True, platforms='any' )
""" decu ---- Decu is a Experimental Computation Utility. """ from setuptools import setup, find_packages def get_requirements(suffix=''): with open('requirements{}.txt'.format(suffix)) as file: result = file.read().splitlines() return result setup( name='decu', version='0.0.1', url='https://github.com/leotrs/decu', author='Leo Torres', author_email='leo@leotrs.com', description='Decu is a Experimental Computation Utility', long_description='', license='MIT', packages=find_packages(), entry_points={'console_scripts': ['decu=decu.__main__:main']}, zip_safe=False, data_files=[('decu/', ['decu/decu.cfg'])], include_package_data=True, platforms='any' )
mit
Python
a92687bb0849b6bfe53e6062b2608b240b99dc4c
Exclude tests from package
morphis/home-assistant,philipbl/home-assistant,nugget/home-assistant,Teagan42/home-assistant,caiuspb/home-assistant,nevercast/home-assistant,leppa/home-assistant,tomduijf/home-assistant,dmeulen/home-assistant,molobrakos/home-assistant,aoakeson/home-assistant,LinuxChristian/home-assistant,Duoxilian/home-assistant,FreekingDean/home-assistant,tboyce1/home-assistant,pottzer/home-assistant,Julian/home-assistant,robjohnson189/home-assistant,stefan-jonasson/home-assistant,Zac-HD/home-assistant,mahendra-r/home-assistant,varunr047/homefile,betrisey/home-assistant,nnic/home-assistant,Smart-Torvy/torvy-home-assistant,Duoxilian/home-assistant,philipbl/home-assistant,robbiet480/home-assistant,sdague/home-assistant,JshWright/home-assistant,titilambert/home-assistant,bdfoster/blumate,kennedyshead/home-assistant,home-assistant/home-assistant,tinloaf/home-assistant,eagleamon/home-assistant,dorant/home-assistant,emilhetty/home-assistant,pottzer/home-assistant,srcLurker/home-assistant,LinuxChristian/home-assistant,hexxter/home-assistant,mKeRix/home-assistant,PetePriority/home-assistant,tmm1/home-assistant,PetePriority/home-assistant,miniconfig/home-assistant,SEJeff/home-assistant,varunr047/homefile,mahendra-r/home-assistant,turbokongen/home-assistant,leppa/home-assistant,deisi/home-assistant,w1ll1am23/home-assistant,oandrew/home-assistant,luxus/home-assistant,oandrew/home-assistant,happyleavesaoc/home-assistant,ewandor/home-assistant,jaharkes/home-assistant,eagleamon/home-assistant,aronsky/home-assistant,jnewland/home-assistant,hmronline/home-assistant,alexkolar/home-assistant,alanbowman/home-assistant,joopert/home-assistant,tomduijf/home-assistant,robjohnson189/home-assistant,morphis/home-assistant,g12mcgov/home-assistant,eagleamon/home-assistant,betrisey/home-assistant,shaftoe/home-assistant,jawilson/home-assistant,srcLurker/home-assistant,devdelay/home-assistant,nevercast/home-assistant,Julian/home-assistant,betrisey/home-assistant,keerts/home-assistant,HydrelioxGitHub/home-assistant,tboyce1/home-assistant,Zac-HD/home-assistant,leoc/home-assistant,mikaelboman/home-assistant,DavidLP/home-assistant,aequitas/home-assistant,DavidLP/home-assistant,robjohnson189/home-assistant,sffjunkie/home-assistant,jamespcole/home-assistant,mezz64/home-assistant,mezz64/home-assistant,maddox/home-assistant,robbiet480/home-assistant,pschmitt/home-assistant,hmronline/home-assistant,MartinHjelmare/home-assistant,varunr047/homefile,persandstrom/home-assistant,tinloaf/home-assistant,justyns/home-assistant,joopert/home-assistant,rohitranjan1991/home-assistant,sfam/home-assistant,EricRho/home-assistant,ct-23/home-assistant,lukas-hetzenecker/home-assistant,sfam/home-assistant,lukas-hetzenecker/home-assistant,MartinHjelmare/home-assistant,nugget/home-assistant,jabesq/home-assistant,bdfoster/blumate,Cinntax/home-assistant,coteyr/home-assistant,varunr047/homefile,PetePriority/home-assistant,titilambert/home-assistant,srcLurker/home-assistant,Danielhiversen/home-assistant,jawilson/home-assistant,ma314smith/home-assistant,xifle/home-assistant,bdfoster/blumate,MungoRae/home-assistant,Zac-HD/home-assistant,tboyce021/home-assistant,nkgilley/home-assistant,Smart-Torvy/torvy-home-assistant,Julian/home-assistant,fbradyirl/home-assistant,GenericStudent/home-assistant,sander76/home-assistant,hexxter/home-assistant,tmm1/home-assistant,leoc/home-assistant,FreekingDean/home-assistant,hmronline/home-assistant,pschmitt/home-assistant,badele/home-assistant,hmronline/home-assistant,MungoRae/home-assistant,happyleavesaoc/home-assistant,auduny/home-assistant,alexkolar/home-assistant,molobrakos/home-assistant,philipbl/home-assistant,open-homeautomation/home-assistant,Theb-1/home-assistant,dmeulen/home-assistant,coteyr/home-assistant,partofthething/home-assistant,nkgilley/home-assistant,mahendra-r/home-assistant,toddeye/home-assistant,GenericStudent/home-assistant,soldag/home-assistant,oandrew/home-assistant,sffjunkie/home-assistant,sffjunkie/home-assistant,Zyell/home-assistant,mikaelboman/home-assistant,LinuxChristian/home-assistant,sdague/home-assistant,postlund/home-assistant,persandstrom/home-assistant,tboyce1/home-assistant,caiuspb/home-assistant,dmeulen/home-assistant,Zyell/home-assistant,sander76/home-assistant,ct-23/home-assistant,instantchow/home-assistant,emilhetty/home-assistant,nugget/home-assistant,alexmogavero/home-assistant,molobrakos/home-assistant,xifle/home-assistant,coteyr/home-assistant,devdelay/home-assistant,adrienbrault/home-assistant,HydrelioxGitHub/home-assistant,maddox/home-assistant,MartinHjelmare/home-assistant,ewandor/home-assistant,MungoRae/home-assistant,keerts/home-assistant,jabesq/home-assistant,tomduijf/home-assistant,Julian/home-assistant,Duoxilian/home-assistant,turbokongen/home-assistant,balloob/home-assistant,rohitranjan1991/home-assistant,stefan-jonasson/home-assistant,dmeulen/home-assistant,partofthething/home-assistant,w1ll1am23/home-assistant,tboyce1/home-assistant,nevercast/home-assistant,shaftoe/home-assistant,g12mcgov/home-assistant,instantchow/home-assistant,alexmogavero/home-assistant,tboyce021/home-assistant,leoc/home-assistant,jnewland/home-assistant,DavidLP/home-assistant,varunr047/homefile,shaftoe/home-assistant,open-homeautomation/home-assistant,Zyell/home-assistant,Danielhiversen/home-assistant,srcLurker/home-assistant,jabesq/home-assistant,kennedyshead/home-assistant,ma314smith/home-assistant,kyvinh/home-assistant,aronsky/home-assistant,aequitas/home-assistant,stefan-jonasson/home-assistant,SEJeff/home-assistant,home-assistant/home-assistant,aoakeson/home-assistant,devdelay/home-assistant,morphis/home-assistant,hmronline/home-assistant,qedi-r/home-assistant,alanbowman/home-assistant,leoc/home-assistant,bdfoster/blumate,florianholzapfel/home-assistant,miniconfig/home-assistant,mKeRix/home-assistant,toddeye/home-assistant,JshWright/home-assistant,jamespcole/home-assistant,stefan-jonasson/home-assistant,tchellomello/home-assistant,florianholzapfel/home-assistant,happyleavesaoc/home-assistant,balloob/home-assistant,emilhetty/home-assistant,sffjunkie/home-assistant,justyns/home-assistant,betrisey/home-assistant,mikaelboman/home-assistant,robjohnson189/home-assistant,tmm1/home-assistant,alexmogavero/home-assistant,open-homeautomation/home-assistant,badele/home-assistant,alexkolar/home-assistant,emilhetty/home-assistant,sffjunkie/home-assistant,auduny/home-assistant,happyleavesaoc/home-assistant,qedi-r/home-assistant,keerts/home-assistant,Zac-HD/home-assistant,tchellomello/home-assistant,MungoRae/home-assistant,Smart-Torvy/torvy-home-assistant,miniconfig/home-assistant,Theb-1/home-assistant,aoakeson/home-assistant,deisi/home-assistant,postlund/home-assistant,kyvinh/home-assistant,dorant/home-assistant,mikaelboman/home-assistant,jaharkes/home-assistant,EricRho/home-assistant,Smart-Torvy/torvy-home-assistant,jnewland/home-assistant,luxus/home-assistant,ct-23/home-assistant,JshWright/home-assistant,mKeRix/home-assistant,florianholzapfel/home-assistant,Duoxilian/home-assistant,sfam/home-assistant,ma314smith/home-assistant,morphis/home-assistant,florianholzapfel/home-assistant,alanbowman/home-assistant,open-homeautomation/home-assistant,caiuspb/home-assistant,nnic/home-assistant,aequitas/home-assistant,Theb-1/home-assistant,mikaelboman/home-assistant,deisi/home-assistant,maddox/home-assistant,jaharkes/home-assistant,dorant/home-assistant,miniconfig/home-assistant,emilhetty/home-assistant,deisi/home-assistant,EricRho/home-assistant,jaharkes/home-assistant,ewandor/home-assistant,fbradyirl/home-assistant,soldag/home-assistant,HydrelioxGitHub/home-assistant,xifle/home-assistant,LinuxChristian/home-assistant,ct-23/home-assistant,oandrew/home-assistant,philipbl/home-assistant,g12mcgov/home-assistant,jamespcole/home-assistant,shaftoe/home-assistant,pottzer/home-assistant,ma314smith/home-assistant,LinuxChristian/home-assistant,SEJeff/home-assistant,tinloaf/home-assistant,rohitranjan1991/home-assistant,Teagan42/home-assistant,alexmogavero/home-assistant,justyns/home-assistant,eagleamon/home-assistant,keerts/home-assistant,kyvinh/home-assistant,badele/home-assistant,fbradyirl/home-assistant,balloob/home-assistant,instantchow/home-assistant,JshWright/home-assistant,devdelay/home-assistant,bdfoster/blumate,nnic/home-assistant,hexxter/home-assistant,luxus/home-assistant,deisi/home-assistant,persandstrom/home-assistant,adrienbrault/home-assistant,ct-23/home-assistant,kyvinh/home-assistant,xifle/home-assistant,hexxter/home-assistant,Cinntax/home-assistant,mKeRix/home-assistant,MungoRae/home-assistant,auduny/home-assistant
setup.py
setup.py
import os import re from setuptools import setup, find_packages PACKAGE_NAME = 'homeassistant' HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp: VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1) DOWNLOAD_URL = \ 'https://github.com/balloob/home-assistant/archive/{}.zip'.format(VERSION) PACKAGES = find_packages(exclude=['tests', 'tests.*']) + \ ['homeassistant.external', 'homeassistant.external.noop', 'homeassistant.external.nzbclients', 'homeassistant.external.vera'] PACKAGE_DATA = \ {'homeassistant.components.frontend': ['index.html.template'], 'homeassistant.components.frontend.www_static': ['*.*'], 'homeassistant.components.frontend.www_static.images': ['*.*']} REQUIRES = \ [line.strip() for line in open('requirements.txt', 'r')] setup( name=PACKAGE_NAME, version=VERSION, license='MIT License', url='https://home-assistant.io/', download_url=DOWNLOAD_URL, author='Paulus Schoutsen', author_email='paulus@paulusschoutsen.nl', description='Open-source home automation platform running on Python 3.', packages=PACKAGES, include_package_data=True, package_data=PACKAGE_DATA, zip_safe=False, platforms='any', install_requires=REQUIRES, keywords=['home', 'automation'], entry_points={ 'console_scripts': [ 'hass = homeassistant.__main__:main' ] }, classifiers=[ 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.4', 'Topic :: Home Automation' ] )
import os import re from setuptools import setup, find_packages PACKAGE_NAME = 'homeassistant' HERE = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp: VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1) DOWNLOAD_URL = \ 'https://github.com/balloob/home-assistant/archive/{}.zip'.format(VERSION) PACKAGES = find_packages() + \ ['homeassistant.external', 'homeassistant.external.noop', 'homeassistant.external.nzbclients', 'homeassistant.external.vera'] PACKAGE_DATA = \ {'homeassistant.components.frontend': ['index.html.template'], 'homeassistant.components.frontend.www_static': ['*.*'], 'homeassistant.components.frontend.www_static.images': ['*.*']} REQUIRES = \ [line.strip() for line in open('requirements.txt', 'r')] setup( name=PACKAGE_NAME, version=VERSION, license='MIT License', url='https://home-assistant.io/', download_url=DOWNLOAD_URL, author='Paulus Schoutsen', author_email='paulus@paulusschoutsen.nl', description='Open-source home automation platform running on Python 3.', packages=PACKAGES, include_package_data=True, package_data=PACKAGE_DATA, zip_safe=False, platforms='any', install_requires=REQUIRES, keywords=['home', 'automation'], entry_points={ 'console_scripts': [ 'hass = homeassistant.__main__:main' ] }, classifiers=[ 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.4', 'Topic :: Home Automation' ] )
apache-2.0
Python
2a9f9f92ca7272ec6c71a0583c601fac8da85817
Make setup.py executable
glowka/django-admin-tools,miurahr/django-admin-tools,eternalfame/django-admin-tools,glowka/django-admin-tools,django-admin-tools/django-admin-tools,django-admin-tools/django-admin-tools,miurahr/django-admin-tools,miurahr/django-admin-tools,eternalfame/django-admin-tools,miurahr/django-admin-tools,django-admin-tools/django-admin-tools,eternalfame/django-admin-tools,glowka/django-admin-tools
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import os from admin_tools import VERSION # taken 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.walk('admin_tools'): # Ignore dirnames that start with '.' for i, dirname in enumerate(dirnames): if dirname.startswith('.'): del dirnames[i] if '__init__.py' in filenames: pkg = dirpath.replace(os.path.sep, '.') if os.path.altsep: pkg = pkg.replace(os.path.altsep, '.') packages.append(pkg) elif filenames: prefix = dirpath[12:] # Strip "admin_tools/" or "admin_tools\" for f in filenames: data_files.append(os.path.join(prefix, f)) bitbucket_url = 'http://www.bitbucket.org/izi/django-admin-tools/' long_desc = ''' %s %s ''' % (open('README').read(), open('CHANGELOG').read()) setup( name='django-admin-tools', version=VERSION.replace(' ', '-'), description=('A collection of tools for the django administration ' 'interface'), long_description=long_desc, author='David Jean Louis', author_email='izimobil@gmail.com', url=bitbucket_url, download_url='%sdownloads/django-admin-tools-%s.tar.gz' % (bitbucket_url, VERSION), package_dir={'admin_tools': 'admin_tools'}, packages=packages, package_data={'admin_tools': data_files}, license='MIT License', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ], )
from distutils.core import setup import os from admin_tools import VERSION # taken 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.walk('admin_tools'): # Ignore dirnames that start with '.' for i, dirname in enumerate(dirnames): if dirname.startswith('.'): del dirnames[i] if '__init__.py' in filenames: pkg = dirpath.replace(os.path.sep, '.') if os.path.altsep: pkg = pkg.replace(os.path.altsep, '.') packages.append(pkg) elif filenames: prefix = dirpath[12:] # Strip "admin_tools/" or "admin_tools\" for f in filenames: data_files.append(os.path.join(prefix, f)) bitbucket_url = 'http://www.bitbucket.org/izi/django-admin-tools/' long_desc = ''' %s %s ''' % (open('README').read(), open('CHANGELOG').read()) setup( name='django-admin-tools', version=VERSION.replace(' ', '-'), description=('A collection of tools for the django administration ' 'interface'), long_description=long_desc, author='David Jean Louis', author_email='izimobil@gmail.com', url=bitbucket_url, download_url='%sdownloads/django-admin-tools-%s.tar.gz' % (bitbucket_url, VERSION), package_dir={'admin_tools': 'admin_tools'}, packages=packages, package_data={'admin_tools': data_files}, license='MIT License', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ], )
mit
Python
a987092a00fc203a1b33eaabc378da68e5fec244
update requirements in setup.py
cihai/cihaidata-unihan
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf8 - *- """cihaidata-unihan lives at <https://github.com/cihai/cihaidata-unihan>.""" import os import sys from setuptools import setup, find_packages sys.path.insert(0, os.getcwd()) # we want to grab this: from package_metadata import p with open('requirements/base.txt') as f: install_reqs = [line for line in f.read().split('\n') if line] tests_reqs = [] if sys.version_info < (2, 7): install_reqs += ['argparse'] tests_reqs += ['unittest2'] readme = open('README.rst').read() history = open('CHANGES').read().replace('.. :changelog:', '') setup( name=p.title, version=p.version, url='https://github.com/cihai/cihaidata-unihan', download_url='https://pypi.python.org/pypi/cihaidata-unihan', license=p.license, author=p.author, author_email=p.email, description=p.description, long_description=readme, include_package_data=True, install_requires=install_reqs, tests_require=tests_reqs, test_suite='testsuite', zip_safe=False, keywords=p.title, packages=find_packages(exclude=["doc"]), package_data={ 'cihaidata-unihan': ['data/*'] }, classifiers=[ 'Development Status :: 3 - Alpha', "License :: OSI Approved :: MIT License", 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', "Topic :: Utilities", "Topic :: System :: Shells", ], )
#!/usr/bin/env python # -*- coding: utf8 - *- """cihaidata-unihan lives at <https://github.com/cihai/cihaidata-unihan>.""" import os import sys from setuptools import setup, find_packages sys.path.insert(0, os.getcwd()) # we want to grab this: from package_metadata import p with open('requirements.pip') as f: install_reqs = [line for line in f.read().split('\n') if line] tests_reqs = [] if sys.version_info < (2, 7): install_reqs += ['argparse'] tests_reqs += ['unittest2'] readme = open('README.rst').read() history = open('CHANGES').read().replace('.. :changelog:', '') setup( name=p.title, version=p.version, url='https://github.com/cihai/cihaidata-unihan', download_url='https://pypi.python.org/pypi/cihaidata-unihan', license=p.license, author=p.author, author_email=p.email, description=p.description, long_description=readme, include_package_data=True, install_requires=install_reqs, tests_require=tests_reqs, test_suite='testsuite', zip_safe=False, keywords=p.title, packages=find_packages(exclude=["doc"]), package_data={ 'cihaidata-unihan': ['data/*'] }, classifiers=[ 'Development Status :: 3 - Alpha', "License :: OSI Approved :: MIT License", 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', "Topic :: Utilities", "Topic :: System :: Shells", ], )
mit
Python
29a5b3e38a5c61889ef707069b23d2011aa8df48
correct variable/function names
scienceopen/pymap3d,scienceopen/pymap3d,geospace-code/pymap3d,geospace-code/pymap3d
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2014-2018 Michael Hirsch, Ph.D. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. install_requires = ['six','python-dateutil','pytz'] tests_require = ['nose','coveralls'] # %% from setuptools import setup,find_packages setup(name='pymap3d', packages=find_packages(), version = '1.6.0', description='pure Python coordinate conversions, following convention of several popular Matlab routines.', long_description=open('README.rst').read(), author = 'Michael Hirsch, Ph.D.', url = 'https://github.com/scivision/pymap3d', classifiers=[ 'Intended Audience :: Science/Research', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', 'Topic :: Scientific/Engineering :: GIS', 'Programming Language :: Python :: 3', 'Programming Language :: Python', ], install_requires=install_requires, tests_require=tests_require, extras_require={'tests':tests_require, 'full':['numpy','astropy']}, python_requires='>=2.6', )
#!/usr/bin/env python # Copyright (c) 2014-2018 Michael Hirsch, Ph.D. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. install_requires = ['six','python-dateutil','pytz'] tests_require = ['nose','coveralls'] # %% from setuptools import setup,find_packages setup(name='pymap3d', packages=find_packages(), version = '1.5.2', description='pure Python coordinate conversions, following convention of several popular Matlab routines.', long_description=open('README.rst').read(), author = 'Michael Hirsch, Ph.D.', url = 'https://github.com/scivision/pymap3d', classifiers=[ 'Intended Audience :: Science/Research', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', 'Topic :: Scientific/Engineering :: GIS', 'Programming Language :: Python :: 3', 'Programming Language :: Python', ], install_requires=install_requires, tests_require=tests_require, extras_require={'tests':tests_require, 'full':['numpy','astropy']}, python_requires='>=2.6', )
bsd-2-clause
Python
e22b7fc6aae8f75183c701b021f64aee399b39f4
Update to 0.1.1
philipodonnell/paperbroker,philipodonnell/paperbroker,philipodonnell/paperbroker
setup.py
setup.py
from distutils.core import setup setup(name='paperbroker', version='0.1.1', description='PaperBroker', author='Philip ODonnell', author_email='philip@postral.com', url='https://github.com/philipodonnell/paperbroker', packages=['paperbroker', 'paperbroker.adapters', 'paperbroker.adapters.accounts', 'paperbroker.adapters.quotes', 'paperbroker.adapters.markets', 'paperbroker.logic', ], install_requires=[ 'ivolat3', 'arrow', 'googlefinance', ] )
from distutils.core import setup setup(name='paperbroker', version='0.0.6', description='PaperBroker', author='Philip ODonnell', author_email='philip@postral.com', url='https://github.com/philipodonnell/paperbroker', packages=['paperbroker', 'paperbroker.adapters', 'paperbroker.adapters.accounts', 'paperbroker.adapters.quotes', 'paperbroker.adapters.markets', 'paperbroker.logic', ], install_requires=[ 'ivolat3', 'arrow', 'googlefinance', ] )
mit
Python
3e702678ee3f4761e929f95cb4d176ee185c52ea
Fix url in setup.py
ecometrica/django-dbarray
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "django-dbarray", version = "0.2", packages = find_packages(), description = "Django ORM field for Postgres array types.", author = "Ecometrica", author_email = "info@ecometrica.ca", maintainer = "Michael Mulley", maintainer_email = "michael@michaelmulley.com", url = "http://github.com/ecometrica/django-dbarray/", keywords = ["django", "model", "field", "postgres", "postgresql", "database", "array", "list"], classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Development Status :: 3 - Alpha", "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Topic :: Database", "Framework :: Django", ], long_description = read('README.rst'), )
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "django-dbarray", version = "0.2", packages = find_packages(), description = "Django ORM field for Postgres array types.", author = "Ecometrica", author_email = "info@ecometrica.ca", maintainer = "Michael Mulley", maintainer_email = "michael@michaelmulley.com", url = "http://github.com/ecometrica/django-vinaigrette/", keywords = ["django", "model", "field", "postgres", "postgresql", "database", "array", "list"], classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Development Status :: 3 - Alpha", "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Topic :: Database", "Framework :: Django", ], long_description = read('README.rst'), )
bsd-3-clause
Python
9b52beb387c4b9f89dfbb61b388b7b95f0ebce9c
FIx dependency_links
rparini/cxroots,rparini/cxroots
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup packages = ['cxroots', 'cxroots.tests', 'cxroots.contours'] # get the version, this will assign __version__ exec(open('cxroots/version.py').read()) # read the README_pip.rst try: with open('README.rst') as file: long_description = file.read() except: long_description = None setup( name = 'cxroots', version = __version__, description = 'Find all the roots (zeros) of a complex analytic function within a given contour in the complex plane.', long_description = long_description, author = 'Robert Parini', author_email = 'robert.parini@gmail.com', url = 'https://rparini.github.io/cxroots/', license = 'BSD', data_files = [("", ["LICENSE"])], packages = packages, zip_safe = False, # prevent cxroots from installing as a .egg zip file platforms = ['all'], dependency_links=['git+https://github.com/pbrod/numdifftools.git#egg=numdifftools'], setup_requires = ['pytest-runner'], install_requires = ['numpy', 'scipy', 'docrep', 'mpmath', 'numdifftools'], tests_require=['pytest', 'pytest-xdist'], keywords='roots zeros complex analytic functions', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Mathematics', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', ], )
#!/usr/bin/env python from setuptools import setup packages = ['cxroots', 'cxroots.tests', 'cxroots.contours'] # get the version, this will assign __version__ exec(open('cxroots/version.py').read()) # read the README_pip.rst try: with open('README.rst') as file: long_description = file.read() except: long_description = None setup( name = 'cxroots', version = __version__, description = 'Find all the roots (zeros) of a complex analytic function within a given contour in the complex plane.', long_description = long_description, author = 'Robert Parini', author_email = 'robert.parini@gmail.com', url = 'https://rparini.github.io/cxroots/', license = 'BSD', data_files = [("", ["LICENSE"])], packages = packages, zip_safe = False, # prevent cxroots from installing as a .egg zip file platforms = ['all'], dependency_links=['git+https://github.com/pbrod/numdifftools'], setup_requires = ['pytest-runner'], install_requires = ['numpy', 'scipy', 'docrep', 'mpmath', 'numdifftools'], tests_require=['pytest', 'pytest-xdist'], keywords='roots zeros complex analytic functions', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Mathematics', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', ], )
bsd-3-clause
Python
eb11e20ef62b97e7968705ec4dda0f0e361e8e96
Bump pytest from 6.1.2 to 6.2.1
macbre/index-digest,macbre/index-digest
setup.py
setup.py
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexdigest', version=VERSION, author='Maciej Brencz', author_email='maciej.brencz@gmail.com', license='MIT', description='Analyses your database queries and schema and suggests indices and schema improvements', long_description=long_description, long_description_content_type="text/markdown", url='https://github.com/macbre/index-digest', # https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ # How mature is this project? Common values are # 3 - Alpha # 4 - Beta # 5 - Production/Stable 'Development Status :: 5 - Production/Stable', # Indicate who your project is intended for 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Topic :: Database', # Pick your license as you wish 'License :: OSI Approved :: MIT License', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], packages=find_packages(), extras_require={ 'dev': [ 'coverage==5.3', 'pylint==2.6.0', 'pytest==6.2.1', 'twine==3.2.0', ] }, install_requires=[ 'docopt==0.6.2', 'PyYAML==5.3.1', 'mysqlclient==2.0.1', 'sql_metadata==1.9.1', 'termcolor==1.1.0', 'yamlordereddictloader==0.4.0' ], entry_points={ 'console_scripts': [ 'add_linter=indexdigest.cli.add_linter:main', # creates a new linter from a template 'index_digest=indexdigest.cli.script:main', ], } )
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexdigest', version=VERSION, author='Maciej Brencz', author_email='maciej.brencz@gmail.com', license='MIT', description='Analyses your database queries and schema and suggests indices and schema improvements', long_description=long_description, long_description_content_type="text/markdown", url='https://github.com/macbre/index-digest', # https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ # How mature is this project? Common values are # 3 - Alpha # 4 - Beta # 5 - Production/Stable 'Development Status :: 5 - Production/Stable', # Indicate who your project is intended for 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Topic :: Database', # Pick your license as you wish 'License :: OSI Approved :: MIT License', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], packages=find_packages(), extras_require={ 'dev': [ 'coverage==5.3', 'pylint==2.6.0', 'pytest==6.1.2', 'twine==3.2.0', ] }, install_requires=[ 'docopt==0.6.2', 'PyYAML==5.3.1', 'mysqlclient==2.0.1', 'sql_metadata==1.9.1', 'termcolor==1.1.0', 'yamlordereddictloader==0.4.0' ], entry_points={ 'console_scripts': [ 'add_linter=indexdigest.cli.add_linter:main', # creates a new linter from a template 'index_digest=indexdigest.cli.script:main', ], } )
mit
Python
09e6c915e668c0b41eca75e3105ebac6f8bfcf58
Allow the package to be built without Sphinx being required.
glorpen/webassets,glorpen/webassets,0x1997/webassets,rs/webassets,aconrad/webassets,JDeuce/webassets,scorphus/webassets,florianjacob/webassets,heynemann/webassets,aconrad/webassets,wijerasa/webassets,john2x/webassets,aconrad/webassets,heynemann/webassets,0x1997/webassets,glorpen/webassets,john2x/webassets,wijerasa/webassets,scorphus/webassets,florianjacob/webassets,heynemann/webassets,JDeuce/webassets
setup.py
setup.py
import os from distutils.core import setup try: from sphinx.setup_command import BuildDoc cmdclass = {'build_sphinx': BuildDoc} except ImportError: print "Sphinx not installed--needed to build documentation" # default cmdclass to None to avoid cmdclass = {} import django_assets def find_packages(root): # so we don't depend on setuptools; from the Storm ORM setup.py packages = [] for directory, subdirectories, files in os.walk(root): if '__init__.py' in files: packages.append(directory.replace(os.sep, '.')) return packages setup( name = 'django-assets', version=".".join(map(str, django_assets.__version__)), description = 'Media asset management for the Django web framework.', long_description = 'Merges, minifies and compresses Javascript and ' 'CSS files, supporting a variety of different filters, including ' 'YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting ' 'in CSS files.', author = 'Michael Elsdoerfer', author_email = 'michael@elsdoerfer.info', license = 'BSD', url = 'http://launchpad.net/django-assets', classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries', ], packages = find_packages('django_assets'), cmdclass=cmdclass, )
import os from distutils.core import setup from sphinx.setup_command import BuildDoc import django_assets def find_packages(root): # so we don't depend on setuptools; from the Storm ORM setup.py packages = [] for directory, subdirectories, files in os.walk(root): if '__init__.py' in files: packages.append(directory.replace(os.sep, '.')) return packages setup( name = 'django-assets', version=".".join(map(str, django_assets.__version__)), description = 'Media asset management for the Django web framework.', long_description = 'Merges, minifies and compresses Javascript and ' 'CSS files, supporting a variety of different filters, including ' 'YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting ' 'in CSS files.', author = 'Michael Elsdoerfer', author_email = 'michael@elsdoerfer.info', license = 'BSD', url = 'http://launchpad.net/django-assets', classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries', ], packages = find_packages('django_assets'), cmdclass={'build_sphinx': BuildDoc}, )
bsd-2-clause
Python
6466b42066105ae0f6a6a0a0fc2cb5fb64dafa8b
Add support for running tests from setup.py
xrmx/uwsgiit-py
setup.py
setup.py
from setuptools import setup, find_packages import os import uwsgiit CLASSIFIERS = [ 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ] setup( author="Riccardo Magliocchetti", author_email="riccardo.magliocchetti@gmail.com", name='uwsgiit-py', version=uwsgiit.__version__, description='Library for uwsgi.it api', long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), url="https://github.com/xrmx/uwsgiit-py", license='BSD License', platforms=['OS Independent'], classifiers=CLASSIFIERS, install_requires=[ 'requests>=2', ], test_suite='uwsgiit.tests', packages=find_packages(exclude=["test_project", "example.*"]), include_package_data=True, zip_safe = False, )
from setuptools import setup, find_packages import os import uwsgiit CLASSIFIERS = [ 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ] setup( author="Riccardo Magliocchetti", author_email="riccardo.magliocchetti@gmail.com", name='uwsgiit-py', version=uwsgiit.__version__, description='Library for uwsgi.it api', long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), url="https://github.com/xrmx/uwsgiit-py", license='BSD License', platforms=['OS Independent'], classifiers=CLASSIFIERS, install_requires=[ 'requests>=2', ], packages=find_packages(exclude=["test_project", "example.*"]), include_package_data=True, zip_safe = False, )
bsd-3-clause
Python
c3db30dbd9827933371afff1a9d358223203316e
Update version
jsnjack/kazy,jsnjack/kazy
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name="kazy", version="0.1.2", description="Highlights STDIN data", license='MIT', author="Yauhen Shulitski", author_email="jsnjack@gmail.com", url="https://github.com/jsnjack/kazy", packages=["kazy"], scripts=["bin/kazy"] )
#!/usr/bin/env python from distutils.core import setup setup( name="kazy", version="0.1.1", description="Highlights STDIN data", license='MIT', author="Yauhen Shulitski", author_email="jsnjack@gmail.com", url="https://github.com/jsnjack/kazy", packages=["kazy"], scripts=["bin/kazy"] )
mit
Python
0066ea3ad367ec31c49add91390a154ca6538e68
Bump version.
novel/gg,novel/gg
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "gg", version = "0.2.0", author = "Roman Bogorodskiy", author_email = "rbogorodskiy@griddynamics.com", url="http://github.com/novel/gg/tree", py_modules = ["GoGridClient", "GoGridManager"], scripts = ["gg-image-list", "gg-ip", "gg-lookup", "gg-password", "gg-raw", "gg-server-add", "gg-server-delete", "gg-server-delete-all", "gg-server-list", "gg-server-power"] )
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name = "gg", version = "0.1.2", author = "Roman Bogorodskiy", author_email = "rbogorodskiy@griddynamics.com", url="http://github.com/novel/gg/tree", py_modules = ["GoGridClient", "GoGridManager"], scripts = ["gg-image-list", "gg-ip", "gg-lookup", "gg-password", "gg-raw", "gg-server-add", "gg-server-delete", "gg-server-delete-all", "gg-server-list", "gg-server-power"] )
bsd-2-clause
Python
c086fdb89ca35aea0bc9fa63bf82141cdbbe9e2e
Bump version
Motiejus/tictactoelib,Motiejus/tictactoelib
setup.py
setup.py
from os.path import join, dirname from pip.req import parse_requirements from setuptools import setup, find_packages reqs_file = join(dirname(__file__), "requirements.txt") install_reqs = list(parse_requirements(reqs_file)) setup( name='tictactoelib', version='0.0.5a1', author="Motiejus Jakštys", author_email='desired.mta@gmail.com', description="Ultimate Tic Tac Toe game logic (Lua and Python bindings)", long_description=open(join(dirname(__file__), 'README.rst')).read().strip(), url="http://github.com/Motiejus/ultimate-tic-tac-toe", license='Apache2', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Other Scripting Engines', 'Topic :: Games/Entertainment :: Board Games', ], packages=['tictactoelib', 'tictactoelib.examples'], package_data ={ 'tictactoelib': ['*.lua'], 'tictactoelib.examples': ['*.lua'], }, zip_safe=False, install_requires=[str(ir.req) for ir in install_reqs], entry_points={ 'console_scripts': [ 'tictactoelib = tictactoelib.run:main' ] }, )
from os.path import join, dirname from pip.req import parse_requirements from setuptools import setup, find_packages reqs_file = join(dirname(__file__), "requirements.txt") install_reqs = list(parse_requirements(reqs_file)) setup( name='tictactoelib', version='0.0.4', author="Motiejus Jakštys", author_email='desired.mta@gmail.com', description="Ultimate Tic Tac Toe game logic (Lua and Python bindings)", long_description=open(join(dirname(__file__), 'README.rst')).read().strip(), url="http://github.com/Motiejus/ultimate-tic-tac-toe", license='Apache2', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Other Scripting Engines', 'Topic :: Games/Entertainment :: Board Games', ], packages=['tictactoelib', 'tictactoelib.examples'], package_data ={ 'tictactoelib': ['*.lua'], 'tictactoelib.examples': ['*.lua'], }, zip_safe=False, install_requires=[str(ir.req) for ir in install_reqs], entry_points={ 'console_scripts': [ 'tictactoelib = tictactoelib.run:main' ] }, )
apache-2.0
Python
797da1bd335c0d8237ff4ee4785fe7aca76f0b84
Include cacert.pem as part of the package
hkjallbring/pusher-http-python,pusher/pusher-http-python
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pusher', version='1.2.0', description='A Python library to interract with the Pusher API', url='https://github.com/pusher/pusher-http-python', author='Pusher', author_email='support@pusher.com', classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP", ], keywords='pusher rest realtime websockets service', license='MIT', packages=[ 'pusher' ], install_requires=['six', 'requests>=2.3.0', 'urllib3', 'pyopenssl', 'ndg-httpsclient', 'pyasn1'], tests_require=['nose', 'mock', 'HTTPretty'], extras_require={ 'aiohttp': ["aiohttp>=0.9.0"], 'tornado': ['tornado>=4.0.0'] }, package_data={ 'pusher': ['cacert.pem'] }, test_suite='pusher_tests', )
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pusher', version='1.2.0', description='A Python library to interract with the Pusher API', url='https://github.com/pusher/pusher-http-python', author='Pusher', author_email='support@pusher.com', classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Internet :: WWW/HTTP", ], keywords='pusher rest realtime websockets service', license='MIT', packages=[ 'pusher' ], install_requires=['six', 'requests>=2.3.0', 'urllib3', 'pyopenssl', 'ndg-httpsclient', 'pyasn1'], tests_require=['nose', 'mock', 'HTTPretty'], extras_require={ 'aiohttp': ["aiohttp>=0.9.0"], 'tornado': ['tornado>=4.0.0'] }, test_suite='pusher_tests', )
mit
Python
358e048d8b53ed18928ac16e7a3cbfdd4f2326dd
Bump version
dnarvaez/plog
setup.py
setup.py
from distutils.core import setup setup(name="plog", packages=["plog"], version="0.6", description="Logged process", author="Daniel Narvaez", author_email="dwnarvaez@gmail.com", url="http://github.com/dnarvaez/plog", classifiers=["License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries"])
from distutils.core import setup setup(name="plog", packages=["plog"], version="0.5", description="Logged process", author="Daniel Narvaez", author_email="dwnarvaez@gmail.com", url="http://github.com/dnarvaez/plog", classifiers=["License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries"])
apache-2.0
Python
b9f572706cf0a2e5620a2c56f5e47ac16b939bc1
Update core dependency to google-cloud-core >= 0.23.0, < 0.24dev. (#3028)
googleapis/python-pubsub,googleapis/python-pubsub
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os from setuptools import find_packages from setuptools import setup PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj: README = file_obj.read() # NOTE: This is duplicated throughout and we should try to # consolidate. SETUP_BASE = { 'author': 'Google Cloud Platform', 'author_email': 'jjg+google-cloud-python@google.com', 'scripts': [], 'url': 'https://github.com/GoogleCloudPlatform/google-cloud-python', 'license': 'Apache 2.0', 'platforms': 'Posix; MacOS X; Windows', 'include_package_data': True, 'zip_safe': False, 'classifiers': [ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Internet', ], } REQUIREMENTS = [ 'google-cloud-core >= 0.23.0, < 0.24dev', 'grpcio >= 1.0.2, < 2.0dev', 'gapic-google-cloud-pubsub-v1 >= 0.14.0, < 0.15dev', ] setup( name='google-cloud-pubsub', version='0.22.0', description='Python Client for Google Cloud Pub/Sub', long_description=README, namespace_packages=[ 'google', 'google.cloud', ], packages=find_packages(), install_requires=REQUIREMENTS, **SETUP_BASE )
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os from setuptools import find_packages from setuptools import setup PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj: README = file_obj.read() # NOTE: This is duplicated throughout and we should try to # consolidate. SETUP_BASE = { 'author': 'Google Cloud Platform', 'author_email': 'jjg+google-cloud-python@google.com', 'scripts': [], 'url': 'https://github.com/GoogleCloudPlatform/google-cloud-python', 'license': 'Apache 2.0', 'platforms': 'Posix; MacOS X; Windows', 'include_package_data': True, 'zip_safe': False, 'classifiers': [ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Internet', ], } REQUIREMENTS = [ 'google-cloud-core >= 0.22.1, < 0.23dev', 'grpcio >= 1.0.2, < 2.0dev', 'gapic-google-cloud-pubsub-v1 >= 0.14.0, < 0.15dev', ] setup( name='google-cloud-pubsub', version='0.22.0', description='Python Client for Google Cloud Pub/Sub', long_description=README, namespace_packages=[ 'google', 'google.cloud', ], packages=find_packages(), install_requires=REQUIREMENTS, **SETUP_BASE )
apache-2.0
Python
f18626a4b9ede670a9149c5ce822c85fcf3248e0
bump version: binary subtypes, gridfs 1.0, safe insert operations
inspectlabs/mongo-python-driver,jameslittle/mongo-python-driver,pigate/mongo-python-driver,pigate/mongo-python-driver,jameslittle/mongo-python-driver,mongodb/mongo-python-driver,felixonmars/mongo-python-driver,WingGao/mongo-python-driver,ShaneHarvey/mongo-python-driver,bq-xiao/mongo-python-driver,aherlihy/mongo-python-driver,marcosleonefilho/hoop-pymongo,mher/pymongo,ameily/mongo-python-driver,ultrabug/mongo-python-driver,reedobrien/mongo-python-driver,llvtt/mongo-python-driver,inspectlabs/mongo-python-driver,llvtt/mongo-python-driver,ramnes/mongo-python-driver,ramnes/mongo-python-driver,ultrabug/mongo-python-driver,aherlihy/mongo-python-driver,marcosleonefilho/hoop-pymongo,ShaneHarvey/mongo-python-driver,jbenet/mongo-python-driver,brianwrf/mongo-python-driver,mher/pymongo,felixonmars/mongo-python-driver,ameily/mongo-python-driver,ramnes/mongo-python-driver,reedobrien/mongo-python-driver,macdiesel/mongo-python-driver,bq-xiao/mongo-python-driver,ShaneHarvey/mongo-python-driver,mongodb/mongo-python-driver,rychipman/mongo-python-driver,WingGao/mongo-python-driver,macdiesel/mongo-python-driver,marcosleonefilho/hoop-pymongo,gormanb/mongo-python-driver,brianwrf/mongo-python-driver,aherlihy/mongo-python-driver,mongodb/mongo-python-driver,jbenet/mongo-python-driver,rychipman/mongo-python-driver,develf/mongo-python-driver,develf/mongo-python-driver,gormanb/mongo-python-driver,jbenet/mongo-python-driver
setup.py
setup.py
#!/usr/bin/env python from ez_setup import use_setuptools use_setuptools() from setuptools import setup from distutils.core import Extension f = open("README.rst") try: readme_content = f.read() except: readme_content = "" finally: f.close() setup( name="pymongo", version="0.3.1pre", description="Driver for the Mongo database <http://www.mongodb.org>", long_description=readme_content, author="10gen", author_email="mike@10gen.com", url="http://github.com/mongodb/mongo-python-driver", packages=["pymongo", "gridfs"], ext_modules=[Extension('pymongo._cbson', ['pymongo/_cbsonmodule.c'])], install_requires=["elementtree"], license="Apache License, Version 2.0", test_suite="nose.collector", classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Database"])
#!/usr/bin/env python from ez_setup import use_setuptools use_setuptools() from setuptools import setup from distutils.core import Extension f = open("README.rst") try: readme_content = f.read() except: readme_content = "" finally: f.close() setup( name="pymongo", version="0.3pre", description="Driver for the Mongo database <http://www.mongodb.org>", long_description=readme_content, author="10gen", author_email="mike@10gen.com", url="http://github.com/mongodb/mongo-python-driver", packages=["pymongo", "gridfs"], ext_modules=[Extension('pymongo._cbson', ['pymongo/_cbsonmodule.c'])], install_requires=["elementtree"], license="Apache License, Version 2.0", test_suite="nose.collector", classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Database"])
apache-2.0
Python
c456520fe9e9219a8b38929464719fe6c4df76c9
Bump version to 1.1
cloudify-cosmo/cloudify-libcloud-provider
setup.py
setup.py
######## # Copyright (c) 2014 GigaSpaces Technologies Ltd. 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 agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-libcloud-provider', version='3.1ga', author='Gigaspaces', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_libcloud'], license='LICENSE', description='Cloudify Libcloud provider', package_data={'cloudify_libcloud': ['cloudify-config.yaml', 'cloudify-config.defaults.yaml']}, install_requires=[ 'apache-libcloud==0.15.1', 'IPy==0.81', 'cloudify==3.1ga' ] )
######## # Copyright (c) 2014 GigaSpaces Technologies Ltd. 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 agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-libcloud-provider', version='1.1rc2', author='Gigaspaces', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_libcloud'], license='LICENSE', description='Cloudify Libcloud provider', package_data={'cloudify_libcloud': ['cloudify-config.yaml', 'cloudify-config.defaults.yaml']}, install_requires=[ 'apache-libcloud==0.15.1', 'IPy==0.81', 'cloudify==3.1rc2' ] )
apache-2.0
Python
b69b33e1c49d568d1ddc3b27dcfea08dc93fac7a
Bump the version to publish a new egg (this version is South-enabled).
trey0/django-digest,dimagi/django-digest
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='django-digest', version='1.3', description=('An implementation of HTTP Digest Authentication for Django.'), long_description=( """ django-digest supplies a middleware (HttpDigestMiddleware) that may installed to protect access to all URLs, a decorator (@httpdigest) that may be applied to selected view functions, and a simple class (HttpDigestAuthenticator) that can be used to implement custom authentication scenarios. """ ), author='Akoha Inc.', author_email='adminmail@akoha.com', url='http://bitbucket.org/akoha/django-digest/', packages=['django_digest', 'django_digest.backend'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ], zip_safe=True, )
#!/usr/bin/env python from setuptools import setup setup( name='django-digest', version='1.2', description=('An implementation of HTTP Digest Authentication for Django.'), long_description=( """ django-digest supplies a middleware (HttpDigestMiddleware) that may installed to protect access to all URLs, a decorator (@httpdigest) that may be applied to selected view functions, and a simple class (HttpDigestAuthenticator) that can be used to implement custom authentication scenarios. """ ), author='Akoha Inc.', author_email='adminmail@akoha.com', url='http://bitbucket.org/akoha/django-digest/', packages=['django_digest', 'django_digest.backend'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules' ], zip_safe=True, )
bsd-3-clause
Python
86bd9eec0651507c91559acc88e5481ff8162ac4
update setup.py to the correct version
natea/Miro-Community,pculture/mirocommunity,natea/Miro-Community,pculture/mirocommunity,pculture/mirocommunity,pculture/mirocommunity
setup.py
setup.py
from setuptools import setup, find_packages version = '0.9-pre' setup(name="Miro Community", version=version, author='Participatory Culture Foundation', license='AGPLv3', entry_points=""" # -*- Entry points: -*- [console_scripts] localtv_update_feeds = localtv.feedimport:update_feeds localtv_update_saved_searches = localtv.feedimport:update_saved_searches localtv_update_publish_date = localtv.feedimport:update_publish_date """)
from setuptools import setup, find_packages version = '0.0.1' setup(name="Miro Community", version=version, author='Participatory Culture Foundation', license='AGPLv3', entry_points=""" # -*- Entry points: -*- [console_scripts] localtv_update_feeds = localtv.feedimport:update_feeds localtv_update_saved_searches = localtv.feedimport:update_saved_searches localtv_update_publish_date = localtv.feedimport:update_publish_date """)
agpl-3.0
Python
8bc3f06aac3b15b6f081465be27a108086b1b802
set version higher than last release
freevo/kaa-base,freevo/kaa-base
setup.py
setup.py
# -*- coding: iso-8859-1 -*- # ----------------------------------------------------------------------------- # setup.py - Setup script for kaa.base # ----------------------------------------------------------------------------- # $Id$ # # ----------------------------------------------------------------------------- # Copyright (C) 2005, 2006 Dirk Meyer, Jason Tackaberry # # First Edition: Dirk Meyer <dmeyer@tzi.de> # Maintainer: Dirk Meyer <dmeyer@tzi.de> # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version # 2.1 as published by the Free Software Foundation. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA # # ----------------------------------------------------------------------------- # python imports import sys # We have some extensions but kaa.distribution isn't installed yet. So import # it directly from the source tree. First add src/ to the modules patch ... sys.path.insert(0, "src") # ... and now import it. from distribution import Extension, setup ext = Extension('kaa.shmmodule', ['src/extensions/shmmodule.c']) extensions = [ ext ] objectrow = Extension('kaa._objectrow', ['src/extensions/objectrow.c']) if objectrow.check_library("glib-2.0", "2.4.0"): extensions.append(objectrow) else: print "glib >= 2.4.0 not found; kaa.db will be unavailable" inotify_ext = Extension("kaa.inotify._inotify", ["src/extensions/inotify/inotify.c"], config='src/extensions/inotify/config.h') if not inotify_ext.check_cc(["<sys/inotify.h>"], "inotify_init();"): if not inotify_ext.check_cc(["<sys/syscall.h>"], "syscall(0);"): print "inotify not enabled: doesn't look like a Linux system." else: print "inotify not supported in glibc; no problem, using built-in support instead." inotify_ext.config("#define USE_FALLBACK") extensions.append(inotify_ext) else: print "inotify supported by glibc; good." extensions.append(inotify_ext) # call setup setup( module = 'base', version = '0.1.3', license = 'LGPL', summary = 'Base module for all Kaa modules.', rpminfo = { 'requires': 'glib2 >= 2.6.0, python-sqlite2 >= 2.3.0, libxml2-python >= 2.6.0', 'build_requires': 'glib2-devel >= 2.6.0, python-devel >= 2.4.0' }, ext_modules = extensions)
# -*- coding: iso-8859-1 -*- # ----------------------------------------------------------------------------- # setup.py - Setup script for kaa.base # ----------------------------------------------------------------------------- # $Id$ # # ----------------------------------------------------------------------------- # Copyright (C) 2005, 2006 Dirk Meyer, Jason Tackaberry # # First Edition: Dirk Meyer <dmeyer@tzi.de> # Maintainer: Dirk Meyer <dmeyer@tzi.de> # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version # 2.1 as published by the Free Software Foundation. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA # # ----------------------------------------------------------------------------- # python imports import sys # We have some extensions but kaa.distribution isn't installed yet. So import # it directly from the source tree. First add src/ to the modules patch ... sys.path.insert(0, "src") # ... and now import it. from distribution import Extension, setup ext = Extension('kaa.shmmodule', ['src/extensions/shmmodule.c']) extensions = [ ext ] objectrow = Extension('kaa._objectrow', ['src/extensions/objectrow.c']) if objectrow.check_library("glib-2.0", "2.4.0"): extensions.append(objectrow) else: print "glib >= 2.4.0 not found; kaa.db will be unavailable" inotify_ext = Extension("kaa.inotify._inotify", ["src/extensions/inotify/inotify.c"], config='src/extensions/inotify/config.h') if not inotify_ext.check_cc(["<sys/inotify.h>"], "inotify_init();"): if not inotify_ext.check_cc(["<sys/syscall.h>"], "syscall(0);"): print "inotify not enabled: doesn't look like a Linux system." else: print "inotify not supported in glibc; no problem, using built-in support instead." inotify_ext.config("#define USE_FALLBACK") extensions.append(inotify_ext) else: print "inotify supported by glibc; good." extensions.append(inotify_ext) # call setup setup( module = 'base', version = '0.1.2', license = 'LGPL', summary = 'Base module for all Kaa modules.', rpminfo = { 'requires': 'glib2 >= 2.6.0, python-sqlite2 >= 2.3.0, libxml2-python >= 2.6.0', 'build_requires': 'glib2-devel >= 2.6.0, python-devel >= 2.4.0' }, ext_modules = extensions)
lgpl-2.1
Python
dd3de8eb9ae12ce859b071c635ff8c43cf7ab0ac
Fix syntax error in setup.py.
churchlab/reference_genome_maker
setup.py
setup.py
#!/usr/bin/env python # NOTE: multiprocessing import required for issues with nose tests. # See: http://bugs.python.org/issue15881#msg170215 import multiprocessing from setuptools import setup setup( name='reference_genome_maker', version='0.1', author='Church Lab', author_email='gleb@mit.edu', maintainer='Gleb Kuznetsov', maintainer_email='gleb@mit.edu', url='http://churchlab.github.io/millstone/', package_dir={'': 'src'}, packages=['reference_genome_maker'], install_requires=[ 'biopython >= 1.6.1', 'PyVCF >= 0.6.7' ], test_suite='nose.collector', )
#!/usr/bin/env python # NOTE: multiprocessing import required for issues with nose tests. # See: http://bugs.python.org/issue15881#msg170215 import multiprocessing from setuptools import setup setup( name='reference_genome_maker', version='0.1', author='Church Lab', author_email='gleb@mit.edu', maintainer='Gleb Kuznetsov', maintainer_email='gleb@mit.edu', url='http://churchlab.github.io/millstone/', package_dir={'': 'src'}, packages=['reference_genome_maker'], install_requires=[ 'biopython >= 1.6.1' 'PyVCF >= 0.6.7' ], test_suite='nose.collector', )
mit
Python
236416217bac634a8ff792d5110ba2a7bc56fc08
Remove Python 2.7 from setup.py
sde1000/python-xkbcommon
setup.py
setup.py
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='xkbcommon', version='0.1', description='Bindings for libxkbcommon using cffi', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries', 'Intended Audience :: Developers', ], url='https://github.com/sde1000/python-xkbcommon', author='Stephen Early', author_email='steve@assorted.org.uk', license='MIT', packages=['xkbcommon'], zip_safe=True, test_suite='tests.test_xkb', setup_requires=["cffi>=1.5.0"], install_requires=["cffi>=1.5.0"], cffi_modules=["ffi_build.py:ffibuilder"], )
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='xkbcommon', version='0.1', description='Bindings for libxkbcommon using cffi', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries', 'Intended Audience :: Developers', ], url='https://github.com/sde1000/python-xkbcommon', author='Stephen Early', author_email='steve@assorted.org.uk', license='MIT', packages=['xkbcommon'], zip_safe=True, test_suite='tests.test_xkb', setup_requires=["cffi>=1.5.0"], install_requires=["cffi>=1.5.0"], cffi_modules=["ffi_build.py:ffibuilder"], )
mit
Python
5e356b2bf31eb6af8031770cc2d848b1fd24df94
fix description
nicodv/kmodes
setup.py
setup.py
from setuptools import setup, find_packages import kmodes DESCRIPTION = kmodes.__doc__ VERSION = kmodes.__version__ setup( name='kmodes', packages=find_packages(exclude=[ '*.tests', '*.tests.*', ]), version=VERSION, url='https://github.com/nicodv/kmodes', author='Nico de Vos', author_email='njdevos@gmail.com', license='MIT', summary='Python implementations of the k-modes and k-prototypes clustering ' 'algorithms, for clustering categorical data.', description=DESCRIPTION, long_description=open('README.rst', 'r').read(), install_requires=[ 'numpy>=1.10.4', 'scikit-learn>=0.17.1', 'scipy>=0.17.0', ], classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Operating System :: Microsoft :: Windows', 'Operating System :: Unix', 'Operating System :: MacOS', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering'], )
from setuptools import setup, find_packages import kmodes """ Python implementations of the k-modes and k-prototypes clustering algorithms, for clustering categorical data """ DESCRIPTION = __doc__ VERSION = kmodes.__version__ setup( name='kmodes', packages=find_packages(exclude=[ '*.tests', '*.tests.*', ]), version=VERSION, url='https://github.com/nicodv/kmodes', author='Nico de Vos', author_email='njdevos@gmail.com', license='MIT', summary='Python implementations of the k-modes and k-prototypes clustering ' 'algorithms, for clustering categorical data.', description=DESCRIPTION, long_description=open('README.rst', 'r').read(), install_requires=[ 'numpy>=1.10.4', 'scikit-learn>=0.17.1', 'scipy>=0.17.0', ], classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Operating System :: Microsoft :: Windows', 'Operating System :: Unix', 'Operating System :: MacOS', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering'], )
mit
Python
cd4ced0a2e14785c9b5d0fe1b56548773db9630c
Add license and classifiers to setup.py
kipe/miplant
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='miplant', version='0.0.1', description='A library for reading cheap plant monitoring sensors manufactured by Xiaomi.', author='Kimmo Huoman', author_email='kipenroskaposti@gmail.com', url='https://github.com/kipe/miplant', license='MIT', packages=[ 'miplant', ], classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Topic :: Home Automation', 'Topic :: Software Development :: Libraries', ], install_requires=[ 'gattlib>=0.20150805', ])
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='miplant', version='0.0.1', description='A library for reading cheap plant monitoring sensors manufactured by Xiaomi.', author='Kimmo Huoman', author_email='kipenroskaposti@gmail.com', url='https://github.com/kipe/miplant', packages=[ 'miplant', ], install_requires=[ 'gattlib>=0.20150805', ])
mit
Python
43a8a83014c2d77b37615f28e695fa861350d0bf
Add attrs and typing to deps
otovo/python-netsgiro
setup.py
setup.py
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File parsers for Nets AvtaleGiro and OCR Giro', long_description=long_description, url='https://github.com/otovo/python-netsgiro', author='Otovo AS', license='Apache License, Version 2.0', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], keywords='avtalegiro ocr giro', packages=find_packages(exclude=['tests', 'tests.*']), install_requires=[ 'attrs', 'typing', # Needed for Python 3.4 ], extras_require={ 'dev': [ 'check-manifest', 'flake8', 'flake8-import-order', 'mypy', 'pytest', 'pytest-xdist', 'tox', ], }, )
import re from setuptools import find_packages, setup with open('netsgiro/__init__.py') as fh: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read())) with open('README.rst') as fh: long_description = fh.read() setup( name='netsgiro', version=metadata['version'], description='File parsers for Nets AvtaleGiro and OCR Giro', long_description=long_description, url='https://github.com/otovo/python-netsgiro', author='Otovo AS', license='Apache License, Version 2.0', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], keywords='avtalegiro ocr giro', packages=find_packages(exclude=['tests', 'tests.*']), install_requires=[ ], extras_require={ 'dev': [ 'check-manifest', 'flake8', 'flake8-import-order', 'mypy', 'pytest', 'pytest-xdist', 'tox', ], }, )
apache-2.0
Python
5f3784c4d7f0715955488f09975d157a00133209
Bump version to 0.7.0
disqus/nydus
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'nose', 'unittest2', 'mock', 'redis', 'Django>=1.2,<1.4', 'psycopg2', 'thoonk', ] dependency_links = [ 'https://github.com/andyet/thoonk.py/tarball/master#egg=thoonk', ] install_requires = [ ] setup( name='nydus', version='0.7.0', author='David Cramer', author_email='dcramer@gmail.com', url='http://github.com/disqus/nydus', description='Connection utilities', packages=find_packages(exclude=('tests',)), zip_safe=False, install_requires=install_requires, dependency_links=dependency_links, tests_require=tests_require, extras_require={'test': tests_require}, test_suite='nose.collector', include_package_data=True, license='Apache License 2.0', classifiers=[ 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Operating System :: OS Independent', 'Topic :: Software Development' ], )
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'nose', 'unittest2', 'mock', 'redis', 'Django>=1.2,<1.4', 'psycopg2', 'thoonk', ] dependency_links = [ 'https://github.com/andyet/thoonk.py/tarball/master#egg=thoonk', ] install_requires = [ ] setup( name='nydus', version='0.6.3', author='David Cramer', author_email='dcramer@gmail.com', url='http://github.com/disqus/nydus', description='Connection utilities', packages=find_packages(exclude=('tests',)), zip_safe=False, install_requires=install_requires, dependency_links=dependency_links, tests_require=tests_require, extras_require={'test': tests_require}, test_suite='nose.collector', include_package_data=True, license='Apache License 2.0', classifiers=[ 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Operating System :: OS Independent', 'Topic :: Software Development' ], )
apache-2.0
Python
a2a8cbcf2cbcb0778059523ab9b01497c93c92de
Make sure we distribute backports.
Disassem/urllib3,urllib3/urllib3,urllib3/urllib3,haikuginger/urllib3,sigmavirus24/urllib3,Lukasa/urllib3,sigmavirus24/urllib3,Disassem/urllib3,haikuginger/urllib3,Lukasa/urllib3
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os import re import codecs base_path = os.path.dirname(__file__) # Get the version (borrowed from SQLAlchemy) fp = open(os.path.join(base_path, 'urllib3', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(fp.read()).group(1) fp.close() readme = codecs.open('README.rst', encoding='utf-8').read() changes = codecs.open('CHANGES.rst', encoding='utf-8').read() version = VERSION setup(name='urllib3', version=version, description="HTTP library with thread-safe connection pooling, file post, and more.", long_description=u'\n\n'.join([readme, changes]), classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries', ], keywords='urllib httplib threadsafe filepost http https ssl pooling', author='Andrey Petrov', author_email='andrey.petrov@shazow.net', url='http://urllib3.readthedocs.org/', license='MIT', packages=['urllib3', 'urllib3.packages', 'urllib3.packages.ssl_match_hostname', 'urllib3.packages.backports', 'urllib3.contrib', 'urllib3.util', ], requires=[], tests_require=[ # These are a less-specific subset of dev-requirements.txt, for the # convenience of distro package maintainers. 'nose', 'mock', 'tornado', ], test_suite='test', extras_require={ 'secure': [ 'pyOpenSSL>=0.13', 'ndg-httpsclient', 'pyasn1', 'certifi', ], 'socks': [ 'PySocks>=1.5.6,<2.0', ] }, )
#!/usr/bin/env python from setuptools import setup import os import re import codecs base_path = os.path.dirname(__file__) # Get the version (borrowed from SQLAlchemy) fp = open(os.path.join(base_path, 'urllib3', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(fp.read()).group(1) fp.close() readme = codecs.open('README.rst', encoding='utf-8').read() changes = codecs.open('CHANGES.rst', encoding='utf-8').read() version = VERSION setup(name='urllib3', version=version, description="HTTP library with thread-safe connection pooling, file post, and more.", long_description=u'\n\n'.join([readme, changes]), classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries', ], keywords='urllib httplib threadsafe filepost http https ssl pooling', author='Andrey Petrov', author_email='andrey.petrov@shazow.net', url='http://urllib3.readthedocs.org/', license='MIT', packages=['urllib3', 'urllib3.packages', 'urllib3.packages.ssl_match_hostname', 'urllib3.contrib', 'urllib3.util', ], requires=[], tests_require=[ # These are a less-specific subset of dev-requirements.txt, for the # convenience of distro package maintainers. 'nose', 'mock', 'tornado', ], test_suite='test', extras_require={ 'secure': [ 'pyOpenSSL>=0.13', 'ndg-httpsclient', 'pyasn1', 'certifi', ], 'socks': [ 'PySocks>=1.5.6,<2.0', ] }, )
mit
Python
1271f29eea3fc508d5995d7b10fa8176134d6f8f
Set standards for syntax
antoinearnoud/openfisca-france,sgmap/openfisca-france,antoinearnoud/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 = '18.11.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Information Analysis", ], description = u'French tax and benefit system for OpenFisca', keywords = 'benefit france microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', url = 'https://github.com/openfisca/openfisca-france', data_files = [ ('share/openfisca/openfisca-france', ['CHANGELOG.md', 'LICENSE.AGPL.txt', 'README.md']), ], extras_require = { 'api': [ 'OpenFisca-Web-API >= 7.0, < 8.0', ], 'baremes_ipp': [ 'xlrd >= 1.0.0', 'lxml >= 3.8.0, < 4.0', 'Biryani[datetimeconv] >= 0.10.4', ], 'inversion_revenus': [ 'scipy >= 0.17', ], 'de_net_a_brut': [ 'scipy >= 0.17', ], 'taxipp': [ 'pandas >= 0.13', ], 'test': [ 'nose', 'flake8 == 3.4.1', 'scipy >= 0.17', # Only used to test de_net_a_brut reform ], }, include_package_data = True, # Will read MANIFEST.in install_requires = [ 'numpy >= 1.11, < 1.13', 'OpenFisca-Core >= 19.0.0, < 20.0', 'PyYAML >= 3.10', 'requests >= 2.8', ], message_extractors = {'openfisca_france': [ ('**.py', 'python', None), ]}, packages = find_packages(exclude=['openfisca_france.tests*']), test_suite = 'nose.collector', )
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '18.11.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Information Analysis", ], description = u'French tax and benefit system for OpenFisca', keywords = 'benefit france microsimulation social tax', license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', url = 'https://github.com/openfisca/openfisca-france', data_files = [ ('share/openfisca/openfisca-france', ['CHANGELOG.md', 'LICENSE.AGPL.txt', 'README.md']), ], extras_require = { 'api': [ 'OpenFisca-Web-API >= 7.0, < 8.0', ], 'baremes_ipp': [ 'xlrd >= 1.0.0', 'lxml >= 3.8.0, < 4.0', 'Biryani[datetimeconv] >= 0.10.4', ], 'inversion_revenus': [ 'scipy >= 0.17', ], 'de_net_a_brut': [ 'scipy >= 0.17', ], 'taxipp': [ 'pandas >= 0.13', ], 'test': [ 'nose', 'flake8', 'scipy >= 0.17', # Only used to test de_net_a_brut reform ], }, include_package_data = True, # Will read MANIFEST.in install_requires = [ 'numpy >= 1.11, < 1.13', 'OpenFisca-Core >= 19.0.0, < 20.0', 'PyYAML >= 3.10', 'requests >= 2.8', ], message_extractors = {'openfisca_france': [ ('**.py', 'python', None), ]}, packages = find_packages(exclude=['openfisca_france.tests*']), test_suite = 'nose.collector', )
agpl-3.0
Python
f2d29dc5bf44581dd1850b2be70fc5ae4b5fac35
Use README as long_description for PyPI
DasIch/oore
setup.py
setup.py
# encoding: utf-8 """ setup ~~~~~ :copyright: 2014 by Daniel Neuhäuser :license: BSD, see LICENSE.rst for details """ from setuptools import setup with open('README.rst', 'r') as readme: long_description = readme.read() setup( name='oore', description='Object-Oriented Regular Expressions', long_description=long_description, version='0.1.1', author='Daniel Neuhäuser', author_email='ich@danielneuhaeuser.de', url='https://github.com/DasIch/oore', py_modules=['oore'], classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ] )
# encoding: utf-8 """ setup ~~~~~ :copyright: 2014 by Daniel Neuhäuser :license: BSD, see LICENSE.rst for details """ from setuptools import setup setup( name='oore', description='Object-Oriented Regular Expressions', version='0.1.1', author='Daniel Neuhäuser', author_email='ich@danielneuhaeuser.de', url='https://github.com/DasIch/oore', py_modules=['oore'], classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ] )
bsd-3-clause
Python
84448e46c676be716ac0094e6f9db98860b71708
fix dependencies
ecsalina/gtrends
setup.py
setup.py
from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst')) as f: long_description = f.read() setup( name="gtrends", version = "0.2.0", py_modules = ["gtrends", "_login"], description = "Automated Google Trends downloader", author = "Eric Salina", url = "https://github.com/ecsalina/gtrends", license = "MIT", long_description = long_description, keywords = ['Google', 'Trends', 'API', 'gtrends'], install_requires = ['six'], classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Utilities", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ] )
from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst')) as f: long_description = f.read() setup( name="gtrends", version = "0.2.0", py_modules = ["gtrends", "_login"], description = "Automated Google Trends downloader", author = "Eric Salina", url = "https://github.com/ecsalina/gtrends", license = "MIT", long_description = long_description, keywords = ['Google', 'Trends', 'API', 'gtrends'], classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Utilities", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ] )
mit
Python
3764fef58ba227f96395a806bbe85ad02f64cdb6
Bump version
the-mace/teslajson,gglockner/teslajson
setup.py
setup.py
from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path setup(name='teslajson', version='1.2.1', description='', url='https://github.com/gglockner/teslajson', py_modules=['teslajson'], author='Greg Glockner', license='MIT', )
from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path setup(name='teslajson', version='1.2.0', description='', url='https://github.com/gglockner/teslajson', py_modules=['teslajson'], author='Greg Glockner', license='MIT', )
mit
Python
9ab4ab7121ab3628c9190255d5912283ad70d75f
Update setup script for ``tddspry`` package.
playpauseandstop/tddspry,playpauseandstop/tddspry
setup.py
setup.py
#!/usr/bin/env python import os try: from setuptools import setup except ImportError: from distutils.core import setup kwargs = {} else: kwargs = { 'entry_points': """ [nose.plugins.0.10] django = tddspry.noseplugins:DjangoPlugin """ } readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')) README = readme.read() readme.close() requires = ['Django (>= 1.0)', 'nose (>= 0.11.0)', 'twill (>= 0.9)'] version = __import__('tddspry').get_version() if kwargs: install_requires = [r.replace('(', '').replace(')', '') for r in requires \ if not r.startswith('Django')] kwargs.update({'install_requires': install_requires}) setup(name='tddspry', version=version, description='Collection of test cases and additional helpers to test ' \ 'Django applications with nose library.', long_description=README, author='Igor Davydenko', author_email='playpauseandstop@gmail.com', url='http://github.com/playpauseandstop/tddspry', packages=['tddspry', 'tddspry.django', 'tddspry.django.helpers', 'tddspry.noseplugins'], scripts=['bin/django-nosetests.py'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'License :: OSI Approved :: BSD License', 'Topic :: Software Development :: Testing', ], keywords='django nose tdd testing tests twill', requires=requires, **kwargs)
#!/usr/bin/env python import os try: from setuptools import setup except ImportError: from distutils.core import setup kwargs = {} else: kwargs = { 'entry_points': """ [nose.plugins.0.10] django = tddspry.noseplugins:DjangoPlugin """ } readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')) README = readme.read() readme.close() requires = ['Django (>= 1.0)', 'nose (>= 0.11.0)', 'twill (>= 0.9)'] version = __import__('tddspry').get_version() setup(name='tddspry', version=version, description='Collection of test cases and additional helpers to test ' \ 'Django applications with nose library.', long_description=README, author='42 Coffee Cups', author_email='talk@42coffeecups.com', maintainer='Igor Davydenko', maintainer_email='playpauseandstop@gmail.com', url='http://github.com/42/tddspry', packages=['tddspry', 'tddspry.django', 'tddspry.django.helpers', 'tddspry.noseplugins'], scripts=['bin/django-nosetests.py'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'License :: OSI Approved :: BSD License', 'Topic :: Software Development :: Testing', ], keywords='django nose tdd testing tests twill', setup_requires=[r.replace('(', '').replace(')', '') for r in requires \ if not r.startswith('Django')], requires=requires, **kwargs)
bsd-3-clause
Python
5e051032d46835438c3c328024571c40c3d85463
bump version number
theilmbh/pyoperant,gentnerlab/pyoperant,opyrant/opyrant,opyrant/opyrant,theilmbh/pyoperant,MarvinT/pyoperant,theilmbh/pyoperant,gentnerlab/pyoperant,gentnerlab/pyoperant,gentnerlab/pyoperant,MarvinT/pyoperant,MarvinT/pyoperant,theilmbh/pyoperant
setup.py
setup.py
from distutils.core import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'pyoperant', version = '0.1.2', author = 'Justin Kiggins', author_email = 'justin.kiggins@gmail.com', description = 'hardware interface and controls for operant conditioning', long_description = open('docs/README.rst', 'rt').read(), packages = ['pyoperant'], requires = ['pyephem','numpy'], license = "GNU Affero General Public License v3", classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering", ], )
from distutils.core import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'pyoperant', version = '0.1.1', author = 'Justin Kiggins', author_email = 'justin.kiggins@gmail.com', description = 'hardware interface and controls for operant conditioning', long_description = open('docs/README.rst', 'rt').read(), packages = ['pyoperant'], requires = ['pyephem','numpy'], license = "GNU Affero General Public License v3", classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering", ], )
bsd-3-clause
Python
a02b308cb01bd9d9cdd086fb8290db1768eaa02b
Add dateutil dependency
codebynumbers/ftpretty
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os __version__ = '0.1.5' def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup(name='ftpretty', version=__version__, description='Pretty FTP wrapper', long_description=(read('README.rst') + '\n\n' + read('HISTORY.rst') + '\n\n' + read('AUTHORS.rst')), license='MIT', author='Rob Harrigan', author_email='harrigan.rob@gmail.com', url='https://github.com/codebynumbers/ftpretty/', download_url='https://github.com/codebynumbers/ftpretty/tarball/%s' % __version__, py_modules=['ftpretty'], install_requires = [ 'python-dateutil', ], test_suite = 'test_ftpretty.suite', )
#!/usr/bin/env python from setuptools import setup import os __version__ = '0.1.5' def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup(name='ftpretty', version=__version__, description='Pretty FTP wrapper', long_description=(read('README.rst') + '\n\n' + read('HISTORY.rst') + '\n\n' + read('AUTHORS.rst')), license='MIT', author='Rob Harrigan', author_email='harrigan.rob@gmail.com', url='https://github.com/codebynumbers/ftpretty/', download_url='https://github.com/codebynumbers/ftpretty/tarball/%s' % __version__, py_modules=['ftpretty'], test_suite = 'test_ftpretty.suite', )
mit
Python
f7900636c66760f1fea577e533f00580ef8859e5
Update to version 1.0.90
blockcypher/blockcypher-python
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup # read the contents of your README file from os import path from io import open this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup(name='blockcypher', long_description=long_description, long_description_content_type='text/markdown', version='1.0.90', description='BlockCypher Python Library', author='Michael Flaxman', author_email='mflaxman+blockcypher@gmail.com', url='https://github.com/blockcypher/blockcypher-python/', install_requires=[ 'requests<3.0.0', 'python-dateutil<3.0.0', 'bitcoin==1.1.39', ], packages=['blockcypher'], include_package_data=True, package_data={"": ["LICENSE"]} )
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup # read the contents of your README file from os import path from io import open this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup(name='blockcypher', long_description=long_description, long_description_content_type='text/markdown', version='1.0.88', description='BlockCypher Python Library', author='Michael Flaxman', author_email='mflaxman+blockcypher@gmail.com', url='https://github.com/blockcypher/blockcypher-python/', install_requires=[ 'requests<3.0.0', 'python-dateutil<3.0.0', 'bitcoin==1.1.39', ], packages=['blockcypher'], include_package_data=True, package_data={"": ["LICENSE"]} )
apache-2.0
Python
a4e5385d4dcca196189d7d00eb121ee2769a4985
add requirement for inflector
ECESeniorDesign/lazy_record
setup.py
setup.py
from setuptools import setup setup( name='lazy_record', packages=['lazy_record', 'lazy_record/base'], version='0.4.0', description='Generic Model Layer for Python Web Applications using Sqlite3', author='Chase Conklin', author_email='cconkli4@u.rochester.edu', url='https://github.com/ECESeniorDesign/lazy_record', download_url='https://github.com/ECESeniorDesign/' 'lazy_record/tarball/0.4.0', keywords=['flask'], install_requires=[ 'inflector', ], classifiers=[], )
from distutils.core import setup setup( name='lazy_record', packages=['lazy_record', 'lazy_record/base'], version='0.4.0', description='Generic Model Layer for Python Web Applications using Sqlite3', author='Chase Conklin', author_email='cconkli4@u.rochester.edu', url='https://github.com/ECESeniorDesign/lazy_record', download_url='https://github.com/ECESeniorDesign/' 'lazy_record/tarball/0.4.0', keywords=['flask'], classifiers=[], )
mit
Python
69125027e9ba2802c2e5643429e0bf4e22f6b824
Add Python 3.6 classifier in setup.py
GabrielFortin/ansible-module-f5bigip,erjac77/ansible-module-f5bigip
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright 2016-2018, Eric Jacob <erjac77@gmail.com> # # 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 the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from setuptools import setup from version import __version__ setup( name='ansible-module-f5bigip', version=__version__, description='An Ansible module to perform specific operational and configuration tasks on F5 BIG-IP systems.', license='Apache 2.0', author='Eric Jacob', author_email='erjac77@gmail.com', url='https://github.com/erjac77/ansible-module-f5bigip', packages=['library'], keywords=['ansible', 'f5', 'bigip', 'big-ip', 'networking'], classifiers=[ 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'Intended Audience :: Telecommunications Industry', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking' ] )
#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright 2016-2018, Eric Jacob <erjac77@gmail.com> # # 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 the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from setuptools import setup from version import __version__ setup( name='ansible-module-f5bigip', version=__version__, description='An Ansible module to perform specific operational and configuration tasks on F5 BIG-IP systems.', license='Apache 2.0', author='Eric Jacob', author_email='erjac77@gmail.com', url='https://github.com/erjac77/ansible-module-f5bigip', packages=['library'], keywords=['ansible', 'f5', 'bigip', 'big-ip', 'networking'], classifiers=[ 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'Intended Audience :: Telecommunications Industry', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking' ] )
apache-2.0
Python
c7d5edffb884dc9a3973f1e089f9395019188555
Bump to 0.2.3 development version
nitipit/appkit
setup.py
setup.py
from distutils.core import setup import os data = list() for d in os.walk('appkit/'): if len(d[2]) > 0: path_list = map( lambda x: str.join('/', os.path.join(d[0], x).split('/')[1:]), d[2] ) data.extend(path_list) setup( name='AppKit', version='0.2.3', description='Desktop application framework based on Webkit, \ HTML5, CSS3, Javascript and Python', author='Nitipit Nontasuwan', author_email='nitipit@gmail.com', url='http://nitipit.github.com/appkit/', license='MIT', platforms=['Linux', ], keywords=['framework, html5, gnome, ui'], package_dir={'appkit': 'appkit'}, packages=['appkit'], package_data={'appkit': data}, requires=['sphinx_bootstrap_theme', ], )
from distutils.core import setup import os data = list() for d in os.walk('appkit/'): if len(d[2]) > 0: path_list = map( lambda x: str.join('/', os.path.join(d[0], x).split('/')[1:]), d[2] ) data.extend(path_list) setup( name='AppKit', version='0.2.2', description='Desktop application framework based on Webkit, \ HTML5, CSS3, Javascript and Python', author='Nitipit Nontasuwan', author_email='nitipit@gmail.com', url='http://nitipit.github.com/appkit/', license='MIT', platforms=['Linux', ], keywords=['framework, html5, gnome, ui'], package_dir={'appkit': 'appkit'}, packages=['appkit'], package_data={'appkit': data}, requires=['sphinx_bootstrap_theme', ], )
mit
Python
5d529c5664f9c2b3d805145e03f1f38300178bca
Update version to 1.0.1
pteichman/instatrace
setup.py
setup.py
#!/usr/bin/env python # Require setuptools. See http://pypi.python.org/pypi/setuptools for # installation instructions, or run the ez_setup script found at # http://peak.telecommunity.com/dist/ez_setup.py from setuptools import setup, find_packages setup( name = "instatrace", version = "1.0.1", author = "Peter Teichman", author_email = "peter@teichman.org", url = "http://wiki.github.com/pteichman/instatrace/", description = "Software statistics recorder/display", packages = ["instatrace"], test_suite = "tests", install_requires = ["argparse>=1.1"], classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python" ], entry_points = { "console_scripts" : [ "instatrace = instatrace.control:main" ] } )
#!/usr/bin/env python # Require setuptools. See http://pypi.python.org/pypi/setuptools for # installation instructions, or run the ez_setup script found at # http://peak.telecommunity.com/dist/ez_setup.py from setuptools import setup, find_packages setup( name = "instatrace", version = "1.0.0", author = "Peter Teichman", author_email = "peter@teichman.org", url = "http://wiki.github.com/pteichman/instatrace/", description = "Software statistics recorder/display", packages = ["instatrace"], test_suite = "tests", install_requires = ["argparse>=1.1"], classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python" ], entry_points = { "console_scripts" : [ "instatrace = instatrace.control:main" ] } )
mit
Python
ebd89eec31050b4a548593c6dab74bd107bb45ed
update package info
napuzba/zagoload
setup.py
setup.py
# Copyright (C) 2014 Napuzba [kobi@napuzba.com] # Licensed under MIT license [http://openreq.source.org/licenses/MIT] from setuptools import setup description = 'Download files(http,ftp). Supports: cachinhg, uniform access to remote and local files' long_description = ''' ===== About ===== zagoload module simplifies downloading and accessing remote files: 1. Access to Remote files (accessible thought HTTP and FTP protocols) and local files in uniform way. 2. Consume restful webservices with a breeze 3. Cache your downloaded files to save resources ***** Usage ***** See `Download Files with zagoload`_ for turorial. .. _Download Files with Fileloader: http://www.napuzba.com/story/download-files-with-zagoload/ ''' setup( name = 'zagoload', packages = ['zagoload'], install_requires = [ 'urllib3 >= 1.0', ], version = '0.5.0', author = 'napuzba', author_email = 'kobi@napuzba.com', url = 'https://github.com/napuzba/zagoload.git', description = description, long_description = long_description, license = 'MIT', keywords = ['download,crawl,ftp,http,json,webservices,cache'], classifiers = [ 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: File Transfer Protocol (FTP)', 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research', 'Intended Audience :: System Administrators', ], )
# Copyright (C) 2014 Napuzba [kobi@napuzba.com] # Licensed under MIT license [http://openreq.source.org/licenses/MIT] from setuptools import setup description = 'Download files(http,ftp). Supports: cachinhg, uniform access to remote and local files' long_description = ''' ===== About ===== zagoload module simplifies downloading and accessing remote files. ******** Features ******** 1. Allows uniform access to Remote files ( accessible thought HTTP and FTP protocols) and local files. 2. Support caching ***** Usage ***** See `Download Files with zagoload`_ for turorial. .. _Download Files with Fileloader: http://www.napuzba.com/story/download-files-with-zagoload/ ''' setup( name = 'zagoload', packages = ['zagoload'], install_requires = [ 'urllib3 >= 1.0', ], version = '2.1.1', author = 'napuzba', author_email = 'kobi@napuzba.com', url = 'https://github.com/napuzba/zagoload.git', description = description, long_description = long_description, license = 'MIT', keywords = ['download,crawl,ftp,http'], classifiers = [ 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: File Transfer Protocol (FTP)', 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research', 'Intended Audience :: System Administrators', ], )
mit
Python
b930d650d86f959fa4f83354741df7ac2b477734
Fix setup.py in Py3K
blink1073/oct2py,blink1073/oct2py
setup.py
setup.py
"""Setup script for oct2py package. """ DISTNAME = 'oct2py' DESCRIPTION = 'Python to GNU Octave bridge --> run m-files from python.' LONG_DESCRIPTION = open('README.rst', 'rb').read().decode('utf-8') MAINTAINER = 'Steven Silvester' MAINTAINER_EMAIL = 'steven.silvester@ieee.org' URL = 'http://github.com/blink1073/oct2py' LICENSE = 'MIT' REQUIRES = ["numpy (>= 1.6.0)", "scipy (>= 0.9.0)"] PACKAGES = [DISTNAME, '%s.tests' % DISTNAME, '%s/ipython' % DISTNAME, '%s/ipython/tests' % DISTNAME] PACKAGE_DATA = {DISTNAME: ['tests/*.m']} CLASSIFIERS = """\ Development Status :: 5 - Production/Stable Intended Audience :: Developers Intended Audience :: Science/Research License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 2.7 Programming Language :: Python :: 3.2 Programming Language :: Python :: 3.3 Topic :: Scientific/Engineering Topic :: Software Development """ try: from setuptools import setup except ImportError: from distutils.core import setup with open('oct2py/__init__.py', 'rb') as fid: for line in fid: line = line.decode('utf-8') if line.startswith('__version__'): version = line.strip().split()[-1][1:-1] break setup( name=DISTNAME, version=version, maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, packages=PACKAGES, package_data=PACKAGE_DATA, url=URL, download_url=URL, license=LICENSE, platforms=["Any"], description=DESCRIPTION, long_description=LONG_DESCRIPTION, classifiers=filter(None, CLASSIFIERS.split('\n')), requires=REQUIRES )
"""Setup script for oct2py package. """ DISTNAME = 'oct2py' DESCRIPTION = 'Python to GNU Octave bridge --> run m-files from python.' LONG_DESCRIPTION = open('README.rst', 'rb').read().decode('utf-8') MAINTAINER = 'Steven Silvester' MAINTAINER_EMAIL = 'steven.silvester@ieee.org' URL = 'http://github.com/blink1073/oct2py' LICENSE = 'MIT' REQUIRES = ["numpy (>= 1.6.0)", "scipy (>= 0.9.0)"] PACKAGES = [DISTNAME, '%s.tests' % DISTNAME, '%s/ipython' % DISTNAME, '%s/ipython/tests' % DISTNAME] PACKAGE_DATA = {DISTNAME: ['tests/*.m']} CLASSIFIERS = """\ Development Status :: 5 - Production/Stable Intended Audience :: Developers Intended Audience :: Science/Research License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 2.7 Programming Language :: Python :: 3.2 Programming Language :: Python :: 3.3 Topic :: Scientific/Engineering Topic :: Software Development """ try: from setuptools import setup except ImportError: from distutils.core import setup with open('oct2py/__init__.py', 'rb') as fid: for line in fid: if line.startswith('__version__'): version = line.strip().split()[-1][1:-1] break setup( name=DISTNAME, version=version, maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, packages=PACKAGES, package_data=PACKAGE_DATA, url=URL, download_url=URL, license=LICENSE, platforms=["Any"], description=DESCRIPTION, long_description=LONG_DESCRIPTION, classifiers=filter(None, CLASSIFIERS.split('\n')), requires=REQUIRES )
mit
Python
e39073538d121d227e53535cba4ceffeebe577a2
Fix a typo in setup.py
davidlarizap/key-mon,scottkirkwood/key-mon,raulcesar/key-mon,Alwnikrotikz/key-mon,KOT040188/key-mon,sanyaade-g2g-repos/key-mon,jorgeartware/key-mon,vhermecz/key-mon,israfilkara/key-mon,ifara/key-mon,critiqjo/key-mon,mattboll/key-mon,tectronics/key-mon,aditiapratama/key-mon,holtzermann17/key-mon,MichalPokorny/key-mon
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup # setup.py sdist --formats=gztar,zip upload # setup.py bdist NAME='key-mon' VER='0.15' setup( name = NAME, version = VER, packages = ['keymon'], package_dir = { 'keymon': 'src/keymon'}, package_data = { 'keymon': ['themes/apple/*', 'themes/classic/*', '*.kbd'], }, scripts=['src/key-mon'], author='Scott Kirkwood', author_email='scott+keymon@forusers.com', platforms=['POSIX'], license='LGPL', keywords='keyboard status monitor education', url='http://code.google.com/p/%s' % NAME, download_url='http://%s.googlecode.com/files/%ss-%s.zip' % (NAME, NAME, VER), classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: X11 Applications', 'Intended Audience :: Education', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: POSIX :: Linux', 'Topic :: Education :: Computer Aided Instruction (CAI)', ], description='A small utility to display your current keyboard and mouse status. Useful for screencasts.', long_description="""Key-mon is useful for teaching since it shows the current status of your keyboard and mouse and you use them in another application. No longer do you need to say 'Now I'm pressing the Ctrl-D key', your students can just see the keystroke for themselves. """, )
#!/usr/bin/env python from distutils.core import setup NAME='key-mon' VER='0.15' setup( name = NAME, version = VER, packages = ['keymon'], package_dir = { 'keymon': 'src/keymon'}, package_data = { 'keymon': ['themes/apple/*', 'themes/classic/*', '*.kbd'], }, scripts=['src/key-mon'], author='Scott Kirkwood', author_email='scott+keymon@forusers.com', platforms=['POSIX'], license='LGPL', keywords='keyboard status monitor education', url='http://code.google.com/p/%s' % NAME, download_url='http://%s.googlecode.com/files/%ss-%s.zip' % (NAME, NAME, VER), classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: X11 Applications', 'Intended Audience :: Education', 'License :: OSI Approved :: GNU Library or Lesser General Public LIcense (LGPL)', 'Operating System :: POSIX :: Linux', 'Topic :: Education :: Computer Aided Instruction (CAI)', ], description='A small utility to display your current keyboard and mouse status. Useful for screencasts.', long_description="""Key-mon is useful for teaching since it shows the current status of your keyboard and mouse and you use them in another application. No longer do you need to say 'Now I'm pressing the Ctrl-D key', your students can just see the keystroke for themselves. """, )
apache-2.0
Python
70815e2f4135bc6adddf5841aad71ba0ebac1834
remove download link for munkres (author updated pypi entry)
google-code-export/beets,google-code-export/beets,google-code-export/beets
setup.py
setup.py
#!/usr/bin/env python # This file is part of beets. # Copyright 2010, Adrian Sampson. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. from setuptools import setup setup(name='beets', version='1.0b1', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org', url='http://beets.radbox.org/', license='MIT', platforms='ALL', long_description="""Beets is a media library management system for obsessive-compulsive music geeks. The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. It then provides a set of tools for manipulating and accessing your music. Beets also includes a music player that implements the MPD protocol, so you can play music in your beets library using any MPD client. """, packages=[ 'beets', 'beets.autotag', 'beets.player', ], scripts=['beet'], install_requires=[ 'mutagen', 'python-musicbrainz2 >= 0.7.0', 'munkres', 'cmdln', 'eventlet >= 0.9.3', ], )
#!/usr/bin/env python # This file is part of beets. # Copyright 2010, Adrian Sampson. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. from setuptools import setup setup(name='beets', version='1.0b1', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org', url='http://beets.radbox.org/', license='MIT', platforms='ALL', long_description="""Beets is a media library management system for obsessive-compulsive music geeks. The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes. It then provides a set of tools for manipulating and accessing your music. Beets also includes a music player that implements the MPD protocol, so you can play music in your beets library using any MPD client. """, packages=[ 'beets', 'beets.autotag', 'beets.player', ], scripts=['beet'], install_requires=[ 'mutagen', 'python-musicbrainz2 >= 0.7.0', 'munkres', 'cmdln', 'eventlet >= 0.9.3', ], # The munkres module doesn't have any working download links. dependency_links=['http://beets.radbox.org/packages/'], )
mit
Python
6eb6b95390c95186db5cdd6950cc33ad0bc23ad4
Fix setup.py
consbio/awsecret
setup.py
setup.py
from setuptools import setup from awsecret import VERSION setup( name='awsecret', description='Secure credential storage in S3.', keywords='password,aws,s3,credentials,encryption', version=VERSION, packages=['awsecret'], install_requires=['pycrypto', 'boto', 'click'], url='https://github.com/consbio/awsecret', license='BSD', entry_points={ 'console_scripts': ['awsec=awsecret.cli:main'] } )
from setuptools import setup from awsecret import VERSION setup( name='awsecret', description='Secure credential storage in S3.', keywords='password,aws,s3,credentials,encryption', version=VERSION, packages=['awsecret'], requires=['pycrypto', 'boto', 'click'], url='https://github.com/consbio/awsecret', license='BSD', entry_points={ 'console_scripts': ['awsec=awsecret.cli:main'] } )
bsd-3-clause
Python
8b77cc10863dcb5dbcca46c719758db491056331
Prepare for release 2.1.2
icometrix/dicom2nifti,icometrix/dicom2nifti
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages version = '2.1.2' long_description = """ With this package you can convert dicom images to nifti files. There is support for most anatomical CT and MR data. For MR specifically there is support for most 4D data (like DTI and fMRI) """ setup( name='dicom2nifti', packages=find_packages(exclude=['contrib', 'docs', 'tests*']), version=version, description='package for converting dicom files to nifti', long_description=long_description, license='MIT', author='icometrix NV', author_email='dicom2nifti@icometrix.com', maintainer="icometrix NV", maintainer_email="dicom2nifti@icometrix.com", url='https://github.com/icometrix/dicom2nifti', download_url='https://github.com/icometrix/dicom2nifti/tarball/%s' % version, keywords=['dicom', 'nifti', 'medical imaging'], scripts=['scripts/dicom2nifti'], # https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Healthcare Industry', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Medical Science Apps.', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX :: Linux'], install_requires=['six', 'future', 'nibabel', 'numpy', 'scipy', 'pydicom>=1.0.1'], setup_requires=['nose', 'coverage'] )
from distutils.core import setup from setuptools import find_packages version = '2.1.1' long_description = """ With this package you can convert dicom images to nifti files. There is support for most anatomical CT and MR data. For MR specifically there is support for most 4D data (like DTI and fMRI) """ setup( name='dicom2nifti', packages=find_packages(exclude=['contrib', 'docs', 'tests*']), version=version, description='package for converting dicom files to nifti', long_description=long_description, license='MIT', author='icometrix NV', author_email='dicom2nifti@icometrix.com', maintainer="icometrix NV", maintainer_email="dicom2nifti@icometrix.com", url='https://github.com/icometrix/dicom2nifti', download_url='https://github.com/icometrix/dicom2nifti/tarball/%s' % version, keywords=['dicom', 'nifti', 'medical imaging'], scripts=['scripts/dicom2nifti'], # https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Healthcare Industry', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Medical Science Apps.', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX :: Linux'], install_requires=['six', 'future', 'nibabel', 'numpy', 'scipy', 'pydicom>=1.0.1'], setup_requires=['nose', 'coverage'] )
mit
Python
2679b70d4037e1d1b33057bd4081ff5a9f437799
Update required pymatgen version.
davidwaroquiers/custodian,specter119/custodian,materialsproject/custodian,materialsproject/custodian,specter119/custodian,xhqu1981/custodian,specter119/custodian,alberthxf/custodian,materialsproject/custodian
setup.py
setup.py
import os from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages with open("README.rst") as f: long_desc = f.read() ind = long_desc.find("\n") long_desc = long_desc[ind + 1:] setup( name="custodian", packages=find_packages(), version="0.6.0", install_requires=[], extras_require={"vasp, nwchem": ["pymatgen>=2.8.10"]}, package_data={}, author="Shyue Ping Ong, William Davidson Richards, Stephen Dacek, " "Xiaohui Qu", author_email="ongsp@ucsd.edu", maintainer="Shyue Ping Ong", url="https://github.com/materialsproject/custodian", license="MIT", description="A simple JIT job management framework in Python.", long_description=long_desc, keywords=["jit", "just-in-time", "job", "management", "vasp"], classifiers=[ "Programming Language :: Python :: 2.7", "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Physics", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Software Development :: Libraries :: Python Modules" ], scripts=[os.path.join("scripts", f) for f in os.listdir("scripts")] )
import os from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages with open("README.rst") as f: long_desc = f.read() ind = long_desc.find("\n") long_desc = long_desc[ind + 1:] setup( name="custodian", packages=find_packages(), version="0.6.0", install_requires=[], extras_require={"vasp, nwchem": ["pymatgen>=2.8.9"]}, package_data={}, author="Shyue Ping Ong, William Davidson Richards, Stephen Dacek, " "Xiaohui Qu", author_email="ongsp@ucsd.edu", maintainer="Shyue Ping Ong", url="https://github.com/materialsproject/custodian", license="MIT", description="A simple JIT job management framework in Python.", long_description=long_desc, keywords=["jit", "just-in-time", "job", "management", "vasp"], classifiers=[ "Programming Language :: Python :: 2.7", "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Physics", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Software Development :: Libraries :: Python Modules" ], scripts=[os.path.join("scripts", f) for f in os.listdir("scripts")] )
mit
Python
e3f273509ada5632cc7110f62caebcdb982307da
Add @Alir3z4 as maintainer info
Alir3z4/python-sanitize
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "sanitize", version = "0.33", description = "Bringing sanitiy to world of messed-up data", long_description=open('README.md').read(), author = "Aaron Swartz", author_email = "me@aaronsw.com", maintainer='Alireza Savand', maintainer_email='alireza.savand@gmail.com', url='http://www.aaronsw.com/2002/sanitize/', license=open('LICENCE').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.3', 'Programming Language :: Python :: 2.4', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.0', 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2' ], license='BSD', packages=find_packages(), py_modules=['sanitize'], include_package_data=True, zip_safe=False, )
from setuptools import setup, find_packages setup( name = "sanitize", version = "0.33", description = "Bringing sanitiy to world of messed-up data", long_description=open('README.md').read(), author = "Aaron Swartz", author_email = "me@aaronsw.com", url='http://www.aaronsw.com/2002/sanitize/', license=open('LICENCE').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.3', 'Programming Language :: Python :: 2.4', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.0', 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2' ], license='BSD', packages=find_packages(), py_modules=['sanitize'], include_package_data=True, zip_safe=False, )
bsd-2-clause
Python
119ad3a22695651318e5b840e80b05792a950412
create version 0.3.16
Duke-GCB/DukeDSClient,Duke-GCB/DukeDSClient
setup.py
setup.py
from setuptools import setup setup(name='DukeDSClient', version='0.3.16', description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.', url='https://github.com/Duke-GCB/DukeDSClient', keywords='duke dds dukedataservice', author='John Bradley', license='MIT', packages=['ddsc','ddsc.core'], install_requires=[ 'requests', 'PyYAML', 'pytz', 'future', 'six', ], test_suite='nose.collector', tests_require=['nose', 'mock'], entry_points={ 'console_scripts': [ 'ddsclient = ddsc.__main__:main' ] }, classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], )
from setuptools import setup setup(name='DukeDSClient', version='0.3.15', description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.', url='https://github.com/Duke-GCB/DukeDSClient', keywords='duke dds dukedataservice', author='John Bradley', license='MIT', packages=['ddsc','ddsc.core'], install_requires=[ 'requests', 'PyYAML', 'pytz', 'future', 'six', ], test_suite='nose.collector', tests_require=['nose', 'mock'], entry_points={ 'console_scripts': [ 'ddsclient = ddsc.__main__:main' ] }, classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], )
mit
Python
ef9603aad8ce7de72f1a21982946143ca26db3a1
Use sphinx-astropy to get all dependencies
dpshelio/astropy-helpers,dpshelio/astropy-helpers,Cadair/astropy-helpers,Cadair/astropy-helpers,astropy/astropy-helpers,astropy/astropy-helpers
setup.py
setup.py
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst import ah_bootstrap import pkg_resources from setuptools import setup from astropy_helpers.setup_helpers import (register_commands, get_package_info, add_exclude_packages) from astropy_helpers.version_helpers import generate_version_py NAME = 'astropy_helpers' VERSION = '3.2.dev' RELEASE = 'dev' not in VERSION generate_version_py(NAME, VERSION, RELEASE, False, uses_git=not RELEASE) # Use the updated version including the git rev count from astropy_helpers.version import version as VERSION add_exclude_packages(['astropy_helpers.tests']) cmdclass = register_commands(NAME, VERSION, RELEASE) # This package actually doesn't use the Astropy test command del cmdclass['test'] setup( name=pkg_resources.safe_name(NAME), # astropy_helpers -> astropy-helpers version=VERSION, description='Utilities for building and installing Astropy, Astropy ' 'affiliated packages, and their respective documentation.', author='The Astropy Developers', author_email='astropy.team@gmail.com', license='BSD', url=' https://github.com/astropy/astropy-helpers', long_description=open('README.rst').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Framework :: Setuptools Plugin', 'Framework :: Sphinx :: Extension', 'Framework :: Sphinx :: Theme', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Archiving :: Packaging' ], extras_require={'docs': ['sphinx-astropy']}, cmdclass=cmdclass, python_requires='>=3.5', zip_safe=False, **get_package_info() )
#!/usr/bin/env python # Licensed under a 3-clause BSD style license - see LICENSE.rst import ah_bootstrap import pkg_resources from setuptools import setup from astropy_helpers.setup_helpers import (register_commands, get_package_info, add_exclude_packages) from astropy_helpers.version_helpers import generate_version_py NAME = 'astropy_helpers' VERSION = '3.2.dev' RELEASE = 'dev' not in VERSION generate_version_py(NAME, VERSION, RELEASE, False, uses_git=not RELEASE) # Use the updated version including the git rev count from astropy_helpers.version import version as VERSION add_exclude_packages(['astropy_helpers.tests']) cmdclass = register_commands(NAME, VERSION, RELEASE) # This package actually doesn't use the Astropy test command del cmdclass['test'] setup( name=pkg_resources.safe_name(NAME), # astropy_helpers -> astropy-helpers version=VERSION, description='Utilities for building and installing Astropy, Astropy ' 'affiliated packages, and their respective documentation.', author='The Astropy Developers', author_email='astropy.team@gmail.com', license='BSD', url=' https://github.com/astropy/astropy-helpers', long_description=open('README.rst').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Framework :: Setuptools Plugin', 'Framework :: Sphinx :: Extension', 'Framework :: Sphinx :: Theme', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Archiving :: Packaging' ], extras_require={'docs': ['sphinx', 'sphinx-automodapi', 'numpydoc']}, cmdclass=cmdclass, python_requires='>=3.5', zip_safe=False, **get_package_info() )
bsd-3-clause
Python
6b8ea928776c698eb22bff890ed9077a2dd22de7
Upgrade docker compose version
lstephen/construi
setup.py
setup.py
from setuptools import find_packages, setup import codecs import distutils import os import re def read(*parts): path = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(path, encoding='utf-8') as fobj: return fobj.read() def find_version(): version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", read('construi', '__version__.py'), re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") class YapfCommand(distutils.cmd.Command): description = 'Format python files using yapf' user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import yapf yapf.main(['yapf', '--recursive', '--in-place', 'setup.py', 'test'] + find_packages()) requires = { 'install': ['PyYAML == 3.11', 'docker-compose == 1.18.0', 'six == 1.10.0'], 'setup': ['flake8 == 3.0.4', 'pytest-runner == 2.6.2', 'yapf == 0.16.1'], 'tests': ['pytest == 2.8.5', 'pytest-cov == 2.2.0'] } summary = 'Use Docker to define your build environment' setup( name='construi', version=find_version(), url='https://github.com/lstephen/construi', license='Apache License 2.0', description=summary, long_description=summary, author='Levi Stephen', author_email='levi.stephen@gmail.com', zip_safe=True, packages=find_packages(), install_requires=requires['install'], setup_requires=requires['setup'], tests_require=requires['tests'], entry_points={'console_scripts': [ 'construi=construi.cli:main', ]}, cmdclass={'yapf': YapfCommand}, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4' ])
from setuptools import find_packages, setup import codecs import distutils import os import re def read(*parts): path = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(path, encoding='utf-8') as fobj: return fobj.read() def find_version(): version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", read('construi', '__version__.py'), re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") class YapfCommand(distutils.cmd.Command): description = 'Format python files using yapf' user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): import yapf yapf.main(['yapf', '--recursive', '--in-place', 'setup.py', 'test'] + find_packages()) requires = { 'install': ['PyYAML == 3.11', 'docker-compose == 1.11.2', 'six == 1.10.0'], 'setup': ['flake8 == 3.0.4', 'pytest-runner == 2.6.2', 'yapf == 0.16.1'], 'tests': ['pytest == 2.8.5', 'pytest-cov == 2.2.0'] } summary = 'Use Docker to define your build environment' setup( name='construi', version=find_version(), url='https://github.com/lstephen/construi', license='Apache License 2.0', description=summary, long_description=summary, author='Levi Stephen', author_email='levi.stephen@gmail.com', zip_safe=True, packages=find_packages(), install_requires=requires['install'], setup_requires=requires['setup'], tests_require=requires['tests'], entry_points={'console_scripts': [ 'construi=construi.cli:main', ]}, cmdclass={'yapf': YapfCommand}, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4' ])
apache-2.0
Python
6f91ed77ab0cad143e232c5c9468d5b767d0289d
bump version number
mflaxman/bottlenose
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.1.2' install_requires = [] CURRENT_FOLDER = os.path.dirname(__file__) def _py26OrGreater(): return sys.hexversion > 0x20600f0 if not _py26OrGreater(): install_requires.append("simplejson>=1.7.1") setup(name='bottlenose', version=version, description="A Python hook into the Amazon.com Product Advertising API", # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities", "License :: OSI Approved :: MIT License", ], keywords='amazon, product advertising, api', author='Dan Loewenherz', author_email='dloewenherz+bottlenose@gmail.com', url='http://github.com/dlo/bottlenose', license='MIT License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, install_requires=install_requires, )
from setuptools import setup, find_packages import sys, os version = '0.1.1' install_requires = [] CURRENT_FOLDER = os.path.dirname(__file__) def _py26OrGreater(): return sys.hexversion > 0x20600f0 if not _py26OrGreater(): install_requires.append("simplejson>=1.7.1") setup(name='bottlenose', version=version, description="A Python hook into the Amazon.com Product Advertising API", # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities", "License :: OSI Approved :: MIT License", ], keywords='amazon, product advertising, api', author='Dan Loewenherz', author_email='dloewenherz+bottlenose@gmail.com', url='http://github.com/dlo/bottlenose', license='MIT License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, install_requires=install_requires, )
mit
Python
db8efc4110514bf7c70f12b925a322413fa00293
use latest working version
uc-cdis/cdis-python-utils
setup.py
setup.py
from subprocess import check_output from setuptools import setup, find_packages def get_version(): # https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408 try: tag = check_output( ["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"] ) return tag.decode("utf-8").strip("\n") except Exception: raise RuntimeError( "The version number cannot be extracted from git tag in this source " "distribution; please either download the source from PyPI, or check out " "from GitHub and make sure that the git CLI is available." ) setup( name="cdispyutils", version=get_version(), description="General utilities for Gen3 development", license="Apache", install_requires=[ "cryptography==2.8", "PyJWT~=1.5", "requests~=2.5", "cdiserrors~=0.1", "Flask", ], extras_require=dict(profiling=["Werkzeug~=0.9", "matplotlib~=2.2", "numpy~=1.15"]), packages=find_packages(), )
from subprocess import check_output from setuptools import setup, find_packages def get_version(): # https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408 try: tag = check_output( ["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"] ) return tag.decode("utf-8").strip("\n") except Exception: raise RuntimeError( "The version number cannot be extracted from git tag in this source " "distribution; please either download the source from PyPI, or check out " "from GitHub and make sure that the git CLI is available." ) setup( name="cdispyutils", version=get_version(), description="General utilities for Gen3 development", license="Apache", install_requires=[ "cryptography==2.1", "PyJWT~=1.5", "requests~=2.5", "cdiserrors~=0.1", "Flask", ], extras_require=dict(profiling=["Werkzeug~=0.9", "matplotlib~=2.2", "numpy~=1.15"]), packages=find_packages(), )
apache-2.0
Python
82e2c894720e0316d9799eb56374ee06858a8b0c
Fix version number
Clpsplug/thefuck,AntonChankin/thefuck,subajat1/thefuck,barneyElDinosaurio/thefuck,lawrencebenson/thefuck,ytjiang/thefuck,levythu/thefuck,SimenB/thefuck,BertieJim/thefuck,hxddh/thefuck,thinkerchan/thefuck,mlk/thefuck,nvbn/thefuck,MJerty/thefuck,thesoulkiller/thefuck,scorphus/thefuck,Aeron/thefuck,PLNech/thefuck,mcarton/thefuck,redreamality/thefuck,manashmndl/thefuck,JianfengYao/thefuck,princeofdarkness76/thefuck,ostree/thefuck,artiya4u/thefuck,roth1002/thefuck,thesoulkiller/thefuck,MJerty/thefuck,qingying5810/thefuck,roth1002/thefuck,mlk/thefuck,bugaevc/thefuck,thinkerchan/thefuck,bigplus/thefuck,suxinde2009/thefuck,vanita5/thefuck,LawrenceHan/thefuck,petr-tichy/thefuck,gaurav9991/thefuck,NguyenHoaiNam/thefuck,SimenB/thefuck,subajat1/thefuck,barneyElDinosaurio/thefuck,AntonChankin/thefuck,bigplus/thefuck,dionyziz/thefuck,PLNech/thefuck,Clpsplug/thefuck,zhangzhishan/thefuck,scorphus/thefuck,levythu/thefuck,beni55/thefuck,redreamality/thefuck,manashmndl/thefuck,qrqiuren/thefuck,LawrenceHan/thefuck,BertieJim/thefuck,princeofdarkness76/thefuck,sekaiamber/thefuck,mcarton/thefuck,hxddh/thefuck,vanita5/thefuck,ostree/thefuck,lawrencebenson/thefuck,mbbill/thefuck,nwinkler/thefuck,gogobebe2/thefuck,beni55/thefuck,nvbn/thefuck
setup.py
setup.py
from setuptools import setup, find_packages setup(name='thefuck', version="1.20", description="Magnificent app which corrects your previous console command", author='Vladimir Iakovlev', author_email='nvbn.rm@gmail.com', url='https://github.com/nvbn/thefuck', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=['pathlib', 'psutil'], entry_points={'console_scripts': [ 'thefuck = thefuck.main:main']})
from setuptools import setup, find_packages setup(name='thefuck', version=1.20, description="Magnificent app which corrects your previous console command", author='Vladimir Iakovlev', author_email='nvbn.rm@gmail.com', url='https://github.com/nvbn/thefuck', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=['pathlib', 'psutil'], entry_points={'console_scripts': [ 'thefuck = thefuck.main:main']})
mit
Python
a459baeffc5f363cc502447df751e6799e7cc83d
Comment out entry-point in setup.py
DOV-Vlaanderen/pydov
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() with open('requirements.txt') as f: requirements = f.read().splitlines() setup_requirements = [ 'pytest-runner' ] test_requirements = [ 'pytest' ] setup( name='pydov', version='0.1.0', description="A Python package to download data from Databank Ondergrond Vlaanderen (DOV).", long_description=readme + '\n\n' + history, author="DOV-Vlaanderen", author_email='dov@vlaanderen.be', url='https://github.com/DOV-Vlaanderen/pydov', packages=find_packages(include=['pydov']), # entry_points={ # 'console_scripts': [ # 'pydov=pydov.cli:main' # ] # }, include_package_data=True, install_requires=requirements, license="MIT license", zip_safe=False, keywords='pydov', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', "Programming Language :: Python :: 2", 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements, setup_requires=setup_requirements, )
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() with open('requirements.txt') as f: requirements = f.read().splitlines() setup_requirements = [ 'pytest-runner' ] test_requirements = [ 'pytest' ] setup( name='pydov', version='0.1.0', description="A Python package to download data from Databank Ondergrond Vlaanderen (DOV).", long_description=readme + '\n\n' + history, author="DOV-Vlaanderen", author_email='dov@vlaanderen.be', url='https://github.com/DOV-Vlaanderen/pydov', packages=find_packages(include=['pydov']), entry_points={ 'console_scripts': [ 'pydov=pydov.cli:main' ] }, include_package_data=True, install_requires=requirements, license="MIT license", zip_safe=False, keywords='pydov', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', "Programming Language :: Python :: 2", 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements, setup_requires=setup_requirements, )
mit
Python
82a694b29755b6e723a43e4b38a03e5b2f5e3f47
Bump version number to 0.2.5
oscaro/django-oscar-adyen,django-oscar/django-oscar-adyen
setup.py
setup.py
from setuptools import setup, find_packages # dirty hack to allow running sdist in a vbox # source: Leonardo.Z's answer on this StackOverflow thread: # http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted import os if os.environ.get('USER', '') == 'vagrant': del os.link # /dirty hack setup( name='django-oscar-adyen', version='0.2.5', url='https://github.com/oscaro/django-oscar-adyen', author='Mathieu Richardoz', author_email='mr@babik.fr', description='Adyen payment module for django-oscar', long_description=open('README.rst').read(), keywords='payment, django, oscar, adyen', license='BSD', packages=find_packages(), include_package_data=True, install_requires=[ 'bleach==1.4', 'django-oscar>=0.7,<0.9', 'freezegun==0.1.18', 'iptools==0.6.1', 'requests>=2.0,<3.0', ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Topic :: Office/Business :: Financial :: Point-Of-Sale', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
from setuptools import setup, find_packages # dirty hack to allow running sdist in a vbox # source: Leonardo.Z's answer on this StackOverflow thread: # http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted import os if os.environ.get('USER', '') == 'vagrant': del os.link # /dirty hack setup( name='django-oscar-adyen', version='0.2.4', url='https://github.com/oscaro/django-oscar-adyen', author='Mathieu Richardoz', author_email='mr@babik.fr', description='Adyen payment module for django-oscar', long_description=open('README.rst').read(), keywords='payment, django, oscar, adyen', license='BSD', packages=find_packages(), include_package_data=True, install_requires=[ 'bleach==1.4', 'django-oscar>=0.7,<0.9', 'freezegun==0.1.18', 'iptools==0.6.1', 'requests>=2.0,<3.0', ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Topic :: Office/Business :: Financial :: Point-Of-Sale', 'Topic :: Software Development :: Libraries :: Python Modules', ] )
bsd-3-clause
Python
a7d7a31ea43deb69e469d23b138e737774cee795
bump the remoto version required
SUSE/ceph-deploy-to-be-deleted,ghxandsky/ceph-deploy,branto1/ceph-deploy,rtulke/ceph-deploy,trhoden/ceph-deploy,ddiss/ceph-deploy,branto1/ceph-deploy,ceph/ceph-deploy,ddiss/ceph-deploy,jumpstarter-io/ceph-deploy,imzhulei/ceph-deploy,Vicente-Cheng/ceph-deploy,shenhequnying/ceph-deploy,isyippee/ceph-deploy,shenhequnying/ceph-deploy,ghxandsky/ceph-deploy,alfredodeza/ceph-deploy,Vicente-Cheng/ceph-deploy,SUSE/ceph-deploy,codenrhoden/ceph-deploy,SUSE/ceph-deploy,ktdreyer/ceph-deploy,imzhulei/ceph-deploy,SUSE/ceph-deploy-to-be-deleted,trhoden/ceph-deploy,isyippee/ceph-deploy,ktdreyer/ceph-deploy,osynge/ceph-deploy,alfredodeza/ceph-deploy,osynge/ceph-deploy,codenrhoden/ceph-deploy,zhouyuan/ceph-deploy,rtulke/ceph-deploy,jumpstarter-io/ceph-deploy,zhouyuan/ceph-deploy,ceph/ceph-deploy
setup.py
setup.py
from setuptools import setup, find_packages import os import sys import ceph_deploy from vendor import vendorize def read(fname): path = os.path.join(os.path.dirname(__file__), fname) f = open(path) return f.read() install_requires = [] pyversion = sys.version_info[:2] if pyversion < (2, 7) or (3, 0) <= pyversion <= (3, 1): install_requires.append('argparse') # # Add libraries that are not part of install_requires # vendorize([ ('remoto', '0.0.4'), ]) setup( name='ceph-deploy', version=ceph_deploy.__version__, packages=find_packages(), author='Inktank', author_email='ceph-devel@vger.kernel.org', description='Deploy Ceph with minimal infrastructure', long_description=read('README.rst'), license='MIT', keywords='ceph deploy', url="https://github.com/ceph/ceph-deploy", install_requires=[ 'setuptools', 'pushy >=0.5.2', ] + install_requires, tests_require=[ 'pytest >=2.1.3', 'mock >=1.0b1', ], entry_points={ 'console_scripts': [ 'ceph-deploy = ceph_deploy.cli:main', ], 'ceph_deploy.cli': [ 'new = ceph_deploy.new:make', 'install = ceph_deploy.install:make', 'uninstall = ceph_deploy.install:make_uninstall', 'purge = ceph_deploy.install:make_purge', 'purgedata = ceph_deploy.install:make_purge_data', 'mon = ceph_deploy.mon:make', 'gatherkeys = ceph_deploy.gatherkeys:make', 'osd = ceph_deploy.osd:make', 'disk = ceph_deploy.osd:make_disk', 'mds = ceph_deploy.mds:make', 'forgetkeys = ceph_deploy.forgetkeys:make', 'config = ceph_deploy.config:make', 'admin = ceph_deploy.admin:make', ], }, )
from setuptools import setup, find_packages import os import sys import ceph_deploy from vendor import vendorize def read(fname): path = os.path.join(os.path.dirname(__file__), fname) f = open(path) return f.read() install_requires = [] pyversion = sys.version_info[:2] if pyversion < (2, 7) or (3, 0) <= pyversion <= (3, 1): install_requires.append('argparse') # # Add libraries that are not part of install_requires # vendorize([ ('remoto', '0.0.3'), ]) setup( name='ceph-deploy', version=ceph_deploy.__version__, packages=find_packages(), author='Inktank', author_email='ceph-devel@vger.kernel.org', description='Deploy Ceph with minimal infrastructure', long_description=read('README.rst'), license='MIT', keywords='ceph deploy', url="https://github.com/ceph/ceph-deploy", install_requires=[ 'setuptools', 'pushy >=0.5.2', ] + install_requires, tests_require=[ 'pytest >=2.1.3', 'mock >=1.0b1', ], entry_points={ 'console_scripts': [ 'ceph-deploy = ceph_deploy.cli:main', ], 'ceph_deploy.cli': [ 'new = ceph_deploy.new:make', 'install = ceph_deploy.install:make', 'uninstall = ceph_deploy.install:make_uninstall', 'purge = ceph_deploy.install:make_purge', 'purgedata = ceph_deploy.install:make_purge_data', 'mon = ceph_deploy.mon:make', 'gatherkeys = ceph_deploy.gatherkeys:make', 'osd = ceph_deploy.osd:make', 'disk = ceph_deploy.osd:make_disk', 'mds = ceph_deploy.mds:make', 'forgetkeys = ceph_deploy.forgetkeys:make', 'config = ceph_deploy.config:make', 'admin = ceph_deploy.admin:make', ], }, )
mit
Python
0b1bcf6305f808f3ed1b862a1673e774dce67879
Add six as a requirement
amir-zeldes/DepEdit
setup.py
setup.py
from distutils.core import setup setup( name = 'depedit', packages = ['depedit'], version = '2.1.2', description = 'A simple configurable tool for manipulating dependency trees', author = 'Amir Zeldes', author_email = 'amir.zeldes@georgetown.edu', url = 'https://github.com/amir-zeldes/depedit', install_requires=["six"], license='Apache License, Version 2.0', download_url = 'https://github.com/amir-zeldes/depedit/releases/tag/2.1.2', keywords = ['NLP', 'parsing', 'syntax', 'dependencies', 'dependency', 'tree', 'treebank', 'conll', 'conllu', 'ud'], classifiers = ['Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent'], )
from distutils.core import setup setup( name = 'depedit', packages = ['depedit'], version = '2.1.2', description = 'A simple configurable tool for manipulating dependency trees', author = 'Amir Zeldes', author_email = 'amir.zeldes@georgetown.edu', url = 'https://github.com/amir-zeldes/depedit', license='Apache License, Version 2.0', download_url = 'https://github.com/amir-zeldes/depedit/releases/tag/2.1.2', keywords = ['NLP', 'parsing', 'syntax', 'dependencies', 'dependency', 'tree', 'treebank', 'conll', 'conllu', 'ud'], classifiers = ['Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent'], )
apache-2.0
Python
0906cc5192b770c8e83c41000cddd9559c9955a4
fix setup
nerocrux/wayterm,nerocrux/wayterm
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup setup( name='wayterm', version='0.0.1', description='Weibo client for terminal', author='peichao.yu', author_email='nerocrux@gmail.com', py_modules=['wayterm', ], package_data={'': ['LICENSE'], }, url='http://wayterm.nerocrux.org/', license=open('LICENSE').read(), long_description=open('README.rdoc').read(), install_requires=[ "weibo", "pyyaml", ], )
#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup setup( name='weiterm', version='0.0.1', description='Weibo client for terminal', author='peichao.yu', author_email='nerocrux@gmail.com', py_modules=['weiterm', ], package_data={'': ['LICENSE'], }, url='http://weiterm.nerocrux.org/', license=open('LICENSE').read(), long_description=open('README.rdoc').read(), install_requires=[ "weibo", "pyyaml", ], )
mit
Python
9890ff35bda62ec53879f5b23c1c5bc9be7286d3
Modify setup tools to use hg correctly. Related to #845
grengojbo/satchmo,grengojbo/satchmo
setup.py
setup.py
#!/usr/bin/env python # This will effectively place satchmo files but there needs to # be extra work before this would work correctly import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages import os, os.path import sys DIRNAME = os.path.dirname(__file__) APPDIR = os.path.join(DIRNAME, 'satchmo/apps') if not APPDIR in sys.path: sys.path.append(APPDIR) # Dynamically calculate the version based on django.VERSION. version = __import__('satchmo_store').__version__ packages = find_packages('satchmo/apps') packages.append('static') setup(name = "Satchmo", version = version, author = "Chris Moffitt", author_email = "chris@moffitts.net", url = "http://www.satchmoproject.com", license = "BSD", description = "The webshop for perfectionists with deadlines.", long_description = "Satchmo is an ecommerce framework created using Django.", include_package_data = True, zip_safe = False, package_dir = { '' : 'satchmo/apps', 'static' : 'satchmo/static' }, setup_requires=["setuptools_hg"], packages = packages, classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Topic :: Office/Business', ] )
#!/usr/bin/env python # This will effectively place satchmo files but there needs to # be extra work before this would work correctly import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages import os, os.path import sys DIRNAME = os.path.dirname(__file__) APPDIR = os.path.join(DIRNAME, 'satchmo/apps') if not APPDIR in sys.path: sys.path.append(APPDIR) # Dynamically calculate the version based on django.VERSION. version = __import__('satchmo_store').__version__ packages = find_packages('satchmo/apps') packages.append('static') template_dirs = [] for root, dirs, files in os.walk(APPDIR): if root.endswith('templates'): template_dirs.append(os.path.join(root,"*.*")) print template_dirs print packages setup(name = "Satchmo", version = version, author = "Chris Moffitt", author_email = "chris@moffitts.net", url = "http://www.satchmoproject.com", license = "BSD", description = "The webshop for perfectionists with deadlines.", long_description = "Satchmo is an ecommerce framework created using Django.", include_package_data = True, zip_safe = False, package_dir = { '' : 'satchmo/apps', 'static' : 'satchmo/static' }, package_data = { '': template_dirs }, packages = packages, classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Topic :: Office/Business', ] )
bsd-3-clause
Python
4e397ed0c6e29253c720479351aa9cf1179735dd
add asyncio to deps
and800/aioreloader
setup.py
setup.py
from setuptools import setup setup( name='aioreloader', version='0.0.0', description='Port of tornado reloader to asyncio', url='https://github.com/and800/aioreloader', author='Andriy Maletsky', author_email='andriy.maletsky@gmail.com', license='MIT', py_modules=['aioreloader'], extras_require={ ':python_version=="3.3"': ['asyncio'], }, )
from setuptools import setup setup( name='aioreloader', version='0.0.0', description='Port of tornado reloader to asyncio', url='https://github.com/and800/aioreloader', author='Andriy Maletsky', author_email='andriy.maletsky@gmail.com', license='MIT', py_modules=['aioreloader'], )
mit
Python
f0eb68c78adead20cc9ee0b1d395af078312984a
Update `setup.py`
j5int/warden
setup.py
setup.py
from setuptools import setup import re def get_version(): VERSIONFILE="warden/__init__.py" initfile_lines = open(VERSIONFILE, "rt").readlines() VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" for line in initfile_lines: mo = re.search(VSRE, line, re.M) if mo: return mo.group(1) raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,)) def check_fault_requires(): pass setup( name = 'warden', version = get_version(), license = 'MIT', description = 'A set of tools for monitoring Python applications, and shipping events to Sentry and metrics to Graphite', long_description = \ """ Warden is a Python application that monitors other Python applications running locally, and ships events to a Sentry instance and metrics to a Graphite instance. Warden uses Diamond to collect stats. Using Diamond's plug-in Collectors architecture, many stats can be collected and custom Collectors added. """, #Finally, there is an API that can be used by the monitored application to publish events, and do some internal checks (e.g. for stuck threads). author = 'Richard Graham', author_email = 'support@sjsoft.com', packages = ['warden', 'warden.smtp_forwarder'], zip_safe = False, install_requires = [ 'carbon==0.9.10-warden', 'gentry==0.0.1', 'diamond'], dependency_links = [ 'http://github.com/richg/gentry/tarball/master#egg=gentry-0.0.1', 'http://github.com/richg/carbon/tarball/0.9.x-warden#egg=carbon-0.9.10-warden', 'http://github.com/richg/Diamond/tarball/master#egg=diamond' ], keywords = 'sentry carbon graphite monitoring', url = 'https://github.com/richg/warden', entry_points = { 'console_scripts': [ 'warden = warden.warden:main', 'warden_setup = warden.warden_setup:main' ] }, classifiers = [ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Environment :: Web Environment', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python', 'Topic :: System :: Monitoring', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
from setuptools import setup import re def get_version(): VERSIONFILE="warden/__init__.py" initfile_lines = open(VERSIONFILE, "rt").readlines() VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" for line in initfile_lines: mo = re.search(VSRE, line, re.M) if mo: return mo.group(1) raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,)) def check_fault_requires(): pass setup( name = 'warden', version = get_version(), license = 'MIT', description = 'A set of tools for monitoring Python applications, and shipping events to Sentry and metrics to Graphite', long_description = \ """ Warden is a Python application that monitors other Python applications running locally, and ships events to a Sentry instance and metrics to a Graphite instance. Warden can tail log files, watch that processes are running, ping an HTTP url, and track memory and CPU usage. It provides a plug-in architecture allowing custom checks to be implemented. Finally, there is an API that can be used by the monitored application to publish events, and do some internal checks (e.g. for stuck threads). """, author = 'Matthew Hampton', author_email = 'support@sjsoft.com', packages = ['warden', 'warden.smtp_forwarder'], zip_safe = False, install_requires = [ 'carbon==0.9.10-warden', 'gentry==0.0.1', 'diamond'], dependency_links = [ 'http://github.com/Supy/gentry/tarball/master#egg=gentry-0.0.1', 'http://github.com/richg/carbon/tarball/0.9.x-warden#egg=carbon-0.9.10-warden', #'http://github.com/Supy/Diamond/tarball/master#egg=diamond-x.x-warden' ], keywords = 'sentry carbon graphite monitoring', url = 'https://github.com/matthewhampton/warden', entry_points = { 'console_scripts': [ 'warden = warden.warden:main', 'warden_setup = warden.warden_setup:main' ] }, classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Environment :: Web Environment', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python', 'Topic :: System :: Monitoring', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules' ] )
mit
Python
bd93315654bb89c90865e1ec928c9f85f2810447
Add new tags
monasysinfo/pyodbcOpenEdge
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Created on 1 Dec 2013 @author: jyp ''' from distutils.core import setup setup( name='pyodbcOpenEdge', version='1.0', description='A Django Backend for OpenEdge databases (Progress)', long_description=''' This module allows the use of the OpenEdge (Progress) databases through Django. It uses pyodbc for the db connexions. It provides the ability to create tables from Django models, or to access existing tables (4GL or SQL) in your Django application. The South integration permits to migrate the database schema. ''', author='Jean-Yves Priou', author_email='monasysinfo@gmail.com', platforms="Independent", url='http://www.jypriou.fr/', packages=['OpenEdge','OpenEdge.OEmodels','OpenEdge.pyodbc','OpenEdge.south'], license="BSD", classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: DataBases :: Backends :: Django :: OpenEdge :: odbc :: pyodbc :: Progress', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities' ], keywords='django openedge progress odbc pyodbc', )
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Created on 1 Dec 2013 @author: jyp ''' from distutils.core import setup setup( name='pyodbcOpenEdge', version='1.0', description='A Django Backend for OpenEdge databases (Progress)', long_description=''' This module allows the use of the OpenEdge (Progress) databases through Django. It provides the ability to create tables from Django models, or to access existing tables (4GL or SQL) in your Django application. The South integration permits to migrate the database schema. ''', author='Jean-Yves Priou', author_email='jy.priou@free.fr', platforms="Independent", url='http://www.jypriou.fr/', packages=['OpenEdge','OpenEdge.OEmodels','OpenEdge.pyodbc','OpenEdge.south'], license="MIT", classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: DataBases :: Backends :: Django', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities' ], keywords='django openedge progress', )
mit
Python
053767d393e0a171bacdcbc9af7ac6f1c65cde02
bump version again
nlevitt/brozzler,internetarchive/brozzler,nlevitt/brozzler,internetarchive/brozzler,internetarchive/brozzler,internetarchive/brozzler,nlevitt/brozzler,nlevitt/brozzler,nlevitt/brozzler
setup.py
setup.py
# # setup.py - brozzler setup script # # Copyright (C) 2014-2016 Internet Archive # # 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 the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import setuptools import glob setuptools.setup(name='brozzler', version='1.1.dev9', description='Distributed web crawling with browsers', url='https://github.com/nlevitt/brozzler', author='Noah Levitt', author_email='nlevitt@archive.org', long_description=open('README.rst').read(), license='Apache License 2.0', packages=['brozzler'], package_data={'brozzler': ['behaviors.d/*.js*', 'behaviors.yaml']}, scripts=glob.glob('bin/*'), install_requires=[ 'PyYAML', 'youtube-dl', 'reppy', 'requests', 'websocket-client', 'pillow', 'surt>=0.3b2', 'rethinkstuff', 'rethinkdb>=2.3,<2.4', ], zip_safe=False, classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Archiving', ])
# # setup.py - brozzler setup script # # Copyright (C) 2014-2016 Internet Archive # # 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 the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import setuptools import glob setuptools.setup(name='brozzler', version='1.1.dev8', description='Distributed web crawling with browsers', url='https://github.com/nlevitt/brozzler', author='Noah Levitt', author_email='nlevitt@archive.org', long_description=open('README.rst').read(), license='Apache License 2.0', packages=['brozzler'], package_data={'brozzler': ['behaviors.d/*.js*', 'behaviors.yaml']}, scripts=glob.glob('bin/*'), install_requires=[ 'PyYAML', 'youtube-dl', 'reppy', 'requests', 'websocket-client', 'pillow', 'surt>=0.3b2', 'rethinkstuff', 'rethinkdb>=2.3,<2.4', ], zip_safe=False, classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Archiving', ])
apache-2.0
Python
117747306da712875c066dc310b4d417a52a7a0f
bump tqdm dep to 4.13.0
warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole
setup.py
setup.py
from setuptools import setup import versioneer commands = versioneer.get_cmdclass() setup(name="magic-wormhole", version=versioneer.get_version(), description="Securely transfer data between computers", author="Brian Warner", author_email="warner-magic-wormhole@lothar.com", license="MIT", url="https://github.com/warner/magic-wormhole", package_dir={"": "src"}, packages=["wormhole", "wormhole.cli", "wormhole.server", "wormhole.test", ], package_data={"wormhole.server": ["db-schemas/*.sql"]}, entry_points={ "console_scripts": [ "wormhole = wormhole.cli.cli:wormhole", "wormhole-server = wormhole.server.cli:server", ] }, install_requires=[ "spake2==0.7", "pynacl", "six", "twisted[tls]", "autobahn[twisted] >= 0.14.1", "automat", "hkdf", "tqdm >= 4.13.0", # 4.13.0 fixes crash on NetBSD "click", "humanize", "ipaddress", ], extras_require={ ':sys_platform=="win32"': ["pypiwin32"], "tor": ["txtorcon >= 0.19.3"], "dev": ["mock", "tox", "pyflakes", "txtorcon >= 0.19.3"], }, test_suite="wormhole.test", cmdclass=commands, )
from setuptools import setup import versioneer commands = versioneer.get_cmdclass() setup(name="magic-wormhole", version=versioneer.get_version(), description="Securely transfer data between computers", author="Brian Warner", author_email="warner-magic-wormhole@lothar.com", license="MIT", url="https://github.com/warner/magic-wormhole", package_dir={"": "src"}, packages=["wormhole", "wormhole.cli", "wormhole.server", "wormhole.test", ], package_data={"wormhole.server": ["db-schemas/*.sql"]}, entry_points={ "console_scripts": [ "wormhole = wormhole.cli.cli:wormhole", "wormhole-server = wormhole.server.cli:server", ] }, install_requires=[ "spake2==0.7", "pynacl", "six", "twisted[tls]", "autobahn[twisted] >= 0.14.1", "automat", "hkdf", "tqdm", "click", "humanize", "ipaddress", ], extras_require={ ':sys_platform=="win32"': ["pypiwin32"], "tor": ["txtorcon >= 0.19.3"], "dev": ["mock", "tox", "pyflakes", "txtorcon >= 0.19.3"], }, test_suite="wormhole.test", cmdclass=commands, )
mit
Python
7a01c9722fb47a7feec64a5f6f59273b96851f07
use python 3 explicitly in the entry point
gleb812/pch2csd
setup.py
setup.py
import os from setuptools import setup import pch2csd def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='pch2csd', version=pch2csd.__version__, author='Gleb Rogozinsky, Mikhail Chesnokov, Eugene Cherny', description='Convert Clavia Nord Modular G2 patches to the Csound code.', long_description=read('README.md'), keywords='csound code-generation', url=pch2csd.__homepage__, license='MIT', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Topic :: Utilities', 'License :: OSI Approved :: BSD License', 'Environment :: Console', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', ], packages=['pch2csd', 'tests'], include_package_data=True, platforms='any', install_requires=['bitarray', 'tabulate'], entry_points={ 'console_scripts': [ 'pch2csd = pch2csd.app:main' ] }, options={ 'build_scripts': { 'executable': '/usr/bin/env python3' } } )
import os from setuptools import setup import pch2csd def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='pch2csd', version=pch2csd.__version__, author='Gleb Rogozinsky, Mikhail Chesnokov, Eugene Cherny', description='Convert Clavia Nord Modular G2 patches to the Csound code.', long_description=read('README.md'), keywords='csound code-generation', url=pch2csd.__homepage__, license='MIT', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Topic :: Utilities', 'License :: OSI Approved :: BSD License', 'Environment :: Console', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', ], packages=['pch2csd', 'tests'], include_package_data=True, platforms='any', install_requires=['bitarray', 'tabulate'], entry_points={ 'console_scripts': [ 'pch2csd = pch2csd.app:main' ] } )
mit
Python
3832887597e52f70149611497643127f1291be9f
prepare release
PRIArobotics/HedgehogUtils
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.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() setup( name='hedgehog-utils', version='0.7.0rc1', description='Utilities shared between Hedgehog projects', long_description=long_description, url="https://github.com/PRIArobotics/HedgehogUtils", author="Clemens Koza", author_email="koza@pria.at", license="AGPLv3+", # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Topic :: Software Development', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language :: Python :: 3', ], keywords='hedgehog robotics controller utility protobuf zmq discovery', # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). packages=find_packages(exclude=['contrib', 'docs', 'tests']), # List run-time dependencies here. These will be installed by pip when # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=['aiostream'], # You can install these using the following syntax, for example: # $ pip install -e .[dev,test] extras_require={ 'dev': ['invoke', 'pytest', 'pytest-runner', 'pytest-asyncio', 'pytest-trio', 'pytest-cov', 'pytest-timeout', 'mypy'], 'protobuf': ['protobuf'], 'zmq': ['pyzmq'], 'trio': ['trio', 'trio-asyncio'], }, # package_data={ # 'proto': ['*.proto'], # }, entry_points={ 'console_scripts': [ ], }, )
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.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() setup( name='hedgehog-utils', version='0.6.0', description='Utilities shared between Hedgehog projects', long_description=long_description, url="https://github.com/PRIArobotics/HedgehogUtils", author="Clemens Koza", author_email="koza@pria.at", license="AGPLv3+", # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Topic :: Software Development', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language :: Python :: 3', ], keywords='hedgehog robotics controller utility protobuf zmq discovery', # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). packages=find_packages(exclude=['contrib', 'docs', 'tests']), # List run-time dependencies here. These will be installed by pip when # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=['aiostream'], # You can install these using the following syntax, for example: # $ pip install -e .[dev,test] extras_require={ 'dev': ['invoke', 'pytest', 'pytest-runner', 'pytest-asyncio', 'pytest-trio', 'pytest-cov', 'pytest-timeout', 'mypy'], 'protobuf': ['protobuf'], 'zmq': ['pyzmq'], 'trio': ['trio', 'trio-asyncio'], }, # package_data={ # 'proto': ['*.proto'], # }, entry_points={ 'console_scripts': [ ], }, )
agpl-3.0
Python
6b7149d5f0a42b44d330cdf2fa6840f4b4bc2e3f
Bump version
cloudify-cosmo/cloudify-rest-client
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. 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 agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='4.0a11', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', 'requests_toolbelt' ] )
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. 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 agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. from setuptools import setup setup( name='cloudify-rest-client', version='4.0a10', author='cosmo-admin', author_email='cosmo-admin@gigaspaces.com', packages=['cloudify_rest_client'], license='LICENSE', description='Cloudify REST client', install_requires=[ 'requests==2.7.0', 'requests_toolbelt' ] )
apache-2.0
Python
0601e711d5b259144ecbbce52c7d5424eb02a48a
Bump GAX dependency to 0.15.14. (#3752)
googleapis/python-videointelligence,googleapis/python-videointelligence
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import io import os from setuptools import find_packages from setuptools import setup PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(PACKAGE_ROOT, 'README.rst'), 'r') as readme_file: readme = readme_file.read() setup( author='Google Cloud Platform', author_email='googleapis-publisher@google.com', name='google-cloud-videointelligence', version='0.25.0', description='Python Client for Google Cloud Video Intelligence', long_description=readme, namespace_packages=[ 'google', 'google.cloud', 'google.cloud.gapic', 'google.cloud.gapic.videointelligence', 'google.cloud.proto', 'google.cloud.proto.videointelligence', ], packages=find_packages(exclude=('tests*',)), install_requires=( 'googleapis-common-protos >= 1.5.2, < 2.0dev', 'google-gax >= 0.15.14, < 0.16dev', 'six >= 1.10.0', ), url='https://github.com/GoogleCloudPlatform/google-cloud-python', license='Apache 2.0', platforms='Posix; MacOS X; Windows', include_package_data=True, zip_safe=False, scripts=[], classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Internet', ], )
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import io import os from setuptools import find_packages from setuptools import setup PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(PACKAGE_ROOT, 'README.rst'), 'r') as readme_file: readme = readme_file.read() setup( author='Google Cloud Platform', author_email='googleapis-publisher@google.com', name='google-cloud-videointelligence', version='0.25.0', description='Python Client for Google Cloud Video Intelligence', long_description=readme, namespace_packages=[ 'google', 'google.cloud', 'google.cloud.gapic', 'google.cloud.gapic.videointelligence', 'google.cloud.proto', 'google.cloud.proto.videointelligence', ], packages=find_packages(exclude=('tests*',)), install_requires=( 'googleapis-common-protos >= 1.5.2, < 2.0dev', 'google-gax >= 0.15.12, < 0.16dev', 'six >= 1.10.0', ), url='https://github.com/GoogleCloudPlatform/google-cloud-python', license='Apache 2.0', platforms='Posix; MacOS X; Windows', include_package_data=True, zip_safe=False, scripts=[], classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Internet', ], )
apache-2.0
Python
fdffb432ffa14fe7f08483959b41c3e4b7e5e7c2
Bump version
Motiejus/tictactoe,Motiejus/tictactoe
setup.py
setup.py
import os import sys from setuptools import setup, find_packages REQS_FILE = open(os.path.join(os.path.dirname(__file__), "requirements.txt")) install_reqs = [r.strip() for r in REQS_FILE] if sys.version_info < (3, 3): install_reqs.append("mock==1.0.1") setup( name='tictactoe', version='0.1.5', author="Motiejus Jakštys", author_email="desired.mta@gmail.com", description="Ultimate Tic-Tac-Toe tictactoe front-end", long_description=open('README.rst').read(), url="https://github.com/Motiejus/tictactoe", packages=find_packages(), install_requires=install_reqs, include_package_data=True, entry_points={ 'console_scripts': [ "tictactoe = tictactoe.manage:main" ] }, classifiers=[ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python :: 3", "Intended Audience :: Education", "Topic :: Games/Entertainment :: Puzzle Games", "License :: OSI Approved :: MIT License", ], )
import os import sys from setuptools import setup, find_packages REQS_FILE = open(os.path.join(os.path.dirname(__file__), "requirements.txt")) install_reqs = [r.strip() for r in REQS_FILE] if sys.version_info < (3, 3): install_reqs.append("mock==1.0.1") setup( name='tictactoe', version='0.1.4', author="Motiejus Jakštys", author_email="desired.mta@gmail.com", description="Ultimate Tic-Tac-Toe tictactoe front-end", long_description=open('README.rst').read(), url="https://github.com/Motiejus/tictactoe", packages=find_packages(), install_requires=install_reqs, include_package_data=True, entry_points={ 'console_scripts': [ "tictactoe = tictactoe.manage:main" ] }, classifiers=[ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python :: 3", "Intended Audience :: Education", "Topic :: Games/Entertainment :: Puzzle Games", "License :: OSI Approved :: MIT License", ], )
mit
Python
97533b8a789cac7947ce4eb4ec5e2af20afcd3e7
Update author email
gebn/chandl,gebn/chandl
setup.py
setup.py
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def _read_file(name, encoding='utf-8'): """ Read the contents of a file. :param name: The name of the file in the current directory. :param encoding: The encoding of the file; defaults to utf-8. :return: The contents of the file. """ with codecs.open(name, encoding=encoding) as f: return f.read() setup( name='chandl', version='0.0.1', description='A lightweight tool for parsing and downloading 4chan threads.', long_description=_read_file('README.md'), license='MIT', url='https://github.com/gebn/chandl', author='George Brighton', author_email='oss@gebn.co.uk', packages=find_packages(), install_requires=[ 'six' ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Utilities' ] )
# -*- coding: utf-8 -*- import codecs from setuptools import setup, find_packages def _read_file(name, encoding='utf-8'): """ Read the contents of a file. :param name: The name of the file in the current directory. :param encoding: The encoding of the file; defaults to utf-8. :return: The contents of the file. """ with codecs.open(name, encoding=encoding) as f: return f.read() setup( name='chandl', version='0.0.1', description='A lightweight tool for parsing and downloading 4chan threads.', long_description=_read_file('README.md'), license='MIT', url='https://github.com/gebn/chandl', author='George Brighton', author_email='os@gebn.co.uk', packages=find_packages(), install_requires=[ 'six' ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Utilities' ] )
mit
Python
dbf3bf530272750856eac023f02977faf9196086
Bump version
botify-labs/woopra-python-sdk,Woopra/woopra-python-sdk
setup.py
setup.py
from setuptools import setup setup( name='woopra', version='0.2.0', author='Antoine Chkaiban', author_email='antoine@woopra.com', url='https://github.com/Woopra/woopra-python-sdk', packages=['woopra',], license='LICENSE.txt', description='Woopra Analytics Tracking API', )
from setuptools import setup setup( name='woopra', version='0.1.0', author='Antoine Chkaiban', author_email='antoine@woopra.com', url='https://github.com/Woopra/woopra-python-sdk', packages=['woopra',], license='LICENSE.txt', description='Woopra Analytics Tracking API', )
mit
Python