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 |
|---|---|---|---|---|---|---|---|---|
d896cd8473d26e85ac58bf7cb68553a6955f7cb9 | Bump version | redbridge/rbc-tools | setup.py | setup.py | import os, re, codecs
from setuptools import setup, find_packages
from glob import glob
name = 'rbc-tools'
with open('requirements.txt', 'r') as f:
requires = [x.strip() for x in f if x.strip()]
conf_files = [ ('conf', glob('conf/*.cfg')) ]
dirs = [('log', [])]
data_files = conf_files + dirs
setup(
nam... | import os, re, codecs
from setuptools import setup, find_packages
from glob import glob
name = 'rbc-tools'
with open('requirements.txt', 'r') as f:
requires = [x.strip() for x in f if x.strip()]
conf_files = [ ('conf', glob('conf/*.cfg')) ]
dirs = [('log', [])]
data_files = conf_files + dirs
setup(
nam... | apache-2.0 | Python |
397591cec76e84079fb28cc92be1522110c4af25 | Bump version. | sxn/notary | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='notary',
version='0.1.1',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=['click', 'crayons'],
entry_points='''
[console_scripts]
notary=notary:cli
'''
)
| from setuptools import setup, find_packages
setup(
name='notary',
version='0.1.0',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=['click', 'crayons'],
entry_points='''
[console_scripts]
notary=notary:cli
'''
)
| mit | Python |
5d23c7bcd2ed0434e373a4935c569743385911bb | Drop obsolete comment | ppb/ppb-vector,ppb/ppb-vector | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup
def requirements(section=None):
"""Helper for loading dependencies from requirements files."""
if section is None:
filename = "requirements.txt"
else:
filename = f"requirements-{section}.txt"
with open(filename) as file:
retu... | #!/usr/bin/env python3
from setuptools import setup
def requirements(section=None):
"""Helper for loading dependencies from requirements files."""
if section is None:
filename = "requirements.txt"
else:
filename = f"requirements-{section}.txt"
with open(filename) as file:
retu... | artistic-2.0 | Python |
9549f357c8dec7da1eef262a3b040e218277ddbb | Fix UnicodeDecodeError in setup.py for Python 3.4 | jaddison/easy-thumbnails,siovene/easy-thumbnails,SmileyChris/easy-thumbnails,sandow-digital/easy-thumbnails-cropman,Mactory/easy-thumbnails,sandow-digital/easy-thumbnails-cropman | setup.py | setup.py | #!/usr/bin/env python
from __future__ import unicode_literals
import codecs
import os
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import easy_thumbnails
class DjangoTests(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import easy_thumbnails
class DjangoTests(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite =... | bsd-3-clause | Python |
acebbfe05209ce9bca6e7d6650f7ebc8aaf4d392 | Fix description | capitancambio/ftorrents | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "ftorrents",
version = "0.1",
packages = find_packages(),
scripts=['ftorrents.sh'],
author = "Javier Asensio-Cubero",
author_email = "capitan.cambio@gmail.com",
description = "showrss.info automatic downloader",
... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "ftorrents",
version = "0.1",
packages = find_packages(),
scripts=['ftorrents.sh'],
author = "Javier Asensio-Cubero",
author_email = "capitan.cambio@gmail.com",
description = "showsrss.info automatic downloader",... | mit | Python |
d0a4c4db4d9fe50ba8b8257bbe7005158456efff | Exclude all test packages. | box/flaky,Jeff-Meadows/flaky | setup.py | setup.py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os.path import dirname, join
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software De... | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os.path import dirname, join
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software De... | apache-2.0 | Python |
c70fd829a86d98409aaf5c7b0405685c7aeacafd | Increment version to 0.1.9 | issackelly/django-security,MartinPetkov/django-security,barseghyanartur/django-security,MartinPetkov/django-security,issackelly/django-security,barseghyanartur/django-security | setup.py | setup.py | # Copyright (c) 2011, SD Elements. See LICENSE.txt for details.
import os
from distutils.core import setup
f = open(os.path.join(os.path.dirname(__file__), 'README'))
readme = f.read()
f.close()
setup(name="django-security",
description='A collection of tools to help secure a Django project.',
long_descr... | # Copyright (c) 2011, SD Elements. See LICENSE.txt for details.
import os
from distutils.core import setup
f = open(os.path.join(os.path.dirname(__file__), 'README'))
readme = f.read()
f.close()
setup(name="django-security",
description='A collection of tools to help secure a Django project.',
long_descr... | bsd-3-clause | Python |
e4ba6a24fd84640fa5ee684b810d144f68eb40dc | update version in setup.py | alphatwirl/alphatwirl,alphatwirl/alphatwirl,TaiSakuma/AlphaTwirl,alphatwirl/alphatwirl,TaiSakuma/AlphaTwirl,alphatwirl/alphatwirl | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'alphatwirl',
version= '0.9.5',
description = 'A Python library for summarizing event data',
author = 'Tai Sakuma',
author_email = 'tai.sakuma@gmail.com',
url = 'https://github.com/alphatwirl/alphatwirl',
packages = find_packages(exc... | from setuptools import setup, find_packages
setup(
name = 'alphatwirl',
version= '0.9',
description = 'A Python library for summarizing event data',
author = 'Tai Sakuma',
author_email = 'tai.sakuma@gmail.com',
url = 'https://github.com/alphatwirl/alphatwirl',
packages = find_packages(exclu... | bsd-3-clause | Python |
f555c85837485d180af2be922132cd99bf6b207f | add matplotlib as optional dependency | phillipgreenii/loan_payoff_tools | setup.py | setup.py | '''
loan_payoff_tools: Simulates multiple different scenarios in which to payoff loans.
Note that "python setup.py test" invokes pytest on the package. With appropriately
configured setup.cfg, this will check both xxx_test modules and docstrings.
Copyright 2014, Phillip Green II.
Licensed under MIT.
'''
from codecs i... | '''
loan_payoff_tools: Simulates multiple different scenarios in which to payoff loans.
Note that "python setup.py test" invokes pytest on the package. With appropriately
configured setup.cfg, this will check both xxx_test modules and docstrings.
Copyright 2014, Phillip Green II.
Licensed under MIT.
'''
from codecs i... | mit | Python |
38d0dd13cdf42f859eb61c66ab5eb62f30034f4a | Add Tensorstore back to required dependencies. | google/flax,google/flax | setup.py | setup.py | # Copyright 2022 The Flax Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in wri... | # Copyright 2022 The Flax Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in wri... | apache-2.0 | Python |
a18266512c124936ffe543ce652d84838b51a3de | Bump version to 0.4.1 | douglarek/pgist | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.p... | #!/usr/bin/env python
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.p... | apache-2.0 | Python |
da3bdeff249e1d6aed3c9e1b17d566934dc1aca4 | Add "quality assurance" classifier | vauxoo-dev/autopep8,SG345/autopep8,SG345/autopep8,hhatto/autopep8,Vauxoo/autopep8,MeteorAdminz/autopep8,Vauxoo/autopep8,vauxoo-dev/autopep8,hhatto/autopep8,MeteorAdminz/autopep8 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for autopep8."""
import ast
from setuptools import setup
def version():
"""Return version string."""
with open('autopep8.py') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(l... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for autopep8."""
import ast
from setuptools import setup
def version():
"""Return version string."""
with open('autopep8.py') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(l... | mit | Python |
b9d0ba4c604fe56de5ed966d6b657f0cdd45bb4d | update setup.py | ymap/aioredis,aio-libs/aioredis,aio-libs/aioredis | setup.py | setup.py | import re
import os.path
import sys
import platform
from setuptools import setup, find_packages
install_requires = ['async-timeout']
if platform.python_implementation() == 'CPython':
install_requires.append('hiredis')
PY_VER = sys.version_info
if PY_VER >= (3, 4):
pass
elif PY_VER >= (3, 3):
install_req... | import re
import os.path
import sys
from setuptools import setup, find_packages
install_requires = ['hiredis', 'async-timeout']
PY_VER = sys.version_info
if PY_VER >= (3, 4):
pass
elif PY_VER >= (3, 3):
install_requires.append('asyncio')
else:
raise RuntimeError("aioredis doesn't support Python version ... | mit | Python |
1e582782bccdfd0ce05a95cc20b9614cf0e3cf5e | update setup | duguyue100/retina-simulation | setup.py | setup.py | """Setup script for the simretina package.
Author: Yuhuang Hu
Email : yuhuang.hu@uzh.ch
"""
from setuptools import setup
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Topic ::... | """Setup script for the simretina package.
Author: Yuhuang Hu
Email : yuhuang.hu@uzh.ch
"""
from setuptools import setup
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Topic ::... | mit | Python |
4ff2d5d1e00e9a8fc362666d67f31e78bf309bd3 | add more details to setup.py | hollobon/pybitset,hollobon/pybitset | setup.py | setup.py | from distutils.core import setup, Extension
bitset_extmodule = Extension('bitset',
sources=['bitsetmodule.c'])
setup(name='bitset',
version='0.1',
description='Bitset module.',
ext_modules=[bitset_extmodule],
author="Pete Hollobon",
author_email="python@hollo... | from distutils.core import setup, Extension
module1 = Extension('bitset',
sources = ['bitsetmodule.c'])
setup (name = 'PackageName',
version = '1.0',
description = 'This is a demo package',
ext_modules = [module1])
| mit | Python |
3dd9570a7e937f8ebd3710c91155129dedb3a6e5 | Bump version number (2.4.0 -> 2.4.1) | montag451/pytun,montag451/pytun | setup.py | setup.py | from setuptools import setup, Extension
setup(name='python-pytun',
author='montag451',
author_email='montag451@laposte.net',
maintainer='montag451',
maintainer_email='montag451@laposte.net',
url='https://github.com/montag451/pytun',
description='Linux TUN/TAP wrapper for Python',
... | from setuptools import setup, Extension
setup(name='python-pytun',
author='montag451',
author_email='montag451@laposte.net',
maintainer='montag451',
maintainer_email='montag451@laposte.net',
url='https://github.com/montag451/pytun',
description='Linux TUN/TAP wrapper for Python',
... | mit | Python |
362601ebcd4d2f989a2296a03aa807dabb4d9b76 | Change minimal python version | nibrag/aiosocks | setup.py | setup.py | #!/usr/bin/env python
import codecs
import os
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'aiosocks', '__init__.py'), 'r', 'latin1') as fp:
try:
versi... | #!/usr/bin/env python
import codecs
import os
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'aiosocks', '__init__.py'), 'r', 'latin1') as fp:
try:
versi... | apache-2.0 | Python |
825ab4f2a26e7a5c4348f1adfa8e5163013e43f7 | Add raven to the dependancy list. | jamesfoley/cms,danielsamuels/cms,lewiscollard/cms,danielsamuels/cms,lewiscollard/cms,dan-gamble/cms,lewiscollard/cms,dan-gamble/cms,jamesfoley/cms,danielsamuels/cms,dan-gamble/cms,jamesfoley/cms,jamesfoley/cms | setup.py | setup.py | #!/usr/bin/env python
#coding: utf-8
from cms import VERSION
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = ['cms.bin']
setup(
name="onespacemedia-cms",
version=".".join(str(n) for n in VERSION),
url="https://github.com/onespacemedia/cms",
author="Daniel Samuels",
author_ema... | #!/usr/bin/env python
#coding: utf-8
from cms import VERSION
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = ['cms.bin']
setup(
name="onespacemedia-cms",
version=".".join(str(n) for n in VERSION),
url="https://github.com/onespacemedia/cms",
author="Daniel Samuels",
author_ema... | bsd-3-clause | Python |
4ddaabdba96af72699f4276d45e543983680e110 | Fix spelling | nerandell/aiopg,eirnym/aiopg,hyzhak/aiopg,aio-libs/aiopg,luhn/aiopg,graingert/aiopg | setup.py | setup.py | import os
import re
import sys
from setuptools import setup, find_packages
install_requires = ['psycopg2>=2.5.2']
PY_VER = sys.version_info
if PY_VER >= (3, 4):
pass
elif PY_VER >= (3, 3):
install_requires.append('asyncio')
else:
raise RuntimeError("aiopg doesn't suppport Python earlier than 3.3")
def... | import os
import re
import sys
from setuptools import setup, find_packages
install_requires = ['psycopg2>=2.5.2']
PY_VER = sys.version_info
if PY_VER >= (3, 4):
pass
elif PY_VER >= (3, 3):
install_requires.append('asyncio')
else:
raise RuntimeError("aiopg doesn't suppport Python earllier than 3.3")
de... | bsd-2-clause | Python |
d853d99c73f4716721aa26d96ec6bc1a5c916dc4 | fix `release_status` in `setup.py` (#27) | googleapis/python-container,googleapis/python-container,GoogleContainerTools/python-container,GoogleContainerTools/python-container | setup.py | setup.py | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | apache-2.0 | Python |
f350f5c215efe2a3deda7b5a618c7447adb54c16 | add missing dependencies | tubaman/django-mosaic,tubaman/django-mosaic | setup.py | setup.py | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-mosaico',
ver... | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-mosaico',
ver... | bsd-3-clause | Python |
29644a4abb727ed57877688027cad156b63dfc32 | Fix classifiers. | mariocesar/sorl-thumbnail,mariocesar/sorl-thumbnail,jazzband/sorl-thumbnail,jazzband/sorl-thumbnail,jazzband/sorl-thumbnail,mariocesar/sorl-thumbnail | setup.py | setup.py | from setuptools import setup, find_packages
from setuptools.command.test import test
class TestCommand(test):
def run(self):
from tests.runtests import runtests
runtests()
setup(
name='sorl-thumbnail',
use_scm_version=True,
description='Thumbnails for Django',
long_description=o... | from setuptools import setup, find_packages
from setuptools.command.test import test
class TestCommand(test):
def run(self):
from tests.runtests import runtests
runtests()
setup(
name='sorl-thumbnail',
use_scm_version=True,
description='Thumbnails for Django',
long_description=o... | bsd-3-clause | Python |
6d5f2bdde0fed480a2562221666fc1d99bdb63ea | Bump version to 1.0.3 | yunojuno/django-appmail,yunojuno/django-appmail | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-appmail",
versi... | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-appmail",
versi... | mit | Python |
d4e301772ce2995fb97ee0c88e99add1549bdb67 | remove keywords for packaging | garwoodpr/LuhnAlgorithmProof,garwoodpr/LuhnAlgorithmProof | setup.py | setup.py |
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Luhn Algorithm Validator -- long description
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='luhn_algorithm_val... |
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Luhn Algorithm Validator -- long description
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='luhn_algorithm_val... | mit | Python |
c425d15166244781e19b020826fb1f24db1f97ab | bump version | SF-Zhou/quite | setup.py | setup.py | """
QT UI Extension
Author: SF-Zhou
Date: 2016-08-07
See:
https://github.com/sf-zhou/quite
"""
from setuptools import setup, find_packages
setup(
name='quite',
version='0.1.1',
description='QT UI Extension',
url='https://github.com/sf-zhou/quite',
author='SF-Zhou',
author_email='sfzhou.scut... | """
QT UI Extension
Author: SF-Zhou
Date: 2016-08-07
See:
https://github.com/sf-zhou/quite
"""
from setuptools import setup, find_packages
setup(
name='quite',
version='0.1.0',
description='QT UI Extension',
url='https://github.com/sf-zhou/quite',
author='SF-Zhou',
author_email='sfzhou.scut... | mit | Python |
78efa25efa1dbac7eb4d256717ac53b0d9c6a17e | bump version to 0.2.4 | CivicTechTO/django-councilmatic,datamade/django-councilmatic,datamade/django-councilmatic,CivicTechTO/django-councilmatic,CivicTechTO/django-councilmatic,CivicTechTO/django-councilmatic,datamade/django-councilmatic,datamade/django-councilmatic | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-councilmatic',
version='0.2... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-councilmatic',
version='0.2... | mit | Python |
9c9a47f9ce5bd7c21bc772158b9133c668d6d295 | Add classifiers to setup.py | mwilliamson/python-tempman | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='tempman',
version='0.1.2',
description='Create and clean up temporary directories',
long_description=read("README"),
author='Michae... | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='tempman',
version='0.1.2',
description='Create and clean up temporary directories',
long_description=read("README"),
author='Michae... | bsd-2-clause | Python |
078c6c4e2aa79e339974f4fe41a74e57c0efe587 | Update dependency | gaoce/TimeVis,gaoce/TimeVis,gaoce/TimeVis | setup.py | setup.py | from __future__ import print_function
import os
from setuptools import setup
from setuptools.command.install import install
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
class MyInstall(install):
""" Customized install class t... | from __future__ import print_function
import os
from setuptools import setup
from setuptools.command.install import install
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
class MyInstall(install):
""" Customized install class t... | mit | Python |
add801e6b60afdecaca5de36615cd341f8fecdf8 | add project url | tgs/requests-jwt | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='requests-jwt',
version='0.2',
url='https://github.com/tgs/requests-jwt',
install_requires=[ 'requests>=1.0.0', 'PyJWT' ],
tests_require=['httpretty'],
test_suite='tests.suite',
provides=[ 'requests_jwt' ],
... | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='requests_jwt',
version='0.2',
install_requires=[ 'requests>=1.0.0', 'PyJWT' ],
tests_require=['httpretty'],
test_suite='tests.suite',
provides=[ 'requests_jwt' ],
author='Thomas Grenfell Smith',
author_emai... | isc | Python |
77d4f43a534cbf702fbd6b0954eb71b3f64e2cb7 | add extension to setup to include numpy | schae234/Camoco,schae234/Camoco | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages, Extension
from Cython.Distutils import build_ext
import os
import numpy
pccup = Extension(
'PCCUP',
sources=['camoco/PCCUP.pyx'],
extra_compile_args=['-ffast-math'],
inlcude_dirs=[numpy.get_include()]
)
refgendist = Extension(
'Re... | #!/usr/bin/env python3
from setuptools import setup, find_packages, Extension
from Cython.Distutils import build_ext
import os
pccup = Extension(
'PCCUP',
sources=['camoco/PCCUP.pyx'],
extra_compile_args=['-ffast-math']
)
refgendist = Extension(
'RefGenDist',
sources=['camoco/RefGenDist.pyx'],
... | mit | Python |
a620066a23f21b8a736cae0238dfa3ee8549e3a7 | Add pytest-cov as a test dependency | charleswhchan/serfclient-py,KushalP/serfclient-py | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from serfclient import __version__
try:
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args ... | #!/usr/bin/env python
import os
import sys
from serfclient import __version__
try:
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args ... | mit | Python |
2968e577657163e76c544b91581428d9bdfb46ef | Bump version | ioO/billjobs | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-billjobs',
version='0.3.0',... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-billjobs',
version='0.2.7',... | mit | Python |
a361806026b0358270d101e9eff362d08a971076 | Remove python version upper bound (#145) | googleapis/python-db-dtypes-pandas,googleapis/python-db-dtypes-pandas | setup.py | setup.py | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... | apache-2.0 | Python |
02648f401478a0b41a814a9664c62ef2e867f713 | Add midi as dependency | douglaseck/pretty-midi,rafaelvalle/pretty-midi,craffel/pretty-midi,tygeng/pretty-midi | setup.py | setup.py | from setuptools import setup
setup(
name='pretty_midi',
version='0.0.1',
description='A class for handling MIDI data in a convenient way.',
author='Colin Raffel',
author_email='craffel@gmail.com',
url='https://github.com/craffel/pretty_midi',
packages=['pretty_midi'],
package_data={'': ... | from setuptools import setup
setup(
name='pretty_midi',
version='0.0.1',
description='A class for handling MIDI data in a convenient way.',
author='Colin Raffel',
author_email='craffel@gmail.com',
url='https://github.com/craffel/pretty_midi',
packages=['pretty_midi'],
package_data={'': ... | mit | Python |
7a628d60748de6a803d948c8b92f7094dbb12c19 | bump version | MagnetoTesting/magneto,aaaliua/magneto,EverythingMe/magneto,yershalom/magneto | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='magneto',
version='0.1.9',
description='Magneto - Command your droids.',
author='EverythingMe',
author_email='automation@everything.me',
url='http://github.com/EverythingMe/magneto',
packages=find_packages(),
install_requires=[
... | from setuptools import setup, find_packages
setup(
name='magneto',
version='0.1.8',
description='Magneto - Command your droids.',
author='EverythingMe',
author_email='automation@everything.me',
url='http://github.com/EverythingMe/magneto',
packages=find_packages(),
install_requires=[
... | apache-2.0 | Python |
b382e3ae5460cfd9efa7a6077d6e8e0775e818a7 | Remove stupid debug comments. | novel/lc-tools,novel/lc-tools | setup.py | setup.py | #!/usr/bin/env python
import subprocess
import os.path
import sys
from distutils.core import setup
from distutils.command.install import install
from distutils.command.clean import clean
class lc_install(install):
def run(self):
install.run(self)
man_dir = os.path.abspath("./man/")
out... | #!/usr/bin/env python
import subprocess
import os.path
import sys
from distutils.core import setup
from distutils.command.install import install
from distutils.command.clean import clean
class lc_install(install):
def run(self):
# install.run(self)
# print "HERE WE GO"
# print self.dump_op... | apache-2.0 | Python |
91fd8a4a31bd428e1c71134dae0e748e41ebdad0 | modify setup.py for 2.7 imports | stijnvanhoey/hydropy,stijnvanhoey/hydropy | setup.py | setup.py | #!/usr/bin/env python
from __future__ import absolute_import
from setuptools import setup
setup(name='hydropy',
version='0.1',
description='Analysis of hydrological oriented time series',
url='https://stijnvanhoey.github.io/hydropy/',
author='Stijn Van Hoey',
author_email='stvhoey.vanhoey... | #!/usr/bin/env python
from setuptools import setup
setup(name='hydropy',
version='0.1',
description='Analysis of hydrological oriented time series',
url='https://stijnvanhoey.github.io/hydropy/',
author='Stijn Van Hoey',
author_email='stvhoey.vanhoey@ugent.be',
license='BSD',
... | bsd-2-clause | Python |
3c89214e45f631d8258f75e7f96c252c181dfdab | Add missing dependencies for Python 2 | exhuma/puresnmp,exhuma/puresnmp | setup.py | setup.py | from sys import version_info
from setuptools import find_packages, setup
VERSION = open('puresnmp/version.txt').read().strip()
DEPENDENCIES = []
if version_info < (3, 5):
DEPENDENCIES.append('typing')
if version_info < (3, 3):
DEPENDENCIES.append('ipaddress')
DEPENDENCIES.append('mock')
setup(
name="... | from sys import version_info
from setuptools import find_packages, setup
VERSION = open('puresnmp/version.txt').read().strip()
DEPENDENCIES = []
if version_info < (3, 5):
DEPENDENCIES.append('typing')
setup(
name="puresnmp",
version=VERSION,
description="Pure Python SNMP implementation",
long_des... | mit | Python |
58712d629f2a2fcaf40b27a58e48925d5a81c455 | Bump version to v2.0.7 | olivierdalang/django-nested-admin,sbussetti/django-nested-admin,sbussetti/django-nested-admin,olivierdalang/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="2.0.7",
install_requires=[
'six>=1.7.0',
],
... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="2.0.6",
install_requires=[
'six>=1.7.0',
],
... | bsd-2-clause | Python |
5a8c7f7e0f38530f4eb0f0c87eff4881128e8bb6 | Update setup.py | mattpatey/news-to-epub | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'News2Epub',
version = '1.0a',
install_requires = [
'EbookLib==0.15',
'beautifulsoup4==4.3.2',
'python-dateutil==2.4.2',
'requests==2.6.0',
],
author = 'Matt Patey',
description = 'Convert news from The G... | from setuptools import setup, find_packages
setup(
name = 'News2Epub',
version = '1.0a',
install_requires = [
'EbookLib==0.15',
'beautifulsoup4==4.3.2',
'requests==2.6.0',
],
author = 'Matt Patey',
description = 'Convert news from The Guardian website into Epub format f... | mit | Python |
f26984b2de8cc6e53ebd61da6a4ab600fdacde61 | fix typo | jld23/saspy,jld23/saspy | setup.py | setup.py | #!/usr/bin/env python
#
# Copyright SAS Institute
#
# 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 o... | #!/usr/bin/env python
#
# Copyright SAS Institute
#
# 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 o... | apache-2.0 | Python |
7cb352d24c850423c049552b4ca4fed1d6031f77 | Bump version number. | ProjetPP/PPP-DatamodelNotationParser,ProjetPP/PPP-DatamodelNotationParser | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel_notation_parser',
version='0.1.4',
description='A module parsing a human-writable representation of a question tree.',
url='https://github.com/ProjetPP',
author='Valentin Lorentz',
author_email='valen... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel_notation_parser',
version='0.1.3',
description='A module parsing a human-writable representation of a question tree.',
url='https://github.com/ProjetPP',
author='Valentin Lorentz',
author_email='valen... | mit | Python |
900794dafa7052243cd17615b3eddf6b402f84f0 | update setup.py | elapouya/PyStrExt | setup.py | setup.py | from setuptools import setup
setup(name='pystrext',
version='0.1.1',
description='Python string extension',
long_description=long_description,
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
... | from setuptools import setup
setup(name='pystrext',
version='0.1.0',
description='Python string extension',
url='',
author='Eric Lapouyade',
author_email='elapouya@gmail.com',
license='MIT',
packages=['pystrext'],
zip_safe=False) | lgpl-2.1 | Python |
36eaad954c69bb2a1326efd25ec21e7f935e68ed | Bump version | empty/django-switch-user | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
return fh.read()
except IOError:
return ''
requirements = read('REQUIREMENTS').splitlines()
tests_requirements = read('REQUIREMENTS-TESTS').... | import os
from setuptools import setup, find_packages
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
return fh.read()
except IOError:
return ''
requirements = read('REQUIREMENTS').splitlines()
tests_requirements = read('REQUIREMENTS-TESTS').... | mit | Python |
179e72db3d95a41d53ebd019a5cb698a7767eb45 | Set the version to 0.8.1 | xgfone/xutils,xgfone/pycom | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="xutils",
version="0.8.1",
description="A Fragmentary Python Library.",
author="xgfone",
author_email="xgfone@126.com",
maintainer="xgfone",
maintainer_email="xgfone@126.com",
url=... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="xutils",
version="0.8",
description="A Fragmentary Python Library.",
author="xgfone",
author_email="xgfone@126.com",
maintainer="xgfone",
maintainer_email="xgfone@126.com",
url="h... | mit | Python |
056827062c5b813c94e25fd026cac98f9ae5252b | Bump version number | mistydemeo/lazy_paged_sequence | setup.py | setup.py | from setuptools import setup
setup(
name="lazy_paged_sequence",
author="Misty De Meo",
author_email="mistydemeo@gmail.com",
license="AGPL",
version="0.2"
)
| from setuptools import setup
setup(
name="lazy_paged_sequence",
author="Misty De Meo",
author_email="mistydemeo@gmail.com",
license="AGPL",
version="0.1"
)
| agpl-3.0 | Python |
00d0a1038936fc284336508413a186d712a2f604 | Fix reference to renamed README. | flyingcircusio/pycountry | setup.py | setup.py | # vim:fileencoding=utf-8
# Copyright -2014 (c) gocept gmbh & co. kg
# Copyright 2015- (c) Flying Circus Internet Operations GmbH
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='pycountry',
version='18.12.9.dev0',
author='Christian Theune',
author_email='ct@flyingcircus... | # vim:fileencoding=utf-8
# Copyright -2014 (c) gocept gmbh & co. kg
# Copyright 2015- (c) Flying Circus Internet Operations GmbH
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='pycountry',
version='18.12.9.dev0',
author='Christian Theune',
author_email='ct@flyingcircus... | lgpl-2.1 | Python |
f515dc6904df12172b896737b4abf05df9db19bb | Update the homepage | gmr/helper,dave-shawley/helper,gmr/helper | setup.py | setup.py | import platform
from setuptools import setup
requirements = ['python-daemon', 'pyyaml']
tests_require = ['mock']
(major, minor, rev) = platform.python_version_tuple()
if float('%s.%s' % (major, minor)) < 2.7:
requirements.append('argparse')
requirements.append('logutils')
tests_require.append('unittest2')
... | import platform
from setuptools import setup
requirements = ['python-daemon', 'pyyaml']
tests_require = ['mock']
(major, minor, rev) = platform.python_version_tuple()
if float('%s.%s' % (major, minor)) < 2.7:
requirements.append('argparse')
requirements.append('logutils')
tests_require.append('unittest2')
... | bsd-3-clause | Python |
34a2bdd16066568a59c1d0ccc75988022297524a | Fix README.md name in setup.py. | shyamalschandra/pyechonest,krishofmans/pyechonest,andreylh/pyechonest,andreylh/pyechonest,diCaminha/pyechonest,echonest/pyechonest,diegobill/pyechonest,Victorgichohi/pyechonest,DaisukeMiyamoto/pyechonest,mmiquiabas/pyechonest,alex/pyechonest,mhcrnl/pyechonest,abhisheknshah/dynamicplaylistgenerator,DaisukeMiyamoto/pyech... | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
__version__ = "4.2.16"
# $Source$
from sys import version
import os
from setuptools import setup
if version < '2.6':
requires=['urllib', 'urllib2', 'simplejson']
elif version >= '2.6':
requires=['urllib', 'urllib2', 'json']
else:
#unknown version?
requires=['ur... | #!/usr/bin/env python
# encoding: utf-8
__version__ = "4.2.16"
# $Source$
from sys import version
import os
from setuptools import setup
if version < '2.6':
requires=['urllib', 'urllib2', 'simplejson']
elif version >= '2.6':
requires=['urllib', 'urllib2', 'json']
else:
#unknown version?
requires=['ur... | bsd-3-clause | Python |
5770e22dc0654d64d027efb3b63f8efef0cc4037 | Update setup.py | thombashi/DataProperty | setup.py | setup.py | from __future__ import with_statement
import os.path
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join(MISC_DIR, "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requiremen... | from __future__ import with_statement
import os.path
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join(MISC_DIR, "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requiremen... | mit | Python |
916428175bfaaafe22d6b1ee8c29a367e8607fd3 | Increase version to 3.1.0 | scm-spain/slippin-jimmy | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
"""
@author: SCMSpain
"""
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sli... | #!/usr/bin/python
# -*- coding: utf-8 -*-
"""
@author: SCMSpain
"""
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sli... | apache-2.0 | Python |
b77fc16a0fd48b82878f3adc8bee2521a0c85c8f | Declare dependency | ZeitOnline/zeit.magazin | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='zeit.magazin',
version='1.4.4.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
description="vivi ZMO Content-Type extensions",
packages=find_packages('src'),
package_dir={'': 'sr... | from setuptools import setup, find_packages
setup(
name='zeit.magazin',
version='1.4.4.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
description="vivi ZMO Content-Type extensions",
packages=find_packages('src'),
package_dir={'': 'sr... | bsd-3-clause | Python |
77a71fe42e36fa1208e847c59e7c9a4355286a73 | Add Pillow to the test requirements | carljm/django-form-utils,carljm/django-form-utils,carljm/django-form-utils | setup.py | setup.py | from setuptools import setup
import subprocess
import os.path
try:
# don't get confused if our sdist is unzipped in a subdir of some
# other hg repo
if os.path.isdir('.hg'):
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
stdout=subprocess.PIPE, stderr=su... | from setuptools import setup
import subprocess
import os.path
try:
# don't get confused if our sdist is unzipped in a subdir of some
# other hg repo
if os.path.isdir('.hg'):
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
stdout=subprocess.PIPE, stderr=su... | bsd-3-clause | Python |
2df022622348c568bfb2620dfa2b9803de3ca2d5 | Include requests module in requirements for use by the gh_issuereport script | astropy/astropy-tools,astropy/astropy-tools | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
URL_BASE = 'https://github.com/astropy/astropy-tools/'
setup(
name='astropy-tools',
version='0.0.0.dev0',
author='The Astropy Developers',
author_email='astropy.team@gmail.com',
url=URL_BASE,
download_url=URL_BASE + 'archive/master.zip',
... | #!/usr/bin/env python
from setuptools import setup
URL_BASE = 'https://github.com/astropy/astropy-tools/'
setup(
name='astropy-tools',
version='0.0.0.dev0',
author='The Astropy Developers',
author_email='astropy.team@gmail.com',
url=URL_BASE,
download_url=URL_BASE + 'archive/master.zip',
... | bsd-3-clause | Python |
661945ff602c03539282c61276ef84335ccf4978 | add comments to setup.py to make its intentions clear | kcarnold/autograd,barak/autograd,hips/autograd,HIPS/autograd,hips/autograd,HIPS/autograd | setup.py | setup.py | from __future__ import absolute_import
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
from distutils.errors import CompileError
from warnings import warn
import os
# use cython if it is importable and the environment has USE_CYTHON
try:
from Cython.Distutil... | from __future__ import absolute_import
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
from distutils.errors import CompileError
from warnings import warn
import os
try:
from Cython.Distutils import build_ext as _build_ext
except ImportError:
use_cython ... | mit | Python |
6bc71f845e3aecb622d32739c7c6a4c5acddf7e7 | Bump PyPI version | weeksghost/dpxdt,gBritz/dpxdt,steven-hadfield/dpxdt,gBritz/dpxdt,Medium/dpxdt,gBritz/dpxdt,mabushadi/dpxdt,mabushadi/dpxdt,steven-hadfield/dpxdt,Medium/dpxdt,gBritz/dpxdt,ygravrand/dpxdt,Medium/dpxdt,bslatkin/dpxdt,bslatkin/dpxdt,ygravrand/dpxdt,mabushadi/dpxdt,Medium/dpxdt,steven-hadfield/dpxdt,weeksghost/dpxdt,bslatk... | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='dpxdt',
version='0.1.1',
description='Screenshot diff tool',
author='Brett Slatkin',
author_email='brett@haxor.com',
url='https://github.com/bslatkin/dpxdt/',
entry_points={
'console_scripts': [
'dpxdt =... | from setuptools import setup, find_packages
setup(name='dpxdt',
version='0.1.0',
description='Screenshot diff tool',
author='Brett Slatkin',
author_email='brett@haxor.com',
url='https://github.com/bslatkin/dpxdt/',
entry_points={
'console_scripts': [
'dpxdt =... | apache-2.0 | Python |
15c43328822bcbd9fe95df79c7cd3b423f82b5cf | Fix bug with long_description in setup.py for py2 | zzzsochi/trans | setup.py | setup.py | # coding: utf8
import codecs
from distutils.core import setup
import trans
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
description = 'National characters transcription module.'
setup(
name='trans',
version=trans.__version__,
description=description,
long_description=long_descr... | # coding: utf8
from distutils.core import setup
import trans
long_description = open('README.rst', 'r').read()
description = 'National characters transcription module.'
setup(
name='trans',
version=trans.__version__,
description=description,
long_description=long_description,
author='Zelenyak A... | bsd-2-clause | Python |
2ac73fc3dd5c790f424e09fe9fd2856766d1623e | bump version | BrianGallew/bacula_configuration | setup.py | setup.py | #! /usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
import os
import glob
from setuptools import setup, find_packages
NAME = 'bacula_configuration'
VERSION = '0.91'
WEBSITE = 'http://gallew.org/bacula_configuration'
LICENSE = 'GPLv3 or later'
DESCRIPTION = 'Bacula configuration management tool'
AUTHOR =... | #! /usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
import os
import glob
from setuptools import setup, find_packages
NAME = 'bacula_configuration'
VERSION = '0.90'
WEBSITE = 'http://gallew.org/bacula_configuration'
LICENSE = 'GPLv3 or later'
DESCRIPTION = 'Bacula configuration management tool'
AUTHOR =... | bsd-3-clause | Python |
93ec3272454eab5c895c26399fe26cb715421c27 | Update for beta-2. | makism/dyfunconn | setup.py | setup.py | #!/usr/bin/env python
# based on:
# https://github.com/marcindulak/python-mycli/blob/master/setup.py#L34
import os
from setuptools import setup
#from distutils.core import setup
name = "dyfunconn"
rootdir = os.path.abspath(os.path.dirname(__file__))
packages = []
for dirname, dirnames, filenames in os.walk(name):
... | #!/usr/bin/env python
# based on:
# https://github.com/marcindulak/python-mycli/blob/master/setup.py#L34
import os
from setuptools import setup
#from distutils.core import setup
name = "dyfunconn"
rootdir = os.path.abspath(os.path.dirname(__file__))
packages = []
for dirname, dirnames, filenames in os.walk(name):
... | bsd-3-clause | Python |
731128a260b807aff40bd7dfdb8282793e390637 | use just manage.py:run as entry_point | bussiere/gitfs,PressLabs/gitfs,rowhit/gitfs,PressLabs/gitfs,ksmaheshkumar/gitfs | setup.py | setup.py | from setuptools import setup
requires_list = [
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'PyYAML==3.11',
'Pygments==1.6',
'Sphinx==1.2.2',
'argparse==1.2.1',
'cffi==0.8.6',
'docutils==0.11',
'fusepy==2.0.2',
'nose==1.3.3',
'pyaml==14.05.7',
'pycparser==2.10',
'pygit2==0.2... | from setuptools import setup
requires_list = [
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'PyYAML==3.11',
'Pygments==1.6',
'Sphinx==1.2.2',
'argparse==1.2.1',
'cffi==0.8.6',
'docutils==0.11',
'fusepy==2.0.2',
'nose==1.3.3',
'pyaml==14.05.7',
'pycparser==2.10',
'pygit2==0.2... | apache-2.0 | Python |
8e2ccbdbc29ae752fe0100a1506a42960aa83698 | Fix packaging bug | emenendez/gpxutils | setup.py | setup.py | from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='gpxutils',
version='2.0.1',
description='Tools for working with GPX files... | from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.md'), encoding='utf-... | agpl-3.0 | Python |
0a05597213041f89fe517e09ba8b023d962301d1 | format setup.py | slhck/ffmpeg-normalize,slhck/audio-normalize | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# read version string
with open(path.join(here, "ffmpeg_normalize", "_version.py")) as version_file:
version = eval(ver... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# read version string
with open(path.join(here, 'ffmpeg_normalize', '_version.py')) as version_file:
version = eval(vers... | mit | Python |
fea6c5e84104b320c3d9475e59f7cf8625339a29 | Add generic Python 3 trove classifier | TangledWeb/tangled.mako | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.mako',
version='0.1a3.dev0',
description='Tangled Mako integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.mako/tags',
author='Wyatt Baldwin',
... | from setuptools import setup
setup(
name='tangled.mako',
version='0.1a3.dev0',
description='Tangled Mako integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.mako/tags',
author='Wyatt Baldwin',
... | mit | Python |
58e4378d94164f24c7f74783ef13d0a7ecdcdda6 | remove unnecessary python path in setup.py | swistakm/talons-oauth | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
PACKAGES = find_packages(exclude='tests')
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
def strip_comments(l):
return l.split('#', 1)[0].strip()
def reqs(*f):
return list(filter(None, [strip_comments(... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import os
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'src'))
PACKAGES = find_packages(exclude='tests')
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
def strip_comments(l):
re... | apache-2.0 | Python |
b0a13cd59db53092009870d37e53b6a604cd74fa | Add license in setup.py | Chennaipy/hangman | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='gallows',
version='0.1.0',
description=("The word game Hangman based on 'Invent Your "
"Own Computer Games with Python'."),
author='Vijay Kumar B.',
author_email='vijaykumar@bravegnu.org',
url='http://githu... | #!/usr/bin/env python
from setuptools import setup
setup(name='gallows',
version='0.1.0',
description=("The word game Hangman based on 'Invent Your "
"Own Computer Games with Python'."),
author='Vijay Kumar B.',
author_email='vijaykumar@bravegnu.org',
url='http://githu... | bsd-2-clause | Python |
224387ee62993170d35a06b04ac3621a3fe8c3e3 | Downgrade beaker dependency. | openchordcharts/openchordcharts-api,openchordcharts/web-api | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Open chord charts project."""
from setuptools import setup, find_packages
doc_lines = __doc__.split('\n')
setup(
author=u'Christophe Benz',
author_email=u'christophe.benz@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'En... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Open chord charts project."""
from setuptools import setup, find_packages
doc_lines = __doc__.split('\n')
setup(
author=u'Christophe Benz',
author_email=u'christophe.benz@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'En... | agpl-3.0 | Python |
233ff8a792afec3049f7ec610aa9fa343404dfe5 | fix setup.py in python3 | EDITD/queue_util | setup.py | setup.py | import setuptools
import sys
REQUIREMENTS = [
"kombu>=2.5,<2.6",
"requests>=2,<3",
"six>=1.10.0,<2",
"statsd>=2.1,<2.2",
]
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1] == "requirements":
for req in REQUIREMENTS:
print(req)
sys.exit(0)
setuptool... | import setuptools
import sys
REQUIREMENTS = [
"kombu>=2.5,<2.6",
"requests>=2,<3",
"six>=1.10.0,<2",
"statsd>=2.1,<2.2",
]
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1] == "requirements":
for req in REQUIREMENTS:
print req
sys.exit(0)
setuptools... | mit | Python |
a8df28ca5c0f617ab12d831ada91007e3e65efe0 | Bump version to 1.0. | mkdocs/mkdocs-bootswatch,waylan/mkdocs-bootswatch | setup.py | setup.py | from setuptools import setup, find_packages
from distutils.core import Command
import os
VERSION = '1.0'
setup(
name="mkdocs-bootswatch",
version=VERSION,
url='http://www.mkdocs.org',
license='BSD',
description='Bootswatch themes for MkDocs',
author='Dougal Matthews',
author_email='dougal... | from setuptools import setup, find_packages
from distutils.core import Command
import os
VERSION = '0.5.0'
setup(
name="mkdocs-bootswatch",
version=VERSION,
url='http://www.mkdocs.org',
license='BSD',
description='Bootswatch themes for MkDocs',
author='Dougal Matthews',
author_email='doug... | bsd-2-clause | Python |
36ecfe563bcdb1ebeea0dd131cce91e3a4f6d084 | Bump version number to 0.18 | titansgroup/flask-sqlalchemy | setup.py | setup.py | """
Flask-SQLAlchemy
----------------
Adds SQLAlchemy support to your Flask application.
Links
`````
* `documentation <http://packages.python.org/Flask-SQLAlchemy>`_
* `development version
<http://github.com/mitsuhiko/flask-sqlalchemy/zipball/master#egg=Flask-SQLAlchemy-dev>`_
"""
from setuptools import setup
s... | """
Flask-SQLAlchemy
----------------
Adds SQLAlchemy support to your Flask application.
Links
`````
* `documentation <http://packages.python.org/Flask-SQLAlchemy>`_
* `development version
<http://github.com/mitsuhiko/flask-sqlalchemy/zipball/master#egg=Flask-SQLAlchemy-dev>`_
"""
from setuptools import setup
s... | bsd-3-clause | Python |
19eb5e057c3ac189dfb7b065e6b119e49499df02 | use setuptools and drop cython support | nakagami/minipg | setup.py | setup.py | import sys
from setuptools import setup, Command
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from minipg import test_minipg
import unittest
unittest.main(test_minipg, argv=sy... | import sys
from distutils.core import setup, Command
from distutils.extension import Extension
try:
from Cython.Build import cythonize
ext_modules = cythonize([
Extension("minipg.pgcore", ["minipg/pgcore.py"]),
])
except ImportError:
ext_modules = None
class TestCommand(Command):
user_opt... | mit | Python |
5564cd33318d403a4f5628470b04439650029e6f | update author email | stefanfoulis/django-class-based-auth-views | setup.py | setup.py | from setuptools import setup, find_packages
version = __import__('class_based_auth_views').__version__
setup(
name="django-class-based-auth-views",
version=version,
url='http://github.com/stefanfoulis/django-class-based-auth-views',
license='BSD',
platforms=['OS Independent'],
description="A r... | from setuptools import setup, find_packages
version = __import__('class_based_auth_views').__version__
setup(
name="django-class-based-auth-views",
version=version,
url='http://github.com/stefanfoulis/django-class-based-auth-views',
license='BSD',
platforms=['OS Independent'],
description="A r... | mit | Python |
9204e33200bd33e871d7e6d960cbcb8a947a0a65 | check to see if java clavin engine downloaded, so don't redownload this on reinstall | DanielJDufour/clavin-python | setup.py | setup.py | #from distutils.core import setup
from setuptools import setup
from setuptools.command.develop import develop
from setuptools.command.install import install
import os, subprocess
def post_install(command_subclass):
orig_run = command_subclass.run
def modified_run(self):
orig_run(self)
## th... | #from distutils.core import setup
from setuptools import setup
from setuptools.command.develop import develop
from setuptools.command.install import install
import os, subprocess
def post_install(command_subclass):
orig_run = command_subclass.run
def modified_run(self):
orig_run(self)
## th... | apache-2.0 | Python |
82da444753249df9bbd4c516a7b1f9f5a4a7a29a | Remove deprecated 'zip_safe' flag. It's probably safe anyhow. | yougov/emanate | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='yg.emanate',
use_scm_version=True,
description="Lightweight event system for Python",
author="YouGov, plc",
author_email='dev@yougov.com',
url='https://github.com/yougov/yg.emanate',
packages=[
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='yg.emanate',
use_scm_version=True,
description="Lightweight event system for Python",
author="YouGov, plc",
author_email='dev@yougov.com',
url='https://github.com/yougov/yg.emanate',
packages=[
... | mit | Python |
d89aa907fcd76a71226f323b8993113abe9541ca | Add dependencies to setup.py | eucalyptus/arado | setup.py | setup.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2012, Eucalyptus Systems, Inc.
# All rights reserved.
#
# Redistribution and use of this software in source and binary forms, with or
# without modification, are permitted provided that the following conditions
# are met:
#
# Redistributions of source code ... | # Software License Agreement (BSD License)
#
# Copyright (c) 2012, Eucalyptus Systems, Inc.
# All rights reserved.
#
# Redistribution and use of this software in source and binary forms, with or
# without modification, are permitted provided that the following conditions
# are met:
#
# Redistributions of source code ... | bsd-2-clause | Python |
5145e5cfccaef99be1fd7c1240e289ab132a858b | Remove python 3.3 from trove classifiers [skip ci] | sjkingo/virtualenv-api | setup.py | setup.py | from setuptools import find_packages, setup
from virtualenvapi import __version__
setup(
name='virtualenv-api',
version=__version__,
license='BSD',
author='Sam Kingston and AUTHORS',
author_email='sam@sjkwi.com.au',
description='An API for virtualenv/pip',
long_description=open('README.rst... | from setuptools import find_packages, setup
from virtualenvapi import __version__
setup(
name='virtualenv-api',
version=__version__,
license='BSD',
author='Sam Kingston and AUTHORS',
author_email='sam@sjkwi.com.au',
description='An API for virtualenv/pip',
long_description=open('README.rst... | bsd-2-clause | Python |
967123b620ffaec58ca30fb59cdc2853404d152f | Switch to nose test runner | Nekroze/librator,Nekroze/librator | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
import librator
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = open('HISTORY.rst').read(... | #!/usr/bin/env python
import os
import sys
import librator
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = open('HISTORY.rst').read(... | mit | Python |
ee0c6cb121d057a3cea1111415a2689c397ce650 | Bump version to 2.0b1 | sbussetti/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin,olivierdalang/django-nested-admin | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="2.0b1",
install_requires=[
'six>=1.7.0',
],
... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="1.0.9",
install_requires=[
'six>=1.7.0',
],
... | bsd-2-clause | Python |
2c65579329a53a38679e323a96bc04167984454d | Prepare openprocurement.auction.insider 1.0.1a1.dev9 | openprocurement/openprocurement.auction.insider | setup.py | setup.py | import os
from setuptools import setup, find_packages
VERSION = '1.0.1a1.dev9'
INSTALL_REQUIRES = [
'setuptools',
'openprocurement.auction',
'openprocurement.auction.worker'
]
EXTRAS_REQUIRE = {
'test': [
'pytest',
'pytest-cov'
]
}
ENTRY_POINTS = {
'console_scripts': [
'... | import os
from setuptools import setup, find_packages
VERSION = '1.0.1a1.dev8'
INSTALL_REQUIRES = [
'setuptools',
'openprocurement.auction',
'openprocurement.auction.worker'
]
EXTRAS_REQUIRE = {
'test': [
'pytest',
'pytest-cov'
]
}
ENTRY_POINTS = {
'console_scripts': [
'... | apache-2.0 | Python |
7609c1df444d13efdb8be295003af13dc9de3d96 | Update openfisca-core requirement from <32.0,>=27.0 to >=27.0,<33.0 | openfisca/country-template,openfisca/country-template | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "OpenFisca-Country-Template",
version = "3.9.4",
author = "OpenFisca Team",
author_email = "contact@openfisca.org",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approve... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "OpenFisca-Country-Template",
version = "3.9.4",
author = "OpenFisca Team",
author_email = "contact@openfisca.org",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approve... | agpl-3.0 | Python |
62f58f297205a881c03342483bb7e1f28cefd8d1 | Correct the license identifier | tarkatronic/django-ssl-auth | setup.py | setup.py | import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('README.rst', 'r') as f:
README = f.read()
with open('VERSION', 'r') as vfile:
VERSION = vfile.read().strip()
setup(
name='django-ss... | import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('README.rst', 'r') as f:
README = f.read()
with open('VERSION', 'r') as vfile:
VERSION = vfile.read().strip()
setup(
name='django-ss... | mit | Python |
869d2e5ca3a785babdeb7dfc1e1a8cfa87be9c60 | Allow setup script to be imported (for introspection and troubleshooting). | egh/ofxparse,rdsteed/ofxparse,jseutter/ofxparse,hiromu2000/ofxparse,jaraco/ofxparse,udibr/ofxparse | setup.py | setup.py | import re
import sys
from setuptools import setup, find_packages
# Read the version from __init__ to avoid importing ofxparse while installing.
# This lets the install work when the user does not have BeautifulSoup
# installed.
VERSION = re.search(r"__version__ = '(.*?)'",
open("ofxparse/__init__.... | import re
import sys
from setuptools import setup, find_packages
# Read the version from __init__ to avoid importing ofxparse while installing.
# This lets the install work when the user does not have BeautifulSoup
# installed.
VERSION = re.search(r"__version__ = '(.*?)'",
open("ofxparse/__init__.... | mit | Python |
eec65f8ac11d33cc3cbef426080660ec2a02e29b | Bump to v1.32.0 | gisce/primestg | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='primestg',
version='1.32.0',
packages=find_packages(),
url='https://github.com/gisce/primestg',
license='GNU Affero General Public License v3',
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
install_requires=[
'... | from setuptools import setup, find_packages
setup(
name='primestg',
version='1.31.6',
packages=find_packages(),
url='https://github.com/gisce/primestg',
license='GNU Affero General Public License v3',
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
install_requires=[
'... | agpl-3.0 | Python |
92734e72fd7675c9c7040b13f3665608e996f490 | Bump pytype from 2021.7.19 to 2021.7.27 (#688) | larq/larq | setup.py | setup.py | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.12.0",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.12.0",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | apache-2.0 | Python |
2512dc238e6eb267bf288f92d1e2da6bc04a99a6 | Fix email to match PyPI registered email. | rolando/scrapy-redis,darkrho/scrapy-redis | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from pkgutil import walk_packages
from setuptools import setup
def find_packages(path):
# This method returns packages and subpackages as well.
return [name for _, name, is_pkg in walk_packages([path]) if is_pkg]
def read_file(filename):
with io.op... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from pkgutil import walk_packages
from setuptools import setup
def find_packages(path):
# This method returns packages and subpackages as well.
return [name for _, name, is_pkg in walk_packages([path]) if is_pkg]
def read_file(filename):
with io.op... | mit | Python |
f7e1746b6857cc90b96008e2d76c2f9edc0dd0b9 | Fix setup.py | youfou/wxpy | setup.py | setup.py | import re
from setuptools import find_packages, setup
with open('wxpy/__init__.py', encoding='utf-8') as fp:
version = re.search(r"__version__\s*=\s*'([\d.]+)'", fp.read()).group(1)
with open('README.rst', encoding='utf-8') as fp:
readme = fp.read()
setup(
name='wxpy',
version=version,
packages=... | import re
from setuptools import find_packages, setup
with open('wxpy/__init__.py', encoding='utf-8') as fp:
version = re.search(r"__version__\s*=\s*'([\d.]+)'", fp.read()).groups(1)
with open('README.rst', encoding='utf-8') as fp:
readme = fp.read()
setup(
name='wxpy',
version=version,
packages... | mit | Python |
845bbfc98cc1dc12edf3f01450559301fcb38887 | Update setup.py: | dmpayton/django-admin-honeypot,Samael500/django-admin-honeypot,dmpayton/django-admin-honeypot,javierchavez/django-admin-honeypot,ajostergaard/django-admin-honeypot,Samael500/django-admin-honeypot,javierchavez/django-admin-honeypot,ajostergaard/django-admin-honeypot,wujuguang/django-admin-honeypot,wujuguang/django-admin... | setup.py | setup.py | #!/usr/bin/env python
"""
django-admin-honeypot
=====================
A fake Django admin login screen to notify admins of attempted unauthorized
access. This app was inspired by discussion in and around Paul McMillan's
security talk at DjangoCon 2011.
|travis-ci|_
.. |travis-ci| image:: https://secure.travis-ci.org... | #!/usr/bin/env python
"""
django-admin-honeypot
=====================
A fake Django admin login screen to notify admins of attempted unauthorized
access. This app was inspired by discussion in and around Paul McMillan's
security talk at DjangoCon 2011.
|travis-ci|_
.. |travis-ci| image:: https://secure.travis-ci.org... | mit | Python |
e891e6ba980ad6b082e3b41af6f8b6cf29511026 | Make setup.py executable. | lamby/django-force-logout | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='django-force-logout',
url="https://chris-lamb.co.uk/projects/django-force-logout",
version='3.2.1',
description="Framework to be able to forcibly log users out of Django projects",
author="Chris Lamb",
author_ema... | from setuptools import setup, find_packages
setup(
name='django-force-logout',
url="https://chris-lamb.co.uk/projects/django-force-logout",
version='3.2.1',
description="Framework to be able to forcibly log users out of Django projects",
author="Chris Lamb",
author_email='chris@chris-lamb.co.... | bsd-3-clause | Python |
c3ea57c01960243d4ef479aaa4ef40d596279a35 | update version to 1.1alpha | Abhinav117/pymtl,Abhinav117/pymtl,Abhinav117/pymtl,Abhinav117/pymtl | setup.py | setup.py | # setup.py inspired by the PyPA sample project:
# https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path
def get_long_description():
here = path.abspath(path.dirname(__file__))
... | # setup.py inspired by the PyPA sample project:
# https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path
def get_long_description():
here = path.abspath(path.dirname(__file__))
... | bsd-3-clause | Python |
06ea126a94f4bfc94dca9aef953179a87232e770 | Bump the version | gmr/rejected,gmr/rejected | setup.py | setup.py | from setuptools import setup
setup(name='rejected',
version='3.18.3',
description='Rejected is a Python RabbitMQ Consumer Framework and '
'Controller Daemon',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
... | from setuptools import setup
setup(name='rejected',
version='3.18.2',
description='Rejected is a Python RabbitMQ Consumer Framework and '
'Controller Daemon',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
... | bsd-3-clause | Python |
3e13cc71089a459ef9118c3337f7f47bdc920da1 | Fix missing req_path in setup.py | chardet/chardet,asdfsx/chardet,barak066/chardet,chardet/chardet,memnonila/chardet,barak066/chardet,ddboline/chardet,ddboline/chardet,memnonila/chardet,asdfsx/chardet | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from chardet import __version__
def readme():
with open('README.rst') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
reqs = f.read().splitlines()
return reqs
setup(name='chardet',
version=__version_... | #!/usr/bin/env python
from setuptools import setup
from chardet import __version__
def readme():
with open('README.rst') as f:
return f.read()
def requirements():
with open(req_path) as f:
reqs = f.read().splitlines()
return reqs
setup(name='chardet',
version=__version__,
d... | lgpl-2.1 | Python |
3de4db0446f45d094d529463b692990ebb9cb73b | Rearrange params, no changes | jmoiron/humanize,jmoiron/humanize | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for humanize."""
import io
from setuptools import find_packages, setup
with io.open("README.md", encoding="UTF-8") as f:
long_description = f.read()
version = "0.5.1"
setup(
name="humanize",
version=version,
description="Python humani... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for humanize."""
import io
from setuptools import find_packages, setup
with io.open("README.md", encoding="UTF-8") as f:
long_description = f.read()
version = "0.5.1"
setup(
name="humanize",
version=version,
description="Python humani... | mit | Python |
98afc6e164526b7c5ac2fb5417a4616ad3f33646 | Update major version (challenge #3) | stanfordnmbl/osim-rl | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
# This provides the variable `__version__`.
# execfile('opensim/version.py')
__version__ = "3.0.0"
setup(name='osim-rl',
version=__version__,
description='OpenSim Reinforcement Learning Framework',
author='Lukasz Kidzinsk... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
# This provides the variable `__version__`.
# execfile('opensim/version.py')
__version__ = "2.1.5"
setup(name='osim-rl',
version=__version__,
description='OpenSim Reinforcement Learning Framework',
author='Lukasz Kidzinsk... | mit | Python |
62459962985b4c9f257e103ef3959aeb8ae80786 | Update to beta | scrappleapp/scrapple,AlexMathew/scrapple,AlexMathew/scrapple,scrappleapp/scrapple,AlexMathew/scrapple | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requ... | mit | Python |
8b3ba32804d4e8e3ede86eebb606e2d86e689405 | Add python_requires to setup.py | hammerlab/cohorts,hammerlab/cohorts | setup.py | setup.py | # Copyright (c) 2016. Mount Sinai School of Medicine
#
# 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 o... | # Copyright (c) 2016. Mount Sinai School of Medicine
#
# 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 o... | apache-2.0 | Python |
15919bd285ef94232996243f9c4de105690163a4 | update version | amirasaran/request_validator | setup.py | setup.py | """
See:
https://github.com/amirasaran/request_validator
"""
# 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
wit... | """
See:
https://github.com/amirasaran/request_validator
"""
# 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
wit... | mit | Python |
171b0676bd6382d761c233ed11360180ed362671 | Bump version 0.4 | henriquebastos/django-aggregate-if | setup.py | setup.py | # coding: utf-8
from setuptools import setup
import os
setup(name='django-aggregate-if',
version='0.4',
description='Conditional aggregates for Django, just like the famous SumIf in Excel.',
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
author="Henrique B... | # coding: utf-8
from setuptools import setup
import os
setup(name='django-aggregate-if',
version='0.3.1',
description='Conditional aggregates for Django, just like the famous SumIf in Excel.',
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
author="Henrique... | mit | Python |
2a7589e6bf050b3e28b6e9206e6b78f8ee61c64b | Fix license in setup.py | sh4wn/vispy,QuLogic/vispy,drufat/vispy,RebeccaWPerry/vispy,jay3sh/vispy,srinathv/vispy,sbtlaarzc/vispy,kkuunnddaannkk/vispy,sh4wn/vispy,jay3sh/vispy,dchilds7/Deysha-Star-Formation,RebeccaWPerry/vispy,QuLogic/vispy,inclement/vispy,jay3sh/vispy,julienr/vispy,RebeccaWPerry/vispy,dchilds7/Deysha-Star-Formation,kkuunnddaann... | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name = 'PyGLy',
version = '20120506',
description = 'Pyglet based 3D Framework',
long_description = """An OpenGL framework designed for flexbility
and power. PyGLy provides a number of tools to let you
do what you want, how ... | #!/usr/bin/env python
from distutils.core import setup
setup(
name = 'PyGLy',
version = '20120506',
description = 'Pyglet based 3D Framework',
long_description = """An OpenGL framework designed for flexbility
and power. PyGLy provides a number of tools to let you
do what you want, how ... | bsd-3-clause | Python |
fd1e1ed5ce446497ed29dc88e6e61647eb28a1a0 | add markdown type to setup call | bmockler/MOSFiT,mnicholl/MOSFiT,guillochon/MOSFiT,villrv/MOSFiT,guillochon/FriendlyFit,mnicholl/MOSFiT,guillochon/MOSFiT,mnicholl/MOSFiT,villrv/MOSFiT,bmockler/MOSFiT,guillochon/MOSFiT | setup.py | setup.py | """Setup script for MOSFiT."""
import fnmatch
import os
import re
from setuptools import find_packages, setup
with open(os.path.join('mosfit', 'requirements.txt')) as f:
required = f.read().splitlines()
with open(os.path.join('mosfit', 'dependencies.txt')) as f:
dependencies = f.read().splitlines()
dir_path... | """Setup script for MOSFiT."""
import fnmatch
import os
import re
from setuptools import find_packages, setup
with open(os.path.join('mosfit', 'requirements.txt')) as f:
required = f.read().splitlines()
with open(os.path.join('mosfit', 'dependencies.txt')) as f:
dependencies = f.read().splitlines()
dir_path... | mit | Python |
ae290af846848a63b85e3832d694de6c5c25a4dc | Increase python compatibility version and bump to v1.2.0 | Visgean/urljects | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = """
Django URL routing system DRYed.
"""
requirements = [
'django>=1.9',
'six',
]
test_requirements = [
'mock',
'coveralls'
]
setup(
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = """
Django URL routing system DRYed.
"""
requirements = [
'django>=1.8',
'six',
]
test_requirements = [
'mock',
'coveralls'
]
setup(
... | bsd-3-clause | Python |
974ae06a90b52d58e51ec5636fb8ee048a7f26b3 | add license property | tamentis/cartman,tamentis/cartman | setup.py | setup.py | #!/usr/bin/env python
import os.path
#from distutils.core import setup
from setuptools import setup, find_packages
from cartman import __version__
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).re... | #!/usr/bin/env python
import os.path
#from distutils.core import setup
from setuptools import setup, find_packages
from cartman import __version__
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).re... | isc | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.