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
bf1a9a3b7154a793e22655d9372fe4461aa7cf25
Downgrade sqlalchemy
d0ugal/discode-server,d0ugal/discode-server,d0ugal/discode-server
setup.py
setup.py
import setuptools setuptools.setup( name="discode-server", version="0.0.1", url="https://github.com/d0ugal/discode-server", license="BSD", description="Quick code review", long_description="TODO", author="Dougal Matthews", author_email="dougal@dougalmatthews.com", keywords='code rev...
import setuptools setuptools.setup( name="discode-server", version="0.0.1", url="https://github.com/d0ugal/discode-server", license="BSD", description="Quick code review", long_description="TODO", author="Dougal Matthews", author_email="dougal@dougalmatthews.com", keywords='code rev...
bsd-2-clause
Python
bacfa911ab0264a5bb1a737e101a5228c9ed2213
use tagged version 0.14.0a1 of rasa_core
RasaHQ/rasa_nlu,RasaHQ/rasa_nlu,RasaHQ/rasa_core,RasaHQ/rasa_core,RasaHQ/rasa_core,RasaHQ/rasa_nlu
setup.py
setup.py
from setuptools import setup # Avoids IDE errors, but actual version is read from version.py __version__ = None exec(open('rasa/version.py').read()) # Get the long description from the README file with open("README.md", "r") as fh: long_description = fh.read() tests_requires = [ "pytest~=3.0", "pytest-py...
from setuptools import setup # Avoids IDE errors, but actual version is read from version.py __version__ = None exec(open('rasa/version.py').read()) # Get the long description from the README file with open("README.md", "r") as fh: long_description = fh.read() tests_requires = [ "pytest~=3.0", "pytest-py...
apache-2.0
Python
71148fe8eeac6c22f95bc815e0920c62b4f828f5
Bump version to 0.0.2
msabramo/jprops2bash
setup.py
setup.py
import os from setuptools import setup here = os.path.dirname(__file__) readme_rst = os.path.join(here, 'README.rst') long_description = open(readme_rst).read() setup( name='jprops2bash', description='Convert Java properties file to bash env var script', long_description=long_description, keywords='ja...
import os from setuptools import setup here = os.path.dirname(__file__) readme_rst = os.path.join(here, 'README.rst') long_description = open(readme_rst).read() setup( name='jprops2bash', description='Convert Java properties file to bash env var script', long_description=long_description, keywords='ja...
mit
Python
3fd3eaaafda32e95d8097e4a15324d3b304b74ba
Set supported Python versions explicitly
ecederstrand/exchangelib
setup.py
setup.py
#!/usr/bin/env python """ Release notes: * Bump version in exchangelib/__init__.py * Bump version in CHANGELOG.md * Commit and push changes * Build package: rm dist/* && python setup.py sdist bdist_wheel * Push to PyPI: twine upload dist/* * Create release on GitHub """ import io import os from setuptools import setup...
#!/usr/bin/env python """ Release notes: * Bump version in exchangelib/__init__.py * Bump version in CHANGELOG.md * Commit and push changes * Build package: rm dist/* && python setup.py sdist bdist_wheel * Push to PyPI: twine upload dist/* * Create release on GitHub """ import io import os from setuptools import setup...
bsd-2-clause
Python
0054c39243f7bdba159cd530241aa968211d9f83
add code description (#9106)
davidzchen/tensorflow,ageron/tensorflow,Carmezim/tensorflow,mortada/tensorflow,dongjoon-hyun/tensorflow,gojira/tensorflow,a-doumoulakis/tensorflow,aam-at/tensorflow,kobejean/tensorflow,cxxgtxy/tensorflow,pavelchristof/gomoku-ai,brchiu/tensorflow,renyi533/tensorflow,hehongliang/tensorflow,jhseu/tensorflow,ishay2b/tensor...
tensorflow/examples/learn/iris_custom_decay_dnn.py
tensorflow/examples/learn/iris_custom_decay_dnn.py
# Copyright 2016 The TensorFlow Authors. 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 appl...
# Copyright 2016 The TensorFlow Authors. 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 appl...
apache-2.0
Python
12045db9c2862fc4371c938c3dfde3a6c69823cc
Update setup.py to develop version
theherk/figgypy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import sys try: import pypandoc readme = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): with open('README.md') as f: readme = f.read() install_requires = [ 'boto3', 'gnupg>=2.0.2', 'seria', 'pyt...
#!/usr/bin/env python from setuptools import setup, find_packages import sys try: import pypandoc readme = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): with open('README.md') as f: readme = f.read() install_requires = [ 'boto3', 'gnupg>=2.0.2', 'seria', 'pyt...
mit
Python
9d8606d418c16d970325008d4118bce351913078
Add keywords to project.
sgmap/openfisca-france,antoinearnoud/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,sgmap/openfisca-france,SophieIPP/openfisca-france,benjello/openfisca-france,antoinearnoud/openfisca-france,benjello/openfisca-france,adrienpacifico/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it an...
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute it an...
agpl-3.0
Python
00a14b29f2d7af7c2f18e0611a90a22d4fd0b901
revert preventing normalization (#89)
googleapis/python-cloudbuild,googleapis/python-cloudbuild
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
# -*- coding: utf-8 -*- # # Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
apache-2.0
Python
8b1f078e27610995147f6d1af1fa3c40ff2ea526
Bump to 3.5
Clpsplug/thefuck,mlk/thefuck,mlk/thefuck,SimenB/thefuck,nvbn/thefuck,scorphus/thefuck,scorphus/thefuck,nvbn/thefuck,Clpsplug/thefuck,SimenB/thefuck
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import pip import sys import os if int(pip.__version__.split('.')[0]) < 6: print('pip older than 6.0 not supported, please upgrade pip with:\n\n' ' pip install -U pip') sys.exit(-1) if os.environ.get('CONVERT_README'): import p...
#!/usr/bin/env python from setuptools import setup, find_packages import pip import sys import os if int(pip.__version__.split('.')[0]) < 6: print('pip older than 6.0 not supported, please upgrade pip with:\n\n' ' pip install -U pip') sys.exit(-1) if os.environ.get('CONVERT_README'): import p...
mit
Python
89ffc59bcb0e1faf73a8696c86d6c163bdccfe38
Update setup metadata.
kcsaff/getkey
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand from getkey import __version__ def read_description(): with open('README.rst') as fd: return fd.read() class PyTest(TestCommand): user_options = [('pytest-args=', '...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand from getkey import __version__ def read_description(): with open('README.rst') as fd: return fd.read() class PyTest(TestCommand): user_options = [('pytest-args=', '...
mit
Python
24471fbc4a4084cf91a90286c5ad53bf6ec87a6d
bump version 0.2.0
Feverup/django-modelclone,simas/django-modelclone,Feverup/django-modelclone,simas/django-modelclone
setup.py
setup.py
from distutils.core import setup from os.path import dirname, join with open(join(dirname(__file__), 'README.md')) as f: README = f.read() setup( name = "django-modelclone", version = "0.2.0", description = u"Django application that allows users to clone a model in Admin", long_description = READM...
from distutils.core import setup from os.path import dirname, join with open(join(dirname(__file__), 'README.md')) as f: README = f.read() setup( name = "django-modelclone", version = "0.1.1", description = u"Django application that allows users to clone a model in Admin", long_description = READM...
mit
Python
90a9c91a619ce4676eb919a2664a2150a38a407b
Update version
m0ngr31/kodi-voice
setup.py
setup.py
from setuptools import setup from pip.req import parse_requirements setup( name = 'Kodi-Voice', packages = ['kodi_voice'], version = '1.1.0', description = 'A library for interfacing with Kodi with VUI platforms like Amazon Alexa, Google Home, and Cortana.', author = 'Joe Ipson', author_email = 'joe@ipson....
from setuptools import setup from pip.req import parse_requirements setup( name = 'Kodi-Voice', packages = ['kodi_voice'], version = '1.0.1', description = 'A library for interfacing with Kodi with VUI platforms like Amazon Alexa, Google Home, and Cortana.', author = 'Joe Ipson', author_email = 'joe@ipson....
mit
Python
7aa5a9484a6bc5e8c7085cfe73b580514520298a
Remove long_description from package (#46)
mitodl/django-server-status,mitodl/django-server-status
setup.py
setup.py
# -*- encoding: utf-8 -*- """ Python setup file for the server_status app. In order to register your app at pypi.python.org, create an account at pypi.python.org and login, then register your new app like so: python setup.py register If your name is still free, you can now make your first release but first you s...
# -*- encoding: utf-8 -*- """ Python setup file for the server_status app. In order to register your app at pypi.python.org, create an account at pypi.python.org and login, then register your new app like so: python setup.py register If your name is still free, you can now make your first release but first you s...
agpl-3.0
Python
2fb909eab06feb7a8c8f0fff422284fcca3d5575
fix requirements
edoburu/django-fluent-faq,edoburu/django-fluent-faq
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from os import path import codecs import os import re import sys # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv: try: os.chdir('fluent_faq') from django.core.management.commands.compileme...
#!/usr/bin/env python from setuptools import setup, find_packages from os import path import codecs import os import re import sys # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv: try: os.chdir('fluent_faq') from django.core.management.commands.compileme...
apache-2.0
Python
1144828375c486241e7fc54290be12238ce3c6d1
Add README.rst
sgaynetdinov/py-vkontakte
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='py-vkontakte', version='2016.10', packages=['vk'], url='https://github.com/sgaynetdinov/py-vkontakte', license='MIT License', author='Sergey Gaynetdinov', author_email='s.gaynetdinov@gmail.com', description='Python API wrap...
#!/usr/bin/env python from setuptools import setup setup( name='py-vkontakte', version='2016.10', packages=['vk'], url='https://github.com/sgaynetdinov/py-vkontakte', license='MIT License', author='Sergey Gaynetdinov', author_email='s.gaynetdinov@gmail.com', description='Python API wrap...
mit
Python
2d80306041327ae4bcbe0a2310c3fd5a85315c13
Update setup
etscrivner/nose-perfdump
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages version = '1.1' long_desc = """ nose-perfdump is a Nose plugin that collects per-test performance metrics into an SQLite3 database and reports the slowest tests, test files, and total time spent in tests. It is designed to make profiling tests to im...
#!/usr/bin/env python from setuptools import setup, find_packages version = '1.0' long_desc = """ nose-perfdump is a Nose plugin that collects per-test performance metrics into an SQLite3 database and reports the slowest tests, test files, and total time spent in tests (minus setUp/setUpClass). It is designed to m...
bsd-3-clause
Python
c136d5897a9c36cf5c4eca1d9a8c0be960ead730
Enforce requirement on python >= 3.4
axsemantics/rohrpost,axsemantics/rohrpost
setup.py
setup.py
from setuptools import setup from rohrpost import __version__ def read(filepath): with open(filepath, "r", encoding="utf-8") as f: return f.read() setup( name="rohrpost", version=__version__, description="rohrpost WebSocket protocol for ASGI", long_description=read("README.rst"), ur...
from setuptools import setup from rohrpost import __version__ def read(filepath): with open(filepath, "r", encoding="utf-8") as f: return f.read() setup( name="rohrpost", version=__version__, description="rohrpost WebSocket protocol for ASGI", long_description=read("README.rst"), ur...
mit
Python
d2d8cc7e5f76c226db9dd3479929015c123d41e1
Update package description
ioO/billjobs
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-billjobs', version='0.2.7', ...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-billjobs', version='0.2.7', ...
mit
Python
66a8961b777e1268ed697485e82210b574d976dd
bump up version to 1.0
banxi1988/iOSCodeGenerator,banxi1988/iOSCodeGenerator
setup.py
setup.py
# -*- coding: utf-8 -*- __author__ = 'banxi' from setuptools import setup setup( name='ios_code_generator', version='1.0.0', author='Haizhen Lee', author_email='banxi1988@gmail.com', install_requires = ['jinja2'], description='iOS Code Generator', packages=['ios_code_generator'], packag...
# -*- coding: utf-8 -*- __author__ = 'banxi' from setuptools import setup setup( name='ios_code_generator', version='0.2.0', author='Haizhen Lee', author_email='banxi1988@gmail.com', install_requires = ['jinja2'], description='iOS Code Generator', packages=['ios_code_generator'], packag...
mit
Python
45b8f0a27aa770ca85716cbc8c4b27c4492c7ab5
Bump version to 5.3.0
balloob/pychromecast,balloob/pychromecast,dominikkarall/pychromecast
setup.py
setup.py
from setuptools import setup, find_packages long_description = open("README.rst").read() setup( name="PyChromecast", version="5.3.0", license="MIT", url="https://github.com/balloob/pychromecast", author="Paulus Schoutsen", author_email="paulus@paulusschoutsen.nl", description="Python modu...
from setuptools import setup, find_packages long_description = open("README.rst").read() setup( name="PyChromecast", version="5.2.0", license="MIT", url="https://github.com/balloob/pychromecast", author="Paulus Schoutsen", author_email="paulus@paulusschoutsen.nl", description="Python modu...
mit
Python
d2ec2b42244719c109caeeeb98f1470c3fa93a54
prepare 2.3.32
openprocurement/openprocurement.tender.openeu
setup.py
setup.py
from setuptools import setup, find_packages import os version = '2.3.32' requires = [ 'setuptools', 'openprocurement.api>=2.3', 'openprocurement.tender.openua' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_po...
from setuptools import setup, find_packages import os version = '2.3.31' requires = [ 'setuptools', 'openprocurement.api>=2.3', 'openprocurement.tender.openua' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_po...
apache-2.0
Python
9e43e7da4b61a0e57fc73e3cf14c79a14a6017dc
Bump version
AASHE/iss
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='iss', version='2.8', description="Ideally Single Source app for MemberSuite data.", author='AASHE',...
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='iss', version='2.7.2', description="Ideally Single Source app for MemberSuite data.", author='AASHE...
mit
Python
bd9b16c6eef51d2f9cb396d76164343aac0b5d94
modify describe string
cwyark/micropython-uaioftp
setup.py
setup.py
import sys # Remove current dir from sys.path, otherwise setuptools will peek up our # module instead of system's. sys.path.pop(0) from setuptools import setup sys.path.append("..") setup(name='micropython-uaioftp', version='0.9.0', description='Lightweight ftp asyncio library for MicroPython.', long...
import sys # Remove current dir from sys.path, otherwise setuptools will peek up our # module instead of system's. sys.path.pop(0) from setuptools import setup sys.path.append("..") setup(name='micropython-uaioftp', version='0.9.0', description='Lightweight ftp library for MicroPython.', long_descrip...
mit
Python
9320f92f6942b349ef25e66c18cab2400b416638
Include scripts in package
mpkato/mobileclick,mpkato/mobileclick
setup.py
setup.py
# -*- coding:utf-8 -*- from setuptools import setup setup( name = "mobileclick", description = "mobileclick provides baseline methods and utility scripts for the NTCIR-12 MobileClick-2 task", author = "Makoto P. Kato", author_email = "kato@dl.kuis.kyoto-u.ac.jp", license = "MIT Lice...
# -*- coding:utf-8 -*- from setuptools import setup setup( name = "mobileclick", description = "mobileclick provides baseline methods and utility scripts for the NTCIR-12 MobileClick-2 task", author = "Makoto P. Kato", author_email = "kato@dl.kuis.kyoto-u.ac.jp", license = "MIT Lice...
mit
Python
4d8556dbbf3102219dc32ca35c0b9ace7d9ab9e6
update the version to 0.6.17.
bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS
setup.py
setup.py
#!/usr/bin/env python2 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.17', keywords=('torcms', 'tornado', 'cms',), ...
#!/usr/bin/env python2 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.16', keywords=('torcms', 'tornado', 'cms',), ...
mit
Python
0cc8684ad75be77569f12fcef479bf13ba4c5d55
update setup : add keyword
marcogiusti/django-nvd3,areski/django-nvd3,lgp171188/django-nvd3,chiu/django-nvd3,areski/django-nvd3,lgp171188/django-nvd3,areski/django-nvd3,lgp171188/django-nvd3,chiu/django-nvd3,chiu/django-nvd3
setup.py
setup.py
from setuptools import setup, find_packages import nvd3 import os import re def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() README = read('README.rst') def parse_requirements(file_name): requirements = [] for line in open(file_name, 'r').read().split('\n'): i...
from setuptools import setup, find_packages import nvd3 import os import re def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() README = read('README.rst') def parse_requirements(file_name): requirements = [] for line in open(file_name, 'r').read().split('\n'): i...
mit
Python
0ffeef5b7bbd483b560de3d97e743d4437525545
Bump to beta1 for release.
klmitch/turnstile
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup def readreq(filename): result = [] with open(filename) as f: for req in f: req = req.partition('#')[0].strip() if not req: continue result.append(req) return result def readfile(fil...
#!/usr/bin/env python import os from setuptools import setup def readreq(filename): result = [] with open(filename) as f: for req in f: req = req.partition('#')[0].strip() if not req: continue result.append(req) return result def readfile(fil...
apache-2.0
Python
bcbcf4bf062c9107e42885d5756f9c531ecfa2dd
fix package settings
Infranology/django-ifgy-login
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-ifgy-login', version='0.1', packages=['ifgy_login'...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-ifgy-login', version='0.1', packages=['ifgy_login'...
bsd-3-clause
Python
bbae286480ac9294b096b09bb40d268f4e822de3
remove tulip.http from setup.py
haypo/trollius,fallen/asyncio,gsb-eng/asyncio,vxgmichel/asyncio,1st1/asyncio,1st1/asyncio,manipopopo/asyncio,vxgmichel/asyncio,ajdavis/asyncio,Martiusweb/asyncio,ajdavis/asyncio,gsb-eng/asyncio,gvanrossum/asyncio,manipopopo/asyncio,ajdavis/asyncio,manipopopo/asyncio,fallen/asyncio,haypo/trollius,Martiusweb/asyncio,vxgm...
setup.py
setup.py
import os from distutils.core import setup, Extension extensions = [] if os.name == 'nt': ext = Extension('_overlapped', ['overlapped.c'], libraries=['ws2_32']) extensions.append(ext) setup(name='tulip', description="reference implementation of PEP 3156", url='http://www.python.org/dev/peps/pep-31...
import os from distutils.core import setup, Extension extensions = [] if os.name == 'nt': ext = Extension('_overlapped', ['overlapped.c'], libraries=['ws2_32']) extensions.append(ext) setup(name='tulip', description="reference implementation of PEP 3156", url='http://www.python.org/dev/peps/pep-31...
apache-2.0
Python
7e45e797f11083f58765f0bc48ce512d7c10c663
Enforce minimum width
tobi-wan-kenobi/bumblebee-status,tobi-wan-kenobi/bumblebee-status
bumblebee/modules/cpu.py
bumblebee/modules/cpu.py
# pylint: disable=C0111,R0903 """Displays CPU utilization across all CPUs. Parameters: * cpu.warning : Warning threshold in % of CPU usage (defaults to 70%) * cpu.critical: Critical threshold in % of CPU usage (defaults to 80%) """ try: import psutil except ImportError: pass import bumblebee.input i...
# pylint: disable=C0111,R0903 """Displays CPU utilization across all CPUs. Parameters: * cpu.warning : Warning threshold in % of CPU usage (defaults to 70%) * cpu.critical: Critical threshold in % of CPU usage (defaults to 80%) """ try: import psutil except ImportError: pass import bumblebee.input i...
mit
Python
be8ae99b4bb8162b77e44f3bec4b6acf4c2fa41f
fix typo
minamorl/flicktor
setup.py
setup.py
from setuptools import setup, find_packages setup( name="tw", version="0.0.1", packages=find_packages(), entry_points={ 'console_scripts': ['tw = flicktor.__main__:main'] }, author='minamorl', author_email='minamorl@users.noreply.github.com', install_requires=[ 'staccato...
from setuptools import setup, find_packages setup( name="tw", version="0.0.1", packages=find_packages(), entry_points={ 'console_scripts': ['tw = flicktor.__main__:main'] }, author='minamorl', author_email='minamorl@users.noreply.github.com', install_requires=[ 'staccato...
mit
Python
0b61c44e32d13c6bebd47d4fa7cd6922a7bd8da4
bump version since i'm unable to remove 0.2.0 from pypi
caot/sas7bdat
setup.py
setup.py
#!/usr/bin/env python import sys from distutils.core import setup if sys.version_info < (2, 6): print "Sorry, this module only works on 2.6+" sys.exit(1) setup(name='sas7bdat', version='0.2.1', author='Jared Hobbs', author_email='jared@pyhacker.com', license='MIT', url='http://...
#!/usr/bin/env python import sys from distutils.core import setup if sys.version_info < (2, 6): print "Sorry, this module only works on 2.6+" sys.exit(1) setup(name='sas7bdat', version='0.2.0', author='Jared Hobbs', author_email='jared@pyhacker.com', license='MIT', url='http://...
mit
Python
d8146614d3868cc5213433b98a64d5c66a82600d
install requires minimum version added
JukeboxPipeline/jukeboxmaya,JukeboxPipeline/jukeboxmaya
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function from setuptools import setup from setuptools import find_packages from setuptools.command.test import test as TestCommand import io import os import sys here = os.path.abspath(os.path.dirname(__file__)) def read(*filenames, **kwargs): encoding = kwarg...
#!/usr/bin/env python from __future__ import print_function from setuptools import setup from setuptools import find_packages from setuptools.command.test import test as TestCommand import io import os import sys here = os.path.abspath(os.path.dirname(__file__)) def read(*filenames, **kwargs): encoding = kwarg...
bsd-3-clause
Python
f4a86097663fa57f1fdc6a26aab246c57c0ef160
fix for vacancy
opencivicdata/scrapers-ca,opencivicdata/scrapers-ca
ca_qc_brossard/people.py
ca_qc_brossard/people.py
from __future__ import unicode_literals from utils import CanadianScraper, CanadianPerson as Person import re COUNCIL_PAGE = 'http://www.ville.brossard.qc.ca/Ma-ville/conseil-municipal.aspx?lang=en-CA' CONTACT_PAGE = 'http://www.ville.brossard.qc.ca/Ma-ville/conseil-municipal/Municipal-council/Municipal-council-membe...
from __future__ import unicode_literals from utils import CanadianScraper, CanadianPerson as Person import re COUNCIL_PAGE = 'http://www.ville.brossard.qc.ca/Ma-ville/conseil-municipal.aspx?lang=en-CA' CONTACT_PAGE = 'http://www.ville.brossard.qc.ca/Ma-ville/conseil-municipal/Municipal-council/Municipal-council-membe...
mit
Python
6fadfb887fea2bd1b5427f95f731fe5fef3431a7
bump up version
BBBSnowball/ctemplate-python,BBBSnowball/ctemplate-python
setup.py
setup.py
from distutils.core import setup, Extension module1 = Extension('ctemplate', sources = ['src/ctemplate.cpp'], libraries = ["ctemplate", "pthread"]) myname = "Bastian Kleineidam" myemail = "calvin@debian.org" setup (name = 'python-ctemplate', version = '0.2', desc...
from distutils.core import setup, Extension module1 = Extension('ctemplate', sources = ['src/ctemplate.cpp'], libraries = ["ctemplate", "pthread"]) myname = "Bastian Kleineidam" myemail = "calvin@debian.org" setup (name = 'python-ctemplate', version = '0.1', desc...
bsd-3-clause
Python
b9499196f4f919136cd730ae36df257c9f0a225d
fix merge conflict
NLeSC/noodles,NLeSC/noodles,NLeSC/noodles
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from os import path from codecs import open 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='Noodles', v...
#!/usr/bin/env python from setuptools import setup from os import path from codecs import open 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='Noodles', v...
apache-2.0
Python
0b2dba4b31136ac4cc5174209563b8948ca7621a
bump version
cyberdelia/astrolabe,cyberdelia/astrolabe
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.rst') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='astrolabe', version='0.2.1', description='Fast, high resolution timer library for recording performance metrics.', lo...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.rst') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='astrolabe', version='0.2.0', description='Fast, high resolution timer library for recording performance metrics.', lo...
mit
Python
57acb342809ae99dd0f4450e9ee4fc7a17060e7c
Change 'download_url'
TiagoBras/audio-clip-extractor,TiagoBras/audio-clip-extractor
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() raise IOError("Error: 'VERSION' file not found.") setup( name='audioclipextractor', version=versio...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def version(): with open('VERSION') as f: return f.read().strip() raise IOError("Error: 'VERSION' file not found.") setup( name='audioclipextractor', version=versio...
mit
Python
e024abc3204a27e58f20fe47a23158295b464d5f
Remove numpy/scipy from setup.py to fix readthedocs
crcollins/molml
setup.py
setup.py
#!/usr/bin/env python # http://stackoverflow.com/questions/9810603/adding-install-requires-to-setup-py-when-making-a-python-package try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc try: LONG_DESCRIPTION = pypandoc.convert('README.md', ...
#!/usr/bin/env python # http://stackoverflow.com/questions/9810603/adding-install-requires-to-setup-py-when-making-a-python-package try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc try: LONG_DESCRIPTION = pypandoc.convert('README.md', ...
mit
Python
bd7db84844b0e9e64c9d4d7e8660748c51aee176
Fix name for Babel requirement in setup.py
lucius-feng/tg2,lucius-feng/tg2
setup.py
setup.py
# -*- coding: UTF-8 -*- from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import sys, os if sys.version_info < (2, 4): raise SystemExit("Python 2.4 or later is required") execfile(os.path.join("tg", "release.py")) setup( name='TurboGears2', version=versio...
# -*- coding: UTF-8 -*- from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import sys, os if sys.version_info < (2, 4): raise SystemExit("Python 2.4 or later is required") execfile(os.path.join("tg", "release.py")) setup( name='TurboGears2', version=versio...
mit
Python
faac3b2c3dfa3f1808d9e197249504868557070d
fix license
sdague/arwn,sdague/arwn
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pyy...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pyy...
apache-2.0
Python
abce6b272e2038af283b04ff5efe389c0d43abbb
update setup
peerchemist/peercoin_rpc
setup.py
setup.py
from setuptools import setup from os import path classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Financial and Insurance Industry', 'Programming Language :: Python', 'Operating System :: OS Independent', 'Natural Language :: English', 'License :: OSI Approved :: MIT License' ] # re...
from setuptools import setup setup(name='peercoin_rpc', version='0.57', description='Library to communicate with peercoin daemon via JSON-RPC protocol.', url='https://github.com/peercoin/peercoin_rpc', author='Peerchemist', author_email='peerchemist@protonmail.ch', license='MIT', ...
mit
Python
080bcac02db74d10650a55d204559c665253c86a
add trove classifiers
jszakmeister/trac-backlog,jszakmeister/trac-backlog
setup.py
setup.py
from setuptools import setup import backlog PACKAGE = 'TracBacklog' setup( name = PACKAGE, version = backlog.get_version(), packages = ['backlog'], package_data = { 'backlog': [ 'htdocs/css/*.css', 'htdocs/img/*.png', 'htdocs/js/*.js', 'htdocs/js...
from setuptools import setup import backlog PACKAGE = 'TracBacklog' setup( name = PACKAGE, version = backlog.get_version(), packages = ['backlog'], package_data = { 'backlog': [ 'htdocs/css/*.css', 'htdocs/img/*.png', 'htdocs/js/*.js', 'htdocs/js...
bsd-3-clause
Python
a75cf0a4a7790eb106155c947af9612f15693b6e
Remove ctypes setup() dependency, already included in python >= 2.5 and it breaks pypi installs.
rasata/python-magic,rasata/python-magic,zyberdon/pymagicforandroickmaster,ssmail/python-magic,ssmail/python-magic,zyberdon/pymagicforandroickmaster
setup.py
setup.py
from setuptools import setup, Extension #from distutils.core import setup, Extension setup(name='python-magic', description='File type identification using libmagic', author='Adam Hupp', author_email='adam@hupp.org', url="http://github.com/ahupp/python-magic", version='0.4.0', py_mo...
from setuptools import setup, Extension #from distutils.core import setup, Extension setup(name='python-magic', description='File type identification using libmagic', author='Adam Hupp', author_email='adam@hupp.org', url="http://github.com/ahupp/python-magic", version='0.4.0', py_mo...
mit
Python
374c3439c8993fdd23594a7bbbc61fcde284ee1c
Fix broken b-tree in issue #226
UCBerkeleySETI/blimpy,UCBerkeleySETI/blimpy
setup.py
setup.py
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '2.0.24' with open("README.md", "r") as fh: long_description = fh.read() # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scri...
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '2.0.23' with open("README.md", "r") as fh: long_description = fh.read() # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scri...
bsd-3-clause
Python
ae16f10667440feefacf8e69aa25802384107481
Bump version to 0.11
andreroggeri/pynubank
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pynubank', version='0.11', url='https://github.com/andreroggeri/pynubank', author='André Roggeri Campos', author_email='a.roggeri.c@gmail.com', license='BSD', packages=['pynubank'], package_data={'pynubank': ['queries/*.g...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pynubank', version='0.10', url='https://github.com/andreroggeri/pynubank', author='André Roggeri Campos', author_email='a.roggeri.c@gmail.com', license='BSD', packages=['pynubank'], package_data={'pynubank': ['queries/*.g...
mit
Python
0eea8a69a5faf3976d17d460189036562a18f22d
Remove setuptools from install requirements
gerasim13/flask-cache,thadeusb/flask-cache,kazeeki/mezmorize,kazeeki/mezmorize,thadeusb/flask-cache,ordbogen/flask-cache,j-fuentes/flask-cache,alexey-sveshnikov/flask-cache,j-fuentes/flask-cache,alexey-sveshnikov/flask-cache,ordbogen/flask-cache,gerasim13/flask-cache
setup.py
setup.py
#!/usr/bin/env python """ Flask-Cache ----------- Adds cache support to your Flask application """ from setuptools import setup setup( name='Flask-Cache', version='0.7.2-dev', url='http://github.com/thadeusb/flask-cache', license='BSD', author='Thadeus Burgess', author_email='thadeusb@thadeu...
#!/usr/bin/env python """ Flask-Cache ----------- Adds cache support to your Flask application """ from setuptools import setup setup( name='Flask-Cache', version='0.7.1', url='http://github.com/thadeusb/flask-cache', license='BSD', author='Thadeus Burgess', author_email='thadeusb@thadeusb.c...
bsd-3-clause
Python
01dfe75c35611ef42199181da34ee658cb9ec17d
revert to old way
veltzer/pycmdtools
setup.py
setup.py
import setuptools import sys if not sys.version_info[0] == 3: sys.exit("Sorry, only python version 3 is supported") setuptools.setup( name='pycmdtools', version='0.0.49', description='pycmdtools is set of useful command line tools written in python', long_description='pycmdtools is set of useful c...
import setuptools import sys if not sys.version_info[0] == 3: sys.exit("Sorry, only python version 3 is supported") setuptools.setup( name='pycmdtools', version='0.0.48', description='pycmdtools is set of useful command line tools written in python', long_description='pycmdtools is set of useful c...
mit
Python
25e59e0d6a278e2adddfbdfda2f1bb067e49dd82
Bump version to 0.1.4.
moigagoo/swagger2markdown
setup.py
setup.py
from setuptools import setup def readme(): try: with open("README.rst") as f: return f.read() except IOError: pass setup( name="swagger2markdown", version="0.1.4", url="https://github.com/moigagoo/swagger2markdown", download_url="https://pypi.org/project/swagger2ma...
from setuptools import setup def readme(): try: with open("README.rst") as f: return f.read() except IOError: pass setup( name="swagger2markdown", version="0.1.3", url="https://github.com/moigagoo/swagger2markdown", download_url="https://pypi.org/project/swagger2ma...
mit
Python
6d26103e5f4b9dd5c80001e8698711d25ab371b0
Bump version to 0.18.1
thombashi/SimpleSQLite,thombashi/SimpleSQLite
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "introduction", "su...
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "introduction", "su...
mit
Python
95b75d17e1fff2f7c7f476025012a5ba52f4e9a2
Bump to version 0.6.16
craigahobbs/chisel
setup.py
setup.py
# # Copyright (C) 2012-2013 Craig Hobbs # # 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, ...
# # Copyright (C) 2012-2013 Craig Hobbs # # 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, ...
mit
Python
1bacecd0d4689c3a8f25cb0032b4303f9901740f
bump version to 1.3.3
bchew/dynamodump,bchew/dynamodump
setup.py
setup.py
import setuptools with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( name="dynamodump", version="1.3.3", author="Benny Chew", author_email="noreply@bennychew.com", description="Simple backup and restore for Amazon DynamoDB using AWS SDK for Pyth...
import setuptools with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( name="dynamodump", version="1.3.2", author="Benny Chew", author_email="noreply@bennychew.com", description="Simple backup and restore for Amazon DynamoDB using AWS SDK for Pyth...
mit
Python
5175932c13ff889435a7c6d01440776e5491e6dd
Make 'python3 setup.py test' work.
fallen/asyncio,fallen/asyncio,jashandeep-sohi/asyncio,manipopopo/asyncio,Martiusweb/asyncio,1st1/asyncio,Martiusweb/asyncio,haypo/trollius,gvanrossum/asyncio,gsb-eng/asyncio,manipopopo/asyncio,ajdavis/asyncio,gvanrossum/asyncio,gvanrossum/asyncio,gsb-eng/asyncio,fallen/asyncio,haypo/trollius,Martiusweb/asyncio,ajdavis/...
setup.py
setup.py
import os try: from setuptools import setup, Extension except ImportError: # Use distutils.core as a fallback. # We won't be able to build the Wheel file on Windows. from distutils.core import setup, Extension extensions = [] if os.name == 'nt': ext = Extension( 'asyncio._overlapped', ['ove...
import os try: from setuptools import setup, Extension except ImportError: # Use distutils.core as a fallback. # We won't be able to build the Wheel file on Windows. from distutils.core import setup, Extension extensions = [] if os.name == 'nt': ext = Extension( 'asyncio._overlapped', ['ove...
apache-2.0
Python
818ff1c493fcbcd3cbd9423fa16c2ea8419ec6f9
Increment version
ko-zu/psl
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages try: import pypandoc description = pypandoc.convert('README.md', 'rst') except: description = open('README.md').read() setup(name="publicsuffixlist", version="0.4.1", packages=["publicsuffixlist",], ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages try: import pypandoc description = pypandoc.convert('README.md', 'rst') except: description = open('README.md').read() setup(name="publicsuffixlist", version="0.4.0", packages=["publicsuffixlist",], ...
mpl-2.0
Python
541b89f6826531c8c814d028eb1fbae6198968dd
Bump version to 0.2.0
jsfehler/pytest-match-skip
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs import os from setuptools import setup def read(fname): file_path = os.path.join(os.path.dirname(__file__), fname) return codecs.open(file_path, encoding='utf-8').read() setup( name='pytest-match-skip', version='0.2.0', author='Joshua...
#!/usr/bin/env python # -*- coding: utf-8 -*- import codecs import os from setuptools import setup def read(fname): file_path = os.path.join(os.path.dirname(__file__), fname) return codecs.open(file_path, encoding='utf-8').read() setup( name='pytest-match-skip', version='0.1.2', author='Joshua...
mit
Python
86d17b1898b5654aeeb432722dcb599136376236
Allow pip to decide which version of doit to install
rbeagrie/wrapit
setup.py
setup.py
# Always prefer setuptools over distutils from setuptools import setup # 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.md'), encoding='utf-8') as f: long_descrip...
# Always prefer setuptools over distutils from setuptools import setup # 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.md'), encoding='utf-8') as f: long_descrip...
mit
Python
eb5c2c8cd5e7070391b594ca1b5481dfa568c4b2
bump the version number
michiya/django-pyodbc-azure
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup CLASSIFIERS=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Framework :: Django', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming L...
try: from setuptools import setup except ImportError: from distutils.core import setup CLASSIFIERS=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Framework :: Django', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming L...
bsd-3-clause
Python
a6d87b6e4dba63b0a74dc6173e90823bdb9fe070
Add install_requires packages, at version 0.1.17
MBARIMike/biofloat,MBARIMike/biofloat,biofloat/biofloat,biofloat/biofloat
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "biofloat", version = "0.1.17", packages = find_packages(), requires = ['Python (>=2.7)'], install_requires = [ 'beautifulsoup4>=4.4', 'coverage>=4', 'jupyter>=1.0.0', 'matplotlib', 'numpy>=1.10', ...
from setuptools import setup, find_packages setup( name = "biofloat", version = "0.1.1", packages = find_packages(), scripts = ['scripts/load_biofloat_cache.py'], # metadata for upload to PyPI author = "Mike McCann", author_email = "mccann@mbari.org", description = "Software for working...
mit
Python
745f65309a59b1a9046582277540e496d4447720
remove deps for Python<3.5
lektor/lektor,lektor/lektor,lektor/lektor,lektor/lektor
setup.py
setup.py
import io from setuptools import find_packages from setuptools import setup with io.open("README.md", "rt", encoding="utf8") as f: readme = f.read() tests_require = [ "pre-commit", "pylint", "pytest", "pytest-cov", "pytest-mock", "pytest-click", ] setup( name="Lektor", version="3...
import io from setuptools import find_packages from setuptools import setup with io.open("README.md", "rt", encoding="utf8") as f: readme = f.read() tests_require = [ "pre-commit", "pylint", "pytest", "pytest-cov", "pytest-mock", "pytest-click", ] setup( name="Lektor", version="3...
bsd-3-clause
Python
deab95c129b92ae67e11b44932d1f8e758905d49
Bump version number to 0.1.1
grucin/flask-arango
setup.py
setup.py
""" Flask-Arango ------------- Flask extension that provides integration with the Arango graph database using the pyArango library. Under initial development. """ from setuptools import setup setup( name='Flask-Arango', version='0.1.1', url='https://github.com/grucin/flask-arango', license='Apache L...
""" Flask-Arango ------------- Flask extension that provides integration with the Arango graph database using the pyArango library. Under initial development. """ from setuptools import setup setup( name='Flask-Arango', version='0.1.0', url='https://github.com/grucin/flask-arango', license='Apache L...
apache-2.0
Python
cf105d1256d8280a6dea6675ff06b80c7aaa959d
set 2.4 version
openprocurement/openprocurement.tender.openeu
setup.py
setup.py
from setuptools import setup, find_packages import os version = '2.4' requires = [ 'setuptools', 'openprocurement.api>=2.4', 'openprocurement.tender.openua>=2.4' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_...
from setuptools import setup, find_packages import os version = '2.3.30' requires = [ 'setuptools', 'openprocurement.api>=2.3', 'openprocurement.tender.openua' ] test_requires = requires + [ 'webtest', 'python-coveralls', ] docs_requires = requires + [ 'sphinxcontrib-httpdomain', ] entry_po...
apache-2.0
Python
8cf0e51aa6dd38e335c122987fcd24107a06989e
Bump version
danpalmer/django-google-charts,danpalmer/django-google-charts
setup.py
setup.py
from distutils.core import setup setup( name="django-google-charts", version="0.1.1", author="Dan Palmer", author_email="dan@danpalmer.me", packages=[ 'django_google_charts', 'django_google_charts.templatetags', ], url='http://danpalmer.me/projects/django-google-charts', ...
from distutils.core import setup setup( name="django-google-charts", version="0.1.0", author="Dan Palmer", author_email="dan@danpalmer.me", packages=[ 'django_google_charts', 'django_google_charts.templatetags', ], url='http://danpalmer.me/projects/django-google-charts', ...
mit
Python
c8098670357f2954ce4db2eb1fa9c7483c5f63d0
Add betterssl extra
psf/requests
setup.py
setup.py
#!/usr/bin/env python import os import sys import requests 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() packages = [ 'requests', 'requests.packages', 'requests.pa...
#!/usr/bin/env python import os import sys import requests 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() packages = [ 'requests', 'requests.packages', 'requests.pa...
apache-2.0
Python
4252523982d592f4f5a1cc95b8f3ae37f3dcbca6
Update pytest-mock requirement from <3.6,>=2.0 to >=2.0,<3.7 (#654)
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.11.2", 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.11.2", python_requires=">=3.6", author="Plumerai", author_email="opensource@plumerai.com", description="An Open Source Machine Learning Libra...
apache-2.0
Python
7ece3e4b06798ff99880e950410db5d2afad9e37
Clean up setup.py (#45)
Ecpy/ecpy_hqc_legacy,Ecpy/ecpy_hqc_legacy
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import os.path import sys sys.path.insert(0, os.path.abspath('.')) from exopy_hqc_legacy.version import __version__ def long_description(): """Read the project description from the README file. """ with open(os.p...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import os.path import sys sys.path.insert(0, os.path.abspath('.')) from exopy_hqc_legacy.version import __version__ def long_description(): """Read the project description from the README file. """ with open(os.p...
bsd-3-clause
Python
6f31683169469f7d7f05acc96b9bd2895d37800d
remove selenium form here as we don't use through here anymore
oisinmulvihill/docker-testingaids
setup.py
setup.py
# -*- coding: utf-8 -*- """ Setuptools script for testing-aids (testing.aid) """ import platform from setuptools import setup, find_packages Name = 'testing-aid' ProjectUrl = "" Version = "1.0.3" Author = '' AuthorEmail = '' Maintainer = '' Summary = 'Helpers for running docker containers as fixtures under py.test.'...
# -*- coding: utf-8 -*- """ Setuptools script for testing-aids (testing.aid) """ from setuptools import setup, find_packages Name = 'testing-aid' ProjectUrl = "" Version = "1.0.3" Author = '' AuthorEmail = '' Maintainer = '' Summary = 'Helpers for running docker containers as fixtures under py.test.' License = '' Des...
mit
Python
4ac7ef17442a030ef2c22967f28207982c43c191
remove install_requires section
AltSchool/dynamic-rest,sanoma/dynamic-rest,sanoma/dynamic-rest,AltSchool/dynamic-rest
setup.py
setup.py
from setuptools import setup import codecs import os import re PACKAGE_NAME = 'dynamic_rest' BASE_DIR = os.path.dirname(__file__) or "." VERSION = re.search('__version__ = "([^"]+)"', codecs.open("%s/%s/__init__.py" % (BASE_DIR, PACKAGE_NAME), encoding='utf-8').read()).group(1) setup( author="...
from setuptools import setup from pip.req import parse_requirements import codecs import os import re PACKAGE_NAME = 'dynamic_rest' BASE_DIR = os.path.dirname(__file__) or "." VERSION = re.search('__version__ = "([^"]+)"', codecs.open("%s/%s/__init__.py" % (BASE_DIR, PACKAGE_NAME), encoding='utf-8'...
mit
Python
42b32c88d49a16b48c9477a6d3451c6f44b09da6
update version
jlejeune/putio.py,cenkalti/putio.py,ripperdoc/putio.py
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='putio.py', version='2.3.2', author=u'Cenk Altı', author_email='cenkalti@gmail.com', url='http://github.com/cenkalti/putio.py', py_modules=['putio'], include_package_data=True, zip_safe=False, platforms='any', inst...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='putio.py', version='2.3.1', author=u'Cenk Altı', author_email='cenkalti@gmail.com', url='http://github.com/cenkalti/putio.py', py_modules=['putio'], include_package_data=True, zip_safe=False, platforms='any', inst...
mit
Python
696e51c6868e991c6c40338e42f432b156fc9f84
fix version in setup.py
tatterdemalion/django-nece
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as f: ld = f.read() long_description = ld.replace(ld[0:ld.find('nece?')], '') version = '0.4.8' description = "A content translation framework using Postgresql's jsonb" + \ " field in the background" url = 'https://github.com/tatte...
# -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as f: ld = f.read() long_description = ld.replace(ld[0:ld.find('nece?')], '') version = '0.4.7' description = "A content translation framework using Postgresql's jsonb" + \ " field in the background" url = 'https://github.com/tatte...
bsd-3-clause
Python
26f2833970cc93ea1dd9b62264203c17c5519b0c
Bump version
pterk/django-tcc,pterk/django-tcc,pterk/django-tcc
setup.py
setup.py
from setuptools import setup, find_packages setup( name='tcc', version="0.6", description="Simple but effective comments app", #long_description=open('readme').read(), keywords='', author='Peter van Kampen', author_email='pterk@datatailors.com', url='', license='BSD', packages=...
from setuptools import setup, find_packages setup( name='tcc', version="0.5", description="Simple but effective comments app", #long_description=open('readme').read(), keywords='', author='Peter van Kampen', author_email='pterk@datatailors.com', url='', license='BSD', packages=...
mit
Python
22a92b4c987618e6d239efe5cebaecba406f49c0
Fix tests_require option
kontza/sigal,kontza/sigal,kontza/sigal
setup.py
setup.py
import os import sys from setuptools import setup, find_packages if sys.version_info[:2] < (3, 5): sys.exit('Sigal supports Python 3.5+ only') with open('README.rst') as f: README = f.read() # Load package meta from the pkgmeta module without loading the package. pkgmeta = {} pkgmeta_file = os.path.join(os.p...
import os import sys from setuptools import setup, find_packages if sys.version_info[:2] < (3, 5): sys.exit('Sigal supports Python 3.5+ only') with open('README.rst') as f: README = f.read() # Load package meta from the pkgmeta module without loading the package. pkgmeta = {} pkgmeta_file = os.path.join(os.p...
mit
Python
22f0e9d26791cd987a638b528de5822a011cdc92
modifica setup.py
WRinnovation/django-weasy-cache
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-weasy-cache', version='0.1dev', packages=['djangoweasycache', ], requires=['python (>= 2.7)', 'django (>=1.8)'], license='Apache2', long_description=open('README.txt').read(), keywords='django simple cache', )
from distutils.core import setup setup( name='django-weasy-cache', version='0.1dev', packages=['djangoweasycache', ], requires=['python (>= 2.7)', 'django (>=1.8)'], license='Creative Commons Attribution-Noncommercial-Share Alike license', long_description=open('README.txt').read(), )
apache-2.0
Python
bb0d060c6b4ce289ef43d4046f63e34d47146df1
Remove unused pyyaml requirement
striglia/pyramid_swagger,analogue/pyramid_swagger,striglia/pyramid_swagger
setup.py
setup.py
import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) about = {} with open(os.path.join(base_dir, "pyramid_swagger", "__about__.py")) as f: exec(f.read(), about) with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() setu...
import os from setuptools import find_packages from setuptools import setup base_dir = os.path.dirname(__file__) about = {} with open(os.path.join(base_dir, "pyramid_swagger", "__about__.py")) as f: exec(f.read(), about) with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() setu...
bsd-3-clause
Python
28ac6d69dc279b81ec128243645e0817d04b664f
add cltk to reqs, cleanup
marpozzi/cltk,LBenzahia/cltk,mbevila/cltk,eamonnbell/cltk,TylerKirby/cltk,LBenzahia/cltk,D-K-E/cltk,diyclassics/cltk,kylepjohnson/cltk,cltk/cltk,TylerKirby/cltk,coderbhupendra/cltk
setup.py
setup.py
"""Config for PyPI""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Development Status :: 1 - Planning', 'Environment :: Console', 'Intended Audience :: Education', '...
"""Config for PyPI""" from setuptools import find_packages from setuptools import setup setup( author='Kyle P. Johnson', author_email='kyle@kyle-p-johnson.com', classifiers=[ 'Development Status :: 1 - Planning', 'Environment :: Console', 'Intended Audience :: Education', '...
mit
Python
3db0734cba6b082f4ac17bdd6f6c1ef399d05767
bump version to 0.1.0
mkuznets/PyVK
setup.py
setup.py
from setuptools import setup setup( name='pyvk', version='0.1.0', platforms='any', packages=['pyvk'], install_requires=[ 'requests', 'lxml', 'appdirs', ], author='Max Kuznetsov', author_email='maks.kuznetsov@gmail.com', description='VK API for Python', ...
from setuptools import setup setup( name='pyvk', version='0.0.1', platforms='any', packages=['pyvk'], install_requires=[ 'requests', 'lxml', 'appdirs', ], author='Max Kuznetsov', author_email='maks.kuznetsov@gmail.com', description='VK API for Python', ...
mit
Python
b937fbc4c3aa75ce9127c3e643ca85c11e4b704d
bump version
elegantandrogyne/rpi2casterd
setup.py
setup.py
"""rpi2casterd setup: this software SHOULD be installed on a Raspberry Pi.""" from setuptools import setup __version__ = '2.5.1' __author__ = 'Christophe Catherine Slychan' __author_email__ = 'krzysztof.slychan@gmail.com' __github_url__ = 'http://github.com/elegantandrogyne/rpi2casterd' __dependencies__ = ['gpiozero >...
"""rpi2casterd setup: this software SHOULD be installed on a Raspberry Pi.""" from setuptools import setup __version__ = '2.5.0' __author__ = 'Christophe Catherine Slychan' __author_email__ = 'krzysztof.slychan@gmail.com' __github_url__ = 'http://github.com/elegantandrogyne/rpi2casterd' __dependencies__ = ['gpiozero >...
mit
Python
f1ec4725d6a1e48c14df10161936afaef98859f3
Bump version and update project description
Contraz/demosys-py
setup.py
setup.py
from setuptools import setup setup( name="demosys-py", version="0.3.9", description="Modern OpenGL 4.1+ Framework inspired by Django", long_description=open('README.rst').read(), url="https://github.com/Contraz/demosys-py", author="Einar Forselv", author_email="eforselv@gmail.com", main...
from setuptools import setup setup( name="demosys-py", version="0.3.8", description="Modern OpenGL 4.1+ Prototype Framework inspired by Django", long_description=open('README.rst').read(), url="https://github.com/Contraz/demosys-py", author="Einar Forselv", author_email="eforselv@gmail.com"...
isc
Python
8fe41a0a839e4df1d1f872e4abb0121d29f63cc4
Update setup.py with new version number
Carroll-Lab/scram
setup.py
setup.py
''' Created on 27 May 2016 @author: steve ''' from setuptools import setup setup(name='scram', version='0.5.0', description=' Small Complementary RnA Mapper', url='https://github.com/Carroll-Lab/scram', author='Stephen Fletcher', author_email='s.fletcher@uq.edu.au', license='MIT', ...
''' Created on 27 May 2016 @author: steve ''' from setuptools import setup setup(name='scram', version='0.5', description=' Small Complementary RnA Mapper', url='https://github.com/Carroll-Lab/scram', author='Stephen Fletcher', author_email='s.fletcher@uq.edu.au', license='MIT', ...
mit
Python
21406ca24f3f5081ac1286418befef2661b680d9
Change boto version
hagbarddenstore/cfn
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="cfn", version="0.0.1", description="Small script to manipulate AWS CloudFor...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__FILE__)) with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="cfn", version="0.0.1", description="Small script to manipulate AWS CloudFor...
mit
Python
28d9d5c8ac39c09d190cb02313dfc8dc80e9bfb2
版本1.1.2
caojinlong/ctec-thrift-client
setup.py
setup.py
import setuptools version = '1.1.2' setuptools.setup( name='ctec_thrift_client', version=version, packages=['ctec_thrift_client'], author='CaoJinlong, ZhangZhaoyuan', author_email='caojl@chinatelecom.cn,zhangzhy@chinatelecom.cn', url='http://www.189.cn', descrip...
import setuptools version = '1.1.1' setuptools.setup( name='ctec_thrift_client', version=version, packages=['ctec_thrift_client'], author='CaoJinlong, ZhangZhaoyuan', author_email='caojl@chinatelecom.cn,zhangzhy@chinatelecom.cn', url='http://www.189.cn', descrip...
bsd-3-clause
Python
bbc98f3ed2c0716e778089061f9494e2afadef85
bump version to 1.5.4
qbicsoftware/dropboxhandler,aseyboldt/dropboxhandler,aseyboldt/dropboxhandler,qbicsoftware/dropboxhandler
setup.py
setup.py
from setuptools import setup import sys install_requires = ['PyYAML', 'logutils'] if sys.version_info < (2, 7): install_requires.append("argparse") if sys.version_info < (3, 2): install_requires.append('futures') setup( name='dropboxhandler', version='1.5.4', author='Adrian Seyboldt', author_...
from setuptools import setup import sys install_requires = ['PyYAML', 'logutils'] if sys.version_info < (2, 7): install_requires.append("argparse") if sys.version_info < (3, 2): install_requires.append('futures') setup( name='dropboxhandler', version='1.5.3', author='Adrian Seyboldt', author_...
mit
Python
45cc2d469b74d462993eac5bacb560e40696da9b
Bump version to 1.0.0.
tsouvarev/python-user-agents,selwin/python-user-agents,FloorLamp/python-user-agents,glogiotatidis/python-user-agents
setup.py
setup.py
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='user-agents', version='1.0.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['user_agents'], url='https://github.com/selwin/python-user-agents', license='MIT', description='A library to identify ...
# -*- coding: utf-8 -*- from distutils.core import setup setup( name='user-agents', version='0.3.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['user_agents'], url='https://github.com/selwin/python-user-agents', license='MIT', description='A library to identify ...
mit
Python
c70364744a1cb5c49cdbcf95ec8270957f607423
Update exclude setup rule
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys from setuptools.command.test import test as TestCommand # Pytest class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['tests', '--ignore', 'te...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys from setuptools.command.test import test as TestCommand # Pytest class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['tests', '--ignore', 'te...
agpl-3.0
Python
a71bb118588aa3b41612f01ff2a97ea10303a77a
Update more hard-coded references to the nxprdlib path in the module setup file, and bump revision to 1.3.2
AlterCodex/nxppy,tuvaergun/nxppy,Schoberm/nxppy,Schoberm/nxppy,tuvaergun/nxppy,AlterCodex/nxppy,AlterCodex/nxppy,Schoberm/nxppy,tuvaergun/nxppy
setup.py
setup.py
from setuptools import setup from distutils.core import Extension from distutils.command.build import build import os from subprocess import call import multiprocessing from glob import glob class build_nxppy(build): def run(self): def compile(): call( './get_nxpRdLib.sh', shell=True ) ...
from setuptools import setup from distutils.core import Extension from distutils.command.build import build import os from subprocess import call import multiprocessing class build_nxppy(build): def run(self): def compile(): call( './get_nxpRdLib.sh', shell=True ) self.execute(compile,...
mit
Python
f318488a97ec064396dbc56c7122e8cb5563a7d0
Fix missing repo in setup.py
Zluurk/pypeman,mhcomm/pypeman,Zluurk/pypeman,Zluurk/pypeman,jrmi/pypeman,mhcomm/pypeman,mhcomm/pypeman,jrmi/pypeman,jrmi/pypeman
setup.py
setup.py
from setuptools import setup from importlib import import_module VERSION = import_module("pypeman").__version__ URL = import_module("pypeman").__url__ setup(name='pypeman', version=VERSION, description='Minimalistic but pragmatic ESB / ETL / EAI in Python', classifiers=[ 'Development Statu...
from setuptools import setup from importlib import import_module VERSION = import_module("pypeman").__version__ URL = import_module("pypeman").__url__ setup(name='pypeman', version=VERSION, description='Minimalistic but pragmatic ESB / ETL / EAI in Python', classifiers=[ 'Development Statu...
apache-2.0
Python
0343610a1468d5c02c198b93c9dcadd34c36f734
set right Python version
oVirt/ovirt-engine-cli,oVirt/ovirt-engine-cli
setup.py
setup.py
import os import sys from distutils.command.build import build from setuptools import setup, Command version_info = { 'name': 'ovirt-shell', 'version': '1.0-SNAPSHOT', 'description': 'A command-line interface to oVirt' ' Virtualization', 'author': 'Unknown', 'author_email': 'e...
import os import sys from distutils.command.build import build from setuptools import setup, Command version_info = { 'name': 'ovirt-shell', 'version': '1.0-SNAPSHOT', 'description': 'A command-line interface to oVirt' ' Virtualization', 'author': 'Unknown', 'author_email': 'e...
apache-2.0
Python
e659803615f586385ad10f3265600fe5efaef166
Bump version number.
debrouwere/google-analytics
setup.py
setup.py
from setuptools import setup, find_packages setup(name='googleanalytics', description='A wrapper for the Google Analytics API.', long_description=open('README.rst').read(), author='Stijn Debrouwere', author_email='stijn@debrouwere.org', url='https://github.com/debrouwere/google-analytics/', dow...
from setuptools import setup, find_packages setup(name='googleanalytics', description='A wrapper for the Google Analytics API.', long_description=open('README.rst').read(), author='Stijn Debrouwere', author_email='stijn@debrouwere.org', url='https://github.com/debrouwere/google-analytics/', dow...
isc
Python
bc68bea67f8888d547f96c9bb50692610cacfe8c
Bump version to 1.0.4
bdupharm/falcon-autocrud
setup.py
setup.py
from setuptools import setup version = '1.0.4' try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): long_description = open('README.md').read() setup(name='falcon-autocrud', version=version, description='Makes RESTful CRUD easier', ...
from setuptools import setup version = '1.0.3' try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): long_description = open('README.md').read() setup(name='falcon-autocrud', version=version, description='Makes RESTful CRUD easier', ...
mit
Python
b28840f1ba57a15657c835d81f092b59ed8b2e37
Fix long description
moccu/django-markymark,moccu/django-markymark,moccu/django-markymark
setup.py
setup.py
import codecs import os from setuptools import setup, find_packages def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() install_requirements = [ 'django>=1.5', 'markdown==2.5.2', 'django-filer==...
import codecs import os from setuptools import setup, find_packages def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() install_requirements = [ 'django>=1.5', 'markdown==2.5.2', 'django-filer==...
mit
Python
f29a0787beb75dd2b8e45f7e68b1bd3b561d494a
remove messy pip
shellphish/driller
setup.py
setup.py
from distutils.core import setup import subprocess #TRACER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/tracer.git#egg=tracer' #FUZZER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer' # #if subprocess.call(['pip', 'install', TRACER_URL]) != 0: # raise LibError("Unable to install tracer") #...
from distutils.core import setup import subprocess TRACER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/tracer.git#egg=tracer' FUZZER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer' if subprocess.call(['pip', 'install', TRACER_URL]) != 0: raise LibError("Unable to install tracer") if s...
bsd-2-clause
Python
0a016a8d08045a768dbdef7836700fde7ee531f8
Update setup.py (version 1.0.1)
Toilal/ordered-set,xsuchy/ordered-set,LuminosoInsight/ordered-set,hayd/ordered-set
setup.py
setup.py
from setuptools import setup setup( name="ordered-set", version = '1.0.1', maintainer='Luminoso Technologies, Inc.', maintainer_email='rob@luminoso.com', license = "MIT-LICENSE", url = 'http://github.com/LuminosoInsight/orderedset', platforms = ["any"], description = "A MutableSet that ...
from setuptools import setup import sys setup( name="ordered-set", version = '1.0', maintainer='Luminoso, LLC', maintainer_email='dev@lumino.so', license = "MIT-LICENSE", url = 'http://github.com/LuminosoInsight/orderedset', platforms = ["any"], description = "A MutableSet that remember...
mit
Python
b0269dbae82796cbd5bd17aadbcbdd74017a0acb
Fix version in setup.py.
its-dirg/svs
setup.py
setup.py
from setuptools.command.install import install as install_ from babel.messages.frontend import compile_catalog import pkg_resources from setuptools import setup class compile_all_catalogs(compile_catalog): """Inspired by http://pfacka.binaryparadise.com/articles/localization-of-webapplications-with-babel.html ...
from setuptools.command.install import install as install_ from babel.messages.frontend import compile_catalog import pkg_resources from setuptools import setup class compile_all_catalogs(compile_catalog): """Inspired by http://pfacka.binaryparadise.com/articles/localization-of-webapplications-with-babel.html ...
apache-2.0
Python
4c34229c2346e732242ee8581d34604ee565687b
Upgrade nydus. Version bump.
numan/sunspear
setup.py
setup.py
#!/usr/bin/python from setuptools import setup, find_packages tests_require=[ 'nose', 'mock', ] setup( name="sunspear", license='Apache License 2.0', version="0.1.3", description="Activity streams backed by Riak.", zip_safe=False, long_description=open('README.rst', 'r').read(), a...
#!/usr/bin/python from setuptools import setup, find_packages tests_require=[ 'nose', 'mock', ] setup( name="sunspear", license='Apache License 2.0', version="0.1.2", description="Activity streams backed by Riak.", zip_safe=False, long_description=open('README.rst', 'r').read(), a...
apache-2.0
Python
6b158187dda0c18688ad02d9de3dc3bb3f267799
bump sws dependencies
uw-it-aca/gradepage,uw-it-aca/gradepage,uw-it-aca/gradepage,uw-it-aca/gradepage
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup README = """ See the README on `GitHub <https://github.com/uw-it-aca/gradepage>`_. """ # The VERSION file is created by travis-ci, based on the tag name version_path = 'course_grader/VERSION' VERSION = open(os.path.join(os.path.dirname(__file__), version_p...
#!/usr/bin/env python import os from setuptools import setup README = """ See the README on `GitHub <https://github.com/uw-it-aca/gradepage>`_. """ # The VERSION file is created by travis-ci, based on the tag name version_path = 'course_grader/VERSION' VERSION = open(os.path.join(os.path.dirname(__file__), version_p...
apache-2.0
Python
a2b2bb58556b5a555621a97960f38d2dfc5a86ce
add support for python 3.10 (#55)
googleapis/python-private-catalog,googleapis/python-private-catalog
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2020 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...
# -*- coding: utf-8 -*- # Copyright 2020 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...
apache-2.0
Python
f2b0bb52e5dc94da2d0dbdbbe655956228bf1f22
Raise upper bound on pyflakes
lericson/flake8,wdv4758h/flake8
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup try: # Work around a traceback with Nose on Python 2.6 # http://bugs.python.org/issue15881#msg170215 __import__('multiprocessing') except ImportError: pass try: # Use https://docs.python.org/3/library/unittes...
# -*- coding: utf-8 -*- from __future__ import with_statement from setuptools import setup try: # Work around a traceback with Nose on Python 2.6 # http://bugs.python.org/issue15881#msg170215 __import__('multiprocessing') except ImportError: pass try: # Use https://docs.python.org/3/library/unittes...
mit
Python
8c7f7049c49678bcfc835e71f1e0af0a72182dba
Update version
rakanalh/pocket-cli
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pocket-cli', version='0.1.5', author='Rakan Alhneiti', author_email='rakan.alhneiti@gmail.com', url='https://github.com/rakanalh/pocket-api', license='LICENSE', description='A terminal application for Pocket', long_description=op...
from setuptools import setup, find_packages setup( name='pocket-cli', version='0.1.4', author='Rakan Alhneiti', author_email='rakan.alhneiti@gmail.com', url='https://github.com/rakanalh/pocket-api', license='LICENSE', description='A terminal application for Pocket', long_description=op...
mit
Python
5db334fac528494006755703d4563fd08dbfc4b2
Switch to ruamel_yaml from conda by default
BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex
setup.py
setup.py
import sys from setuptools import setup # See https://stackoverflow.com/questions/19534896/enforcing-python-version-in-setup-py if sys.version_info < (3,6): sys.exit("Sorry, Python < 3.6 is not supported by Auspex.") setup( name='auspex', version='0.1', author='auspex Developers', package_dir={'':...
import sys from setuptools import setup # See https://stackoverflow.com/questions/19534896/enforcing-python-version-in-setup-py if sys.version_info < (3,6): sys.exit("Sorry, Python < 3.6 is not supported by Auspex.") setup( name='auspex', version='0.1', author='auspex Developers', package_dir={'':...
apache-2.0
Python
aa47df7ef5f571d9654dde856b41b4eb632e2f6a
Update Github URL
pennlabs/penn-sdk-python,pennlabs/penn-sdk-python
setup.py
setup.py
from setuptools import setup setup( name='PennSDK', description='Python tools for building Penn-related applications', url='https://github.com/pennlabs/penn-sdk-python', author='Penn Labs', author_email='pennappslabs@gmail.com', version='1.2', packages=['penn'], license='MIT', pack...
from setuptools import setup setup( name='PennSDK', description='Python tools for building Penn-related applications', url='https://github.com/pennappslabs/penn-sdk-python', author='Penn Labs', author_email='pennappslabs@gmail.com', version='1.2', packages=['penn'], license='MIT', ...
mit
Python
cbce44db91d88f334175fdf80be9b03710c2ca7a
Bump version
mozilla/build-runner,mozilla/build-runner
setup.py
setup.py
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup setup( name="runner", version="1.9", description="Task runner", author="Ch...
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup setup( name="runner", version="1.8", description="Task runner", author="Ch...
mpl-2.0
Python