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 |
|---|---|---|---|---|---|---|---|---|
5f0a1afdf1317da3b101171e6935be3b891a8a73 | Add more detailed metadata to setup.py | BHSPitMonkey/vmflib | setup.py | setup.py | #! /usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = "vmflib",
version = "0.1",
packages = find_packages(),
scripts = ['tools/buildbsp.py'],
entry_points = {
'console_scripts': [
'buildbsp = buildbsp:main'
]
},
# metadata for upload... | from setuptools import setup, find_packages
setup(
name = "vmflib",
version = "0.1",
packages = find_packages(),
scripts = ['tools/buildbsp.py'],
entry_points = {
'console_scripts': [
'buildbsp = buildbsp:main'
]
},
# metadata for upload to PyPI
author = "S... | bsd-2-clause | Python |
35fd4836b0d823dbceea8694c9f7a23c4dc40f20 | update the realease | LabD/wagtail-personalisation,LabD/wagtail-personalisation,LabD/wagtail-personalisation | setup.py | setup.py | import re
from setuptools import find_packages, setup
install_requires = [
'wagtail>=1.9,<1.11',
'user-agents>=1.0.1',
'wagtailfontawesome>=1.0.6',
]
tests_require = [
'factory_boy==2.8.1',
'flake8',
'flake8-blind-except',
'flake8-debugger',
'flake8-imports',
'freezegun==0.3.8',
... | import re
from setuptools import find_packages, setup
install_requires = [
'wagtail>=1.9,<1.11',
'user-agents>=1.0.1',
'wagtailfontawesome>=1.0.6',
]
tests_require = [
'factory_boy==2.8.1',
'flake8',
'flake8-blind-except',
'flake8-debugger',
'flake8-imports',
'freezegun==0.3.8',
... | mit | Python |
4ca207458b1007fbef11d62f63af9fdf8f91a19b | Fix req parsing | CodersOfTheNight/oshino-admin | setup.py | setup.py | #!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
from oshino_admin.version import get_version
install_reqs = list(parse_requirements("requi... | #!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup
from pip.req import parse_requirements
from oshino_admin.version import get_version
install_reqs = list(parse_requirements("requirements/release.txt", session={}))
test_reqs = list(parse_requirements("requirements/test.txt", session={}))
setup(na... | mit | Python |
59091a8c2bb76860d52eac5214166eb57ec013a7 | change project, package name to all lowercase letters | jesford/cluster-lensing | setup.py | setup.py | import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
DESCRIPTION = "Galaxy Cluster and Weak Lensing Tools"
LONG_DESCRIPTION = """
clusterlensing: galaxy cluster halo calculations
======================================================
This package includes tools for c... | import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
DESCRIPTION = "Galaxy Cluster Properties and Weak Lensing Profiles"
LONG_DESCRIPTION = """
cluster-lensing: galaxy cluster halo calculations
======================================================
This package inclu... | mit | Python |
1f9c491ccf8411eb68c4992cf9f50b2b852e8cb1 | Bump version to pre-release | OrganicIrradiation/scholarly | setup.py | setup.py | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='scholarly',
version='1.5.0-alpha',
author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva, Arun Kannawadi',
author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca, aru... | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='scholarly',
version='1.4.5',
author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva, Arun Kannawadi',
author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca, arunkanna... | unlicense | Python |
c0bbad726a92bbda75d4de6ba73ce49c97a5fba8 | Bump version to 1.1 | ox-it/requests-negotiate | setup.py | setup.py | from distutils.core import setup
setup(
name='requests-negotiate',
version='1.1',
license='BSD',
packages=['requests_negotiate'],
classifiers=['License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
... | from distutils.core import setup
setup(
name='requests-negotiate',
version='1.0',
license='BSD',
packages=['requests_negotiate'],
classifiers=['License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
... | bsd-3-clause | Python |
68e7ba3db32e1a8632cd317206769e5b5e96c9a8 | Bump version | thibault/django-zipview | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-zipview',
version='1.0.0',
... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-zipview',
version='0.1',
... | mit | Python |
39a3eb69dd98518093ac84025eb6d037aceb0d10 | Fix setup.py, and bump version | Tehnix/cred-client | setup.py | setup.py | """ Setup file for the cred-client package. """
from setuptools import setup
import sys
# The package only works with python >=3.0
if sys.version_info < (3,):
print("I'm only for 3, please upgrade")
sys.exit(1)
version = '0.2.5'
setup(
name='cred-client',
version=version,
author='Tehnix',
aut... | """ Setup file for the cred-client package. """
from setuptools import setup
import sys
# The package only works with python >=3.0
if sys.version_info < (3,):
print("I'm only for 3, please upgrade")
sys.exit(1)
version = '0.2.4'
setup(
name='cred-client',
version=version,
author='Tehnix',
aut... | bsd-3-clause | Python |
f5082476aa8c25bcdea6fe1f96e0f1184195d875 | update setup.py | WMD-group/SMACT | setup.py | setup.py | #!/usr/bin/env python
__author__ = "Daniel W. Davies"
__copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)"
__version__ = "2.3.4"
__maintainer__ = "Anthony O. Onwuli"
__email__ = "anthony.onwuli16@imperial.ac.uk"
__date__ = "July 7 2022"
from setuptools import setup, Extension
import o... | #!/usr/bin/env python
__author__ = "Daniel W. Davies"
__copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)"
__version__ = "2.3.2"
__maintainer__ = "Anthony O. Onwuli"
__email__ = "anthony.onwuli16@imperial.ac.uk"
__date__ = "Nov 4 2021"
from setuptools import setup, Extension
import os... | mit | Python |
6dfe9f2ef3072ee52bcfa12eaf4cf4d6127af846 | Revert back to simple installation. | e2crawfo/dps,e2crawfo/dps | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='dps',
author="Eric Crawford",
author_email="eric.crawford@mail.mcgill.ca",
version='0.1',
packages=find_packages(),
entry_points={
'console_scripts': ['dps-hyper=dps.hyper.command_line:dps_hyper_cl',
'd... | from setuptools import setup, find_packages
import os
import subprocess
from setuptools.command.install import install as install_command
from setuptools.command.develop import develop as develop_command
from setuptools.command.egg_info import egg_info as egg_info_command
try: # for pip >= 10
from pip._internal.r... | apache-2.0 | Python |
82cda10d145faa1ef13c22cdbd6e1c586a6dfdf9 | remove debug print and update dependencies | bwesterb/tkbd | setup.py | setup.py | #!/usr/bin/env python
# vim: et:sta:bs=2:sw=4:
from setuptools import setup, find_packages, findall
from get_git_version import get_git_version
import os, os.path
def find_package_data():
base = os.path.join(os.path.dirname(__file__), 'src')
s, r = ['.'], []
while s:
p = s.pop()
for c in o... | #!/usr/bin/env python
# vim: et:sta:bs=2:sw=4:
from setuptools import setup, find_packages, findall
from get_git_version import get_git_version
import os, os.path
def find_package_data():
base = os.path.join(os.path.dirname(__file__), 'src')
s, r = ['.'], []
while s:
p = s.pop()
for c in o... | agpl-3.0 | Python |
b0ebc89420a9a1f3d49369fb1ce50f102a2d2495 | Move repository from @edoburu to @django-parler team | edoburu/django-categories-i18n,edoburu/django-categories-i18n | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*parts):
version_file = read(... | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*parts):
version_file = read(... | apache-2.0 | Python |
2e62f1dff218f4357bee0ad2a6e9a0e5e956ad55 | fix twine check warnings (#23) | Arello-Mobile/sphinx-confluence,Arello-Mobile/sphinx-confluence | setup.py | setup.py | import os
from setuptools import setup
long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read()
setup(
name='sphinx-confluence',
description='Atlassian Confluence extension for sphinx',
long_description_content_type='text/markdown',
long_description=long_descriptio... | import os
from setuptools import setup
long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read()
setup(
name='sphinx-confluence',
description='Atlassian Confluence extension for sphinx',
long_description=long_description,
version='0.0.4',
author='Arello Mobile',... | mit | Python |
cc33a5ebed8132c1fa87fa83710693e6130bc12e | remove extra = in setup.py | fugue/credstash,fugue/credstash,stephen-164/credstash,3stack-software/credsmash | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='credstash',
version='1.5',
description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB',
license='Apache2',
url='https://github.com/LuminalOSS/credstash',
classifiers=[
'Intended Audience :: Developers',
... | from setuptools import setup, find_packages
setup(
name='credstash',
version='1.5',
description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB',
license='Apache2',
url='https://github.com/LuminalOSS/credstash',
classifiers=[
'Intended Audience :: Developers',
... | apache-2.0 | Python |
06db8ec819fe8f2dffc6b7c93e9a72fcb24b188c | Add oscar 0.8 as a valid version | django-oscar/django-oscar-adyen,oscaro/django-oscar-adyen | setup.py | setup.py | from setuptools import setup, find_packages
# dirty hack to allow running sdist in a vbox
# source: Leonardo.Z's answer on this StackOverflow thread:
# http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link
... | from setuptools import setup, find_packages
# dirty hack to allow running sdist in a vbox
# source: Leonardo.Z's answer on this StackOverflow thread:
# http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link
... | bsd-3-clause | Python |
31f08ace2e2ea8266fc17350b2e3dbd832517515 | Upgrade to prompt_toolkit==0.42. | dbcli/pgcli,n-someya/pgcli,janusnic/pgcli,koljonen/pgcli,bitemyapp/pgcli,w4ngyi/pgcli,johshoff/pgcli,suzukaze/pgcli,w4ngyi/pgcli,d33tah/pgcli,yx91490/pgcli,suzukaze/pgcli,TamasNo1/pgcli,dbcli/vcli,thedrow/pgcli,dbcli/pgcli,MattOates/pgcli,TamasNo1/pgcli,koljonen/pgcli,zhiyuanshi/pgcli,yx91490/pgcli,j-bennet/pgcli,darik... | setup.py | setup.py | import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('pgcli/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
description = 'CLI for Postgres Database. With auto-compl... | import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('pgcli/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
description = 'CLI for Postgres Database. With auto-compl... | bsd-3-clause | Python |
f581deba1b3058b4bce38810682a0f2f4c1dedf8 | Bump to v1.4.1 | gisce/primestg | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='primestg',
version='1.4.1',
packages=find_packages(),
url='https://github.com/gisce/primestg',
license='GNU Affero General Public License v3',
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
install_requires=[
'l... | from setuptools import setup, find_packages
setup(
name='primestg',
version='1.4.0',
packages=find_packages(),
url='https://github.com/gisce/primestg',
license='GNU Affero General Public License v3',
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
install_requires=[
'l... | agpl-3.0 | Python |
3d2bbe90617ec090b5f413b95fc9d1161c2848fa | Update package name in setup.py | jbutler/lenderbot,jbutler/auto-investor | setup.py | setup.py | #!/usr/bin/env python3
from distutils.core import setup
setup(name='lenderbot',
version='1.0.6',
description='LendingClub auto investor tool',
author='Joe Butler',
author_email='joebutler88@gmail.com',
packages=['investor'],
)
| #!/usr/bin/env python3
from distutils.core import setup
setup(name='auto-investor',
version='1.0.5',
description='LendingClub auto-investment tool',
author='Joe Butler',
author_email='joebutler88@gmail.com',
packages=['investor'],
)
| mit | Python |
39ebb2d463dc7185801aac2dee8ec30fa4adcfac | Allow cryptography versions >3 (but <4) (#164) | 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.8.0",
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.8.0",
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 |
67c6f7b1460403e51125eb15f7d081e6de20f6ab | Downgrade Celery and kombu. | Kegbot/kegbot-server,Kegbot/kegbot-server,Kegbot/kegbot-server,Kegbot/kegbot-server,Kegbot/kegbot-server | setup.py | setup.py | #!/usr/bin/env python
"""Kegbot Beer Kegerator Server package.
Kegbot is a hardware and software system to record and monitor access to a beer
kegerator. For more information and documentation, see http://kegbot.org/
"""
from setuptools import setup, find_packages
VERSION = '0.9.25'
DOCLINES = __doc__.split('\n')
... | #!/usr/bin/env python
"""Kegbot Beer Kegerator Server package.
Kegbot is a hardware and software system to record and monitor access to a beer
kegerator. For more information and documentation, see http://kegbot.org/
"""
from setuptools import setup, find_packages
VERSION = '0.9.25'
DOCLINES = __doc__.split('\n')
... | mit | Python |
768820a4af086e72c88e779f08a7f597ad4a2774 | Update email | gsakkis/valideer,podio/valideer | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="valideer",
version="0.2",
description="Lightweight data validation and adaptation library for Python",
long_description=open("README.rst").read(),
url="https://github.com/podio/valideer",
author="George Sakkis",
... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="valideer",
version="0.2",
description="Lightweight data validation and adaptation library for Python",
long_description=open("README.rst").read(),
url="https://github.com/podio/valideer",
author="George Sakkis",
... | mit | Python |
b99c83ff15a02d4be3dc2e7f6e4a27601fdbdbf2 | fix setup.py | cangencer/hazelcast-python-client,hazelcast/hazelcast-python-client,hazelcast/hazelcast-python-client | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='hazelcast-python-cli... | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='hazelcast-python-cli... | apache-2.0 | Python |
0a0a64aab06e202fe37805523dd2f3e862fcb7d8 | Bump version to 0.3.16 | mwilliamson/python-mammoth | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
_install_requires = [
"parsimonious>=0.5,<0.6",
"dodge>=0.1.5,<0.2",
]
if sys.version_info[:2] <= (2, 6):
_install_requires.append("argpars... | #!/usr/bin/env python
import os
import sys
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
_install_requires = [
"parsimonious>=0.5,<0.6",
"dodge>=0.1.5,<0.2",
]
if sys.version_info[:2] <= (2, 6):
_install_requires.append("argpars... | bsd-2-clause | Python |
b87f2d324ec42a294f557064933a3e21d4507e70 | Bump pandas from 1.3.2 to 1.3.3 | bugra/l1 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==1.3.3',
'cvxopt==1.2.6',
... | #!/usr/bin/env python
from setuptools import setup
setup(name='l1',
version='0.1',
description='L1',
author='Bugra Akyildiz',
author_email='vbugra@gmail.com',
url='bugra.github.io',
packages=['l1'],
install_requires=['pandas==1.3.2',
'cvxopt==1.2.6',
... | apache-2.0 | Python |
0e5e46615ce8f599483c5075cc120cf6aad4c8a5 | Tweak setup.py | Fitblip/wsstat | setup.py | setup.py | from __future__ import print_function
from setuptools import setup
from setuptools.command.test import test as TestCommand
import io
import os
import sys
import wsstat
py_version = sys.version_info[:2]
if py_version < (3, 3):
raise Exception("websockets requires Python >= 3.3.")
here = os.path.abspath(os.path.d... | from __future__ import print_function
from setuptools import setup
from setuptools.command.test import test as TestCommand
import io
import os
import sys
import wsstat
py_version = sys.version_info[:2]
if py_version < (3, 3):
raise Exception("websockets requires Python >= 3.3.")
here = os.path.abspath(os.path.d... | mit | Python |
7bda19daf9fba63ea3e2d374a5f13390f3f7fa05 | Bump version to 3.1 | cloudify-cosmo/cloudify-diamond-plugin,codilime/cloudify-diamond-plugin,geokala/cloudify-diamond-plugin,cloudify-cosmo/cloudify-diamond-plugin | setup.py | setup.py | from setuptools import setup
setup(
name='cloudify-diamond-plugin',
version='1.1',
author='Cloudify',
author_email='cosmo-admin@gigaspaces.com',
packages=['diamond_agent', 'cloudify_handler'],
install_requires=['cloudify-plugins-common==3.1',
'diamond==3.5.0',
... | from setuptools import setup
setup(
name='cloudify-diamond-plugin',
version='3.1',
author='Cloudify',
author_email='cosmo-admin@gigaspaces.com',
packages=['diamond_agent', 'cloudify_handler'],
install_requires=['cloudify-plugins-common==3.1',
'diamond==3.5.0',
... | apache-2.0 | Python |
0f6be423058d98f7365f95c427ab59db5608af80 | use jsonobject in setup.py | dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/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.3.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(exclud... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pillowtop',
version='0.1.3.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(exclud... | bsd-3-clause | Python |
9444be6e891e7f7690dc10415690e484e17b3b61 | Extend base extraction module | LucidAi/nlcd,LucidAi/nlcd,LucidAi/nlcd,LucidAi/nlcd | fenrir/extraction/base.py | fenrir/extraction/base.py | # coding: utf-8
# Author: Vova Zaytsev <zaytsev@usc.edu>
import re
import textblob
from client.api import common
class TextPreprocessor(object):
RE_HTML_SPECIAL_CHARS = re.compile("\&#?[a-z0-9]+;")
RE_Q_PHRASE_PATTERN_1 = re.compile("\"([^\"]*)\"")
RE_Q_PHRASE_PATTERN_2 = re.compile("\'([^\"]*)\'")
... | # coding: utf-8
# Author: Vova Zaytsev <zaytsev@usc.edu>
import re
import textblob
class TextPreprocessor(object):
HTML_SPECIAL_CHARS = re.compile("\&#?[a-z0-9]+;")
def __init__(self):
pass
def clean_html_junk(self, text):
return self.HTML_SPECIAL_CHARS.sub("", text)
def sent_segm... | mit | Python |
f77e92aef7e337ed67ebc78d4de5829285ed651a | Update url | unitedstates/python-us,0x19/python-us | setup.py | setup.py | from us import __appname__, __version__
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name=__appname__,
version=__version__,
author="Jeremy Carbaugh",
author_email="jcarbaugh@sunlightfoundation.com",
url='https://github.com/unitedstates/python-us',... | from us import __appname__, __version__
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name=__appname__,
version=__version__,
author="Jeremy Carbaugh",
author_email="jcarbaugh@sunlightfoundation.com",
url='https://github.com/sunlightlabs/python-us',... | bsd-3-clause | Python |
50d2b9cf2640c7788cb890ad945a64ac2f5613f3 | Update version for packaging. | bdastur/spam,bdastur/spam | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.md') as fhandle:
long_description = fhandle.read()
setup(
name='pyansible',
version='1.0.3',
description='A module for interfacing with Ansible Runner and Inventory.',
long_description=long_description,
url="https://github.com/bdas... | from setuptools import setup, find_packages
with open('README.md') as fhandle:
long_description = fhandle.read()
setup(
name='pyansible',
version='1.0.2',
description='A module for interfacing with Ansible Runner and Inventory.',
long_description=long_description,
url="https://github.com/bdas... | apache-2.0 | Python |
1f7decd74c8e4bd5e8d2f9ee387e4fcd3f860f58 | update statistics | mehmetkose/python3-async-crawler | async_crawler.py | async_crawler.py | #!/usr/bin/env python3
# python dictionary object to html5 json form generator.
# https://github.com/mehmetkose/python3-async-crawler
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2016 Mehmet Kose mehmet@linux.com
import aiohttp
import asyncio
from html.parser i... | #!/usr/bin/env python3
# python dictionary object to html5 json form generator.
# https://github.com/mehmetkose/python3-async-crawler
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2016 Mehmet Kose mehmet@linux.com
import aiohttp
import asyncio
from html.parser i... | mit | Python |
7a7dd4ed8285d4963d05612870206db7b07b2452 | Add jmespath as a dependency | boto/botocore,pplu/botocore,jonparrott/botocore | setup.py | setup.py | #!/usr/bin/env python
"""
distutils/setuptools install script.
"""
import os
import sys
import botocore
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
packages = [
... | #!/usr/bin/env python
"""
distutils/setuptools install script.
"""
import os
import sys
import botocore
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
packages = [
... | apache-2.0 | Python |
522c7d13cb491998f8feba99f3657e77310f275b | add sparc.testing dependency | davisd50/sparc.common | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '0.0.3'
setup(name='sparc.common',
version=version,
description="Common utilities used within SPARC platform",
long_description=open("README.md").read() + "\n" +
open("HISTORY.txt").read(),
# Get more string... | from setuptools import setup, find_packages
import os
version = '0.0.3'
setup(name='sparc.common',
version=version,
description="Common utilities used within SPARC platform",
long_description=open("README.md").read() + "\n" +
open("HISTORY.txt").read(),
# Get more string... | mit | Python |
18191319f244ea9f1ab7a874467e944d051724e8 | Add credentials, description, etc. | bradleygolden/boxer | setup.py | setup.py | from setuptools import setup
setup(
author='Bradley Golden',
author_email='golden.bradley@gmail.com',
description='Tox wrapped in docker',
name='boxer',
version='0.1',
py_modules=['boxer'],
include_package_data=True,
url='https://github.com/bradleygolden/boxer',
download_url='https:... | from setuptools import setup
setup(
name='boxer',
version='0.1',
py_modules=['boxer'],
include_package_data=True,
url='https://github.com/bradleygolden/boxer',
download_url='https://github.com/bgolden/boxer/archive/0.1.tar.gz.',
keywords=['tox', 'pyenv', 'docker'],
install_requires=[
... | mit | Python |
4bfaf45ed2f27dca0105975243da093cf518ef4b | Bump version | cloudify-cosmo/cloudify-rest-client | setup.py | setup.py | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
b9b8a65234ba36c34a10db2b0f9fe0ee526dea70 | Bump version in setup.py | graze/pycmd-utils | setup.py | setup.py | '''
Setup File
'''
from setuptools import setup
import multiprocessing
setup(name='cmd_utils',
version='0.4.0',
description='Wrapper for subprocess.Popen and paramiko',
long_description=('Wrapper for subprocess.Popen and paramiko '
'to allow easy running of commands locally an... | '''
Setup File
'''
from setuptools import setup
import multiprocessing
setup(name='cmd_utils',
version='0.3.0',
description='Wrapper for subprocess.Popen and paramiko',
long_description=('Wrapper for subprocess.Popen and paramiko '
'to allow easy running of commands locally an... | mit | Python |
dc6df0448d9a7f921c7dc078eecbb6d65fc29320 | Bump version to 0.0.6 | bdupharm/falcon-autocrud | setup.py | setup.py | from setuptools import setup
version = '0.0.6'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | from setuptools import setup
version = '0.0.5'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | mit | Python |
2e25125904c94fa7250f6a8a0f4de4e2c463644b | Update Chapter04/reverseCipher.py added docstring and wrapped in main() function | JoseALermaIII/python-tutorials,JoseALermaIII/python-tutorials | books/CrackingCodesWithPython/Chapter04/reverseCipher.py | books/CrackingCodesWithPython/Chapter04/reverseCipher.py | """Reverse Cipher
https://www.nostarch.com/crackingcodes/ (BSD Licensed)
Note:
Pretty much the same, except I use double quotes,
expand variable names for readability, simplify the while loop, and use fancier operators
"""
def main():
message = "Three can keep a secret, if two of them are dead."
#me... | # Reverse Cipher
# https://www.nostarch.com/crackingcodes/ (BSD Licensed)
# Note: pretty much the same, except I use double quotes,
# expand variable names for readability, simplify the while loop,
# and use fancier operators
message = "Three can keep a secret, if two of them are dead."
#message = input("Enter message... | mit | Python |
c24bab2ac07dcbcaf214fe396db7a154a0d3baec | Bump version | BroganD1993/MoodleFUSE,BroganD1993/MoodleFUSE | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
import os
from setuptools import setup
def read_file(name):
filepath = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
name
)
data = open(filepath)
try:
return data.read()
except IOError:
print "could not read %r"... | #!/usr/bin/env python
# encoding: utf-8
import os
from setuptools import setup
def read_file(name):
filepath = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
name
)
data = open(filepath)
try:
return data.read()
except IOError:
print "could not read %r"... | mit | Python |
d699cc1d34436c5bb53f008f7abf1f3325d2efa7 | Bump flake8-bugbear from 20.11.1 to 21.3.1 | maximkulkin/marshmallow-oneofschema | setup.py | setup.py | from setuptools import setup
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock"],
"lint": ["flake8==3.8.4", "flake8-bugbear==21.3.1", "pre-commit~=2.7"],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"]
def read(fname):
with open(fname) as fp:
content = fp.read()
... | from setuptools import setup
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock"],
"lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "pre-commit~=2.7"],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"]
def read(fname):
with open(fname) as fp:
content = fp.read()
... | mit | Python |
1b1ad61f2637acefa8b70a926e078f2e567cfd06 | add a version check here too | Schevo/kiwi,Schevo/kiwi,Schevo/kiwi | setup.py | setup.py | #!/usr/bin/env python
# Setup file for Kiwi
# Code by Async Open Source <http://www.async.com.br>
# setup.py written by Christian Reis <kiko@async.com.br>
# re-written various times by Johan Dahlin <jdahlin@async.com.br>
"""
kiwi offers a set of enhanced widgets for
Python based on PyGTK. It also includes a framework... | #!/usr/bin/env python
# Setup file for Kiwi
# Code by Async Open Source <http://www.async.com.br>
# setup.py written by Christian Reis <kiko@async.com.br>
# re-written various times by Johan Dahlin <jdahlin@async.com.br>
"""
kiwi offers a set of enhanced widgets for
Python based on PyGTK. It also includes a framework... | lgpl-2.1 | Python |
2b06bfa93a476aa140539e6ad86fcc10bcd495e3 | Bump version to 0.9a5 | onyb/reobject,onyb/reobject | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='reobject',
version='0.9a6',
description='Python without ifs and buts',
url='https://github.com/onyb/reobject',
author='Anirudha Bose',
author_email='ani07nov@gmail.com',
license='Apache-2.0',
classifiers=[
'Development Sta... | from setuptools import setup, find_packages
setup(
name='reobject',
version='0.9a5',
description='Python without ifs and buts',
url='https://github.com/onyb/reobject',
author='Anirudha Bose',
author_email='ani07nov@gmail.com',
license='Apache-2.0',
classifiers=[
'Development Sta... | apache-2.0 | Python |
3cac863dfbd4261a0429f2562bf1d8a1bc854d91 | Bump version | lambdalisue/django-permission | setup.py | setup.py | # coding=utf-8
import sys
from setuptools import setup, find_packages
NAME = 'django-permission'
VERSION = '0.8.3'
def read(filename):
import os
BASE_DIR = os.path.dirname(__file__)
filename = os.path.join(BASE_DIR, filename)
with open(filename, 'r') as fi:
return fi.read()
def readlist(fil... | # coding=utf-8
import sys
from setuptools import setup, find_packages
NAME = 'django-permission'
VERSION = '0.8.2'
def read(filename):
import os
BASE_DIR = os.path.dirname(__file__)
filename = os.path.join(BASE_DIR, filename)
with open(filename, 'r') as fi:
return fi.read()
def readlist(fil... | mit | Python |
4f2761011f170cf978fd77b9b25c754d158f88b9 | bump version | Infinidat/gitpy | setup.py | setup.py | # Copyright (c) 2009, Rotem Yaari <vmalloc@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this li... | # Copyright (c) 2009, Rotem Yaari <vmalloc@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this li... | bsd-3-clause | Python |
f968629f36516df4134a06d0a439bc57e4457cd6 | remove platform dependence | mnishida/PyMWM | setup.py | setup.py | import os
import numpy as np
from Cython.Distutils import build_ext
from setuptools import Extension, find_packages, setup
ext_modules = []
for shape in ["cylinder", "slit"]:
pkg = f"pymwm.{shape}.utils.{shape}_utils"
basename = os.path.join("pymwm", shape, "utils", f"{shape}_utils")
ext_modules.append(
... | import os
from distutils.util import get_platform
import numpy as np
from Cython.Distutils import build_ext
from setuptools import Extension, find_packages, setup
platform = get_platform()
if platform.startswith("win"):
extra_compile_args = []
extra_link_args = []
else:
extra_compile_args = [
"-fP... | mit | Python |
d4ad94d1e78de00bb047359f5056a5a5cf41df49 | remove analysis package from install script | lobocv/anonymoususage | setup.py | setup.py | __author__ = 'lobocv'
import os
from setuptools import setup
from anonymoususage import __version__
setup(
name='anonymoususage',
packages=['anonymoususage', 'anonymoususage.tables'], # this must be the same as the name above
version=__version__,
description='Anonymously track user usage patterns an... | __author__ = 'lobocv'
import os
from setuptools import setup
from anonymoususage import __version__
setup(
name='anonymoususage',
packages=['anonymoususage', 'anonymoususage.tables', 'anonymoususage.analysis'], # this must be the same as the name above
version=__version__,
description='Anonymously t... | mit | Python |
9e7ce48bfb2d9b6f7bfb881b8b587d2ae730f8e2 | Bump version to 0.4.1 | thombashi/pingparsing,thombashi/pingparsing | setup.py | setup.py | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
from __future__ import unicode_literals
import os.path
import sys
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-run... | import sys
import os.path
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join(MISC_... | mit | Python |
93c866cc0c815bf7c4f4eabd50274a474bd98ad4 | Tweak setup.py so that it may run even when fired from different locations, as suggested by Maarten Damen. | shutej/dateutil | setup.py | setup.py | #!/usr/bin/python
from os.path import isfile, join
import glob
import os
import re
from setuptools import setup
if isfile("MANIFEST"):
os.unlink("MANIFEST")
TOPDIR = os.path.dirname(__file__) or "."
VERSION = re.search('__version__ = "([^"]+)"',
open(TOPDIR + "/dateutil/__init__.py").read()... | #!/usr/bin/python
from os.path import isfile, join
import glob
import os
import re
from setuptools import setup
if isfile("MANIFEST"):
os.unlink("MANIFEST")
VERSION = re.search('__version__ = "([^"]+)"',
open("dateutil/__init__.py").read()).group(1)
setup(name="python-dateutil",
ver... | bsd-3-clause | Python |
a9bdeadeefee0e107a6d86fb055d3a4c10f08d2f | 更新setup.py | xcbat/vnpy,harveywwu/vnpy,harveywwu/vnpy,rrrrrr8/vnpy,harveywwu/vnpy,wisfern/vnpy,msincenselee/vnpy,ujfjhz/vnpy,jiangjinjinyxt/vnpy,wisfern/vnpy,andrewchenshx/vnpy,msincenselee/vnpy,wylwang/vnpy,harveywwu/vnpy,rrrrrr8/vnpy,bigdig/vnpy,rrrrrr8/vnpy,xcbat/vnpy,andrewchenshx/vnpy,wylwang/vnpy,rrrrrr8/vnpy,jiangjinjinyxt/v... | setup.py | setup.py | # encoding: UTF-8
'''
vn.py - By Traders, For Traders.
The vn.py project is an open-source quantitative trading framework
that is developed by traders, for traders.
The project is mainly written in Python and uses C++ for low-layer
and performance sensitive infrastructure.
Using the vn.py project, institutional ... | # encoding: UTF-8
'''
vn.py - By Traders, For Traders.
The vn.py project is an open-source quantitative trading framework
that is developed by traders, for traders.
The project is mainly written in Python and uses C++ for low-layer
and performance sensitive infrastructure.
Using the vn.py project, institutional ... | mit | Python |
dd1bb5d8d00c676fef91ce7d3f58cd7af44f854f | Bump version to 2.0.0 | kstark/months | 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:', ... | mit | Python |
972a4088a11c03e514ff9f75636166951561fe6d | Add copyright header to setup.py | pwithnall/dbus-deviation,pwithnall/dbus-deviation,pwithnall/dbus-deviation | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4
#
# Copyright © 2015 Collabora Ltd.
#
# 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 w... | #!/usr/bin/python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4
"""
Parse D-Bus introspection XML and process it in various ways
"""
from setuptools import setup, find_packages
import os
__version__ = '0.1.0'
README = open('README').read()
NEWS = open('NEWS').read()
setup(
name='dbus-deviation',
ve... | lgpl-2.1 | Python |
b2640f0b9f9b36ab06066873bc8179842ae3bc24 | Prepare openprocurement.api 2.3.36. | openprocurement/openprocurement.api | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
requires = [
'barbecue',
'chaussette',
'cornice',
'couchdb-schematics',
'gevent',
'iso8601',
'jsonpatch',
'li... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
requires = [
'barbecue',
'chaussette',
'cornice',
'couchdb-schematics',
'gevent',
'iso8601',
'jsonpatch',
'li... | apache-2.0 | Python |
fe34a52f7aab7119c2aa8f69b0db914f33902d97 | bump version before release (no refs) | Opentopic/falcon-api | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name='opentopic-falcon-api',
version='0.3.6',
author='Tomasz Roszko',
author_email='tom@opentopic.com',
description='Base Library for services api endpoints',
url='http://git.opentopic.com/backend/falcon-api',
license='GNU GENERAL PUBLIC L... | from setuptools import find_packages, setup
setup(
name='opentopic-falcon-api',
version='0.3.5',
author='Tomasz Roszko',
author_email='tom@opentopic.com',
description='Base Library for services api endpoints',
url='http://git.opentopic.com/backend/falcon-api',
license='GNU GENERAL PUBLIC L... | mit | Python |
6dfaa5c97fe9342a26610f53aea533a39af5d8c5 | Use setuptools instead of distutils | abusesa/idiokit | setup.py | setup.py | from setuptools import setup, find_packages
from idiokit import __version__
setup(
name="idiokit",
version=__version__,
author="Clarified Networks",
author_email="contact@clarifiednetworks.com",
url="https://github.com/abusesa/idiokit",
packages=find_packages(exclude=["*.tests"]),
license=... | import os
import errno
from distutils.core import setup
from distutils.dir_util import remove_tree
from distutils.util import convert_path
from distutils.command.build import build as _build
from distutils.command.install import install as _install
from idiokit import __version__
def rmtree(path):
try:
r... | mit | Python |
f8c049e1b6a6309d494771e4038aa10b40bfbf76 | Move 'nose' dependency to 'tests_require' | matze/pkgconfig | setup.py | setup.py | from setuptools import setup
VERSION = '1.2.2'
setup(
name='pkgconfig',
version=VERSION,
author='Matthias Vogelgesang',
author_email='matthias.vogelgesang@gmail.com',
url='http://github.com/matze/pkgconfig',
license='MIT',
packages=['pkgconfig'],
description="Interface Python with pkg-... | from setuptools import setup
VERSION = '1.2.2'
setup(
name='pkgconfig',
version=VERSION,
author='Matthias Vogelgesang',
author_email='matthias.vogelgesang@gmail.com',
url='http://github.com/matze/pkgconfig',
license='MIT',
packages=['pkgconfig'],
description="Interface Python with pkg-... | mit | Python |
35b6a835bd93bed97e85e216fa81011220851081 | Bump version | sesh/djver | setup.py | setup.py | import setuptools
setuptools.setup(
name="djver",
version="2.1.0",
url="https://github.com/sesh/djver",
author="Brenton Cleeland",
author_email="brenton@brntn.me",
description="Ever wanted to know what version of Django someone else is running?",
packages=setuptools.find_packages(),
... | import setuptools
setuptools.setup(
name="djver",
version="2.0.0",
url="https://github.com/sesh/djver",
author="Brenton Cleeland",
author_email="brenton@brntn.me",
description="Ever wanted to know what version of Django someone else is running?",
packages=setuptools.find_packages(),
... | mit | Python |
add607e2920148572c9fc421b6cdeaa1f17d9c38 | Bump version to 0.8.2 | thombashi/pingparsing,thombashi/pingparsing | setup.py | setup.py | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
import io
import os.path
import sys
import setuptools
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with io.open("RE... | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
import io
import os.path
import sys
import setuptools
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with io.open("RE... | mit | Python |
839dbc8a22d505578b17adae41e5ce1f3cae9672 | update license | chfw/pyexcel-xlsx,chfw/pyexcel-xlsx | setup.py | setup.py | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys
with open("README.rst", 'r') as readme:
README_txt = readme.read()
dependencies = [
'openpyxl',
'pyexcel-io'
]
i... | try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys
with open("README.rst", 'r') as readme:
README_txt = readme.read()
dependencies = [
'openpyxl',
'pyexcel-io'
]
i... | bsd-3-clause | Python |
7530eed51b39d4d02b91a5dd1a382b6a1b43f9cc | update metadata | rch/flask-extdirect | setup.py | setup.py | """
Flask-Sencha
-------------
This is the description for that library
"""
from setuptools import setup
setup(
name='Flask-ExtDirect',
version='0.1',
url='http://github.com/rch/flask-extdirect',
license='MIT',
author='Ryan C. Hill',
author_email='@zndx.org',
description='Sencha Ext.Direc... | """
Flask-Sencha
-------------
This is the description for that library
"""
from setuptools import setup
setup(
name='Flask-Sencha',
version='0.1',
url='http://github.com/rch/flask-extdirect',
license='BSD',
author='Ryan C. Hill',
author_email='@zndx.org',
description='Very short descript... | mit | Python |
6fa473ee554c71812fb102d76973410e059031b2 | Add long_description field in setup. | ghisvail/nfft-cffi | setup.py | setup.py | # Copyright (c) 2016, Imperial College London
# Copyright (c) 2016, Ghislain Antony Vaillant
# All rights reserved.
#
# Distributed under the terms of the new BSD license.
# See the accompanying LICENSE file or read the terms at
# https://opensource.org/licenses/BSD-3-Clause.
from setuptools import find_packages, setu... | # Copyright (c) 2016, Imperial College London
# Copyright (c) 2016, Ghislain Antony Vaillant
# All rights reserved.
#
# Distributed under the terms of the new BSD license.
# See the accompanying LICENSE file or read the terms at
# https://opensource.org/licenses/BSD-3-Clause.
from setuptools import find_packages, setu... | bsd-3-clause | Python |
e3514b73bcbffbab2597a4eb068d3c03cf8d942b | bump 0.5.6 | Rostlab/nalaf | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
def license():
with open('LICENSE.txt', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.6',
descr... | from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md', encoding='utf-8') as file:
return file.read()
def license():
with open('LICENSE.txt', encoding='utf-8') as file:
return file.read()
setup(
name='nalaf',
version='0.5.6-SNAPSHOT',
... | apache-2.0 | Python |
8c3c15aca9bf78051b684ac46b72aff79f6640d3 | fix README path | uncovertruth/django-elastipymemcache | setup.py | setup.py | from setuptools import setup
import django_elastipymemcache
setup(
name='django-elastipymemcache',
version=django_elastipymemcache.__version__,
description='Django cache backend for Amazon ElastiCache (memcached)',
long_description=open('README.md').read(),
author='Danil Gusev',
platforms='an... | from setuptools import setup
import django_elastipymemcache
setup(
name='django-elastipymemcache',
version=django_elastipymemcache.__version__,
description='Django cache backend for Amazon ElastiCache (memcached)',
long_description=open('README.rst').read(),
author='Danil Gusev',
platforms='a... | mit | Python |
8b8a3731002d3d0434e20b4231b2554008e90f0f | add the supported versions of awscli to extras require | aio-libs/aiobotocore | setup.py | setup.py | import os
import re
import sys
from setuptools import setup, find_packages
# aiohttp requirement is pegged as we need to manually ensure that
# https://github.com/aio-libs/aiobotocore/pull/248 will continue working
install_requires = ['botocore>=1.5.71, <=1.5.78', 'aiohttp>=2.0.4, <=2.3.0',
'multi... | import os
import re
import sys
from setuptools import setup, find_packages
# aiohttp requirement is pegged as we need to manually ensure that
# https://github.com/aio-libs/aiobotocore/pull/248 will continue working
install_requires = ['botocore>=1.5.71, <=1.5.78', 'aiohttp>=2.0.4, <=2.3.0',
'multi... | apache-2.0 | Python |
5961c5bddf89ea7c048aafc16bbabe9630f632f4 | Make setup.py executable | Chimrod/typogrify | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='typogrify',
version='2.0.0',
packages=find_packages(),
author='Christian Metts',
author_email='xian@mintchaos.com',
license='BSD',
description='Typography related template filters for Django & Jinja2 applicatio... | from setuptools import setup, find_packages
setup(
name='typogrify',
version='2.0.0',
packages=find_packages(),
author='Christian Metts',
author_email='xian@mintchaos.com',
license='BSD',
description='Typography related template filters for Django & Jinja2 applications',
url='https://g... | bsd-3-clause | Python |
4a321b060a0e41d15f872e3f080e446657a98ea2 | Add pycldf dependency | lmaurits/BEASTling | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from beastling import __version__ as version
requires = [
'six',
'newick>=0.6.0',
'appdirs',
'clldutils',
'pycldf',
]
setup(
name='beastling',
version=version,
descri... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from beastling import __version__ as version
requires = [
'six',
'newick>=0.6.0',
'appdirs',
'clldutils',
]
setup(
name='beastling',
version=version,
description='Command... | bsd-2-clause | Python |
70be93343a985b4aa81944649c42c4138fece388 | Use regex for finding version in __init__.py | hfaran/piazza-api | setup.py | setup.py | from __future__ import print_function
import codecs
import os
import re
from setuptools import setup
def read(filename):
"""Read and return `filename` in root dir of project and return string"""
here = os.path.abspath(os.path.dirname(__file__))
return codecs.open(os.path.join(here, filename), 'r').read()... | from __future__ import print_function
import codecs
import os
from setuptools import setup, find_packages
import piazza_api
def read(filename):
"""Read and return `filename` in root dir of project and return string"""
here = os.path.abspath(os.path.dirname(__file__))
return codecs.open(os.path.join(here... | mit | Python |
691e9df7cf5434a1296c0643bc9c62edde72b1c6 | Bump version number. | ProjetPP/PPP-Logger,ProjetPP/PPP-Logger | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_logger',
version='0.2.2',
description='Logging backend for PPP user interfaces.',
url='https://github.com/ProjetPP/PPP-Core',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens-lyon.org',
lic... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_logger',
version='0.2.1',
description='Logging backend for PPP user interfaces.',
url='https://github.com/ProjetPP/PPP-Core',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens-lyon.org',
lic... | mit | Python |
b4bc0dc0c4bd53c8af0cf6f878708a8b22a5f832 | set version to 1.0.0 | teroqim/linkedlist | setup.py | setup.py | from setuptools import setup
setup(name='linkedlist',
version='1.0.0',
description='General purpose linked list',
url='https://github.com/teroqim/linkedlist',
author='Peter Andersson',
author_email='teroqim@gmail.com',
packages=['linkedlist'],
zip_safe=False)
| from setuptools import setup
setup(name='linkedlist',
version='0.0.1',
description='General purpose linked list',
url='https://github.com/teroqim/linkedlist',
author='Peter Andersson',
author_email='teroqim@gmail.com',
packages=['linkedlist'],
zip_safe=False)
| mit | Python |
4e32c1597891c67daf03d71e35bc499cfba3e596 | Bump version number. | stefanv/lulu | setup.py | setup.py | from distutils.core import setup, Extension
from Cython.Distutils import build_ext
import numpy
def cext(name):
return Extension('lulu.%s' % name, ['lulu/%s.pyx' % name],
include_dirs=[numpy.get_include()])
setup(name='lulu',
version='0.9.3',
description='Fast and efficient implem... | from distutils.core import setup, Extension
from Cython.Distutils import build_ext
import numpy
def cext(name):
return Extension('lulu.%s' % name, ['lulu/%s.pyx' % name],
include_dirs=[numpy.get_include()])
setup(name='lulu',
version='0.9.2',
description='Fast and efficient implem... | bsd-3-clause | Python |
26daa433b28b886ad6aa68bd5e40736e7d892c3a | Update version. | wsmith323/staticmodel,wsmith323/constantmodel | setup.py | setup.py | import os
from setuptools import setup, find_packages
__version__ = "0.1.5"
def file_read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
with open(filepath) as flo:
return flo.read()
setup(
name="staticmodel",
version=__version__,
packages=find_packages(exclude... | import os
from setuptools import setup, find_packages
__version__ = "0.1.4"
def file_read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
with open(filepath) as flo:
return flo.read()
setup(
name="staticmodel",
version=__version__,
packages=find_packages(exclude... | mit | Python |
1ded6a3f75629695f477f69881d125c2b9221447 | increment version to 2.0.4 | srob650/pytvmaze | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'pytvmaze',
version = '2.0.4',
description = 'Python interface to the TV Maze API (www.tvmaze.com)',
url = 'https://github.com/srob650/pytvmaze',
author = 'Spencer Roberts',
author_email = 'pytvmaze@gmail.com',
license='MIT',
cl... | from setuptools import setup, find_packages
setup(
name = 'pytvmaze',
version = '2.0.3',
description = 'Python interface to the TV Maze API (www.tvmaze.com)',
url = 'https://github.com/srob650/pytvmaze',
author = 'Spencer Roberts',
author_email = 'pytvmaze@gmail.com',
license='MIT',
cl... | mit | Python |
aa9e7f322882ab2d94c5426aef8c0490601f278c | Remove six from list. | mapledyne/skytap,FulcrumIT/skytap | setup.py | setup.py | from setuptools import find_packages
from setuptools import setup
setup(
name='skytap',
packages=find_packages(),
version='1.0.2',
description='Skytap REST API access modules',
author='Fulcrum Technologies',
author_email='mknowles@fulcrum.net',
install_requires=['requests'],
url='https:... | from setuptools import find_packages
from setuptools import setup
setup(
name='skytap',
packages=find_packages(),
version='1.0.2',
description='Skytap REST API access modules',
author='Fulcrum Technologies',
author_email='mknowles@fulcrum.net',
install_requires=['requests', 'six'],
url=... | mit | Python |
505446d8c45429242889230ae60df9f4d297304d | bump version number | paltman/pymediainfo,paltman-archive/pymediainfo,honsiorovskyi/pymediainfo,legrostdg/pymediainfo,denex/pymediainfo,honsiorovskyi/pymediainfo | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version = '1.3.3',
author='Patrick Altman',
author_email='paltman@gmail.com',
url='git@github.com/paltman/pymediainfo.git',
description="""A Python wrapper for the mediainfo command line tool.""",
packages=find_packages(... | from setuptools import setup, find_packages
setup(
name='pymediainfo',
version = '1.3.2',
author='Patrick Altman',
author_email='paltman@gmail.com',
url='git@github.com/paltman/pymediainfo.git',
description="""A Python wrapper for the mediainfo command line tool.""",
packages=find_packages(... | mit | Python |
0d50e39803db371c9352bfc5f1c0c853ce647006 | fix pypi build | jproffitt/django-herald,worthwhile/django-herald,worthwhile/django-herald,jproffitt/django-herald | setup.py | setup.py | from setuptools import find_packages, setup
VERSION = '0.1.1'
setup(
name='django-herald',
version=VERSION,
author='Worthwhile',
author_email='devs@worthwhile.com',
install_requires=['django>=1.8', 'six'],
packages=find_packages(),
include_package_data=True, # declarations in MANIFEST.in... | from setuptools import find_packages
from distutils.core import setup
VERSION = '0.1'
setup(
name='django-herald',
version=VERSION,
author='Worthwhile',
author_email='devs@worthwhile.com',
install_requires=['django>=1.8', 'six'],
packages=find_packages(),
include_package_data=True, # dec... | mit | Python |
d3fec7f0eb48813e4f9895cc5900188cd3a33176 | Add pytest to tests_require | folz/cleverbot.py | setup.py | setup.py | from distutils.core import setup
setup(
name = 'cleverbot',
version = '0.2.0',
packages = ['cleverbot'],
install_requires = ['future', 'requests'],
tests_require = ['pytest'],
author = 'Rodney Folz',
author_email = 'folz@rodneyfolz.com',
url = 'https://github.com/folz/cleverbot.py',
... | from distutils.core import setup
setup(
name = 'cleverbot',
version = '0.2.0',
packages = ['cleverbot'],
install_requires = ['future', 'requests'],
author = 'Rodney Folz',
author_email = 'folz@rodneyfolz.com',
url = 'https://github.com/folz/cleverbot.py',
description = 'An API for Cleve... | bsd-2-clause | Python |
2aef7511f63a525cd54f22c132e652760ccb64dc | Change version | Zapix/django-confirmaction,Zapix/django-confirmaction | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup
LONG_DESCRIPTION = """
Django confirmaction is a battery for confirm actions via email, sms etc.
"""
def long_description():
try:
return open(
os.path.join(os.path.dirname(__file__), "README.md")
).read()
except IOErro... | # -*- coding: utf-8 -*-
import os
from setuptools import setup
LONG_DESCRIPTION = """
Django confirmaction is a battery for confirm actions via email, sms etc.
"""
def long_description():
try:
return open(
os.path.join(os.path.dirname(__file__), "README.md")
).read()
except IOErro... | bsd-2-clause | Python |
f27c0541bcbaffdb1b9189ab18d955c7d10d484b | make scrapyd package zip unsafe because the scrapyd command requires the txapp.py unpacked to run. fixes #49 | aivarsk/scrapyd,sigma-random/scrapyd,nyov/scrapyd,dfockler/scrapyd,aivarsk/scrapyd,2014fgq/scrapyd,dfockler/scrapyd,masterPPP/scrapyd,CENDARI/scrapyd,wujuguang/scrapyd,scrapy/scrapyd,nyov/scrapyd,eliasdorneles/scrapyd,2014fgq/scrapyd,eliasdorneles/scrapyd,sigma-random/scrapyd,masterPPP/scrapyd,CENDARI/scrapyd,wujuguang... | setup.py | setup.py | from os.path import join, dirname
with open(join(dirname(__file__), 'scrapyd/VERSION')) as f:
version = f.read().strip()
setup_args = {
'name': 'scrapyd',
'version': version,
'url': 'https://github.com/scrapy/scrapyd',
'description': 'A service for running Scrapy spiders, with an HTTP API',
'l... | from os.path import join, dirname
with open(join(dirname(__file__), 'scrapyd/VERSION')) as f:
version = f.read().strip()
setup_args = {
'name': 'scrapyd',
'version': version,
'url': 'https://github.com/scrapy/scrapyd',
'description': 'A service for running Scrapy spiders, with an HTTP API',
'l... | bsd-3-clause | Python |
99d0a21bc0ceca486e8f7f4590a2c75d1df89ec9 | Update to version 0.6.16 | jadolg/rocketchat_API | setup.py | setup.py | # -*-coding:utf-8-*-
from setuptools import setup
setup(
name='rocketchat_API',
version='0.6.16',
packages=['rocketchat_API', 'rocketchat_API.APIExceptions'],
url='https://github.com/jadolg/rocketchat_API',
license='MIT',
author='Jorge Alberto Díaz Orozco',
author_email='diazorozcoj@gmail.... | # -*-coding:utf-8-*-
from setuptools import setup
setup(
name='rocketchat_API',
version='0.6.15',
packages=['rocketchat_API', 'rocketchat_API.APIExceptions'],
url='https://github.com/jadolg/rocketchat_API',
license='MIT',
author='Jorge Alberto Díaz Orozco',
author_email='diazorozcoj@gmail.... | mit | Python |
fdcc2365904d988d9a52db51c9a8a0d30cda9538 | Bump flask-caching from 1.7.0 to 1.7.2 | Meisterschueler/ogn-python,glidernet/ogn-python,glidernet/ogn-python,Meisterschueler/ogn-python,glidernet/ogn-python,Meisterschueler/ogn-python,Meisterschueler/ogn-python,glidernet/ogn-python | setup.py | setup.py | #!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
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.read()
setup(
name='ogn-python',
versio... | #!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
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.read()
setup(
name='ogn-python',
versio... | agpl-3.0 | Python |
b484361fc9008e77f94799a138f0625ed7da4647 | Bump version number in setup.py | max-k/flask-multi-redis | setup.py | setup.py | #!/usr/bin/env python3
import io
from setuptools import setup
with io.open('README.rst', encoding='utf-8') as f:
README = f.read()
with io.open('HISTORY.rst', encoding='utf-8') as f:
HISTORY = f.read()
desc='MultiThreaded and MultiServers Redis Extension for Flask Applications'
setup(
name='Flask-Multi-... | #!/usr/bin/env python3
import io
from setuptools import setup
with io.open('README.rst', encoding='utf-8') as f:
README = f.read()
with io.open('HISTORY.rst', encoding='utf-8') as f:
HISTORY = f.read()
desc='MultiThreaded and MultiServers Redis Extension for Flask Applications'
setup(
name='Flask-Multi-... | agpl-3.0 | Python |
d1ffbda1eebaaf4a9d91881c1d82cfe214bc1df1 | update pyjwt dependency | ARMmbed/yotta,autopulated/yotta,eyeye/yotta,autopulated/yotta,stevenewey/yotta,ntoll/yotta,ARMmbed/yotta,stevenewey/yotta,theotherjimmy/yotta,iriark01/yotta,ntoll/yotta,BlackstoneEngineering/yotta,theotherjimmy/yotta,eyeye/yotta,BlackstoneEngineering/yotta,iriark01/yotta | setup.py | setup.py | # Copyright 2014 ARM Limited
#
# Licensed under the Apache License, Version 2.0
# See LICENSE file for details.
import os
from setuptools import setup, find_packages
# Utility function to cat in a file (used for the README)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# we ... | # Copyright 2014 ARM Limited
#
# Licensed under the Apache License, Version 2.0
# See LICENSE file for details.
import os
from setuptools import setup, find_packages
# Utility function to cat in a file (used for the README)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# we ... | apache-2.0 | Python |
c5f297001f12a6bea42c6460d480fdd63285c2bc | bump version to 0.18 | kennell/schiene | setup.py | setup.py | from setuptools import setup
setup(
name = 'schiene',
packages = ['schiene'],
version = '0.18',
license = 'MIT',
description = 'schiene is a Python library for interacting with Bahn.de',
author = 'Kevin Kennell',
author_email = 'kevin@kennell.de',
install_requires=[
'requests>=2.10.0',
'... | from setuptools import setup
setup(
name = 'schiene',
packages = ['schiene'],
version = '0.17',
license = 'MIT',
description = 'schiene is a Python library for interacting with Bahn.de',
author = 'Kevin Kennell',
author_email = 'kevin@kennell.de',
install_requires=[
'requests>=2.10.0',
'... | mit | Python |
c101310d7e8d90c3d9d0ac412964c62617a2aa4e | Update test_requires in setup.py | mdsrosa/flask-slacker | setup.py | setup.py | """
Flask-Slacker
--------------
Adds Slack support to your Flask application using Slacker.
"""
import ast
import re
from setuptools import setup
def get_version():
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('flask_slacker/__init__.py', 'rb') as f:
version = str(ast.literal_eval... | """
Flask-Slacker
--------------
Adds Slack support to your Flask application using Slacker.
"""
import ast
import re
from setuptools import setup
def get_version():
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('flask_slacker/__init__.py', 'rb') as f:
version = str(ast.literal_eval... | mit | Python |
69994e4b7bac8ba10bbf412060e42ce71832c2cb | add py3.5 classifier | lobocv/pynmea2,adamfazzari/pynmea2,silentquasar/pynmea2,ampledata/pynmea2,Knio/pynmea2 | setup.py | setup.py | from setuptools import setup
import imp
_version = imp.load_source("pynmea2._version", "pynmea2/_version.py")
setup(
name='pynmea2',
version=_version.__version__,
author='Tom Flanagan',
author_email='tom@zkpq.ca',
license='MIT',
url='https://github.com/Knio/pynmea2',
descript... | from setuptools import setup
import imp
_version = imp.load_source("pynmea2._version", "pynmea2/_version.py")
setup(
name='pynmea2',
version=_version.__version__,
author='Tom Flanagan',
author_email='tom@zkpq.ca',
license='MIT',
url='https://github.com/Knio/pynmea2',
descript... | mit | Python |
e1cc4d49f37abbda308968b1bf4f49298a1c904e | Change version to prevent unleash from choking. | mbr/legitfs | setup.py | setup.py | #!/usr/bin/env python
# coding=utf8
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='legitfs',
version='0.3.dev1',
description='A read-only FUSE-based filesystem allowing you to browse '
... | #!/usr/bin/env python
# coding=utf8
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='legitfs',
version='0.3dev',
description='A read-only FUSE-based filesystem allowing you to browse '
... | mit | Python |
7ccc29455aca3ad453d7d62cd1c1fa874a22dcc2 | add setup file | Hyperyon/p3-labyrinthe | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import labyrinth
with open('requirements.txt') as f:
requires = f.read().split('\n')
setup(
name='oc-labyrinth',
version=3.2,
packages=find_packages(),
install_requires=requires,
author='Nico Zhan',... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import labyrinth
with open('requirements.txt') as f:
requires = f.read().split('\n')
setup(
name='oc-labyrinth',
version=3.2,
packages=find_packages(),
install_requires=requires,
author='Nico Zh... | mit | Python |
387dcda6fff3fac0d8506e047919ffe3c48591af | Bump django-entity to version 1.1.2 | ambitioninc/django-entity-emailer,ambitioninc/django-entity-emailer,wesleykendall/django-entity-emailer,wesleykendall/django-entity-emailer | setup.py | setup.py | # import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215)
import multiprocessing
assert multiprocessing
import re
from setuptools import setup, find_packages
def get_version():
"""
Extracts the version number from the version.py file.
"""
VERSION_FILE = 'entity_emailer/v... | # import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215)
import multiprocessing
assert multiprocessing
import re
from setuptools import setup, find_packages
def get_version():
"""
Extracts the version number from the version.py file.
"""
VERSION_FILE = 'entity_emailer/v... | mit | Python |
998ce4a9425f7ab612321e6040bc276594ea8069 | Bump release number to 0.10 | russdill/pybis | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name = 'pybis',
version = '0.10',
description = 'Python IBIS parser',
author = 'Russ Dill',
requires = [ 'pyparsing', 'numpy' ],
author_email = 'Russ.Dill@gmail.com',
url = 'https://github.com/russdill/pybis/wiki',
download_url =... | #!/usr/bin/env python
from distutils.core import setup
setup(name = 'pybis',
version = '0.9',
description = 'Python IBIS parser',
author = 'Russ Dill',
requires = [ 'pyparsing', 'numpy' ],
author_email = 'Russ.Dill@gmail.com',
url = 'https://github.com/russdill/pybis/wiki',
download_url = ... | lgpl-2.1 | Python |
8297fd9f1dfd221cb1dd22187bcf410b5c8475cc | add long description to setup.py (#292) | googlemaps/google-maps-services-python | setup.py | setup.py | import sys
import io
from setuptools import setup
if sys.version_info <= (2, 4):
error = "Requires Python Version 2.5 or above... exiting."
print >>sys.stderr, error
sys.exit(1)
requirements = ["requests>=2.20.0,<3.0"]
# use io.open until python2.7 support is dropped
with io.open("README.md", encoding=... | import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info <= (2, 4):
error = 'Requires Python Version 2.5 or above... exiting.'
print >> sys.stderr, error
sys.exit(1)
requirements = [
'requests>=2.20.0,<3.0',
]
setup(name='googlemaps',
... | apache-2.0 | Python |
985dc5fe85b02d597098a1dd0a361871149e8089 | update to 3.0.1 | hycis/TensorGraph,hycis/TensorGraph | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
version = '3.0.0'
setup(
name='tensorgraph',
version=version,
author='Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.1... | from distutils.core import setup
from setuptools import find_packages
version = '3.0.0'
setup(
name='tensorgraph',
version=version,
author='Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.1... | apache-2.0 | Python |
f372f5d577687aea0e5a70b41ebd1475125c1fd7 | Bump version to 1.4.3 | twaddington/django-gravatar | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-gravatar2',
version='1.4.3',
description='Essential Gravatar support for Django. Features helper'
' methods, templatetags and a full test suite!',
long_description=open('RE... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-gravatar2',
version='1.4.2',
description='Essential Gravatar support for Django. Features helper'
' methods, templatetags and a full test suite!',
long_description=open('RE... | mit | Python |
7b16884e0081b8ade9382483acd22b54629d3c6a | update version | arraylabs/pymyq | setup.py | setup.py | from setuptools import setup
with open('LICENSE') as f:
license = f.read()
setup(
name='pymyq',
version='0.0.16',
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.13',
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 |
c82e056ec41792b4a8aa2087817eb72637e02cb8 | Bump to v0.2.2 | TankerApp/tsrc | setup.py | setup.py | import sys
from setuptools import setup, find_packages
if sys.version_info.major < 3:
sys.exit("Error: Please upgrade to Python3")
def get_long_description():
with open("README.rst") as fp:
return fp.read()
setup(name="tsrc",
version="0.2.2",
description="Manage multiple repositories",
... | import sys
from setuptools import setup, find_packages
if sys.version_info.major < 3:
sys.exit("Error: Please upgrade to Python3")
def get_long_description():
with open("README.rst") as fp:
return fp.read()
setup(name="tsrc",
version="0.2.1",
description="Manage multiple repositories",
... | bsd-3-clause | Python |
5adb1ccfa30021bcac68364a032196bfc57098a2 | Rewrite show-stack-params-and-outputs.sh in python to get around problems that script has with older jq versions | NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools | setup.py | setup.py | # Copyright 2016-2017 Nitor Creations Oy
#
# 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 ... | # Copyright 2016-2017 Nitor Creations Oy
#
# 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 ... | apache-2.0 | Python |
4ddde13eae99912559fc2fc6434ff16b9dfcf6a3 | fix build | larsmans/python-pcl,larsmans/python-pcl,amitibo/python-pcl,amitibo/python-pcl,amitibo/python-pcl,larsmans/python-pcl | setup.py | setup.py | from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(name='python-pcl',
description='pcl wrapper',
url='http://github.com/strawlab/python-pcl',
version='0.1',
author='John Stowers',
author_email='john.stowers@gmail.com',
... | from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(name='python-pcl',
description='pcl wrapper',
url='http://github.com/strawlab/python-pcl',
version='0.1',
author='John Stowers',
author_email='john.stowers@gmail.com',
... | bsd-3-clause | Python |
b1bb13b56f3eb64f33ce39a153a69d4f0edd05a9 | Update django-gcloud-connectors | potatolondon/djangae,potatolondon/djangae | setup.py | setup.py | import os
from setuptools import setup, find_packages
NAME = 'djangae'
PACKAGES = find_packages()
DESCRIPTION = 'Django integration with Google App Engine'
URL = "https://github.com/potatolondon/djangae"
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
AUTHOR = 'Potato London Ltd.'... | import os
from setuptools import setup, find_packages
NAME = 'djangae'
PACKAGES = find_packages()
DESCRIPTION = 'Django integration with Google App Engine'
URL = "https://github.com/potatolondon/djangae"
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
AUTHOR = 'Potato London Ltd.'... | bsd-3-clause | Python |
cf4caa6abd7756e76ab3e613b183f163fd8d88cc | increment version [ci skip] | pmrowla/pysrcds | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='pysrcds',
version='0.1.6.dev',
description='Python library for interacting with Source engine dedicated'
' servers',
author='Peter Rowlands',
author_email='peter@pmrowla.com',
url='https://github.com/pmrowla/pysrcd... | #!/usr/bin/env python
from setuptools import setup
setup(
name='pysrcds',
version='0.1.5',
description='Python library for interacting with Source engine dedicated'
' servers',
author='Peter Rowlands',
author_email='peter@pmrowla.com',
url='https://github.com/pmrowla/pysrcds',
... | mit | Python |
138865c79782875076c91de4252aaf2dd8567101 | fix package issue | yuanxu/django-bootstrap3-validator | setup.py | setup.py | from distutils.core import setup
import os
from setuptools import find_packages
base_dir = os.path.dirname(__file__)
setup(
name='Django-Bootstrap3-Validator',
version='0.3.3',
author='Xu Yuan',
author_email='ankh2008@gmail.com',
packages=find_packages(),
url="https://github.com/yuanxu/django-b... | from distutils.core import setup
import os
base_dir = os.path.dirname(__file__)
setup(
name='Django-Bootstrap3-Validator',
version='0.3',
author='Xu Yuan',
author_email='ankh2008@gmail.com',
packages=['bootstrap_validator', 'bootstrap_validator.templatetags','bootstrap_validator.migrations'],
u... | mit | Python |
548893b224bf7addbb56dd19455f0df5c24f7b51 | Fix setup.py | Kjwon15/autotweet | setup.py | setup.py | import os.path
import sys
from autotweet import __version__ as version
try:
from setuptools import find_packages, setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages, setup
def readme():
try:
with open(os.path.join(os.path.di... | import os.path
import sys
from autotweet import __version__ as version
try:
from setuptools import find_packages, setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages, setup
def readme():
try:
with open(os.path.join(os.path.di... | mit | Python |
4aa1f797e8c4e94572c6bc12819abd4501b0d1e4 | remove python-memcached from install_requires | fanatid/django-requests-monitor,fanatid/django-requests-monitor | setup.py | setup.py | import os
from setuptools import setup
version = '0.1.0'
# taken from django-registration
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, f... | import os
from setuptools import setup
version = '0.1.0'
# taken from django-registration
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, f... | bsd-3-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.