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
ecd403513550fe01490bf9199ba5a6d47e6a633a
bump version.
hmenager/acd2cwl
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os.path SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.md') readme = open(README).read() setup( name='acd2cwl', version='0.1.6', description='CWL generator for ACD files', long_descriptio...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os.path SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.md') readme = open(README).read() setup( name='acd2cwl', version='0.1.5', description='CWL generator for ACD files', long_descriptio...
mit
Python
89d120d31ea13fe514f65958824dcecbf9151c84
Correct name in setup.py to 'openqa_review'
okurz/openqa_review,okurz/openqa_review
setup.py
setup.py
import os from subprocess import check_output from setuptools import setup # ref: http://blogs.nopcode.org/brainstorm/2013/05/20/pragmatic-python-versioning-via-setuptools-and-git-tags/ # Fetch version from git tags, and write to version.py. # Also, when git is not available (PyPi package), use stored version.py. ver...
import os from subprocess import check_output from setuptools import setup # ref: http://blogs.nopcode.org/brainstorm/2013/05/20/pragmatic-python-versioning-via-setuptools-and-git-tags/ # Fetch version from git tags, and write to version.py. # Also, when git is not available (PyPi package), use stored version.py. ver...
mit
Python
667ff445a589cc137d63593159ad2ae4b960ffd9
Fix typo in requirements
abrioy/rss_scrapper
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools 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 = [ 'PyYAML>=3.11', 'requests>=2.13.0', 'lxml>=3.7.3', 'cssselec...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools 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 = [ 'PyYAML>=3.11', 'requests>=2.13.0' 'lxml>=3.7.3' 'cssselect>...
mit
Python
e1a7f8519ca7f40106a6da4ec3bf3e3fac6d8e66
Add quantities package as a requirement in setup.py
twdb/sonde
setup.py
setup.py
""" PySonde ------- PySonde is a module for reading water quality data from various sensor formats. """ from setuptools import Command, setup def run_tests(): import os, sys sys.path.append(os.path.join(os.path.dirname(__file__), 'tests')) from tests import suite return suite() # note: the minimum v...
""" PySonde ------- PySonde is a module for reading water quality data from various sensor formats. """ from setuptools import Command, setup def run_tests(): import os, sys sys.path.append(os.path.join(os.path.dirname(__file__), 'tests')) from tests import suite return suite() # note: the minimum v...
bsd-3-clause
Python
072a08533adbfbd25d1ebab61e374018cd27f814
bump version
ubolonton/twisted-csp
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name="twisted-csp", version="0.1.7", description="Go-style channels for Twisted", author="Nguyễn Tuấn Anh", author_email="ubolonton@gmail...
# -*- coding: utf-8 -*- from setuptools import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name="twisted-csp", version="0.1.6", description="Go-style channels for Twisted", author="Nguyễn Tuấn Anh", author_email="ubolonton@gmail...
epl-1.0
Python
9f37ac91424280554849d4ddcecdc36541cfe4e7
Increment the version number of AQTp package.
google/aqt,google/aqt
setup.py
setup.py
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
apache-2.0
Python
3a684e2b5a014021444a3efb47661cdde49bba42
Add redis pkg
pglbutt/spanky,pglbutt/spanky,pglbutt/spanky
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() requirements = [ 'Click', 'PyYAML', 'redis', ] setup( name='spanky', version='0.1.0', description='Idempotent devo...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() requirements = [ 'Click', 'PyYAML', ] setup( name='spanky', version='0.1.0', description='Idempotent devops', long...
bsd-3-clause
Python
ba13dd62ac93ad637aecc3845c760bf3dca70461
update lava-server dependency a bit
OSSystems/lava-server,Linaro/lava-server,OSSystems/lava-server,Linaro/lava-server,OSSystems/lava-server,Linaro/lava-server,Linaro/lava-server
setup.py
setup.py
#!/usr/bin/env python # # Copyright (C) 2011 Linaro Limited # # Author: Michael Hudson-Doyle <michael.hudson@linaro.org> # # This file is part of LAVA Scheduler. # # LAVA Scheduler is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License version 3 as # publis...
#!/usr/bin/env python # # Copyright (C) 2011 Linaro Limited # # Author: Michael Hudson-Doyle <michael.hudson@linaro.org> # # This file is part of LAVA Scheduler. # # LAVA Scheduler is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License version 3 as # publis...
agpl-3.0
Python
9219c6df757f68e8c37202df4da74b3c35793fd2
update setup.py
tochikuji/pyPyrTools,tochikuji/pyPyrTools
setup.py
setup.py
#!/usr/bin/env python import subprocess from setuptools import setup from setuptools.command.build_py import build_py class BuildSO(build_py): def run(self): command = ['make'] if subprocess.call(command) != 0: raise OSError('Could not make extension. Try "make" manually.') ...
#!/usr/bin/env python from setuptools import setup from setuptools.command.build_py import build_py import subprocess class BuildSO(build_py): def run(self): command = ['make'] if subprocess.call(command) != 0: raise OSError('Could not make extension. Try "make" manually.') b...
mit
Python
6861297cef8a1c6766727da3c8ec653a85191364
Fix broken setup.py referring to wrong 'for_tests' folder
XENON1T/pax,XENON1T/pax
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') requirements = open('requirements.txt').read().splitlines() test_require...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') requirements = open('requirements.txt').read().splitlines() test_require...
bsd-3-clause
Python
921e5392f46b374d9bad5d362a8ad808cc065346
Update python_requires to require 3.6+ (#83)
un33k/django-ipware,un33k/django-ipware
setup.py
setup.py
#!/usr/bin/env python # Learn more: https://github.com/un33k/setup.py import os import sys from codecs import open from shutil import rmtree from setuptools import setup package = 'ipware' python_requires = ">=3.6" here = os.path.abspath(os.path.dirname(__file__)) requires = [] test_requirements = [] about = {} wi...
#!/usr/bin/env python # Learn more: https://github.com/un33k/setup.py import os import sys from codecs import open from shutil import rmtree from setuptools import setup package = 'ipware' python_requires = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" here = os.path.abspath(os.path.dirname(__file__)...
mit
Python
d10c9b9b9629bed9ff5feb60194142c82e124b00
Merge remote-tracking branch 'origin/development' into AC-6999
masschallenge/django-accelerator,masschallenge/django-accelerator
setup.py
setup.py
# MIT License # Copyright (c) 2017 MassChallenge, Inc. import os from setuptools import find_packages, 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__)...
# MIT License # Copyright (c) 2017 MassChallenge, Inc. import os from setuptools import find_packages, 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__)...
mit
Python
8d7ce836af4b611bc9232a364dccaa8cf07a1a68
put back install_requires for setuptools, ignoring distutils warnings :|
erikcw/django-masquerade,erikcw/django-masquerade,erikcw/django-masquerade
setup.py
setup.py
import os from distutils.core import setup def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() except IOError: return '' # Use the docstring of the __ini...
import os from distutils.core import setup def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() except IOError: return '' # Use the docstring of the __ini...
apache-2.0
Python
877fcd1d98b862e73631cee4af95d7edd156940c
remove Pandas requirements
mroberge/hydrofunctions
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import re with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() def relative2absolute(input, old, new): """ Replaces every inst...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import re with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() def relative2absolute(input, old, new): """ Replaces every inst...
mit
Python
2ca4fb694e01ed36bf70a1e204f9f5c07abbfdf1
add doc requirements
PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature
setup.py
setup.py
import setuptools from pathlib import Path root_dir = Path(__file__).absolute().parent with (root_dir / 'VERSION').open() as f: version = f.read().strip() with (root_dir / 'README.rst').open() as f: long_description = f.read() setuptools.setup( name='geonature', description='Application de saisie et...
import setuptools from pathlib import Path root_dir = Path(__file__).absolute().parent with (root_dir / 'VERSION').open() as f: version = f.read().strip() with (root_dir / 'README.rst').open() as f: long_description = f.read() setuptools.setup( name='geonature', description='Application de saisie et...
bsd-2-clause
Python
17a4a6503039f9ae580e8297553ebe8c5bdaaf94
add zip_safe=False flag to setup.py
tonyseek/flask-docker
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: next(readme) long_description = ''.join(readme).strip() setup( name='Flask-Docker', description='Using Docker client in your Flask application.', long_description=long_description, ...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: next(readme) long_description = ''.join(readme).strip() setup( name='Flask-Docker', description='Using Docker client in your Flask application.', long_description=long_description, ...
mit
Python
a491c21639acc8a8a3ef30ea5d7f5e8e85ada29b
Expand dep version range to Ubuntu 16.04 vendored
kislyuk/signxml,XML-Security/signxml,XML-Security/signxml
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='signxml', version="2.2.3", url='https://github.com/kislyuk/signxml', license='Apache Software License', author='Andrey Kislyuk', author_email='kislyuk@gmail.com', description='Python XML Signature library', ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='signxml', version="2.2.3", url='https://github.com/kislyuk/signxml', license='Apache Software License', author='Andrey Kislyuk', author_email='kislyuk@gmail.com', description='Python XML Signature library', ...
apache-2.0
Python
1fc133355157d1f9be7df43bed8415eecda42d83
Fix dependencies in setup.py
fritz0705/lglass
setup.py
setup.py
#!/usr/bin/env python3 """lglass is a collection of code and data files written in Python. It is designed to support registries in their work and to provide public services for access to the database.""" import setuptools setuptools.setup( name="lglass", version="1.1", packages=[ "lglass", ...
#!/usr/bin/env python3 """lglass is a collection of code and data files written in Python. It is designed to support registries in their work and to provide public services for access to the database.""" import setuptools setuptools.setup( name="lglass", version="1.1", packages=[ "lglass", ...
mit
Python
f3153278ec0a9d21865198a7e7e4c93a91039889
update requirements
eads/tarbell,eads/tarbell,eyeseast/tarbell,NUKnightLab/tarbell,eyeseast/tarbell,tarbell-project/tarbell,tarbell-project/tarbell,NUKnightLab/tarbell,NUKnightLab/tarbell
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages APP_NAME = 'tarbell' VERSION = '0.9b7' settings = dict() # Publish Helper. if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() settings.update( name=APP_NAME, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages APP_NAME = 'tarbell' VERSION = '0.9b7' settings = dict() # Publish Helper. if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() settings.update( name=APP_NAME, ...
bsd-3-clause
Python
2adf207d053738559811eb17f62f7ce6b6f5cc95
Bump to 2.0.0.7
lixen/riak_pb,lixen/riak_pb,marsleezm/riak_pb,groovenauts-erlang/riak_pb,SyncFree/riak_pb,groovenauts-erlang/riak_pb,inaka/riak_pb,drewkerrigan/riak_pb,inaka/riak_pb,inaka/riak_pb,marsleezm/riak_pb,riak-synrc/riak_pb,jmayfield74/riak_pb,SyncFree/riak_pb,lixen/riak_pb,riak-synrc/riak_pb,basho/riak_pb,groovenauts-erlang/...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='riak_pb', version='2.0.0.7', description='Riak Protocol Buffers Messages', packages=['riak_pb'], requires=['protobuf(==2.4.1)'], install_requires=['protobuf==2.4.1'], options={'easy_install': {'allow_hosts': 'pypi.pytho...
#!/usr/bin/env python from setuptools import setup setup(name='riak_pb', version='2.0.0.6', description='Riak Protocol Buffers Messages', packages=['riak_pb'], requires=['protobuf(==2.4.1)'], install_requires=['protobuf==2.4.1'], options={'easy_install': {'allow_hosts': 'pypi.pytho...
apache-2.0
Python
5fe9a4c0a77f723c963a60303a84d252d9d264c1
Bump version because of package name change.
kipe/fmi
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='fmi_weather', version='0.50.1', description='FMI weather data fetcher', author='Kimmo Huoman', author_email='kipenroskaposti@gmail.com', url='https://github.com/kipe/fmi', packages=['fmi', 'fmi.symbols'], package_data={...
#!/usr/bin/env python from distutils.core import setup setup( name='fmi_weather', version='0.50', description='FMI weather data fetcher', author='Kimmo Huoman', author_email='kipenroskaposti@gmail.com', url='https://github.com/kipe/fmi', packages=['fmi', 'fmi.symbols'], package_data={ ...
mit
Python
029b7add805f1c2383fe2e797d684b7e3649f34e
Bump coveralls from 2.1.2 to 3.0.0 (#22)
glidernet/python-ogn-client
setup.py
setup.py
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages from ogn.client.settings import PACKAGE_VERSION 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_description = f...
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages from ogn.client.settings import PACKAGE_VERSION 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_description = f...
agpl-3.0
Python
7661662f5bce16b9de4b0f18b0b8595fd5ec4cb8
Met à jour Core à v.30
sgmap/openfisca-france,sgmap/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-France", version = "39.0.2", author = "OpenFisca Team", author_email = "contact@openfisca.fr", classifiers = [ "Development Status :: 5 - Production/Stable", "Licen...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "OpenFisca-France", version = "39.0.2", author = "OpenFisca Team", author_email = "contact@openfisca.fr", classifiers = [ "Development Status :: 5 - Production/Stable", "Licen...
agpl-3.0
Python
3d1e073ed73644b5ff0db94b4129cbd6cdd26d89
Add dateutils to the requirements
novafloss/populous
setup.py
setup.py
import sys from setuptools import setup, find_packages import populous requirements = [ "click", "cached-property", "fake-factory", "dateutils" ] if sys.version_info < (3, 2): requirements.append('functools32') setup( name="populous", version=populous.__version__, url=populous.__url...
import sys from setuptools import setup, find_packages import populous requirements = [ "click", "cached-property", "fake-factory", ] if sys.version_info < (3, 2): requirements.append('functools32') setup( name="populous", version=populous.__version__, url=populous.__url__, descript...
mit
Python
83a01e66b910b0d85f81efba3b88cf0c786dc14e
add django classifiers
tomi77/python-t77-django
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-extra-tools", version='0.2.0b1', author='Tomasz Jakub Rup', author_email='tomasz.rup@gmail.com', url='https://github.com/tomi77/django-extra-tools', description='A set of functions related with Django', long_description=open("...
from setuptools import setup, find_packages setup( name="django-extra-tools", version='0.2.0b1', author='Tomasz Jakub Rup', author_email='tomasz.rup@gmail.com', url='https://github.com/tomi77/django-extra-tools', description='A set of functions related with Django', long_description=open("...
mit
Python
885c34c884650cc4cf760381f3cdae44c2ff51b5
Prepare openprocurement.auction 1.0.0.dev28.
openprocurement/openprocurement.auction,openprocurement/openprocurement.auction
setup.py
setup.py
from setuptools import setup, find_packages import os version = '1.0.0.dev28' setup(name='openprocurement.auction', version=version, description="", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), # Get more strings f...
from setuptools import setup, find_packages import os version = '1.0.0.dev27' setup(name='openprocurement.auction', version=version, description="", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), # Get more strings f...
apache-2.0
Python
dc5748eb6dad4bf2cdf5c88ab15c489a88c6bf21
Increment minor version once more
consbio/parserutils
setup.py
setup.py
import subprocess import sys from setuptools import Command, setup class RunTests(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes...
import subprocess import sys from setuptools import Command, setup class RunTests(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): errno = subprocess.call([sys.executable, '-m', 'unittest', 'parserutils.tests.tes...
bsd-3-clause
Python
0176e1c098993bd238a4f88251d08586f5901b22
Remove external GAPIC dependency for Vision.
googleapis/python-vision,googleapis/python-vision
setup.py
setup.py
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
apache-2.0
Python
f70d73b5a67ca13dc243f72ed701e1f8d5924405
Revert "Perhaps need to modify the name"
dpetzold/django-templated-email,vintasoftware/django-templated-email,ScanTrust/django-templated-email,vintasoftware/django-templated-email,mypebble/django-templated-email,dpetzold/django-templated-email,BradWhittington/django-templated-email,hator/django-templated-email,ScanTrust/django-templated-email,BradWhittington/...
setup.py
setup.py
from setuptools import setup DESCRIPTION = "A Django oriented templated / transaction email abstraction" LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Licens...
from setuptools import setup DESCRIPTION = "A Django oriented templated / transaction email abstraction" LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Licens...
mit
Python
dcbc4615c8173fa10e36fdb53b554e5461750061
Bump versions of several prerequisite PyPI packages.
MozillaSecurity/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz
setup.py
setup.py
# coding=utf-8 # pylint: disable=missing-docstring # # 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 https://mozilla.org/MPL/2.0/. from setuptools import setup if __name__ == "__main__": setup...
# coding=utf-8 # pylint: disable=missing-docstring # # 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 https://mozilla.org/MPL/2.0/. from setuptools import setup if __name__ == "__main__": setup...
mpl-2.0
Python
80ab2d6fab184d57f685166b4ab7da6fd259bbe2
Bump version number to 1.4.0.
catcombo/django-speedinfo,catcombo/django-speedinfo,catcombo/django-speedinfo
setup.py
setup.py
# coding: utf-8 from os.path import join, dirname from setuptools import setup with open(join(dirname(__file__), 'README.rst')) as f: long_description = f.read() setup( name='django-speedinfo', version='1.4.0', packages=['speedinfo', 'speedinfo.migrations', 'speedinfo.conditions'], include_packa...
# coding: utf-8 from os.path import join, dirname from setuptools import setup with open(join(dirname(__file__), 'README.rst')) as f: long_description = f.read() setup( name='django-speedinfo', version='1.3.7', packages=['speedinfo', 'speedinfo.migrations', 'speedinfo.conditions'], include_packa...
mit
Python
e1d94048c6c2349eeaaeccf2b4d5047dacb0870b
Update changelog for Python 3.4 lxml dependency
pyecore/pyecore,aranega/pyecore
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import setup version = tuple(sys.version_info[:2]) if version < (3, 3): sys.exit('Sorry, Python < 3.3 is not supported') if version == (3, 4): lxml_version = 'lxml<4.4.0' else: lxml_version = 'lxml' packages = ['pyecore', 'pyecore.resources'...
#!/usr/bin/env python import sys from setuptools import setup if sys.version_info < (3, 3): sys.exit('Sorry, Python < 3.3 is not supported') packages = ['pyecore', 'pyecore.resources', 'pyecore.type'] setup( name='pyecore', version='0.10.4-dev', description=('A Python(ic) Imp...
bsd-3-clause
Python
6bf1d9116855275ab8b561cdd03ece5932809940
bump version
qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pillowtop', version='0.1.2', description='A couchdbkit changes listener for doing backend processing', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', packages=find_packages(exclude=...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pillowtop', version='0.1.1', description='A couchdbkit changes listener for doing backend processing', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', packages=find_packages(exclude=...
bsd-3-clause
Python
b35bac9070ee0b01eea86c696b0e1323defe2f9f
Remove setup requirement of nose to allow offline installation
knowsis/flask-pymongo,xebitstudios/flask-pymongo,mcreenan/flask-pymongo,mcreenan/flask-pymongo,dcrosta/flask-pymongo,Dannnno/flask-pymongo,hbldh/flask-pymongo
setup.py
setup.py
""" Flask-PyMongo ------------- PyMongo support for Flask applications. Installation ============ Flask-PyMongo is pip-installable: pip install Flask-PyMongo You can install the latest development snapshot like so: pip install http://github.com/dcrosta/flask-pymongo/tarball/master#egg=Flask-PyMongo-dev U...
""" Flask-PyMongo ------------- PyMongo support for Flask applications. Installation ============ Flask-PyMongo is pip-installable: pip install Flask-PyMongo You can install the latest development snapshot like so: pip install http://github.com/dcrosta/flask-pymongo/tarball/master#egg=Flask-PyMongo-dev U...
bsd-2-clause
Python
7a2e9fb6ba30263ff0d8c67aed389da2f88dd095
update author email
froch/kubernetes-py,sebastienc/kubernetes-py,froch/kubernetes-py,mnubo/kubernetes-py,sebastienc/kubernetes-py,mnubo/kubernetes-py
setup.py
setup.py
import os try: from setuptools import setup except ImportError: from distutils.core import setup # See https://github.com/pybuilder/pybuilder/issues/56 del os.link # install_reqs = parse_requirements(os.path.abspath(__file__).replace('setup.py', 'requirements.txt'), # sessio...
import os try: from setuptools import setup except ImportError: from distutils.core import setup # See https://github.com/pybuilder/pybuilder/issues/56 del os.link # install_reqs = parse_requirements(os.path.abspath(__file__).replace('setup.py', 'requirements.txt'), # sessio...
apache-2.0
Python
4a7b0da083cb51612f718e95ca5008ca518acbe3
Fix installation on python3 with LC_ALL=C
hellysmile/django-activeurl,hellysmile/django-activeurl
setup.py
setup.py
from setuptools import setup classifiers = '''\ Framework :: Django Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP License :: OSI Approved :: Apache Software License Development Status :: 5 - Production/Stable Natural Language :: English Programming Language :: Python Pro...
from setuptools import setup classifiers = '''\ Framework :: Django Environment :: Web Environment Intended Audience :: Developers Topic :: Internet :: WWW/HTTP License :: OSI Approved :: Apache Software License Development Status :: 5 - Production/Stable Natural Language :: English Programming Language :: Python Pro...
apache-2.0
Python
7b77297f9099019f4424c7115deb933dd51eaf80
Include buffer.h as a dependency for rebuilds
blake-sheridan/py-serializer,blake-sheridan/py-serializer
setup.py
setup.py
#!/usr/local/bin/python3 from distutils.core import setup, Extension setup( name = 'Encoder', version = '1.0', description = 'Encode stuff', ext_modules = [ Extension( name = '_encoder', sources = [ 'src/encoder.c', 'src/module.c', ...
#!/usr/local/bin/python3 from distutils.core import setup, Extension setup( name = 'Encoder', version = '1.0', description = 'Encode stuff', ext_modules = [ Extension( name = '_encoder', sources = [ 'src/encoder.c', 'src/module.c', ...
apache-2.0
Python
df01f727f4bc1568a1d3b44485e31f4bc98a7949
fix entry point name
throwable-one/teamcity-messages
setup.py
setup.py
# coding=utf-8 from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): #import here, cause out...
# coding=utf-8 from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): #import here, cause out...
apache-2.0
Python
d433bb34cce3425f8d6d56b9426434ab969f8f48
bump version of billjobs
ioO/billjobs
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-billjobs', version='0.6.6',...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-billjobs', version='0.6.5',...
mit
Python
eac2e6e72652b1b0e3e9801b8fe6456617e5bc0e
Bump version.
armet/python-armet
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys import platform # Required test dependencies. test_dependencies = ( # Test runner. 'pytest', # Ensure PEP8 conformance. 'pytest-pep8', # Ensure test coverage. 'pytest-cov', # Benchmarki...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys import platform # Required test dependencies. test_dependencies = ( # Test runner. 'pytest', # Ensure PEP8 conformance. 'pytest-pep8', # Ensure test coverage. 'pytest-cov', # Benchmarki...
mit
Python
b658eca15dc1b7ddb278384f20f48ee2c7a90a28
Fix the address messed while version bump
fedora-infra/fedimg,fedora-infra/fedimg
setup.py
setup.py
# This file is part of fedimg. # Copyright (C) 2014-2018 Red Hat, Inc. # # fedimg is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version...
# This file is part of fedimg. # Copyright (C) 2014 Red Hat, Inc. # # fedimg is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # #...
agpl-3.0
Python
80378405df1ecdcaf7ac23e230ec15190a952444
bump version again (sorry peeps)
digicert/digicert_express,digicert/digicert_express
setup.py
setup.py
from setuptools import setup, find_packages def readme(): with open('README.rst') as f: return f.read() setup( name='digicert-express', version='1.0.dev9', description='Express Install for DigiCert, Inc.', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alph...
from setuptools import setup, find_packages def readme(): with open('README.rst') as f: return f.read() setup( name='digicert-express', version='1.0.dev8', description='Express Install for DigiCert, Inc.', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alph...
mit
Python
31129882f0a3db5c18e66dc9a803161d4b94fd4f
Add new data files to setup includes
poldracklab/fmriprep,oesteban/preprocessing-workflow,oesteban/fmriprep,oesteban/fmriprep,poldracklab/fmriprep,poldracklab/fmriprep,poldracklab/preprocessing-workflow,oesteban/preprocessing-workflow,oesteban/fmriprep,poldracklab/preprocessing-workflow
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: oesteban # @Date: 2015-11-19 16:44:27 """ fmriprep setup script """ def main(): """ Install entry-point """ from io import open from os import path as op from inspect import getfile, currentframe from setuptools import setup, find_packages...
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: oesteban # @Date: 2015-11-19 16:44:27 """ fmriprep setup script """ def main(): """ Install entry-point """ from io import open from os import path as op from inspect import getfile, currentframe from setuptools import setup, find_packages...
bsd-3-clause
Python
b17a49cdeabe5b6ca093a64ff76630247d5b2edf
add arm_wells to list of installed packages
armstrong/armstrong
setup.py
setup.py
from datetime import datetime from distutils.core import setup import os import subprocess if os.path.exists("MANIFEST"): os.unlink("MANIFEST") VERSION = ("11", "06", "0", "alpha", "0") setup( name='armstrong', version=".".join(VERSION), description="Armstrong is an open-source publishing system desi...
from datetime import datetime from distutils.core import setup import os import subprocess if os.path.exists("MANIFEST"): os.unlink("MANIFEST") VERSION = ("11", "06", "0", "alpha", "0") setup( name='armstrong', version=".".join(VERSION), description="Armstrong is an open-source publishing system desi...
apache-2.0
Python
cc9e01d35c14870884135375fa5f5a3f52852b67
Upgrade to PrettyTables 0.7.1
svdata/mongodb-tools,safanaj/mongodb-tools,andyfoundi/mongodb-tools,safanaj/mongodb-tools,yaowenqiang/mongodb-tools,jwilder/mongodb-tools,svdata/mongodb-tools,yaowenqiang/mongodb-tools,andyfoundi/mongodb-tools,jwilder/mongodb-tools
setup.py
setup.py
from setuptools import setup, find_packages version='0.2' packages = find_packages(exclude=['ez_setup', 'examples', 'tests']) print packages setup( name='mongodbtools', version=version, description='Python tools for working with MongoDB', author='Jason Wilder', author_email='code@jasonwilder.com',...
from setuptools import setup, find_packages version='0.1' packages = find_packages(exclude=['ez_setup', 'examples', 'tests']) print packages setup( name='mongodbtools', version=version, description='Python tools for working with MongoDB', author='Jason Wilder', author_email='code@jasonwilder.com',...
mit
Python
ff2a6fff9c80616cb7c603de8affc8ff657896ff
Remove references to deleted files from setup.py
jbittel/django-multimedia,teury/django-multimedia
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup from multimedia import __version__ as version packages = [ 'multimedia', 'multimedia.migrations', ] package_data = { '': ['AUTHORS', 'LICENSE', 'README.rst'], 'multimedia': ['fixture...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup from multimedia import __version__ as version packages = [ 'multimedia', 'multimedia.conf', 'multimedia.migrations', ] package_data = { '': ['AUTHORS', 'LICENSE', 'README.rst'], ...
bsd-3-clause
Python
de1c63599b20ea29e20f1422f0768a38873cc6df
remove unused imports in setup.py
benvanwerkhoven/kernel_tuner
setup.py
setup.py
import os from setuptools import setup def readme(): with open('README.rst') as f: return f.read() def required(): with open('requirements.txt') as f: return f.read().splitlines() setup( name = "kernel_tuner", version = "0.1.6", author = "Ben van Werkhoven", author_email = "b....
import os from setuptools import setup import kernel_tuner from kernel_tuner import interface def readme(): with open('README.rst') as f: return f.read() def required(): with open('requirements.txt') as f: return f.read().splitlines() setup( name = "kernel_tuner", version = "0.1.6", ...
apache-2.0
Python
d88f61adc456ba202268b9a27642eda12a2896b9
Bump version number
oceanobservatories/mi-instrument,danmergens/mi-instrument,vipullakhani/mi-instrument,danmergens/mi-instrument,oceanobservatories/mi-instrument,vipullakhani/mi-instrument,janeen666/mi-instrument,tapanagupta/mi-instrument,janeen666/mi-instrument,janeen666/mi-instrument,renegelinas/mi-instrument,renegelinas/mi-instrument
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup version = '0.3.83' setup(name='mi-instrument', version=version, description='OOINet Marine Integrations', url='https://github.com/oceanobservatories/mi-instrument', ...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup version = '0.3.82' setup(name='mi-instrument', version=version, description='OOINet Marine Integrations', url='https://github.com/oceanobservatories/mi-instrument', ...
bsd-2-clause
Python
f58383245d5e0269965a0becfd7347004eb2a130
bump version
EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi
setup.py
setup.py
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "1.4.0" install_requirements = [] with open(_requirements) as f: ...
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "1.3.6" install_requirements = [] with open(_requirements) as f: ...
apache-2.0
Python
32a1f4915216dc77e4c2c0a834a26c5401068e25
Add python_requires to help pip
tkrajina/gpxpy
setup.py
setup.py
#!/usr/bin/python # Copyright 2011 Tomo Krajina # # 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...
#!/usr/bin/python # Copyright 2011 Tomo Krajina # # 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...
apache-2.0
Python
5d9e13af36431fc7c7024cf2499e43e053487466
add python3 trove classifier
pombredanne/toolshed,brentp/toolshed
setup.py
setup.py
import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '0.3.5' install_requires = [ 'nose', ] setup(na...
import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '0.3.4' install_requires = [ 'nose', ] setup(na...
bsd-2-clause
Python
33b39eab9050650b8dcfac0a1e910fe9d9b3e526
Update setup.py
bow/fsnviz
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup from fsnviz import __author__, __contact__, \ __homepage__, __version__ with open("README.rst") as src: readme = src.read() with open("HISTORY.rst") as src: history = src.read().replace(".. :changelog:", "").s...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup from fsnviz import __author__, __contact__, \ __homepage__, __version__ with open("README.rst") as src: readme = src.read() with open("HISTORY.rst") as src: history = src.read().replace(".. :changelog:", "").s...
bsd-3-clause
Python
6d53226a73368ead87327d82440f6572b12622e2
Add Classifiers
SheepDogInc/sheepdog_tables,SheepDogInc/sheepdog_tables
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "sheepdog_tables", version = "0.5", author = "Alex Hart, Adam Thurlow", author_email = "alex@sheepdoginc.ca, adam@sheepdoginc.ca", description = ("Easy to use tables API for Django"), license = "BSD", keywords = "tables", url = "...
import sheepdog_tables from setuptools import setup, find_packages setup( name = "sheepdog_tables", version = "0.5", author = "Alex Hart, Adam Thurlow", author_email = "alex@sheepdoginc.ca, adam@sheepdoginc.ca", description = ("Easy to use tables API for Django"), license = "BSD", keywords...
bsd-3-clause
Python
fb9f675468a0309b0908b333c7059a1228fffec0
Fix submodules exposure in setup.py
oleiade/Dormeur
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup version = __import__('dormeur').__version__ setup( name='Dormeur', version=version, license='MIT', description='Restful webservices creation library built on top of flask', author='Oleiade', author_email='tcrevon@gmai...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup version = __import__('dormeur').__version__ setup( name='Dormeur', version=version, license='MIT', description='Restful webservices creation library built on top of flask', author='Oleiade', author_email='tcrevon@gmai...
mit
Python
a37391b7959dd81e10f189b9f0192db67e978b7f
Add missing library requirement to setup.py.
tilezen/scoville,tilezen/scoville,tilezen/scoville
setup.py
setup.py
from setuptools import setup, find_packages version = '0.2.0' setup( name='scoville', version=version, description="A tool for attributing MVT tile size.", long_description=open('README.md').read(), classifiers=[ # strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers ...
from setuptools import setup, find_packages version = '0.2.0' setup( name='scoville', version=version, description="A tool for attributing MVT tile size.", long_description=open('README.md').read(), classifiers=[ # strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers ...
mit
Python
d733d7cac48a7ff4e72c250204352c7832d93a4d
add download url
antirais/estnin
setup.py
setup.py
#!/usr/bin/env python3 # coding: UTF-8 from setuptools import setup, find_packages, Command import os import subprocess root = os.path.abspath('.') current_dir = os.path.dirname(__file__) def read_file(file_name): with open(os.path.join(current_dir, file_name), 'r') as file: return file.read() README = read_fil...
#!/usr/bin/env python3 # coding: UTF-8 from setuptools import setup, find_packages, Command import os import subprocess root = os.path.abspath('.') current_dir = os.path.dirname(__file__) def read_file(file_name): with open(os.path.join(current_dir, file_name), 'r') as file: return file.read() README = read_fil...
mit
Python
72da91645ecbdd2b92a4359fbf8e3155858082a6
Update setup.py (#27)
edx-solutions/projects-edx-platform-extensions
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='projects-edx-platform-extensions', version='1.1.13', description='Projects management extension for edX platform', long_description=open('README.rst').read(), author='edX', url='https://github.com/edx-solutions/proj...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='projects-edx-platform-extensions', version='1.1.12', description='Projects management extension for edX platform', long_description=open('README.rst').read(), author='edX', url='https://github.com/edx-solutions/proj...
agpl-3.0
Python
dbdac1c2fc774eb0071c0677f853b197704c690c
Use prefixed version scheme
nocarryr/python-dispatch
setup.py
setup.py
import sys from setuptools import setup, find_packages setup_requires = [] if 'bdist_wheel' in sys.argv: setup_requires.append('setuptools-markdown') setup( name = "python-dispatch", version = "v0.0.1", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Light...
import sys from setuptools import setup, find_packages setup_requires = [] if 'bdist_wheel' in sys.argv: setup_requires.append('setuptools-markdown') setup( name = "python-dispatch", version = "0.0.1", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Lightw...
mit
Python
5e3de8bbfa5bd90e578186f800193e00508e64b1
Update version
samueldmq/infosystem
setup.py
setup.py
from setuptools import setup, find_packages setup( name='infosystem', version='0.1.68', summary='Infosystem Framework', url='https://github.com/samueldmq/infosystem', author='Samuel de Medeiros Queiroz, Francois Oliveira', author_email='samueldmq@gmail.com, oliveira.francois@gmail.com', li...
from setuptools import setup, find_packages setup( name='infosystem', version='0.1.67', summary='Infosystem Framework', url='https://github.com/samueldmq/infosystem', author='Samuel de Medeiros Queiroz, Francois Oliveira', author_email='samueldmq@gmail.com, oliveira.francois@gmail.com', li...
apache-2.0
Python
24d9c52de50978ffdf53e367f69f0f51ecc12cb2
Fix using dash in package dir
infobloxopen/infoblox-client,bondar-pavel/infoblox-client,arnaudcoquelet/infoblox-client
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().replace('.. :changelog:', ...
#!/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().replace('.. :changelog:', ...
apache-2.0
Python
6ce21e6266f3557c82e71643d7366e329ec38427
Use setuptools.find_packages()
njvack/scorify
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import os def get_locals(filename): l = {} with open(filename, 'r') as f: code = compile(f.read(), filename, 'exec') exec(code, {}, l) return l metadata = get_locals(os.path.join('scorify', '_metad...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import os def get_locals(filename): l = {} with open(filename, 'r') as f: code = compile(f.read(), filename, 'exec') exec(code, {}, l) return l metadata = get_locals(os.path.join('scorify', '_metadata.py')) setup...
mit
Python
5b22e61f57f6f0c7ff54e42956f59f8766648213
Add test dependency on pytest.
google/proto-task-queue
setup.py
setup.py
# python3 # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to i...
# python3 # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to i...
apache-2.0
Python
17d0587d4de6feeed252c189fd52aa5d801cc464
Update command.py
Groupe24/CodeInSpace
src/command.py
src/command.py
def parse_command(command, game_stats): """ Parse a command from a player and run it. Parameters ---------- command : command from the player (str). game_stats : stat of the game (dic). Return ------ new_game_stats : game stat after the command execution (dic). """ raise No...
def parse_command(command, game_stats): """ Parse a command from a player and run it. Parameters ---------- command : command from the player (str). game_stats : stat of the game (dic). Return ------ new_game_stats : game stat after the command execution (dic). """ raise No...
mit
Python
cf0756b49aa8d462c45b14fcbd0cb8865b0f7369
update setup.py with dependencies and renamed script
longaccess/longaccess-client,longaccess/longaccess-client,longaccess/longaccess-client
setup.py
setup.py
from setuptools import setup, find_packages from lacli import __version__ setup(version=unicode(__version__), name="lacli", author="Konstantinos Koukopoulos", description="The Long Access client", long_description=open('README').read(), packages=['lacli', 'lacli.t'], install_require...
from setuptools import setup, find_packages from lacli import __version__ setup(version=unicode(__version__), name="lacli", author="Konstantinos Koukopoulos", description="The Long Access client", long_description=open('README').read(), packages=['lacli', 'lacli.t'], install_require...
apache-2.0
Python
c0dd2bc14237a90a477cd9a9c8c88ff2d0a407f6
Add dependencies to setup.py
congruency/txpoloniex
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='txpoloniex', version='0.1', description='Minimalist Twisted wrapper for the Poloniex API', author='Daniel Walsh', author_email='459dan@gmail.com', packages=['txpoloniex'], install_requires=[ 'txaio>=2.6.0', ...
#!/usr/bin/env python from distutils.core import setup setup( name='txpoloniex', version='0.1', description='Minimalist Twisted wrapper for the Poloniex API', author='Daniel Walsh', author_email='459dan@gmail.com', packages=['txpoloniex'], )
apache-2.0
Python
e48f1b7e51ec10f449f867de430b6d0603c165cb
Fix incorrect dependency version on six. Fixes #47.
danfairs/django-lazysignup,danfairs/django-lazysignup
setup.py
setup.py
from setuptools import setup, find_packages import os import re def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'lazysignup/version.py' mo = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', open(VERSION_FILE, 'rt').read(), re.M) if mo: re...
from setuptools import setup, find_packages import os import re def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'lazysignup/version.py' mo = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', open(VERSION_FILE, 'rt').read(), re.M) if mo: re...
bsd-3-clause
Python
001f2515367fe8b057a58d2caecc657d6cc9672b
Fix link in setup.py
aranzgeo/omf,GMSGDataExchange/omf
setup.py
setup.py
#!/usr/bin/env python """omf: API Library for Open Mining Format""" from distutils.core import setup from setuptools import find_packages CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Programming Language :: Python', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathemati...
#!/usr/bin/env python """omf: API Library for Open Mining Format""" from distutils.core import setup from setuptools import find_packages CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Programming Language :: Python', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathemati...
mit
Python
1b2d678b3a6cf86e0a8502ef8ede8dd305ec6eaf
bump to version 0.1.10
enricobacis/wos
setup.py
setup.py
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version='0.1....
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version='0.1....
mit
Python
e7ddf50273d47a6642cbc7d6939a28e6603bfdcf
Fix setup.py
rkibria/yapyg,rkibria/yapyg
setup.py
setup.py
from os import environ from os.path import dirname, join from distutils.core import setup from distutils.extension import Extension try: from Cython.Build import cythonize have_cython = True except ImportError: have_cython = False if have_cython: ext = cythonize("yapyg/*.pyx") + cythoni...
from os import environ from os.path import dirname, join from distutils.core import setup from distutils.extension import Extension try: from Cython.Build import cythonize have_cython = True except ImportError: have_cython = False if have_cython: ext = cythonize("yapyg/*.pyx") + cythoni...
mit
Python
e563586b6877554e810e32737e5221e5edaaa487
remove backports.typing in 3.5.2, because it is annoying.
ztane/tet
setup.py
setup.py
import os, sys from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = """ pyramid>=1.9 passlib six sqlalchemy pyramid_services """.spli...
import os, sys from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = """ pyramid>=1.9 passlib six sqlalchemy pyramid_services """.spli...
bsd-3-clause
Python
3839dc3e2db9187bae6ed667c4667c6f804875a9
Include corebio LICENSE
JohnReid/bioinf-utilities,JohnReid/bioinf-utilities
setup.py
setup.py
#!/usr/bin/env python # -*- coding: latin-1 -*- # # Copyright John Reid 2012 # """ distutils setup script """ from setuptools import setup setup( name = 'bioinf-utilities', version = '1.3.22', description = 'Some utilities for sequence analysis', long_description = open(...
#!/usr/bin/env python # -*- coding: latin-1 -*- # # Copyright John Reid 2012 # """ distutils setup script """ from setuptools import setup setup( name = 'bioinf-utilities', version = '1.3.22', description = 'Some utilities for sequence analysis', long_description = open(...
mit
Python
dcc6dafdafff23f8b8443b44a868618ce9d26afc
Add Python 2.7 and 3 classifier to PyPi
rjw57/rbc,rjw57/rbc
setup.py
setup.py
""" Setup configuration for installation via pip, easy_install, etc. """ import sys from setuptools import setup, find_packages # Python 3.4+ comes with enum.Enum. For prior Pythons, we can install the enum34 # package from PyPI. if sys.hexversion < 0x030400F0: enum_requires = ['enum34'] else: enum_requires =...
""" Setup configuration for installation via pip, easy_install, etc. """ import sys from setuptools import setup, find_packages # Python 3.4+ comes with enum.Enum. For prior Pythons, we can install the enum34 # package from PyPI. if sys.hexversion < 0x030400F0: enum_requires = ['enum34'] else: enum_requires =...
mit
Python
db77800addb6abf6aacc9e66fe53a30985323482
Bump version number so pip installs spot the upgrade. by: harry
pythonanywhere/resolver_test
setup.py
setup.py
from setuptools import find_packages, setup setup( name='resolver_test', version='1.1', packages=find_packages() )
from setuptools import find_packages, setup setup( name='resolver_test', version='1.0.1', packages=find_packages() )
mit
Python
f6bd3f6251ae9e8303e1748b229a64cbdaea7954
Update pin for 'grpc-google-iam-v1' to 0.12.3+. (#8647)
googleapis/python-bigtable,googleapis/python-bigtable
setup.py
setup.py
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
apache-2.0
Python
c110cbecd7d0ae7e877963914a1a5af030cd6d45
Bump version
okfn/ofs
setup.py
setup.py
from setuptools import setup, find_packages try: fo = open('README.rst') long_description = fo.read() except: long_description="""OFS - provides plugin-orientated low-level blobstore. """, finally: fo.close() setup( name="ofs", version="0.4.3", description="OFS - provides plugin-orientated...
from setuptools import setup, find_packages try: fo = open('README.rst') long_description = fo.read() except: long_description="""OFS - provides plugin-orientated low-level blobstore. """, finally: fo.close() setup( name="ofs", version="0.4.2", description="OFS - provides plugin-orientated...
mit
Python
cb5d3a5c3ab36b1285678de26ae809cb38f2cf61
Update version to 0.5.0
burmanm/hawkular-client-python,burmanm/hawkular-client-python,hawkular/hawkular-client-python,hawkular/hawkular-client-python
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup from os import path from setuptools.command.install import install here = path.abspath(path.dirname(__file__)) # Create rst here from Markdown if path.exists(path.join(here, 'README.md')): import pypandoc z = pypandoc.convert('README.md','rst',format='ma...
#!/usr/bin/env python from distutils.core import setup from os import path from setuptools.command.install import install here = path.abspath(path.dirname(__file__)) # Create rst here from Markdown if path.exists(path.join(here, 'README.md')): import pypandoc z = pypandoc.convert('README.md','rst',format='ma...
apache-2.0
Python
b6c97cce5ff3160a6537b56ca0b8958bd792b739
remove package_dir
Conway/perspective
setup.py
setup.py
import setuptools with open("README.md", "r", encoding="utf-8") as file: long_description = file.read() setuptools.setup( name="perspective", version="1.0.0", author="Jake Conway", author_email="jake.h.conway@gmail.com", description="A package for interacting with the Perspective API", lon...
import setuptools with open("README.md", "r", encoding="utf-8") as file: long_description = file.read() setuptools.setup( name="perspective", version="1.0.0", author="Jake Conway", author_email="jake.h.conway@gmail.com", description="A package for interacting with the Perspective API", lon...
unlicense
Python
420fc934863db06ceac16ff032cd1a5fccd026ac
Bump version.
pozytywnie/django-facebook-auth,jgoclawski/django-facebook-auth,jgoclawski/django-facebook-auth,pozytywnie/django-facebook-auth
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup def read(name): from os import path return open(path.join(path.dirname(__file__), name)).read() setup( name='django-facebook-auth', version='2.4', description="Authorisation app for Facebook API.", long_description=read("README.rst"), ...
#!/usr/bin/env python from distutils.core import setup def read(name): from os import path return open(path.join(path.dirname(__file__), name)).read() setup( name='django-facebook-auth', version='2.3', description="Authorisation app for Facebook API.", long_description=read("README.rst"), ...
mit
Python
11844e5b403c98f5acf4b40f47a065e9ca4beb1f
Update for next beta
jonfoster/pyxb2,pabigot/pyxb,jonfoster/pyxb1,jonfoster/pyxb-upstream-mirror,jonfoster/pyxb-upstream-mirror,jonfoster/pyxb2,jonfoster/pyxb2,CantemoInternal/pyxb,CantemoInternal/pyxb,jonfoster/pyxb1,pabigot/pyxb,balanced/PyXB,CantemoInternal/pyxb,balanced/PyXB,jonfoster/pyxb-upstream-mirror,balanced/PyXB
setup.py
setup.py
from distutils.core import setup # Require Python 2.4 setup(name='PyWXSB', description = 'Python W3C Schema XML Bindings', author='Peter A. Bigot', author_email='pywxsb@comcast.net', url='http://home.comcast.net/~pabigot/pywxsb', version='0.1.3', packages=[ 'pywxsb', 'pywxsb.bindin...
from distutils.core import setup # Require Python 2.4 setup(name='PyWXSB', description = 'Python W3C Schema XML Bindings', author='Peter A. Bigot', author_email='pywxsb@comcast.net', url='http://home.comcast.net/~pabigot/pywxsb', version='0.1.1', packages=[ 'pywxsb', 'pywxsb.bindin...
apache-2.0
Python
97bda5a9fccd6aa5520dfc0d6c650931aabe87a5
Fix matpackops compilation with gcc 6 (#222)
GPflow/GPflow
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function from setuptools import setup import re import os import sys # load version form _version.py VERSIONFILE = "GPflow/_version.py" verstrline = open(VERSIONFILE, "rt").read() VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" mo = re.search(VSRE...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function from setuptools import setup import re import os import sys # load version form _version.py VERSIONFILE = "GPflow/_version.py" verstrline = open(VERSIONFILE, "rt").read() VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" mo = re.search(VSRE...
apache-2.0
Python
1a6597d395b12f1f32f829490ab35d598a18bdd8
add python2 tag
observerss/ngender,sdgdsffdsfff/ngender
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ngender', version='0.1.0', description='Guess gender for Chinese names', url='https://github.com/observerss/ngender', author='Jingchao Hu(observerss)', author_email='jingchaohu@gmail.com'...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ngender', version='0.1.0', description='Guess gender for Chinese names', url='https://github.com/observerss/ngender', author='Jingchao Hu(observerss)', author_email='jingchaohu@gmail.com'...
mit
Python
d20faf5c9fd08d0db669e3ddfd1659bef6b0f195
Bump to 0.1.2
alexmojaki/executing,alexmojaki/executing
setup.py
setup.py
from setuptools import setup package = 'executing' setup(name=package, version='0.1.2', description='Get the currently executing AST node of a frame, and other information', url='https://github.com/alexmojaki/' + package, author='Alex Hall', author_email='alex.mojaki@gmail.com', l...
from setuptools import setup package = 'executing' setup(name=package, version='0.1.1', description='Get the currently executing AST node of a frame, and other information', url='https://github.com/alexmojaki/' + package, author='Alex Hall', author_email='alex.mojaki@gmail.com', l...
mit
Python
8c3d7d767bc576368c3504ffdc11843bc63812aa
Add production / stable classifier
springload/draftjs_exporter,springload/draftjs_exporter,springload/draftjs_exporter
setup.py
setup.py
#!/usr/bin/env python from __future__ import absolute_import, unicode_literals import io from draftjs_exporter import __version__ from setuptools import find_packages, setup dependencies = { # Keep this in sync with the dependencies in tox.ini. 'lxml': [ 'lxml>=4.2.0,<5', ], 'html5lib': [ ...
#!/usr/bin/env python from __future__ import absolute_import, unicode_literals import io from draftjs_exporter import __version__ from setuptools import find_packages, setup dependencies = { # Keep this in sync with the dependencies in tox.ini. 'lxml': [ 'lxml>=4.2.0,<5', ], 'html5lib': [ ...
mit
Python
e959eec1f56445a458d210410b84f6e374a52780
Bump to 1.2.0 .
vpelletier/python-libusb1,vpelletier/python-libusb1
setup.py
setup.py
from distutils.core import setup import os long_description = open( os.path.join(os.path.dirname(__file__), 'README.rst') ).read() try: next except NameError: # "next" builtin missing < 2.6 next = lambda x: x.next() setup( name='libusb1', description=next(x for x in long_description.splitlines(...
from distutils.core import setup import os long_description = open( os.path.join(os.path.dirname(__file__), 'README.rst') ).read() try: next except NameError: # "next" builtin missing < 2.6 next = lambda x: x.next() setup( name='libusb1', description=next(x for x in long_description.splitlines(...
lgpl-2.1
Python
c1646e8c87f0704f893d9b3afdd1e68720a96af2
Bump version for new release
Floobits/flootty
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='Flootty', version='0.09', description='Floobits collaborative terminal', author='Floobits', author_email='info@floobits.com', url='https://floobits.com/', license="Apache2", py_modules=['flootty'], entry_poi...
#!/usr/bin/env python from setuptools import setup setup(name='Flootty', version='0.08', description='Floobits collaborative terminal', author='Floobits', author_email='info@floobits.com', url='https://floobits.com/', license="Apache2", py_modules=['flootty'], entry_poi...
apache-2.0
Python
d4c37810c430f3b1a5a0bdc85c481cc313fc2a72
Use same version of messytables as in requirements
scraperwiki/xypath
setup.py
setup.py
from setuptools import setup, find_packages long_desc = """ XYPath is aiming to be XPath for spreadsheets: it offers a framework for navigating around and extracting values from tabular data. """ # See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers setup( name='xypath', version='1.0.1...
from setuptools import setup, find_packages long_desc = """ XYPath is aiming to be XPath for spreadsheets: it offers a framework for navigating around and extracting values from tabular data. """ # See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers setup( name='xypath', version='1.0.1...
bsd-2-clause
Python
3c7d840c56f70e7f6ec5df1cd7457e4b086aebe6
Set status to 5 - Production/Stable
dpaleino/coil,getnikola/coil,dpaleino/coil,dpaleino/coil,getnikola/coil,getnikola/coil
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- import io from setuptools import setup with open('requirements.txt', 'r') as fh: dependencies = [l.strip() for l in fh] setup(name='coil', version='1.3.1', description='A user-friendly CMS frontend for Nikola.', keywords='coil,nikola,cms', au...
#!/usr/bin/env python # -*- encoding: utf-8 -*- import io from setuptools import setup with open('requirements.txt', 'r') as fh: dependencies = [l.strip() for l in fh] setup(name='coil', version='1.3.1', description='A user-friendly CMS frontend for Nikola.', keywords='coil,nikola,cms', au...
mit
Python
03db34f997186718a41b345222a830da83ec2a9e
increase version
SiLab-Bonn/online_monitor
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code version = '0.1.1' author = 'David-Leon Pohl' author_email = 'pohl@physik.uni-bonn.de' # requirements for core functionality from requirements.txt with open('requir...
#!/usr/bin/env python from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code version = '0.0.1' author = 'David-Leon Pohl' author_email = 'pohl@physik.uni-bonn.de' # requirements for core functionality from requirements.txt with open('requir...
mit
Python
7d13abd4320f69aefe38e14fe272e123f8c8b371
Update version
hearsaycorp/richenum,adepue/richenum
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'unittest2', ] setup( name='richenum', version='1.0.5', description='Enum library for python.', long_description=( open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read() + '\n\n' + ...
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ 'unittest2', ] setup( name='richenum', version='1.0.4', description='Enum library for python.', long_description=( open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read() + '\n\n' + ...
mit
Python
2ac74f2373d601d9b3f12a706f0ae8f7cfb49a4c
make travis tests great again
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.7.3' 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.7.2' description = "A content translation framework using Postgresql's jsonb" + \ " field in the background" url = 'https://github.com/tatte...
bsd-3-clause
Python
f82ede26293902e3707248f64e886da89db137a6
Update setup.py info
geex-arts/django-jet,SalahAdDin/django-jet,pombredanne/django-jet,pombredanne/django-jet,SalahAdDin/django-jet,geex-arts/django-jet,rcotrina94/django-jet,SalahAdDin/django-jet,rcotrina94/django-jet,geex-arts/django-jet,pombredanne/django-jet,rcotrina94/django-jet
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): path = os.path.join(os.path.dirname(__file__), fname) try: file = open(path, encoding='utf-8') except TypeError: file = open(path) return file.read() def get_install_requires(): install_requires = ['Django'] ...
import os from setuptools import setup, find_packages def read(fname): path = os.path.join(os.path.dirname(__file__), fname) try: file = open(path, encoding='utf-8') except TypeError: file = open(path) return file.read() def get_install_requires(): install_requires = ['Django'] ...
agpl-3.0
Python
b57d43c43b62b17721ea4a89e131ccaad2f8bd8a
Bump Version to 2.0.52-dev
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
bsd-2-clause
Python
64c61df0c86cf79459174b1635fc6a99dcce329e
Update hvad version
dinoperovic/django-shop-catalog,dinoperovic/django-shop-catalog
setup.py
setup.py
#!/usr/bin/env python #-*- coding: utf-8 -*- from __future__ import unicode_literals import os from setuptools import setup, find_packages version = __import__('shop_catalog').__version__ readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup( name='django-shop-catalog', version=v...
#!/usr/bin/env python #-*- coding: utf-8 -*- from __future__ import unicode_literals import os from setuptools import setup, find_packages version = __import__('shop_catalog').__version__ readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup( name='django-shop-catalog', version=v...
bsd-3-clause
Python
381e26a02ee46437ea840babe6462f48c496f5fe
Update to v2.0.0 with py3 only support
bertrandvidal/parse_this
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup README_PATH = os.path.join(os.path.dirname(__file__), "README.md") with open(README_PATH, "r") as README_FILE: README = README_FILE.read() setup( name="parse_this", version="2.0.0", description=( "Makes it easy to create a command li...
#!/usr/bin/env python import os from setuptools import setup README_PATH = os.path.join(os.path.dirname(__file__), "README.md") with open(README_PATH, "r") as README_FILE: README = README_FILE.read() setup( name="parse_this", version="1.0.3", description=( "Makes it easy to create a command li...
mit
Python
60b0af564eda1e8a6fe719fe27e034a86c38be8b
Edit description
j4mie/rediset,j4mie/rediset
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='rediset', version='0.0.1', description='Composable, cacheable, lazy trees of Redis set operations', author='Jamie Matthews', author_email='jamie.matthews@gmail.com', url='http://github.com/j4mie/rediset', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='rediset', version='0.0.1', description='Redis lazy set abstraction', author='Jamie Matthews', author_email='jamie.matthews@gmail.com', url='http://github.com/j4mie/rediset', py_modules=['rediset'], ...
unlicense
Python
f3c4b56c53ec36405fce8856c875a366b021e42f
clean up setup.py to use much improved functionality, thanks to UtahPython
printerpam/d-note,printerpam/d-note,herlo/d-note,atoponce/d-note,printerpam/d-note,herlo/d-note,atoponce/d-note,atoponce/d-note
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os import glob def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='dnote', version='1.0.1', description='d-note is a self-destructing notes web application', packages=find_packag...
#!/usr/bin/env python from setuptools import setup import os import glob DCONFIG = os.path.dirname(os.path.realpath(__file__)) + "/dnote/dconfig.py" if not os.path.exists(DCONFIG): with open(DCONFIG, 'w') as f: f.write('aes_salt = "%s"\n' % os.urandom(16).encode('hex')) f.write('mac_salt = "%s"\...
agpl-3.0
Python
eae2282791d53d52824085b0d93338d73ef72114
Move to version 1.6.0
controversial/livejson
setup.py
setup.py
from setuptools import setup setup( name="livejson", py_modules=["livejson"], version="1.6.0", description="Bind Python objects to JSON files", long_description=("An interface to transparantly bind Python objects to " "JSON files so that all changes made to the object are " ...
from setuptools import setup setup( name="livejson", py_modules=["livejson"], version="1.5.0", description="Bind Python objects to JSON files", long_description=("An interface to transparantly bind Python objects to " "JSON files so that all changes made to the object are " ...
mit
Python
0723c77de6749e25188d1bba090bbb83e0dbde50
Bump version
AASHE/django-membersuite-auth
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README.md file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name="django-membersuite-auth", version="1.6", description="Django Authentication By MemberSuite", au...
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README.md file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name="django-membersuite-auth", version="1.5.3", description="Django Authentication By MemberSuite", ...
mit
Python
f1b7983895cf233b2651ee8f667a363df127c585
Bump to 0.1.0 for release
ethanrowe/python-merky
setup.py
setup.py
from setuptools import setup import os setup( name = "merky", version = "0.1.0", author = "Ethan Rowe", author_email = "ethan@the-rowes.com", description = ("JSON-oriented merkle tree utilities"), license = "MIT", url = "https://github.com/ethanrowe/python-merky", packages = ["merky", ...
from setuptools import setup import os setup( name = "merky", version = "0.0.4", author = "Ethan Rowe", author_email = "ethan@the-rowes.com", description = ("JSON-oriented merkle tree utilities"), license = "MIT", url = "https://github.com/ethanrowe/python-merky", packages = ["merky", ...
mit
Python
4c6860ffb0f17c3b9726daf9108198d5ac25ad75
mark 3.3.0-dev.0
fiduswriter/fiduswriter-books,fiduswriter/fiduswriter-books
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='fiduswriter-books', version='3.3.0-dev.0', packages=find...
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='fiduswriter-books', version='3.3.0-dev', packages=find_p...
agpl-3.0
Python