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
3707d7d6db7ce3f3b8b7a40c486d15a6ec2f9207
Update for version 0.0.2
pioneers/python-grizzly,cduck/python-grizzly
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='grizzly', version='0.0.2', description='Grizzly Bear USB Drivers', author='Pioneers in Engineering', author_email='engineeringcoordinator@pioneers.berkeley.edu', url='http://www.github.com/pioneers/python-grizzly', ...
#!/usr/bin/env python from distutils.core import setup setup(name='Grizzly', version='0.0.1', description='Grizzly Bear USB Drivers', author='Pioneers in Engineering', author_email='engineeringcoordinator@pioneers.berkeley.edu', url='http://www.github.com/pioneers/python-grizzly', ...
apache-2.0
Python
a929910800588f1cbd210c6e81bdd176fa65208f
Include generated readme.rst text as long description
nkmathew/yasi-sexp-indenter,nkmathew/yasi-sexp-indenter
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup for yasi """ import yasi import io import sys import setuptools readme = '' with io.open('README.rst') as f: readme = f.read() setuptools.setup( name='yasi', version=yasi.__version__, description='A dialect aware s-expression indenter', lon...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup for yasi """ import yasi import sys import setuptools setuptools.setup( name='yasi', version=yasi.__version__, description='A dialect aware s-expression indenter', author='Mathew Ngetich', author_email='kipkoechmathew@gmail.com', downloa...
mit
Python
4254de878fbdda28a8eea5f559c69a3bb4338188
Bump version for release
tomo-otsuka/normalize,samv/normalize,hearsaycorp/normalize
setup.py
setup.py
from setuptools import find_packages, setup try: with open("README.rst", "ro") as readme: lines = [] for line in readme: lines.append(line) if "...and much more" in line: break long_description = "".join(lines) except: long_description = """ This...
from setuptools import find_packages, setup try: with open("README.rst", "ro") as readme: lines = [] for line in readme: lines.append(line) if "...and much more" in line: break long_description = "".join(lines) except: long_description = """ This...
mit
Python
3b9b440d17b0527c6a1d7d4d762faab35d528424
test setup
theislab/scanpy,theislab/scanpy
setup.py
setup.py
from setuptools import setup, find_packages from pathlib import Path import versioneer package_name = 'scanpy' req_path = Path('requires.txt') if not req_path.is_file(): req_path = Path(package_name + '.egg-info') / req_path with req_path.open() as requirements: requires = [l.strip() for l in requirements] p...
from setuptools import setup, find_packages from pathlib import Path import versioneer package_name = 'scanpy' req_path = Path('requires.txt') if not req_path.is_file(): req_path = Path(package_name + '.egg-info') / req_path with req_path.open() as requirements: requires = [l.strip() for l in requirements] w...
bsd-3-clause
Python
2706d3086eaff99538eacaafa58776393ab1f5d6
Make sure installation works locally
ccampbell/storm,liujiantong/storm
setup.py
setup.py
from setuptools import setup, find_packages from storm import version # magic setup( name='tornado-storm', version=version, description='A simple ORM for Tornado', author='Craig Campbell', author_email='iamcraigcampbell@gmail.com', url='https://github.com/ccampbell/storm', download_url='htt...
from setuptools import setup from storm import version # magic setup( name='tornado-storm', version=version, description='A simple ORM for Tornado', author='Craig Campbell', author_email='iamcraigcampbell@gmail.com', url='https://github.com/ccampbell/storm', download_url='https://github.com...
mit
Python
9b79335e33789d9cd3d0a6a54642c3c5f39c31b1
Update setup.py
bgyori/bioagents,sorgerlab/bioagents
setup.py
setup.py
from ez_setup import use_setuptools use_setuptools() from setuptools import setup def main(): setup(name='bioagents', version='0.0.1', description='Biological Reasoning Agents', long_description='Biological Reasoning Agents', author='Benjamin Gyori', author_email='...
from ez_setup import use_setuptools use_setuptools() from setuptools import setup def main(): setup(name='bioagents', version='0.0.1', description='Biological Reasoning Agents', long_description='Biological Reasoning Agents', author='Benjamin Gyori', author_email='...
bsd-2-clause
Python
c3c57e32ed4d036535f7da67067c21d3be2f2ed7
Add a long_description_content_type. Refs #55
OnroerendErfgoed/skosprovider_atramhasis
setup.py
setup.py
import os try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() packages = [ 'skosprovider_atramhasis' ] requires = [ 'skosprovider>=0.7.0', 'r...
import os try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() packages = [ 'skosprovider_atramhasis' ] requires = [ 'skosprovider>=0.7.0', 'r...
mit
Python
b050049ec102196da33ac5ca6f694010128bbb28
Update version.
texastribune/the-dp,texastribune/the-dp,texastribune/the-dp,texastribune/the-dp
setup.py
setup.py
from setuptools import setup setup( name='tx_highered', version='0.3.8.dev7', description='Django app for Texas higher education data', author='Texas Tribune', author_email='tech@texastribune.org', url='http://github.com/texastribune/tx_highered/', license='Apache Software License', ins...
from setuptools import setup setup( name='tx_highered', version='0.3.8.dev6', description='Django app for Texas higher education data', author='Texas Tribune', author_email='tech@texastribune.org', url='http://github.com/texastribune/tx_highered/', license='Apache Software License', ins...
apache-2.0
Python
44446d5043f1a1bf5c1ef3205409b5ee59f16eef
Bump version -> v0.7.1
nobita-isc/annotator-store,happybelly/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,openannotation/annotator-store,ningyifan/annotator-store
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'annotator', version = '0.7.1', packages = find_packages(), install_requires = [ 'Flask==0.8', 'pyes==0.16.0', 'PyJWT==0.1.4', 'nose==1.1.2', 'mock==0.8.0' ], # metadata for upload to PyPI au...
from setuptools import setup, find_packages setup( name = 'annotator', version = '0.7.0', packages = find_packages(), install_requires = [ 'Flask==0.8', 'pyes==0.16.0', 'PyJWT==0.1.4', 'nose==1.1.2', 'mock==0.8.0' ], # metadata for upload to PyPI au...
mit
Python
f5825ee59f069cba30d6ddc42268a9c4b3988a67
Bump version
lambdalisue/django-permission
setup.py
setup.py
# vim: set fileencoding=utf-8 : from setuptools import setup, find_packages version = '0.3.2' def read(filename): import os.path return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name="django-permission", version=version, description = "A enhanced permission system whic...
# vim: set fileencoding=utf-8 : from setuptools import setup, find_packages version = '0.3.1' def read(filename): import os.path return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name="django-permission", version=version, description = "A enhanced permission system whic...
mit
Python
90429214545fb3a29ae8fc75665d4567e56e2303
Bump version number
loles/pytest-subunit
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pytest-subunit', description=( 'pytest-subunit is a plugin for py.test which outputs tests' 'result in subunit format.' ), long_description="", version='0.0.7', license='Apache 2', author='Łukasz Oleś', au...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='pytest-subunit', description=( 'pytest-subunit is a plugin for py.test which outputs tests' 'result in subunit format.' ), long_description="", version='0.0.6', license='Apache 2', author='Łukasz Oleś', au...
apache-2.0
Python
0152ab04acd1a78bae546473cfc47e905b087837
fix pep8 violation
yosisa/TracBlockdiag
setup.py
setup.py
from setuptools import find_packages, setup version = '0.1.0' classifiers = [ 'Development Status :: 3 - Alpha', 'Intended Audience :: System Administrators' 'Programming Language :: Python', 'License :: OSI Approved :: MIT License', 'Framework :: Trac', 'Environment :: Plugins', ] setup(name...
from setuptools import find_packages, setup version = '0.1.0' classifiers = [ 'Development Status :: 3 - Alpha', 'Intended Audience :: System Administrators' 'Programming Language :: Python', 'License :: OSI Approved :: MIT License', 'Framework :: Trac', 'Environment :: Plugins', ] setup(name...
mit
Python
1e6f2f848b9626148fe506ecdd3073df01047689
update stix package dependency to 1.1.1.9
oasis-open/cti-stix-elevator,emmanvg/cti-stix-elevator
setup.py
setup.py
from os.path import abspath, dirname, join from setuptools import setup, find_packages CUR_DIR = dirname(abspath(__file__)) INIT_FILE = join(CUR_DIR, 'stix2elevator', '__init__.py') VERSION_FILE = join(CUR_DIR, 'stix2elevator', 'version.py') def get_version(): with open(VERSION_FILE) as f: for line in f:...
from os.path import abspath, dirname, join from setuptools import setup, find_packages CUR_DIR = dirname(abspath(__file__)) INIT_FILE = join(CUR_DIR, 'stix2elevator', '__init__.py') VERSION_FILE = join(CUR_DIR, 'stix2elevator', 'version.py') def get_version(): with open(VERSION_FILE) as f: for line in f:...
bsd-3-clause
Python
b770677538eb44de8589116cae067397db37a91c
Bump version
mph-/lcapy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages __version__ = '0.99dev' with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() tests_require = ['nose', 'flake8', 'flake8-bugbear', 'flake8-comprehensions', 'flake8-requirements'] setup(name='lcapy', version=__v...
#!/usr/bin/env python from setuptools import setup, find_packages __version__ = '0.98' with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() tests_require = ['nose', 'flake8', 'flake8-bugbear', 'flake8-comprehensions', 'flake8-requirements'] setup(name='lcapy', version=__vers...
lgpl-2.1
Python
9378824456aaca03a2e37098b3c8cfc680bad62a
Use setuptools for 'setup.py develop', with fallback to distutils
lipixun/haigha,vitaly-krugl/haigha,agoragames/haigha
setup.py
setup.py
import haigha import os try: from setuptools import setup except ImportError: from distutils.core import setup requirements = map(str.strip, open('requirements.txt').readlines()) setup( name='haigha', version=haigha.VERSION, author='Vitaly Babiy, Aaron Westendorf', author_email="vbabiy@agora...
import haigha import os from distutils.core import setup requirements = map(str.strip, open('requirements.txt').readlines()) setup( name='haigha', version=haigha.VERSION, author='Vitaly Babiy, Aaron Westendorf', author_email="vbabiy@agoragames.com, aaron@agoragames.com", packages = ['haigha', 'ha...
bsd-3-clause
Python
12605aa965d078482f2c324cd73b30ae394ae73b
Bump version
marosmars/odl-cfg-analysis
setup.py
setup.py
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='odl_cfg_analysis', version='0.1.1', description='Small utility visualizing ODLs config subsystem dependencies by parsing xml based config files', long_description=readme(), url='ht...
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='odl_cfg_analysis', version='0.1', description='Small utility visualizing ODLs config subsystem dependencies by parsing xml based config files', long_description=readme(), url='http...
apache-2.0
Python
a205a05754785df847877289e4b905617e679792
Corrige bug na indicação do pacote
scieloorg/packtools,gustavofonseca/packtools,scieloorg/packtools,gustavofonseca/packtools,scieloorg/packtools
setup.py
setup.py
#!/usr/bin/env python #coding:utf-8 from __future__ import unicode_literals from setuptools import setup import setuptools import codecs import sys if sys.version_info[0:2] < (2, 7): raise RuntimeError('Requires Python 2.7 or newer') # adds version to the local namespace VERSION = {} with open('packtools/versio...
#!/usr/bin/env python #coding:utf-8 from __future__ import unicode_literals from setuptools import setup import setuptools import codecs import sys if sys.version_info[0:2] < (2, 7): raise RuntimeError('Requires Python 2.7 or newer') # adds version to the local namespace VERSION = {} with open('packtools/versio...
bsd-2-clause
Python
dcba6e2e2b5ab1656b7348141006ba6747304e0d
Update reference.
Storj/storjtorrent
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # The MIT License (MIT) # # Copyright (c) 2014 Josh Brandoff # # 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 wi...
#!/usr/bin/env python # -*- coding: utf-8 -*- # The MIT License (MIT) # # Copyright (c) 2014 Josh Brandoff # # 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 wi...
mit
Python
bf0f21df700fd0fba75dee97c3a9a7adfba95e66
Update setup.py packages to include opt
PhasesResearchLab/ESPEI
setup.py
setup.py
from setuptools import setup import os import versioneer def readme(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='espei', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author='Brandon Bocklund', author_email='brandonbocklund@gma...
from setuptools import setup import os import versioneer def readme(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='espei', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author='Brandon Bocklund', author_email='brandonbocklund@gma...
mit
Python
8ee1f3a889a0b5343b89661727e3fe39a29756f7
Fix python 3.2 compatibility in setup.py
itziakos/haas,sjagoe/haas,itziakos/haas,scalative/haas,scalative/haas,sjagoe/haas
setup.py
setup.py
# Copyright 2013-2014 Simon Jagoe from __future__ import unicode_literals import os from setuptools import setup VERSION = '0.0.1dev1' def write_version_py(filename=None): if filename is None: filename = os.path.join(os.path.dirname(__file__), 'haas', 'version.py') ...
# Copyright 2013-2014 Simon Jagoe import os from setuptools import setup VERSION = u'0.0.1dev1' def write_version_py(filename=None): if filename is None: filename = os.path.join(os.path.dirname(__file__), 'haas', 'version.py') ver = u"""\ version = '{version}' """ ...
bsd-3-clause
Python
76ccb0b29e1ef716103419fc354391c0365c7bb9
Fix some syntax error in setup.py
cible/djangotribune,sveetch/djangotribune,cible/djangotribune,sveetch/djangotribune,mhb11/djangotribune,cible/djangotribune,mhb11/djangotribune,mhb11/djangotribune,mhb11/djangotribune,sveetch/djangotribune,cible/djangotribune,sveetch/djangotribune
setup.py
setup.py
from setuptools import setup, find_packages setup( name='djangotribune', version=__import__('djangotribune').__version__, description='Django-tribune is a chat-like application', long_description=open('README.rst').read(), author='David Thenon', author_email='sveetch@gmail.com', url='https:...
from setuptools import setup, find_packages setup( name='djangotribune', version=__import__('djangotribune').__version__, description='Django-tribune is a chat-like application', long_description=open('README.rst').read(), author='David Thenon', author_email='sveetch@gmail.com', url='https:...
mit
Python
5c1e62318731d28d6675789f477ac11f1c1d316f
bump version number so pip install --upgrade picks it up
internetarchive/surt
setup.py
setup.py
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_suite = True def run_tests(self): import pytest import sys cmdline = ' -v --doctest-m...
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_suite = True def run_tests(self): import pytest import sys cmdline = ' -v --doctest-m...
agpl-3.0
Python
2ab59009bb28e188612f4d1a24b47e876b28e80c
Bump version to 1.0.1
m4tx/gdrivedownload
setup.py
setup.py
from setuptools import setup from codecs import open from os import path base_path = path.abspath(path.dirname(__file__)) with open(path.join(base_path, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='gdrivedownload', version='1.0.1', description='Simple sc...
from setuptools import setup from codecs import open from os import path base_path = path.abspath(path.dirname(__file__)) with open(path.join(base_path, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='gdrivedownload', version='1.0.0', description='Simple sc...
mit
Python
b0de502cbb41366e028dcb2ecdd05b374ff5c795
Fix dependencies
skwashd/python-acquia-cloud
setup.py
setup.py
#!/usr/bin/env python """Setup ACAPI package.""" import os from setuptools import setup with open(os.path.join(os.path.dirname(__name__), 'README.rst')) as f: long_description = f.read() setup( name='acapi', version='0.4.6', description='Acquia Cloud API client.', long_description=long_descripti...
#!/usr/bin/env python """Setup ACAPI package.""" import os from setuptools import setup with open(os.path.join(os.path.dirname(__name__), 'README.rst')) as f: long_description = f.read() setup( name='acapi', version='0.4.5', description='Acquia Cloud API client.', long_description=long_descripti...
mit
Python
ea9189d7cd94bb0b0ad1a2d191d3b9c4e1803ad7
Fix installation
r0x0r/pywebview,r0x0r/pywebview,r0x0r/pywebview,r0x0r/pywebview,r0x0r/pywebview
setup.py
setup.py
import os import platform from setuptools import setup install_requires = [ 'pythonnet ; sys_platform == "win32"', 'pyobjc ; sys_platform == "darwin"', 'PyQt5 ; sys_platform == "openbsd6"', ] with open("README.md") as fh: long_description = fh.read() setup( name="pywebview", ...
import os import platform from setuptools import setup # install_requires = ['PyQt5'] if 'KDE_FULL_SESSION' in os.environ else ['PyGObject'] ''' extras_require = { ':sys_platform == "win32"': 'pythonnet', ':sys_platform == "darwin"': 'pyobjc', ':sys_platform == "openbsd6"': 'PyQt5', } '''...
bsd-3-clause
Python
a3736517d2611b603ce1a788d7f98397df2e3e7c
bump thriftrw
uber/tchannel-python,uber/tchannel-python
setup.py
setup.py
from setuptools import find_packages, setup setup( name='tchannel', version='0.17.3.dev0', author='Abhinav Gupta, Aiden Scandella, Bryce Lampe, Grayson Koonce, Junchao Wu', author_email='abg@uber.com', description='Network multiplexing and framing protocol for RPC', license='MIT', url='htt...
from setuptools import find_packages, setup setup( name='tchannel', version='0.17.3.dev0', author='Abhinav Gupta, Aiden Scandella, Bryce Lampe, Grayson Koonce, Junchao Wu', author_email='abg@uber.com', description='Network multiplexing and framing protocol for RPC', license='MIT', url='htt...
mit
Python
a21f458f923d09212b8378b3fa7278554c1ef386
Bump version number.
ProjetPP/PPP-QuestionParsing-Grammatical,ProjetPP/PPP-QuestionParsing-Grammatical
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_nlp_classical', version='0.2.4', description='Natural language processing module for the PPP.', url='https://github.com/ProjetPP/PPP-NLP-Classical', author='Projet Pensées Profondes', author_email='ppp2014@list...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_nlp_classical', version='0.2.3', description='Natural language processing module for the PPP.', url='https://github.com/ProjetPP/PPP-NLP-Classical', author='Projet Pensées Profondes', author_email='ppp2014@list...
agpl-3.0
Python
ded7dedb2573b3acbdadcb945adfdb28a19402af
Update version
jiasir/pytables,jiasir/pytables
setup.py
setup.py
import sys import os import shutil try: from setuptools import setup, find_packages except ImportError: print("pytables now needs setuptools in order to build. Install it using" " your package manager (usually python-setuptools) or via pip (pip" " install setuptools).") sys.exit(1) set...
import sys import os import shutil try: from setuptools import setup, find_packages except ImportError: print("pytables now needs setuptools in order to build. Install it using" " your package manager (usually python-setuptools) or via pip (pip" " install setuptools).") sys.exit(1) set...
mit
Python
72cba65ba01fb19f19623e743b430695a649d564
Bump version to 3.2
thomasyu888/Genie,thomasyu888/Genie,thomasyu888/Genie,thomasyu888/Genie
setup.py
setup.py
"""genie package setup""" from setuptools import setup, find_packages setup(name='aacrgenie', version='3.2', description='Processing and validation for GENIE', url='https://github.com/Sage-Bionetworks/Genie', author='Thomas Yu', author_email='thomas.yu@sagebionetworks.org', license=...
from setuptools import setup, find_packages setup(name='aacrgenie', version='1.6.2', description='Processing and validation for GENIE', url='https://github.com/Sage-Bionetworks/Genie', author='Thomas Yu', author_email='thomasyu888@gmail.com', license='MIT', packages=find_packa...
mit
Python
26627ccf361a99500c272d5772b895972c1f6c00
Update mock module version
torebutlin/cued_datalogger
setup.py
setup.py
from setuptools import setup import sys import subprocess from os.path import isfile try: from unittest.mock import MagicMock except: from mock import Mock as MagicMock class Mock(MagicMock): @classmethod def __getattr__(cls, name): return MagicMock() MOCK_MODULES = ['pyaudio', 'PyQt5', ...
from setuptools import setup import sys import subprocess from os.path import isfile import sys from unittest.mock import MagicMock class Mock(MagicMock): @classmethod def __getattr__(cls, name): return MagicMock() MOCK_MODULES = ['pyaudio', 'PyQt5', 'scipy'] sys.modules.update((mod_name, Mock())...
bsd-3-clause
Python
6cda6053fde521d2bd96938fa5495885493b330e
Update version to 1.0.1
pinax/pinax-testimonials
setup.py
setup.py
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Team", author_email="developers@pinaxproject.com", ...
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Team", author_email="developers@pinaxproject.com", ...
mit
Python
1cc218ca24574813408eb460b801fd0ecefe514b
Add version numbers to dependencies
richardbarran/django-mininews,richardbarran/django-mininews,richardbarran/django-minipub,richardbarran/django-minipub,richardbarran/django-mininews
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-mininews', version='0.1', packages=find_packages(exclude=['example_project']), license='MIT', description='Boilerplate for creating publishable lists of objects', long_description=open('README.rst').read(), install_requires=[ ...
from setuptools import setup, find_packages setup( name='django-mininews', version='0.1', packages=find_packages(exclude=['example_project']), license='MIT', description='Boilerplate for creating publishable lists of objects', long_description=open('README.rst').read(), install_requires=[ ...
mit
Python
ee5b58718e9f7163a3f7e7a293ada315f0d3c3b8
Bump version 1.2
henriquebastos/sqlformatter
setup.py
setup.py
# coding: utf-8 from setuptools import setup import os README = os.path.join(os.path.dirname(__file__), 'README.rst') REQUIREMENTS = os.path.join(os.path.dirname(__file__), 'requirements.txt') setup(name='sqlformatter', version='1.2', description='SQLFormatter: Beautiful colored SQL staments for logging'...
# coding: utf-8 from setuptools import setup import os README = os.path.join(os.path.dirname(__file__), 'README.rst') REQUIREMENTS = os.path.join(os.path.dirname(__file__), 'requirements.txt') setup(name='sqlformatter', version='1.1', description='SQLFormatter: Beautiful colored SQL staments for logging'...
mit
Python
3ac43402cbabc847141823411fe818af9295a3e8
Add more keywords to setup.py
jnrbsn/daemonocle
setup.py
setup.py
from setuptools import setup with open('README.rst', 'r') as f: long_description = f.read().split('\n\n-----\n\n', 1)[1].lstrip() with open('HISTORY.rst', 'r') as f: long_description += '\n' + f.read() setup( name='daemonocle', version='1.1.0.dev0', description='A Python library for creating supe...
from setuptools import setup with open('README.rst', 'r') as f: long_description = f.read().split('\n\n-----\n\n', 1)[1].lstrip() with open('HISTORY.rst', 'r') as f: long_description += '\n' + f.read() setup( name='daemonocle', version='1.1.0.dev0', description='A Python library for creating supe...
mit
Python
291175964b5b5203eab74dde9ad245c791d55250
bump version
PyO3/setuptools-rust,PyO3/setuptools-rust
setup.py
setup.py
from setuptools import setup version = '0.8.4' setup( name="setuptools-rust", version=version, author='Nikolay Kim', author_email='fafhrd91@gmail.com', url="https://github.com/PyO3/setuptools-rust", keywords='distutils setuptools rust', description="Setuptools rust extension plugin", ...
from setuptools import setup version = '0.8.3' setup( name="setuptools-rust", version=version, author='Nikolay Kim', author_email='fafhrd91@gmail.com', url="https://github.com/PyO3/setuptools-rust", keywords='distutils setuptools rust', description="Setuptools rust extension plugin", ...
mit
Python
e4a38858648d1d88e8966fe90873ee1bdc3a1898
Remove PySide from pip dependency
personalrobotics/dartpy,personalrobotics/dartpy,personalrobotics/dartpy
setup.py
setup.py
import contextlib import os import platform from codecs import open # To use a consistent encoding from setuptools import setup, Extension from setuptools.command.build_ext import build_ext # Get the current directory path. here = os.path.abspath(os.path.dirname(__file__)) # Extract the description from the top-leve...
import contextlib import os import platform from codecs import open # To use a consistent encoding from setuptools import setup, Extension from setuptools.command.build_ext import build_ext # Get the current directory path. here = os.path.abspath(os.path.dirname(__file__)) # Extract the description from the top-leve...
bsd-2-clause
Python
29c04a9a7c7fffaa285f2bc9d8ae92fd2facf77b
add classifiers information for setup.py
loggerhead/Easy-Karabiner
setup.py
setup.py
from setuptools import setup, find_packages from easy_karabiner.__version__ import __version__ setup( name='easy_karabiner', version=__version__, description='A tool to generate key remap configuration for Karabiner', author='loggerhead', author_email='i@loggerhead.me', url='https://github.com/...
from setuptools import setup, find_packages from easy_karabiner.__version__ import __version__ setup( name='easy_karabiner', version=__version__, description='A tool to generate key remap configuration for Karabiner', author='loggerhead', author_email='i@loggerhead.me', url='https://github.com/...
mit
Python
c3f2e888a573b9c8d0887c74ca0b06f6680c9591
Add 3.5 to setup.py tags
lucasplus/pelican,karlcow/pelican,ingwinlu/pelican,Scheirle/pelican,farseerfc/pelican,zackw/pelican,Rogdham/pelican,ehashman/pelican,talha131/pelican,ehashman/pelican,catdog2/pelican,karlcow/pelican,catdog2/pelican,douglaskastle/pelican,talha131/pelican,ehashman/pelican,ingwinlu/pelican,douglaskastle/pelican,GiovanniMo...
setup.py
setup.py
#!/usr/bin/env python from os import walk from os.path import join, relpath, dirname from setuptools import setup requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils', 'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4', 'python-dateutil'] entry_points = { 'console_s...
#!/usr/bin/env python from os import walk from os.path import join, relpath, dirname from setuptools import setup requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils', 'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4', 'python-dateutil'] entry_points = { 'console_s...
agpl-3.0
Python
93084771aa01e58c00d03d95d29e4b46c5fd0090
move to setuptools
chromy/cython_wrapper_example,chromy/cython_wrapper_example
setup.py
setup.py
import os import sys import sysconfig platform = sysconfig.get_platform() from setuptools import setup # Adapted from http://stackoverflow.com/questions/11010151 class lazy_list(list): def __init__(self, callback): self._list = None self.callback = callback @property def list(self): ...
import os import sys import sysconfig platform = sysconfig.get_platform() from distutils.core import setup, Extension # Adapted from http://stackoverflow.com/questions/11010151 class lazy_list(list): def __init__(self, callback): self._list = None self.callback = callback @property def lis...
mit
Python
f14817719c9e024857aeab1bdc4a7276fdad0856
Fix website url
tobiajo/tfyarn
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='yarntf', version='0.0.1.dev13', description='TensorFlow on YARN...
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='yarntf', version='0.0.1.dev12', description='TensorFlow on YARN...
apache-2.0
Python
88509c7c8c246bbcd26b0c228b7b5e13cf25e3b1
bump version for 17.2.0 release
zeroSteiner/boltons
setup.py
setup.py
"""Functionality that should be in the standard library. Like builtins, but Boltons. Otherwise known as, "everyone's util.py," but cleaned up and tested. Contains over 160 BSD-licensed utility types and functions that can be used as a package or independently. `Extensively documented on Read the Docs <http://boltons....
"""Functionality that should be in the standard library. Like builtins, but Boltons. Otherwise known as, "everyone's util.py," but cleaned up and tested. Contains over 160 BSD-licensed utility types and functions that can be used as a package or independently. `Extensively documented on Read the Docs <http://boltons....
bsd-3-clause
Python
be9bce632424a533819f77dc1fd8903e13c56364
remove redundant module imports
tonysimpson/Ni,tonysimpson/Ni,tonysimpson/Ni,tonysimpson/Ni,tonysimpson/Ni
setup.py
setup.py
#! /usr/bin/env python # $Id$ """Setup script for Psyco, the Python specializing compiler""" from distutils.core import setup from distutils.extension import Extension # This one is sufficient right now src = ["c/hack.c"] ############################################################################### setup ( name...
#! /usr/bin/env python # $Id$ """Setup script for Psyco, the Python specializing compiler""" import os, sys from distutils.core import setup from distutils.extension import Extension # This one is sufficient right now src = ["c/hack.c"] ##############################################################################...
mit
Python
e2d9738e728367cc6bd698c1057ce0c717f8429c
Change random version number
dans-er/resync,lindareijnhoudt/resync,dans-er/resync,resync/resync,lindareijnhoudt/resync
setup.py
setup.py
from distutils.core import setup setup( name='resync', version='0.1', packages=['resync',], license='Creative Commons Attribution-Noncommercial-Share Alike license', long_description=open('README.txt').read(), )
from distutils.core import setup setup( name='resync', version='0.1dev', packages=['resync',], license='Creative Commons Attribution-Noncommercial-Share Alike license', long_description=open('README.txt').read(), )
apache-2.0
Python
1051b2bb5311c6c0db78e10ac238c97b1e59e182
bump version
fooelisa/pyiosxr
setup.py
setup.py
#!/usr/bin/env python # coding=utf-8 """A module to interact with Cisco devices running IOS-XR.""" # Copyright 2015 Netflix. All rights reserved. # Copyright 2016 BigWaveIT. All rights reserved. # # The contents of this file are licensed under the Apache License, Version 2.0 # (the "License"); you may not use this fil...
#!/usr/bin/env python # coding=utf-8 """A module to interact with Cisco devices running IOS-XR.""" # Copyright 2015 Netflix. All rights reserved. # Copyright 2016 BigWaveIT. All rights reserved. # # The contents of this file are licensed under the Apache License, Version 2.0 # (the "License"); you may not use this fil...
apache-2.0
Python
ebf881722efbace25853dbd6685445c5b904ef28
Switch to setuptools.setup
maruel/python-adb,google/python-adb,erock2112/python-adb,erock2112/python-adb
setup.py
setup.py
# Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
# Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
apache-2.0
Python
1553ef9f9ede48a50b0e7ff66daf4a83ad71cb86
add mpi modules
structrans/Canon
setup.py
setup.py
import sys from setuptools import setup from setuptools.command.test import test as TestCommand import canon # noinspection PyAttributeOutsideInit class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_op...
import sys from setuptools import setup from setuptools.command.test import test as TestCommand import canon # noinspection PyAttributeOutsideInit class PyTest(TestCommand): user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] def initialize_options(self): TestCommand.initialize_op...
mit
Python
a35366f13203fb279fde4145ccbfef6667a5d9f0
Fix setup.py README and CHANGELOG separator
karenc/db-migrator
setup.py
setup.py
# -*- coding: utf-8 -*- # ### # Copyright (c) 2015, Rice University # This software is subject to the provisions of the GNU Affero General # Public License version 3 (AGPLv3). # See LICENCE.txt for details. # ### import sys from setuptools import setup, find_packages install_requires = ( 'psycopg2>=2.5', ) t...
# -*- coding: utf-8 -*- # ### # Copyright (c) 2015, Rice University # This software is subject to the provisions of the GNU Affero General # Public License version 3 (AGPLv3). # See LICENCE.txt for details. # ### import sys from setuptools import setup, find_packages install_requires = ( 'psycopg2>=2.5', ) t...
agpl-3.0
Python
718f2729ca8f6e80cd2aad79e528a364f89d9ddb
Fix setup.py.
twosigma/ngrid
setup.py
setup.py
from setuptools import setup, find_packages from os.path import abspath, dirname, join here = abspath(dirname(__file__)) with open(join(here, 'DESCRIPTION.rst')) as file: long_description = file.read() setup( name ='ngrid', version ='0.0.0', description ='less...
from setuptools import setup, find_packages from os.path import abspath, dirname, join here = abspath(dirname(__file__)) with open(join(here, 'DESCRIPTION.rst'), encoding='utf-8') as file: long_description = file.read() setup( name ='ngrid', version ='0.0.0', descript...
bsd-3-clause
Python
4b40bf348b7e6a91ae80974b7d6008dcc215d5ff
Remove trailing dots from URLs in setup.py
j-bennet/wharfee,j-bennet/wharfee
setup.py
setup.py
from wharfee.__init__ import __version__ try: from setuptools import setup except ImportError: from distutils.core import setup setup( description='Wharfee: a shell for Docker', author='Iryna Cherniavska', url='http://wharfee.com', download_url='http://github.com/j-bennet/wharfee', author_...
from wharfee.__init__ import __version__ try: from setuptools import setup except ImportError: from distutils.core import setup setup( description='Wharfee: a shell for Docker', author='Iryna Cherniavska', url='http://wharfee.com.', download_url='http://github.com/j-bennet/wharfee.', autho...
bsd-3-clause
Python
e1353476349f35f074b465ed9dac0ea32097b6c4
Bump version
dailymuse/oz,dailymuse/oz,dailymuse/oz
setup.py
setup.py
from setuptools import setup version = "0.6.0" setup( name = "Oz", version = version, description = "A batteries-included web framework built on Tornado", author = "Yusuf Simonson", author_email = 'yusuf@themuse.com', url = "http://github.com/dailymuse/oz", zip_safe = False, packa...
from setuptools import setup version = "0.5.0" setup( name = "Oz", version = version, description = "A batteries-included web framework built on Tornado", author = "Yusuf Simonson", author_email = 'yusuf@themuse.com', url = "http://github.com/dailymuse/oz", zip_safe = False, packa...
bsd-3-clause
Python
439294a9d32f825b80e623199a3e2ef3bc4f6078
Set minimum sox version to 1.3.0
justinsalamon/scaper
setup.py
setup.py
from setuptools import setup, find_packages import imp version = imp.load_source('scaper.version', 'scaper/version.py') setup( name='scaper', version=version.version, description='A library for soundscape synthesis and augmentation', author='Justin Salamon & Duncan MacConnell', author_email='just...
from setuptools import setup, find_packages import imp version = imp.load_source('scaper.version', 'scaper/version.py') setup( name='scaper', version=version.version, description='A library for soundscape synthesis and augmentation', author='Justin Salamon & Duncan MacConnell', author_email='just...
bsd-3-clause
Python
d920d83a2497d893a97bb7c2b8f098ec7aeb15f3
update pymyq to 0.0.8
arraylabs/pymyq
setup.py
setup.py
from setuptools import setup with open('LICENSE') as f: license = f.read() setup( name='pymyq', version='0.0.8', description='Python package for controlling MyQ-Enabled Garage Door', author='Chris Campbell', author_email='chris@arraylabs.com', url='https://github.com/arraylabs/pymyq', ...
from setuptools import setup with open('LICENSE') as f: license = f.read() setup( name='pymyq', version='0.0.7', description='Python package for controlling MyQ-Enabled Garage Door', author='Chris Campbell', author_email='chris@arraylabs.com', url='https://github.com/arraylabs/pymyq', ...
mit
Python
beaba71230e2f2b32e1a48bb3d3e23986e03d857
enforce specific commits in setup.py
brunosmmm/hdltools,brunosmmm/hdltools
setup.py
setup.py
"""Setup.""" from setuptools import setup, find_packages setup( name="hdltools", version="0.1", packages=find_packages(), package_dir={"": "."}, package_data={"hdltools": ["vecgen/*.tx"]}, author="Bruno Morais", author_email="brunosmmm@gmail.com", description="HDL Tools", install_r...
"""Setup.""" from setuptools import setup, find_packages setup( name="hdltools", version="0.1", packages=find_packages(), package_dir={"": "."}, package_data={"hdltools": ["vecgen/*.tx"]}, author="Bruno Morais", author_email="brunosmmm@gmail.com", description="HDL Tools", install_r...
mit
Python
4e7b9a24f0ff67be6dac4158bbb0854c698c8bfe
Bump to 1.3.7. This includes mainly removal of large filterbank files to an outside source, and JOSS paper initial submission (not last version).
UCBerkeleySETI/blimpy,UCBerkeleySETI/blimpy
setup.py
setup.py
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '1.3.7' # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scripts' : [ 'filutil = blimpy.filterbank:cmd_tool', 'watu...
""" setup.py -- setup script for use of packages. """ from setuptools import setup, find_packages __version__ = '1.3.6' # create entry points # see http://astropy.readthedocs.org/en/latest/development/scripts.html entry_points = { 'console_scripts' : [ 'filutil = blimpy.filterbank:cmd_tool', 'watu...
bsd-3-clause
Python
16e3979794484b5ba78016febfcba3f9a6b8d5e4
bump version
F-Secure/see
setup.py
setup.py
# Copyright 2015-2017 F-Secure # 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, ...
# Copyright 2015-2017 F-Secure # 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, ...
apache-2.0
Python
a0a72771ad5a9aa09aa0a5aa3845a6d53d80f0a4
Bump version to dev.
getsentry/responses,getsentry/responses
setup.py
setup.py
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys from setuptools import setup from setuptools.command.test import test as TestCommand setup_requires = [] if "test" in sys.argv: s...
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys from setuptools import setup from setuptools.command.test import test as TestCommand setup_requires = [] if "test" in sys.argv: s...
apache-2.0
Python
64a76572dafcb9ebe389efde864ae4a278fa8020
Bump version
renalreg/radar,renalreg/radar,renalreg/radar,renalreg/radar
setup.py
setup.py
from setuptools import setup, find_packages setup( name='radar', version='2.3.11', description='RaDaR - Rare Disease Registry', author='Rupert Bedford', author_email='rupert.bedford@renalregistry.nhs.uk', url='https://www.radar.nhs.uk/', packages=find_packages(), include_package_data=Tr...
from setuptools import setup, find_packages setup( name='radar', version='2.3.10', description='RaDaR - Rare Disease Registry', author='Rupert Bedford', author_email='rupert.bedford@renalregistry.nhs.uk', url='https://www.radar.nhs.uk/', packages=find_packages(), include_package_data=Tr...
agpl-3.0
Python
52ed852d9b7bd0c830efb8382d2ce9e0614ef877
Add license field to `setup.py`
openclimatedata/pyhector,openclimatedata/pyhector,openclimatedata/pyhector
setup.py
setup.py
from setuptools import setup, Extension import glob libpyhector = Extension( 'libpyhector', include_dirs = [ 'hector-wrapper/include', 'hector-wrapper/hector/headers' ], libraries = ['m', 'boost_system', 'boost_filesystem'], extra_compile_args=['-std=c++0x'], sources = [ ...
from setuptools import setup, Extension import glob libpyhector = Extension( 'libpyhector', include_dirs = [ 'hector-wrapper/include', 'hector-wrapper/hector/headers' ], libraries = ['m', 'boost_system', 'boost_filesystem'], extra_compile_args=['-std=c++0x'], sources = [ ...
agpl-3.0
Python
226ee320cf35c530a6aa7f94bd64fc71908234e3
Add service identity package to quiet warnings
ducted/duct,ducted/duct,ducted/duct,ducted/duct
setup.py
setup.py
from setuptools import setup, find_packages setup( name="ducted", version='1.2', url='http://github.com/ducted/duct', license='MIT', description="A monitoring agent and event processor", author='Colin Alston', author_email='colin.alston@gmail.com', packages=find_packages() + [ ...
from setuptools import setup, find_packages setup( name="ducted", version='1.2', url='http://github.com/ducted/duct', license='MIT', description="A monitoring agent and event processor", author='Colin Alston', author_email='colin.alston@gmail.com', packages=find_packages() + [ ...
mit
Python
cfeb72759c8a4d2217d68150eeb7b3c465e621e3
Upgrade snappi_ixnetwork
open-traffic-generator/snappi,open-traffic-generator/snappi
setup.py
setup.py
"""Build distributions To build `python setup.py sdist --formats=gztar bdist_wheel --universal` """ import os import setuptools from snappi.snappigenerator import SnappiGenerator pkg_name = 'snappi' SnappiGenerator() base_dir = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(base_dir, 'README.md')...
"""Build distributions To build `python setup.py sdist --formats=gztar bdist_wheel --universal` """ import os import setuptools from snappi.snappigenerator import SnappiGenerator pkg_name = 'snappi' SnappiGenerator() base_dir = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(base_dir, 'README.md')...
mit
Python
8b552e360d5040a4b6ebac53efacf8c733a7c8a7
bump version
Floobits/flootty
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='Flootty', version='1.10', description='Floobits collaborative terminal', author='Floobits', author_email='info@floobits.com', url='https://floobits.com/', license="Apache2", packages=['flootty'], package_dat...
#!/usr/bin/env python from setuptools import setup setup(name='Flootty', version='1.03', description='Floobits collaborative terminal', author='Floobits', author_email='info@floobits.com', url='https://floobits.com/', license="Apache2", packages=['flootty'], package_dat...
apache-2.0
Python
acc045eabe9145001a4df3e360b7248436549720
bump version
siddhantgoel/streaming-form-data
setup.py
setup.py
from setuptools import setup, Extension cythonize = None try: from Cython.Build import cythonize except ImportError: pass if cythonize: extensions = cythonize('streaming_form_data/_parser.pyx') else: extensions = [Extension('streaming_form_data._parser', ['streaming_form_...
from setuptools import setup, Extension cythonize = None try: from Cython.Build import cythonize except ImportError: pass if cythonize: extensions = cythonize('streaming_form_data/_parser.pyx') else: extensions = [Extension('streaming_form_data._parser', ['streaming_form_...
mit
Python
01c1469464aafd006baba7651fd1192b4f05c0dd
increment version
telminov/park-worker-base
setup.py
setup.py
# coding: utf-8 # python setup.py sdist register upload from distutils.core import setup setup( name='park-worker-base', version='0.0.4', description='Base logic of workers for park-keeper project.', author='Telminov Sergey', url='https://github.com/telminov/park-worker-base', packages=[ ...
# coding: utf-8 # python setup.py sdist register upload from distutils.core import setup setup( name='park-worker-base', version='0.0.3', description='Base logic of workers for park-keeper project.', author='Telminov Sergey', url='https://github.com/telminov/park-worker-base', packages=[ ...
mit
Python
858ead53d1f649e72cd4a6991c4f296789884fb9
add new version and remove all xml requirments
dimddev/NetCatKS
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages netcatks_dev = [ "pep8-naming>=0.3.3", # MIT license "flake8>=2.5.1", # MIT license "pyflakes>=1.0.0", # MIT license "nose", "coverage", "mock>=1.3.0", # BSD license "unittest2>=1.1.0" # BSD licen...
#!/usr/bin/env python from setuptools import setup, find_packages netcatks_dev = [ "pep8-naming>=0.3.3", # MIT license "flake8>=2.5.1", # MIT license "pyflakes>=1.0.0", # MIT license "nose", "coverage", "mock>=1.3.0", # BSD license "unittest2>=1.1.0" # BSD licen...
bsd-2-clause
Python
1f3595042b3005f6ebe6e2844d29f8b68d01f96d
Use the latest seleniumbase
masterqa/MasterQA,mdmintz/MasterQA
setup.py
setup.py
""" The setup package to install MasterQA requirements """ from setuptools import setup, find_packages # noqa setup( name='masterqa', version='1.0.21', url='http://masterqa.com', author='Michael Mintz', author_email='@mintzworld', maintainer='Michael Mintz', description='Automation-Assist...
""" The setup package to install MasterQA requirements """ from setuptools import setup, find_packages # noqa setup( name='masterqa', version='1.0.21', url='http://masterqa.com', author='Michael Mintz', author_email='@mintzworld', maintainer='Michael Mintz', description='Automation-Assist...
mit
Python
d02d4a96bedda928635b73c72221a546be69104c
fix version number
astraw/adskalman
setup.py
setup.py
from setuptools import setup import os, sys from kookutils import get_svnversion_persistent version_str = '0.2.dev%(svnversion)s' version = get_svnversion_persistent( os.path.join('adskalman','version.py'), version_str) setup(name='adskalman', version=version, description='Kalman filtering routine...
from setuptools import setup import os, sys from kookutils import get_svnversion_persistent version_str = '0.3.dev%(svnversion)s' version = get_svnversion_persistent( os.path.join('adskalman','version.py'), version_str) setup(name='adskalman', version=version, description='Kalman filtering routine...
bsd-3-clause
Python
ef0f01e373043f9be33ae5b005159a85a707ace0
fix read the docs detection
smueller18/kafka-connector,smueller18/kafka-connector
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os import sys import kafka_connector __author__ = u'Stephan Müller' __copyright__ = u'2017, Stephan Müller' __license__ = u'MIT' if sys.version_info[0] < 3: avro = 'avro' else: avro = 'avro-python3' install_requires = [avro] ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os import sys import kafka_connector __author__ = u'Stephan Müller' __copyright__ = u'2017, Stephan Müller' __license__ = u'MIT' if sys.version_info[0] < 3: avro = 'avro' else: avro = 'avro-python3' install_requires = [avro] ...
mit
Python
745ec12db303a3fa200a34558ecaf38a99dd71b2
Create setup.py
LokiW/extendable-cards
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup(name='extendable-cards', version='1.0', description='Playing card representation program', author='Loki White', author_email='loki.w.white@gmail.com', url='https://github.com/LokiW/extendable-cards', packages=f...
#!/usr/bin/env python from setuptools import setup, find_packages setup(name='extendable-cards', version='1.0', description='Playing card representation program', author='Loki White', author_email='loki.w.white@gmail.com', url='https://www.python.org/sigs/distutils-sig/', packages=...
bsd-2-clause
Python
3f1b37c37dae7cd785413f7bbfcd533818cf32bb
Correct mistakes
piomonti/pySINGLE
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext from Cython.Build import cythonize import numpy cythonize("pySINGLE/FastFused_01.pyx") setup(name='pySINGLE', packages = ['pySINGLE'], version='0.5', description = 'Pyth...
#!/usr/bin/env python from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext from Cython.Build import cythonize import numpy cythonize("pySINGLE/Z_shooting.pyx") setup(name='pySINGLE', packages = ['pySINGLE'], version='0.5', description = 'Python...
mit
Python
55756adf20ac61e1f5a9e931e1cb9645ee0e79fb
update url
UKPLab/sentence-transformers
setup.py
setup.py
from setuptools import setup, find_packages with open("README.md", mode="r", encoding="utf-8") as readme_file: readme = readme_file.read() setup( name="sentence-transformers", version="0.4.0", author="Nils Reimers", author_email="info@nils-reimers.de", description="Sentence Embeddings using ...
from setuptools import setup, find_packages with open("README.md", mode="r", encoding="utf-8") as readme_file: readme = readme_file.read() setup( name="sentence-transformers", version="0.4.0", author="Nils Reimers", author_email="info@nils-reimers.de", description="Sentence Embeddings using ...
apache-2.0
Python
f1563a4b72eae5317d9f300f855cac2f26646358
Add dependencies in setup.py
relekang/rmoq
setup.py
setup.py
import codecs from os import path from setuptools import setup def read(*parts): file_path = path.join(path.dirname(__file__), *parts) return codecs.open(file_path, encoding='utf-8').read() setup( name='rmoq', version='0.2.1', url='http://github.com/relekang/rmoq', author='Rolf Erik Lekang', ...
import codecs from os import path from setuptools import setup def read(*parts): file_path = path.join(path.dirname(__file__), *parts) return codecs.open(file_path, encoding='utf-8').read() setup( name='rmoq', version='0.2.1', url='http://github.com/relekang/rmoq', author='Rolf Erik Lekang', ...
mit
Python
1e7306c82fe6e838eb22fed1ba5411193a02c5c8
Remove stale dependency on nose-parameterized
rakshit-agrawal/sonnet,deepmind/sonnet,deepmind/sonnet,rakshit-agrawal/sonnet
setup.py
setup.py
# Copyright 2017 The Sonnet 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 applicable l...
# Copyright 2017 The Sonnet 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 applicable l...
apache-2.0
Python
b1754f63327e641693a733afccd79dbf92666dec
Add install_requires for smoother pip installation
mbeyeler/pulse2percept,uwescience/pulse2percept,uwescience/pulse2percept,uwescience/pulse2percept
setup.py
setup.py
from setuptools import find_packages, setup import os # Get version and release info, which is all stored in pulse2percept/version.py ver_file = os.path.join('pulse2percept', 'version.py') with open(ver_file) as f: exec(f.read()) opts = dict(name=NAME, maintainer=MAINTAINER, maintainer_ema...
from setuptools import find_packages, setup import os # Get version and release info, which is all stored in pulse2percept/version.py ver_file = os.path.join('pulse2percept', 'version.py') with open(ver_file) as f: exec(f.read()) opts = dict(name=NAME, maintainer=MAINTAINER, maintainer_ema...
bsd-3-clause
Python
b9cb0ec9539a4559bfaf2616c0ed9e1cf4fb7723
Bump version
TuxSH/firmtool
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os import sys if sys.version_info < (2,7): sys.exit('Sorry, Python < 2.7 is not supported') elif sys.version_info[0] == 3 and sys.version_info[1] < 2: sys.exit('Sorry, Python 3.0 and 3.1 are not supported') #https://pythonhosted.org/an_example_pypi_p...
#!/usr/bin/env python from setuptools import setup import os import sys if sys.version_info < (2,7): sys.exit('Sorry, Python < 2.7 is not supported') elif sys.version_info[0] == 3 and sys.version_info[1] < 2: sys.exit('Sorry, Python 3.0 and 3.1 are not supported') #https://pythonhosted.org/an_example_pypi_p...
bsd-3-clause
Python
e5abac319dd6de6bb749581c9f8b8ea289ae5039
Remove core module from setup.py
Empiria/matador
setup.py
setup.py
from setuptools import setup, find_packages # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs') codecs.register(func) setup( ...
from setuptools import setup, find_packages # Work around mbcs bug in distutils. # http://bugs.python.org/issue10945 import codecs try: codecs.lookup('mbcs') except LookupError: ascii = codecs.lookup('ascii') func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs') codecs.register(func) setup( ...
mit
Python
cee4d3002aae03a85a6a6a93a88acb3fbc78eee0
increment version number
llazzaro/django-scheduler,drodger/django-scheduler,llazzaro/django-scheduler,sprightco/django-scheduler,sprightco/django-scheduler,sprightco/django-scheduler,drodger/django-scheduler,llazzaro/django-scheduler,drodger/django-scheduler
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='django-scheduler', version='0.8.3', description='A calendaring app for Django.', author='Leonardo Lazzaro', author_email='lazzaroleonardo@gmail.com', url='https://github.com/llazzaro/django-scheduler', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='django-scheduler', version='0.8.2', description='A calendaring app for Django.', author='Leonardo Lazzaro', author_email='lazzaroleonardo@gmail.com', url='https://github.com/llazzaro/django-scheduler', ...
bsd-3-clause
Python
6f719129b0c033f796ad6ea06c155be89399ad87
fix dependency name
CIRCL/bgpranking-redis-api,CIRCL/bgpranking-redis-api,CIRCL/bgpranking-redis-api
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- from setuptools import setup setup( name='bgpranking-redis', version='1.0', author='Raphaël Vinot', author_email='raphael.vinot@circl.lu', maintainer='Raphaël Vinot', url='https://github.com/CIRCL/bgpranking-redis-api', description='API to access th...
#!/usr/bin/python # -*- coding: utf-8 -*- from setuptools import setup setup( name='bgpranking-redis', version='1.0', author='Raphaël Vinot', author_email='raphael.vinot@circl.lu', maintainer='Raphaël Vinot', url='https://github.com/CIRCL/bgpranking-redis-api', description='API to access th...
bsd-2-clause
Python
16d6d8a4e07ebbd14e8a70a66d20c2e6375e101e
bump the version number to 87 for the additional filter of the role for the database.
devopscenter/django-code-deploy,devopscenter/django-code-deploy
setup.py
setup.py
from distutils.core import setup setup( name = 'django-code-deploy', packages = ['django_code_deploy'], # this must be the same as the name above version = '0.9.87', description = 'Deploys Django code to AWS based on tags', author = 'Josh devops.center, Bob devops.center, Gregg devops.center', author_email ...
from distutils.core import setup setup( name = 'django-code-deploy', packages = ['django_code_deploy'], # this must be the same as the name above version = '0.9.86', description = 'Deploys Django code to AWS based on tags', author = 'Josh devops.center, Bob devops.center, Gregg devops.center', author_email ...
apache-2.0
Python
26394f81cb12a00cd33508e4a48005fc2bf527ff
Use setuptools.
ryanpetrello/python-zombie,ryanpetrello/python-zombie
setup.py
setup.py
from setuptools import setup, find_packages, Command import sys __version__ = '0.2.0' tests_require = [] if sys.version_info < (2, 7): tests_require += ['unittest2'] class Tox(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def r...
try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages # noqa from distutils.core import Command __version__ = '0.2.0' tests_require = [] if sys.version_info < (2, 7): tests_require += [...
mit
Python
03ca7b909b078a1f3e6b168bfbb536a2e71ba0e8
Add dependency on setproctitle
sourcebots/robotd,sourcebots/robotd
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup(name='Robot Daemon', version='1.0', description='Daemon for vision code for Source Bots', author='SourceBots', author_email='', packages=find_packages(), setup_requires=["cffi>=0.8.6"], ffi_modules=["rob...
#!/usr/bin/env python from setuptools import setup, find_packages setup(name='Robot Daemon', version='1.0', description='Daemon for vision code for Source Bots', author='SourceBots', author_email='', packages=find_packages(), setup_requires=["cffi>=0.8.6"], ffi_modules=["rob...
mit
Python
b148c771b26599a3a6d4b1c8c7d6f2f1c16cf56c
Add dependency on six
jaraco/jaraco.classes
setup.py
setup.py
#!/usr/bin/env python # Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop) import io import setuptools with io.open('README.txt', encoding='utf-8') as readme: long_description = readme.read() with io.open('CHANGES.txt', encoding='utf-8') as changes: long_description += '\n\n' + chang...
#!/usr/bin/env python # Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop) import io import setuptools with io.open('README.txt', encoding='utf-8') as readme: long_description = readme.read() with io.open('CHANGES.txt', encoding='utf-8') as changes: long_description += '\n\n' + chang...
mit
Python
dbc60fc7cac3fa42454fb56ff15082f1bad5c408
Exclude tests from distribution
Isendir/money,carlospalol/money
setup.py
setup.py
from distutils.core import setup DESCRIPTION = """ Python money class with optional CLDR-backed locale-aware formatting and an extensible currency exchange solution. """ setup( name='money', description='Python Money Class', long_description=DESCRIPTION, version='1.0', author='Carlos Palol', ...
from distutils.core import setup DESCRIPTION = """ Python money class with optional CLDR-backed locale-aware formatting and an extensible currency exchange solution. """ setup( name='money', description='Python Money Class', long_description=DESCRIPTION, version='1.0', author='Carlos Palol', ...
mit
Python
25b9d5b107206748dea7515a2e2fbff1edec8a08
Bump version to 0.1.1
MichaelAquilina/s3backup,MichaelAquilina/s3backup
setup.py
setup.py
# !/usr/bin/env python from distutils.core import setup setup( name='s4', packages=[], version='0.1.1', description='Sync your folders to s3 between multiple machines', author='Michael Aquilina', license='MIT', author_email='michaelaquilina@gmail.com', url='https://github.com/MichaelAq...
# !/usr/bin/env python from distutils.core import setup setup( name='s4', packages=[], version='0.1.0', description='Sync your folders to s3 between multiple machines', author='Michael Aquilina', license='MIT', author_email='michaelaquilina@gmail.com', url='https://github.com/MichaelAq...
mit
Python
085f88dce852200af473286a209614d65e695109
remove unecessary python version classifiers.
anon-ai/toolbelt
setup.py
setup.py
from setuptools import setup, find_packages try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except ImportError: with open('README.md') as f: long_description = f.read().strip() with open('VERSION') as f: version = f.read().strip() setup( name='hazy', descr...
from setuptools import setup, find_packages try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') except ImportError: with open('README.md') as f: long_description = f.read().strip() with open('VERSION') as f: version = f.read().strip() setup( name='hazy', descr...
mit
Python
efc6895fb992b755995cec381c3a558824a9a7b8
Bump flake8-bugbear from 20.11.1 to 21.3.1 (#206)
sloria/environs,sloria/environs
setup.py
setup.py
import re from setuptools import setup INSTALL_REQUIRES = ["marshmallow>=2.7.0", "python-dotenv"] DJANGO_REQUIRES = ["dj-database-url", "dj-email-url", "django-cache-url"] EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, "lint": ["flake8==3.8.4", "flake8-bugbear==21.3.1"...
import re from setuptools import setup INSTALL_REQUIRES = ["marshmallow>=2.7.0", "python-dotenv"] DJANGO_REQUIRES = ["dj-database-url", "dj-email-url", "django-cache-url"] EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1...
mit
Python
52d90c6e3a613f71b49f753e05c2e39b975292cb
Remove Python 2 from setup.py
zsiciarz/pyaavso
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='pyaavso', version=__import__('pyaavso').__version__, description='A Python library for working with AAVSO data.', long_description=read('README.rst...
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='pyaavso', version=__import__('pyaavso').__version__, description='A Python library for working with AAVSO data.', long_description=read('README.rst...
mit
Python
c1c198db3dc9e0c9f6c6d2092a8d4b87d4c58157
Bump version
viewflow/django-material,viewflow/django-material,viewflow/django-material
setup.py
setup.py
from setuptools import setup try: long_description = open('README.rst').read() except IOError: long_description = '' setup( name='django-material', version='1.7.5', description='Material design for django forms and admin', license='BSD', author='Mikhail Podgurskiy', author_email='kmmbv...
from setuptools import setup try: long_description = open('README.rst').read() except IOError: long_description = '' setup( name='django-material', version='1.7.4', description='Material design for django forms and admin', license='BSD', author='Mikhail Podgurskiy', author_email='kmmbv...
bsd-3-clause
Python
f2cb3c107c5d4871910cc4fd98e5329b017c92cf
Add classifiern to setup.py
fabiocody/PyNetatmo
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' setup( name='pynetatmo', version='0.0.1', description='Netatmo ...
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' setup( name='pynetatmo', version='0.0.1', description='Netatmo ...
mit
Python
78a91817845b9a85d574c06d431b6443ca67e330
update setup file to install package data as well
rexthompson/axwx,rexthompson/axwx
setup.py
setup.py
# Setup module for Ax/Wx import os from setuptools import setup, find_packages PACKAGES = find_packages() # Get version and release info, which is all stored in shablona/version.py # ver_file = os.path.join('shablona', 'version.py') # with open(ver_file) as f: # exec(f.read()) # packages = ['csv', 'os', 'time',...
# Setup module for Ax/Wx import os from setuptools import setup, find_packages PACKAGES = find_packages() # Get version and release info, which is all stored in shablona/version.py # ver_file = os.path.join('shablona', 'version.py') # with open(ver_file) as f: # exec(f.read()) # packages = ['csv', 'os', 'time',...
mit
Python
f61b34ac4bfea055ccbfbc8253f0fe83f26562b4
Bump requests from 2.28.0 to 2.28.1 (#97)
macbre/mobify
setup.py
setup.py
from setuptools import setup, find_packages # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='mobify', version='0.1.0', author='Maciej Brencz', author_email='maciej.brencz@gmail.com', description='Download a webpage as an e-book', url='https://github.com/macbre/mobi...
from setuptools import setup, find_packages # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='mobify', version='0.1.0', author='Maciej Brencz', author_email='maciej.brencz@gmail.com', description='Download a webpage as an e-book', url='https://github.com/macbre/mobi...
mit
Python
9f0a9b05bdd3cf6540118bb0d41d39ffd636766b
Bump version to v1.8.1
harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl
setup.py
setup.py
from setuptools import find_packages, setup setup( name="redshift_etl", version="1.8.1", author="Harry's Data Engineering and Analytics Engineering", description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters", license="MIT", keywords="redshift postgresql ET...
from setuptools import find_packages, setup setup( name="redshift_etl", version="1.8.0", author="Harry's Data Engineering and Analytics Engineering", description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters", license="MIT", keywords="redshift postgresql ET...
mit
Python
0f9fa91b3aeba056f1c1153c7920f085f5a0788c
Make cryptography an optional install dependency
vimalloc/flask-jwt-extended
setup.py
setup.py
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='1.5.0', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='1.5.0', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
mit
Python
95053b45ecd191c886c995730eefc4f999edbcba
Bump release number.
vthorsteinsson/tensor2tensor,vthorsteinsson/tensor2tensor,tensorflow/tensor2tensor,tensorflow/tensor2tensor,vthorsteinsson/tensor2tensor,tensorflow/tensor2tensor,vthorsteinsson/tensor2tensor,tensorflow/tensor2tensor,tensorflow/tensor2tensor
setup.py
setup.py
"""Install tensor2tensor.""" from setuptools import find_packages from setuptools import setup setup( name='tensor2tensor', version='1.5.5', description='Tensor2Tensor', author='Google Inc.', author_email='no-reply@google.com', url='http://github.com/tensorflow/tensor2tensor', license='Apa...
"""Install tensor2tensor.""" from setuptools import find_packages from setuptools import setup setup( name='tensor2tensor', version='1.5.4', description='Tensor2Tensor', author='Google Inc.', author_email='no-reply@google.com', url='http://github.com/tensorflow/tensor2tensor', license='Apa...
apache-2.0
Python
2a42a82d72d8bfbf11b605002bc4781fee320ea3
Add python2 specifically to classifier list.
3stack-software/python-aniso8601-relativedelta
setup.py
setup.py
import sys try: from setuptools import setup except ImportError: from distutils import setup if sys.version_info[0] == 2: base_dir = 'python2' elif sys.version_info[0] == 3: base_dir = 'python3' readme = open('README.rst', 'r') README_TEXT = readme.read() readme.close() setup( name='aniso8601', ...
import sys try: from setuptools import setup except ImportError: from distutils import setup if sys.version_info[0] == 2: base_dir = 'python2' elif sys.version_info[0] == 3: base_dir = 'python3' readme = open('README.rst', 'r') README_TEXT = readme.read() readme.close() setup( name='aniso8601', ...
bsd-3-clause
Python
90aeab4b2ddda1b56870886f2b0c9543143b94aa
add project_urls for PyPI links
xflr6/gsheets
setup.py
setup.py
# setup.py import io from setuptools import setup, find_packages setup( name='gsheets', version='0.4.2.dev0', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Pythonic wrapper for the Google Sheets API', keywords='spreadhseets google api v4 wrapper csv pandas...
# setup.py import io from setuptools import setup, find_packages setup( name='gsheets', version='0.4.2.dev0', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Pythonic wrapper for the Google Sheets API', keywords='spreadhseets google api v4 wrapper csv pandas...
mit
Python
c3af4451737ff7eef6c323a4ab4302d3c38b11d1
Bump version for semver restriction
kevinconway/rpmvenv
setup.py
setup.py
"""Setuptools configuration for rpmvenv.""" from setuptools import setup from setuptools import find_packages with open('README.rst', 'r') as readmefile: README = readmefile.read() setup( name='rpmvenv', version='0.24.0', url='https://github.com/kevinconway/rpmvenv', description='RPM packager f...
"""Setuptools configuration for rpmvenv.""" from setuptools import setup from setuptools import find_packages with open('README.rst', 'r') as readmefile: README = readmefile.read() setup( name='rpmvenv', version='0.23.0', url='https://github.com/kevinconway/rpmvenv', description='RPM packager f...
mit
Python
7a6c6ac2dd620a0ee8b6131c126b35a1fe77f221
Fix dependencies in setup.py
kmike/django-webtest,django-webtest/django-webtest,andrewyoung1991/django-webtest,abbottc/django-webtest,django-webtest/django-webtest,kmike/django-webtest,abbottc/django-webtest,andriisoldatenko/django-webtest,andriisoldatenko/django-webtest,andrewyoung1991/django-webtest
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup version='1.7.7' def _read(name): if sys.version_info[0] < 3: with open(name) as f: return f.read() else: with open(name, encoding='utf8') as f: return f.read() def get_long_description(): return _read('README.rs...
#!/usr/bin/env python from distutils.core import setup for cmd in ('egg_info', 'develop'): import sys if cmd in sys.argv: from setuptools import setup version='1.7.7' def _read(name): if sys.version_info[0] < 3: with open(name) as f: return f.read() else: with op...
mit
Python
aca4fa7655df9d1793ceea49e2dba9d0b574c95d
Update to match the BLACK reformatting of strings
mdsol/rwslib
setup.py
setup.py
#!/usr/bin/env python import os import sys import re 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 = [ 'rwslib', 'rwslib.rws_requests', 'rwslib.builders', ...
#!/usr/bin/env python import os import sys import re 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 = [ 'rwslib', 'rwslib.rws_requests', 'rwslib.builders', ...
mit
Python
ce10854f87928498d4ffe662941e096d33a3e062
Increment version in setup.py
dvdme/forecastiopy
setup.py
setup.py
from setuptools import setup setup(name='forecastiopy', version='0.2', description='A wrapper to access weather data provided by forecast.io', url='http://github.com/dvdme/forecastiopy', author='David Ervideira', author_email='david.dme@gmail.com', license='Eclipse Public License'...
from setuptools import setup setup(name='forecastiopy', version='0.1', description='A wrapper to access weather data provided by forecast.io', url='http://github.com/dvdme/forecastiopy', author='David Ervideira', author_email='david.dme@gmail.com', license='Eclipse Public License'...
epl-1.0
Python
c4d42ef29e8dce95efc585df1690816e03eebcf9
bump to 0.1.19
lociii/billomat
setup.py
setup.py
# -*- coding: UTF-8 -*- from setuptools import setup, find_packages setup( name='billomat', packages=find_packages(), version='0.1.19', description='billomat.com API client', author='Jens Nistler', author_email='opensource@jensnistler.de', url='http://jensnistler.de/', download_url='htt...
# -*- coding: UTF-8 -*- from setuptools import setup, find_packages setup( name='billomat', packages=find_packages(), version='0.1.18', description='billomat.com API client', author='Jens Nistler', author_email='opensource@jensnistler.de', url='http://jensnistler.de/', download_url='htt...
mit
Python