commit stringlengths 40 40 | subject stringlengths 1 1.49k | old_file stringlengths 4 311 | new_file stringlengths 4 311 | new_contents stringlengths 1 29.8k | old_contents stringlengths 0 9.9k | lang stringclasses 3
values | proba float64 0 1 |
|---|---|---|---|---|---|---|---|
1d92fee8c7e848648e423d343e4731a986c786de | Bump version to 0.1.1 for pypi | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
class mytest(test):
... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
class mytest(test):
... | Python | 0 |
4b6808fd5f762dfa38663f72efa62383f5522ec0 | Add "service" as a keyword to setup.py | setup.py | setup.py | #!/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup
setup(
name='fedimg',
version='0.1.0',
description='Service to automatically upload built Fedora images'
' to internal and external cloud providers.',
classifiers=[
"Programming Language :: Python :: 2",
... | #!/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup
setup(
name='fedimg',
version='0.1.0',
description='Service to automatically upload built Fedora images'
' to internal and external cloud providers.',
classifiers=[
"Programming Language :: Python :: 2",
... | Python | 0.000002 |
0f4ee2c4f1e503bfbc36630be0a4a905ec3777a2 | Edit pip description. | setup.py | setup.py | """setup.py: setuptools control."""
from setuptools import setup
PROJECT_NAME = 'asninja'
setup(
name=PROJECT_NAME,
version="1.2",
packages=[
PROJECT_NAME,
PROJECT_NAME + '.toolchains'
],
entry_points={
"console_scripts": ['{0} = {0}.{0}:main'.format(PROJECT_NAME)]
},
... | """setup.py: setuptools control."""
from setuptools import setup
PROJECT_NAME = 'asninja'
setup(
name=PROJECT_NAME,
version="1.2",
packages=[
PROJECT_NAME,
PROJECT_NAME + '.toolchains'
],
entry_points={
"console_scripts": ['{0} = {0}.{0}:main'.format(PROJECT_NAME)]
},
... | Python | 0 |
52bc2ea39b73e532783458be7d38cb02e07dd8d2 | Bump django-allauth version | setup.py | setup.py | import json
from setuptools import setup, find_packages
with open('devilry/version.json') as versionfile:
version = json.load(versionfile)
setup(
name="devilry",
version=version,
url='http://devilry.org',
license='BSD',
zip_safe=False,
author=('Tor Johansen, Espen Angell Kristiansen, Bend... | import json
from setuptools import setup, find_packages
with open('devilry/version.json') as versionfile:
version = json.load(versionfile)
setup(
name="devilry",
version=version,
url='http://devilry.org',
license='BSD',
zip_safe=False,
author=('Tor Johansen, Espen Angell Kristiansen, Bend... | Python | 0 |
50d073bd7cf769686efc63e42cb75512952b25ed | Fix package description | setup.py | setup.py | #!/usr/bin/env python
import os
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import smmap
if os.path.exists("README.md"):
long_description = codecs.open('README.md... | #!/usr/bin/env python
import os
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import smmap
if os.path.exists("README.md"):
long_description = codecs.open('README.md... | Python | 0.000036 |
2564af20cd7058fcb5618c9513e627449ae1a98b | Include the .config files under repobuddy/tests/configs. | setup.py | setup.py | #
# Copyright (C) 2012 Ash (Tuxdude) <tuxdude.github@gmail.com>
#
# This file is part of repobuddy.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 3 of the
# ... | #
# Copyright (C) 2012 Ash (Tuxdude) <tuxdude.github@gmail.com>
#
# This file is part of repobuddy.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 3 of the
# ... | Python | 0 |
81f91f4a035fd7705c21c92ec0aa987b670030a6 | handle exceptions from cpu_info so non-x86 and ARMs compile | setup.py | setup.py | __author__ = "Alexander [Amper] Marshalov"
__email__ = "alone.amper+cityhash@gmail.com"
__icq__ = "87-555-3"
__jabber__ = "alone.amper@gmail.com"
__twitter__ = "amper"
__url__ = "http://amper.github.com/cityhash"
from setuptools import setup
from setuptools.extension import Extension
from setuptools.dist i... | __author__ = "Alexander [Amper] Marshalov"
__email__ = "alone.amper+cityhash@gmail.com"
__icq__ = "87-555-3"
__jabber__ = "alone.amper@gmail.com"
__twitter__ = "amper"
__url__ = "http://amper.github.com/cityhash"
from setuptools import setup
from setuptools.extension import Extension
from setuptools.dist i... | Python | 0 |
763e41d0de53581944a4da96f85db76316308367 | Remove 3.4 classifier | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
import io
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as fp:
README = fp.read()
with io.open(os.path.join(here, 'VERSION')) as version_file:
VERSI... | #!/usr/bin/env python
# coding=utf-8
import io
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as fp:
README = fp.read()
with io.open(os.path.join(here, 'VERSION')) as version_file:
VERSI... | Python | 0.998761 |
6b04762430c470693bca9177b28deb75b9b2e974 | Add package keywords | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
pytest-flask
~~~~~~~~~~~~
A collection of py.test fixtures to test Flask applications.
:copyright: (c) by Vital Kudzelka
"""
from setuptools import setup
from setuptools import find_packages
version = "0.3.0"
def get_file(filename):
"""Returns ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
pytest-flask
~~~~~~~~~~~~
A collection of py.test fixtures to test Flask applications.
:copyright: (c) by Vital Kudzelka
"""
from setuptools import setup
from setuptools import find_packages
version = "0.3.0"
def get_file(filename):
"""Returns ... | Python | 0.000001 |
fc7f94c4e29560621fac248656294f32a198e6af | Remove trailing comma | setup.py | setup.py |
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="uberpy",
version="1.0",
author="Vivan Kumar",
author_email="vivangkumar@gmail.com",
description="A pure python wrapper for the Uber API.",
license="MIT"... |
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="uberpy",
version="1.0",
author="Vivan Kumar",
author_email="vivangkumar@gmail.com",
description="A pure python wrapper for the Uber API.",
license="MIT"... | Python | 0.999402 |
04ff7f221837c98093cd23eef6bca8461cc3405f | disable long description until can make it py3 compatible. | setup.py | setup.py | # pylint: disable=c0111
from _gitversion import get_version
try:
from setuptools import setup
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
import sys
with open('README.rst') as f:
readme_content = f.read().strip()
def install_requires():
_install_r... | # pylint: disable=c0111
from _gitversion import get_version
try:
from setuptools import setup
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
import sys
with open('README.rst') as f:
readme_content = f.read().strip()
def install_requires():
_install_r... | Python | 0 |
a610ff6ac5bb42030fc19ba18ba971cb8a3fb86c | bump to 0.1.0 | setup.py | setup.py | from setuptools import find_packages, setup
long_desc = '''\
Wallace is a wrapper for the Postgres, Redis, and Mongo database adapters.
It focuses on connection utilities and table-level abstractions but offers
a mini-ORM built around consistent attribute type declarations across
backends.
'''
if __name__ == '__mai... | from setuptools import find_packages, setup
long_desc = '''\
Wallace is a wrapper for the Postgres, Redis, and Mongo database adapters.
It focuses on connection utilities and table-level abstractions but offers
a mini-ORM built around consistent attribute type declarations across
backends.
'''
if __name__ == '__mai... | Python | 0.000023 |
535c9a80021e6924cabff60f35ac9d8d15d1e6cc | Fix email address | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
Copyright 2016 cocoatomo
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 agre... | # -*- coding: utf-8 -*-
"""
Copyright 2016 cocoatomo
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 agre... | Python | 0.999959 |
e0850937a787ce77a2aff1d3abd54ee0aa8e9e38 | Bump version. | setup.py | setup.py | #!/usr/bin/env python
import sys
assert sys.version >= '2.5', "Requires Python v2.5 or above."
from distutils.core import setup
from setuptools import find_packages
setup(
name="django-loginas",
version="0.1.1",
author="Stochastic Technologies",
author_email="info@stochastictechnologies.com",
url=... | #!/usr/bin/env python
import sys
assert sys.version >= '2.5', "Requires Python v2.5 or above."
from distutils.core import setup
from setuptools import find_packages
setup(
name="django-loginas",
version="0.1",
author="Stochastic Technologies",
author_email="info@stochastictechnologies.com",
url="h... | Python | 0 |
167095e7731e4092b466623c28d4e5f1d8006118 | Bump version to 2.0 | setup.py | setup.py | import os
from setuptools import setup
def here(*paths):
return os.path.join(os.path.dirname(__file__), *paths)
setup(
name='mysql-latin1-codec',
description='Python string codec for MySQL\'s latin1 encoding',
long_description=open(here('README.rst')).read(),
version="2.0",
py_modules=['mys... | import os
from setuptools import setup
def here(*paths):
return os.path.join(os.path.dirname(__file__), *paths)
setup(
name='mysql-latin1-codec',
description='Python string codec for MySQL\'s latin1 encoding',
long_description=open(here('README.rst')).read(),
version="1.0",
py_modules=['mys... | Python | 0 |
5ca43f26c886c0d6e559180e587867d84ea634f4 | Bump version to 0.2.0 | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = '0.2.0'
__pkg_name__ = 'textsift'
setup(
name = __pkg_name__,
version = __version__,
description = 'Text modelling framework',
author='Andrew Chisholm',
packages = find_packages(),
license = 'MIT',
url = 'https://github.com/wikilink... | from setuptools import setup, find_packages
__version__ = '0.1.0'
__pkg_name__ = 'sift'
setup(
name = __pkg_name__,
version = __version__,
description = 'Text modelling framework',
author='Andrew Chisholm',
packages = find_packages(),
license = 'MIT',
url = 'https://github.com/wikilinks/si... | Python | 0.000001 |
242924a8dbe1e227bd2d21cb744cc73670324d32 | Bump version | setup.py | setup.py | from setuptools import setup
setup(
name="python-louvain",
version="0.7",
author="Thomas Aynaud",
author_email="taynaud@gmail.com",
description="Louvain algorithm for community detection",
license="BSD",
url="https://github.com/taynaud/python-louvain",
classifiers=[
"Programming... | from setuptools import setup
setup(
name="python-louvain",
version="0.6",
author="Thomas Aynaud",
author_email="taynaud@gmail.com",
description="Louvain algorithm for community detection",
license="BSD",
url="https://github.com/taynaud/python-louvain",
classifiers=[
"Programming... | Python | 0 |
948aa5bc54802d9454dfafc7e3b6a7c16a805950 | Remove outdated and non-functioning iTunes launch prevention method | setup.py | setup.py | #!/usr/bin/env python3
from os.path import expanduser
from os.path import isdir
from os.path import isfile
from shutil import copytree
from shutil import rmtree
from subprocess import call
from sys import argv
FOLDER_NAME = "cmus-osx/"
MISSING_DEP_HELP = "Consult the installation section in README."
CMUS_BASE_DIR = N... | #!/usr/bin/env python3
from os.path import isdir, isfile, expanduser
from shutil import copytree, rmtree
from sys import argv
from subprocess import call
FOLDER_NAME = "cmus-osx/"
MISSING_DEP_HELP = "Consult the installation section in README."
CMUS_BASE_DIR = None
for cmus_base_dir in [expanduser("~/.config/cmus/"... | Python | 0 |
346eaa0db512fbbbb2357f08ec717fc0717ed7fd | update setup.py version number | setup.py | setup.py | import os.path
from setuptools import Command, find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
README_PATH = os.path.join(HERE, 'README.rst')
try:
README = open(README_PATH).read()
except IOError:
README = ''
setup(
name='rollbar-agent',
data_files=[('', ['rollbar-agent', 'roll... | import os.path
from setuptools import Command, find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
README_PATH = os.path.join(HERE, 'README.rst')
try:
README = open(README_PATH).read()
except IOError:
README = ''
setup(
name='rollbar-agent',
data_files=[('', ['rollbar-agent', 'roll... | Python | 0 |
d41e0d9aec0c68735b70596f67c31a1effdad999 | update version | setup.py | setup.py | import os
from setuptools import setup
_packages = ["polara",
"polara/recommender",
"polara/evaluation",
"polara/datasets",
"polara/lib",
"polara/tools",
"polara/recommender/coldstart",
"polara/recommender/hybrid",
"polara/... | import os
from setuptools import setup
_packages = ["polara",
"polara/recommender",
"polara/evaluation",
"polara/datasets",
"polara/lib",
"polara/tools",
"polara/recommender/coldstart",
"polara/recommender/hybrid",
"polara/... | Python | 0 |
6ab083eede68946f4a87d24732cd82be09734d52 | Update the long_description with README.rst | setup.py | setup.py | import os
from setuptools import setup
longDesc = ""
if os.path.exists("README.rst"):
longDesc = open("README.rst").read().strip()
setup(
name = "pytesseract",
version = "0.1.6",
author = "Samuel Hoffstaetter",
author_email="",
maintainer = "Matthias Lee",
maintainer_email = "pytesseract@mad... | import os
from setuptools import setup
longDesc = ""
if os.path.exists("README.md"):
longDesc = open("README.md").read().strip()
setup(
name = "pytesseract",
version = "0.1.6",
author = "Samuel Hoffstaetter",
author_email="",
maintainer = "Matthias Lee",
maintainer_email = "pytesseract@madma... | Python | 0.999881 |
1ba7e00ac7ef7f22aed22833940d3666d7584deb | Add generic Python 3 trove classifier | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.sqlalchemy',
version='0.1a3.dev0',
description='Tangled SQLAlchemy integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.sqlalchemy/tags',
author='W... | from setuptools import setup
setup(
name='tangled.sqlalchemy',
version='0.1a3.dev0',
description='Tangled SQLAlchemy integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.sqlalchemy/tags',
author='W... | Python | 0.997995 |
260ae7806df9f10891b8e59bda9d5e551ea878db | change misaka url | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='mikoto',
version='0.0.1',
keywords=('markdown', 'Douban'),
description='better Markdown Render',
license='New BSD',
url='https://github.com/qingfeng/mikoto',
author='qingfeng',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='mikoto',
version='0.0.1',
keywords=('markdown', 'Douban'),
description='better Markdown Render',
license='New BSD',
url='https://github.com/qingfeng/mikoto',
author='qingfeng',
... | Python | 0.000003 |
b076cf29166e2c51577a8ca4015f005379cf9e31 | Increment version. | setup.py | setup.py | from distutils.core import setup
setup(
name="pocketlint",
description="Pocket-lint a composite linter and style checker.",
version="0.5.13",
maintainer="Curtis C. Hovey",
maintainer_email="sinzui.is@verizon.net",
url="https://launchpad.net/pocket-lint",
packages=[
'pocketlint', 'po... | from distutils.core import setup
setup(
name="pocketlint",
description="Pocket-lint a composite linter and style checker.",
version="0.5.12",
maintainer="Curtis C. Hovey",
maintainer_email="sinzui.is@verizon.net",
url="https://launchpad.net/pocket-lint",
packages=[
'pocketlint', 'po... | Python | 0 |
99c4f1a9922b7ec388178fb7ce57626d18848090 | bump version | setup.py | setup.py | # -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='bonspy',
version='1.2.3',
description='Library that converts bidding trees to the AppNexus Bonsai language.',
author='Alexander Volkmann, Georg Walther',
author_emai... | # -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='bonspy',
version='1.2.2',
description='Library that converts bidding trees to the AppNexus Bonsai language.',
author='Alexander Volkmann, Georg Walther',
author_emai... | Python | 0 |
54c7f6323e4da87eb61b10490c6fc13a5516b936 | Change version | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = [
'Django>=1.8,<1.9',
'django-mptt>=0.7,<0.8',
'django-mptt-admin>=0.3,<0.4',
'sorl-thumbnail>=12.2',
]
setup(
name='django-glitter',
version='0.1.1',
description='Glitter for Django',
long_descripti... | #!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = [
'Django>=1.8,<1.9',
'django-mptt>=0.7,<0.8',
'django-mptt-admin>=0.3,<0.4',
'sorl-thumbnail>=12.2',
]
setup(
name='django-glitter',
version='0.1',
description='Glitter for Django',
long_description... | Python | 0 |
75cb3c334de96a758a76bcf3902c14d862474454 | Rename to knxip | setup.py | setup.py | from setuptools import setup
setup(name='knxip',
version='0.2',
description='A native Python KNX/IPNet implementation',
url='http://github.com/usul27/pknx',
author='Daniel Matuschek',
author_email='daniel@hifiberry.com',
license='MIT',
packages=['knxip'],
zip_safe=False)... | from setuptools import setup
setup(name='knxip',
version='0.2',
description='A native Python KNX/IPNet implementation',
url='http://github.com/usul27/pknx',
author='Daniel Matuschek',
author_email='daniel@hifiberry.com',
license='MIT',
packages=['pknx'],
zip_safe=False)
| Python | 0.999999 |
e205ce4d7f1105dff1e7fdb4e22df0d4aafd3dd1 | bump version 0.2.2 | 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 = "0.2.2"
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 = "0.2.1"
install_requirements = []
with open(_requirements) as f:
... | Python | 0.000001 |
12d9c9ff1622ce698cc62679acec2b2a23e46127 | support continue record from mic | MicRecord/MicRecord.py | MicRecord/MicRecord.py | import wave
import pyaudio
def record_sounds(output_file="record.wav", time=0):
_chunk = 1024
_format = pyaudio.paInt16
_channels = 2
_rate = 44100
audio = pyaudio.PyAudio()
stream = audio.open(format=_format,
channels=_channels,
rate=_rate,
... | import wave, pyaudio
def record_sounds(output_file="record.wav", time=0):
CHUNK = 1024
FORMAT = pyaudio.paInt16
CHANNELS = 2
RATE = 44100
if time is not 0:
audio = pyaudio.PyAudio()
stream = audio.open(format=FORMAT,
channels=CHANNELS,
... | Python | 0 |
9c688fa1c5825c35cfbdded44cc77f7d42a97ccb | use good english | setup.py | setup.py | 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__), os.pardir)))
setup(
name="posttls",
version="1... | 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__), os.pardir)))
setup(
name="posttls",
version="1... | Python | 0.001581 |
a84159df875f6a07300deb8f98224f92e0578445 | Increment version number now that 0.1.5 release out. | setup.py | setup.py | import os
from os.path import relpath, join
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def find_package_data(data_root, package_root):
files = []
for root, dirnames, filenames in os.walk(data_root):
for fn in filenames:
... | import os
from os.path import relpath, join
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def find_package_data(data_root, package_root):
files = []
for root, dirnames, filenames in os.walk(data_root):
for fn in filenames:
... | Python | 0 |
83f7da532f6d36a5629a45985e1bd7801bcea23d | Reformat setup.py with black | setup.py | setup.py | import ast
import re
from os import path
from setuptools import setup, find_packages
PROJECT_DIR = path.abspath(path.dirname(__file__))
def get_version():
constants = path.join(PROJECT_DIR, "django_migration_linter", "constants.py")
_version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)")
with ope... | import ast
import re
from os import path
from setuptools import setup, find_packages
PROJECT_DIR = path.abspath(path.dirname(__file__))
def get_version():
constants = path.join(PROJECT_DIR, "django_migration_linter", "constants.py")
_version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)")
with ope... | Python | 0 |
84dc430625bbc6549eb7a25cc72a8747dc31b079 | bump to 0.4 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="opencivicdata",
version='0.4.0',
py_modules=['opencivicdata'],
author="James Turk",
author_email='jturk@sunlightfoundation.com',
license="BSD",
description="python opencivicdata library",
long_descri... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="opencivicdata",
version='0.3.0',
py_modules=['opencivicdata'],
author="James Turk",
author_email='jturk@sunlightfoundation.com',
license="BSD",
description="python opencivicdata library",
long_descri... | Python | 0.000024 |
06193197afd1cf153b32bb20c8013248c3c2a1c1 | Add Python 3.7 to supported versions | setup.py | setup.py | #!/usr/bin/env python
"""Setup script for the pyparsing module distribution."""
# Setuptools depends on pyparsing (via packaging) as of version 34, so allow
# installing without it to avoid bootstrap problems.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
i... | #!/usr/bin/env python
"""Setup script for the pyparsing module distribution."""
# Setuptools depends on pyparsing (via packaging) as of version 34, so allow
# installing without it to avoid bootstrap problems.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
i... | Python | 0.000001 |
63eb3fbe2370947e2e5e37d84d6c11a695313638 | Increment to version 1.3.6. | setup.py | setup.py | import sys
import os
from setuptools import setup
def _template_files():
result = []
prefix = 'src/powershift/templates'
for root, dirs, files in os.walk(prefix, topdown=False):
for name in files:
if name.endswith('.json'):
if root == prefix:
result.... | import sys
import os
from setuptools import setup
def _template_files():
result = []
prefix = 'src/powershift/templates'
for root, dirs, files in os.walk(prefix, topdown=False):
for name in files:
if name.endswith('.json'):
if root == prefix:
result.... | Python | 0.000001 |
29aeb3764cb92521f7ef8ad0e0634468988e77cb | Add Trove classifiers and download URL to `setup.py`. | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2006 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://markup.edgewall.org/wiki/License.
#
# This... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2006 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://markup.edgewall.org/wiki/License.
#
# This... | Python | 0.000004 |
b8f53a1d961d0e0c79ac7bdbd7108f00a6393bd8 | Prepare release v2.1.1 | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="gviewer",
version="2.1.1",
description="General Viewer",
lon... | from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="gviewer",
version="2.1.0",
description="General Viewer",
lon... | Python | 0.000001 |
cdd6280d66f81f18262410d8116440a18615b5a7 | Fix setup.py | setup.py | setup.py | from setuptools import setup
exec(open('us_geo_helper/version.py').read())
setup(
name = 'us-geo-helper',
packages = ['us_geo_helper'],
version = __version__,
description = 'Python wrapper for US Census Data',
author = 'Philip Sun',
author_email = 'traders@mit.edu',
license = 'MIT',
url ... | from setuptools import setup
exec(open('us-geo-helper/version.py').read())
setup(
name = 'us-geo-helper',
packages = ['us_geo_helper'],
version = __version__,
description = 'Python wrapper for US Census Data',
author = 'Philip Sun',
author_email = 'traders@mit.edu',
license = 'MIT',
url ... | Python | 0.000001 |
2e7ba9b6b5647c4fa451a9158015406a392b99f7 | Bump version number. | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel',
version='0.6.2',
description='Data model for the Projet Pensées Profondes.',
url='https://github.com/ProjetPP/PPP-datamodel-Python',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_datamodel',
version='0.6.1',
description='Data model for the Projet Pensées Profondes.',
url='https://github.com/ProjetPP/PPP-datamodel-Python',
author='Valentin Lorentz',
author_email='valentin.lorentz+ppp@ens... | Python | 0 |
213781ac050a069b0d723d4c98ad6c66a806c53e | Fix tox integration (see Bitbucket PR 196) | setup.py | setup.py | #!/usr/bin/env python
"""
Setup for Swagger extension for Eve powered RESTful APIs
"""
from os.path import abspath, dirname, join
from shlex import split
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand # noqa N812
def read_file(filename):
"""Read the contents o... | #!/usr/bin/env python
"""
Setup for Swagger extension for Eve powered RESTful APIs
"""
from os.path import abspath, dirname, join
from shlex import split
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand # noqa N812
def read_file(filename):
"""Read the contents o... | Python | 0.000003 |
89e647a697b300b409ffe971d86dc242f05cd1b7 | Bump version to 0.10.0 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
]
setup(
name='nose-kleenex',
version='0.10.0',
author='David Cramer',
author_email='dcramer@gmail.com',
description='A discovery plugin for Nose which relies on code coverage.',
url='http://github.com/dcramer... | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
]
setup(
name='nose-kleenex',
version='0.9.1',
author='David Cramer',
author_email='dcramer@gmail.com',
description='A discovery plugin for Nose which relies on code coverage.',
url='http://github.com/dcramer/... | Python | 0 |
5d6287fb5dd13f13ed6858322fbd34ed3230b170 | Correct check for upload or register setup command | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
import subprocess
required_modules = [
"simplejson",
"httplib2",
"unidecode",
"oauth2"
]
with open("README.md", "rb") as f:
readme = f.read()
try:
# avoid ReST at all costs, but make sure we have it for PyPi
proc = subprocess.Popen... | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
import subprocess
required_modules = [
"simplejson",
"httplib2",
"unidecode",
"oauth2"
]
with open("README.md", "rb") as f:
readme = f.read()
try:
# avoid ReST at all costs, but make sure we have it for PyPi
proc = subprocess.Popen... | Python | 0 |
ade1156fb4b7de09308fe8611d87ba3fc4067ab8 | Create test mode for theming jumpstart. | jumpstart/application.py | jumpstart/application.py | #!/usr/bin/env python
import os
import subprocess
import time
from flask import Flask, render_template, request
from pytz import common_timezones
from daemon import Daemon
# Configuration
DEBUG = True
TEST_MODE = False
PANDA_PATH = '/opt/panda'
LOCAL_SETTINGS_PATH = '%s/local_settings.py' % PANDA_PATH
RESTART_SCRI... | #!/usr/bin/env python
import os
import subprocess
import time
from flask import Flask, render_template, request
from pytz import common_timezones
from daemon import Daemon
# Configuration
DEBUG = True
PANDA_PATH = '/opt/panda'
LOCAL_SETTINGS_PATH = '%s/local_settings.py' % PANDA_PATH
# Setup
app = Flask(__name__)... | Python | 0 |
c8653a0b0760f2aa6cf6f682f045eff26d3db5df | Change my email adress to @gmail.com | setup.py | setup.py | #!/usr/bin/env python
# vim: fileencoding=utf-8 et sw=4 ts=4 tw=80:
# python-quilt - A Python implementation of the quilt patch system
#
# Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser Genera... | #!/usr/bin/env python
# vim: fileencoding=utf-8 et sw=4 ts=4 tw=80:
# python-quilt - A Python implementation of the quilt patch system
#
# Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser Genera... | Python | 0.999867 |
397ab77e15c59eff55771abaab2ca648d2dc9876 | Bump version | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
file_dir = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
filepath = os.path.join(file_dir, filename)
return open(filepath).read()
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
file_dir = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
filepath = os.path.join(file_dir, filename)
return open(filepath).read()
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os... | Python | 0 |
12855d86e8f94783879b77a7d7adfe4ba4976a8e | Prepare v0.5.0 release | setup.py | setup.py | #!/usr/bin/env python
#
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
#
# 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
#
# Unle... | #!/usr/bin/env python
#
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
#
# 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
#
# Unle... | Python | 0 |
5518e20feedf4f9cc90d4b7ac8971ac5008ff449 | update version | setup.py | setup.py | import os
from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='1.8',
description='Library for accessing the Context.IO API v2.0 in Python',
author='Tony Blank, Jesse Dhillon',
author_email='tony@context.io, jesse@deva0.net',
url='http://context.io... | import os
from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='1.7',
description='Library for accessing the Context.IO API v2.0 in Python',
author='Tony Blank, Jesse Dhillon',
author_email='tony@context.io, jesse@deva0.net',
url='http://context.io... | Python | 0 |
9a5ec77d48ef588629872130c729e9722518dc53 | Update setup.py | setup.py | setup.py |
from setuptools import setup
setup(name='servicemanager',
python_requires='>2.7.13',
version='1.2.0',
description='A python tool to manage developing and testing with lots of microservices',
url='https://github.com/hmrc/service-manager',
author='hmrc-web-operations',
license='Apach... |
from setuptools import setup
setup(name='servicemanager',
version='1.2.0',
description='A python tool to manage developing and testing with lots of microservices',
url='https://github.com/hmrc/service-manager',
author='hmrc-web-operations',
license='Apache Licence 2.0',
packages=['... | Python | 0.000001 |
a9d97814bd5880812e9202c547cadd6bf34227f5 | Bump pydantic from 1.8.2 to 1.9.0 | setup.py | setup.py | from setuptools import setup, find_packages
DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics"
LONG_DESCRIPTION = """
The piro software package enables prediction and planning of synthesis pathways
and determination of pareto-optimal frontiers for synthesis of
specifi... | from setuptools import setup, find_packages
DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics"
LONG_DESCRIPTION = """
The piro software package enables prediction and planning of synthesis pathways
and determination of pareto-optimal frontiers for synthesis of
specifi... | Python | 0.000002 |
5cbc0d0f94b0ddd0c580d0447180e8688cb0e165 | update dependencies | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Window... | #!/usr/bin/env python
from setuptools import setup
import os
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Window... | Python | 0.000001 |
6c8bb0ed15bc3ad6cfe237fea94609e951015103 | Update setup.py. | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup
import sentry_telegram
setup(
name='sentry_telegram',
version=sentry_telegram.__version__,
packages=['sentry_telegram'],
url='https://github.com/butorov/sentry-telegram',
author='Viacheslav Butorov',
author_email='butorovv@gma... | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup
import sentry_telegram
setup(
name='sentry_telegram',
version=sentry_telegram.__version__,
packages=['sentry_telegram'],
url='https://github.com/butorov/sentry-telegram',
author='Viacheslav Butorov',
author_email='butorovv@gma... | Python | 0 |
ca75a1d815078f24f41dbaec91f6f863e047097e | Set zip_safe=False. | setup.py | setup.py | import os
import platform
import sys
import warnings
from setuptools import setup
from setuptools.extension import Extension
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup_kwargs = {}
ext_modules = []
try:
from Cython.Build import cythonize
except ImportError:
... | import os
import platform
import sys
import warnings
from setuptools import setup
from setuptools.extension import Extension
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup_kwargs = {}
ext_modules = []
try:
from Cython.Build import cythonize
except ImportError:
... | Python | 0.000286 |
676d0c61193a52cfdde2dad62db0744e6904a3de | Add json and md data. | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
from os.path import dirname, abspath, join
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='megnet',
version='0.2.0',
decription='MatErials Gra... | from setuptools import setup
from setuptools import find_packages
from os.path import dirname, abspath, join
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='megnet',
version='0.2.0',
decription='MatErials Gra... | Python | 0 |
408df6dc5b50bd5e49f0febabc990f716e80c5f5 | Refactor `scripts` for `entry_points` keyword for console scripts | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2015 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from os.path import abspath, dirname, join
import sys
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py')
def get_... | #!/usr/bin/env python
# Copyright (c) 2015 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from os.path import abspath, dirname, join
import sys
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py')
def get_... | Python | 0 |
d4a80e947a69c42adc1dc2917878c2a822b8426c | Update requirements in setup.py | setup.py | setup.py | # -*- coding: utf-8 -*-
from codecs import open
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
with open('HISTORY.rst', 'r', 'utf-8') as f:
history = f.read()
with open('AUTHORS.rst', 'r', 'utf-8') a... | # -*- coding: utf-8 -*-
from codecs import open
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
with open('HISTORY.rst', 'r', 'utf-8') as f:
history = f.read()
with open('AUTHORS.rst', 'r', 'utf-8') a... | Python | 0 |
4e66d7f4476cfefdc897a0bd5fc1be6c2b2868ce | Add missing long_description_content_type | setup.py | setup.py | from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
with open("remotecv/__init__.py") as f:
ns = {}
exec(f.read(), ns)
version = ns["__version__"]
TESTS_REQUIREMENTS = [
"celery==... | from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
with open("remotecv/__init__.py") as f:
ns = {}
exec(f.read(), ns)
version = ns["__version__"]
TESTS_REQUIREMENTS = [
"celery==... | Python | 0.000013 |
e71094c40c7bab1328180af8fec38a485753a90d | update compatibility in setup.py | setup.py | setup.py | import os
import sys
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
py_version = sys.version_info[:2]
if py_version < (3, 5):
raise Exception("flac2mp3 requires Python >= 3.5.")
with open(os.path.join(here, 'README.rst')) as readme:
README = readme.read()
NAME = 'flac2mp3'
i... | import os
import sys
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
py_version = sys.version_info[:2]
if py_version < (3, 5):
raise Exception("flac2mp3 requires Python >= 3.5.")
with open(os.path.join(here, 'README.rst')) as readme:
README = readme.read()
NAME = 'flac2mp3'
i... | Python | 0 |
c5b5b9175210174e665d32bda4c8bf621e5cf64d | Add django-registration as dependency | setup.py | setup.py | from setuptools import setup, find_packages
import os
setup(
author="Ben Lopatin",
author_email="ben.lopatin@wellfireinteractive.com",
name='django-group-accounts',
version='0.1',
description='Group accounts for Django.',
long_description=open(os.path.join(os.path.dirname(__file__),
'R... | from setuptools import setup, find_packages
import os
setup(
author="Ben Lopatin",
author_email="ben.lopatin@wellfireinteractive.com",
name='django-group-accounts',
version='0.1a',
description='Group accounts for Django.',
long_description=open(os.path.join(os.path.dirname(__file__),
'... | Python | 0.000051 |
158c06f4cacea2e01848e8a5b6dbe8bb9c28543f | Fix package setup. | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='djoser',
packages=['djoser'],
install_requires=[
'Django>=1.7',
'djangorestframework>=2.4.3',
],
tests_require=[
'djet>=0.0.9'
],
include_package_data=True,
zip_safe=False,
)
| #!/usr/bin/env python
from setuptools import setup
setup(
name='djoser',
packages=['djoser'],
install_requires=[
'Django>=1.7',
'djangorestframework>=2.4.3',
],
tests_require=[
'djet>=0.0.9'
],
package_data={
'templates': ['templates/*.html', 'templates/*.txt'... | Python | 0 |
0489a7d3eb8b29850aedf51d9397a66de85e7e9e | Update maintainer | setup.py | setup.py | #
# Copyright (c) 2015-2017 LabKey Corporation
#
# 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 agre... | #
# Copyright (c) 2015-2017 LabKey Corporation
#
# 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 agre... | Python | 0.000001 |
587ea4f32bb9c932278d282e362e8278b7d3e1bc | Bump version to 1.1 | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-txtlocal',
packages=find_packages(),
include_package_data=True,
install_requires=['requests>=1.2.3'],
version='1.1',
description='App for sending and receiving SMS messages via http://www.textlocal.com',
long_description=open(... | from setuptools import setup, find_packages
setup(
name='django-txtlocal',
packages=find_packages(),
include_package_data=True,
install_requires=['requests>=1.2.3'],
version='1.0',
description='App for sending and receiving SMS messages via http://www.textlocal.com',
long_description=open(... | Python | 0 |
9639c3fef58948942e769abda23e2703a5fbbbf4 | make jinja2 a runtime dep rather than a develop dep. (#397) | setup.py | setup.py | import os
from setuptools import setup, find_packages
__here__ = os.path.dirname(os.path.abspath(__file__))
package_info = dict((k, None) for k in ["RELEASE", "COMMIT", "VERSION", "NAME"])
for name in package_info:
with open(os.path.join(__here__, "insights", name)) as f:
package_info[name] = f.read().st... | import os
from setuptools import setup, find_packages
__here__ = os.path.dirname(os.path.abspath(__file__))
package_info = dict((k, None) for k in ["RELEASE", "COMMIT", "VERSION", "NAME"])
for name in package_info:
with open(os.path.join(__here__, "insights", name)) as f:
package_info[name] = f.read().st... | Python | 0 |
a6c3782d6c60f3660b7978d7311335e093c9a179 | bump version to 0.1.7 | setup.py | setup.py | from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='splits',
version='0.1.7',
author='Thomas Millar, Jeff Magnusson',
author_email='millar.thomas@gmail.com, magnussj@gmail.com',
license='MIT',
description='A library for dealing with ... | from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='splits',
version='0.1.6',
author='Thomas Millar, Jeff Magnusson',
author_email='millar.thomas@gmail.com, magnussj@gmail.com',
license='MIT',
description='A library for dealing with ... | Python | 0.000001 |
283f355ab3ad09ddcd016f9c019e1c5a1375ddd1 | fix setup.py | setup.py | setup.py | from setuptools import setup, find_packages
from pathlib import Path
import numpy as np
import versioneer
req_path = Path('requirements.txt')
if not req_path.is_file():
req_path = Path('scvelo.egg-info') / req_path
with req_path.open() as requirements:
requires = [l.strip() for l in requirements]
setup(
n... | from setuptools import setup, find_packages
from pathlib import Path
import numpy as np
import versioneer
req_path = Path('requirements.txt')
if not req_path.is_file():
req_path = Path('scvelo.egg-info') / req_path
with req_path.open() as requirements:
requires = [l.strip() for l in requirements]
setup(
n... | Python | 0.000001 |
7eaf0dff72fff8aa66082998b226b3f02c4b43e1 | Add a version number to the setup script (only to experiment with easy_install). | setup.py | setup.py | #!/usr/bin/env python
"""ctypes code generator
"""
import os, sys
from distutils.core import setup, Command
class test(Command):
# Original version of this class posted
# by Berthold Hoellmann to distutils-sig@python.org
description = "run tests"
user_options = [
('tests=', 't',
"comm... | #!/usr/bin/env python
"""ctypes code generator
"""
import os, sys
from distutils.core import setup, Command
class test(Command):
# Original version of this class posted
# by Berthold Hoellmann to distutils-sig@python.org
description = "run tests"
user_options = [
('tests=', 't',
"comm... | Python | 0 |
2db62ba9f60ede1fda1ab6536b8368c01938f0e5 | Fix django-oauth2-provider dependency link | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='edx-oauth2-provider',
version='0.2.0',
description='Provide OAuth2 access to edX installations',
author='edX',
url='https://github.com/edx/edx-oauth2-provider',
license='AGPL',
classifiers=[
'Development Status :: 3 - ... | #!/usr/bin/env python
from setuptools import setup
setup(
name='edx-oauth2-provider',
version='0.2.0',
description='Provide OAuth2 access to edX installations',
author='edX',
url='https://github.com/edx/edx-oauth2-provider',
license='AGPL',
classifiers=[
'Development Status :: 3 - ... | Python | 0.00001 |
2849a167d76a51681dd9621d5659179aaf951f45 | drop pypi and add py38 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.extension import Extension
import logging
import os
import sys
try:
from Cython.Build import cythonize
extension = cythonize(
[
Extension(
'psd_tools.compression._packbits',
['sr... | #!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.extension import Extension
import logging
import os
import sys
try:
from Cython.Build import cythonize
extension = cythonize(
[
Extension(
'psd_tools.compression._packbits',
['sr... | Python | 0 |
022ae8a30812916538faeab02385c7d80dc9e623 | Add myself as maintainer | setup.py | setup.py | from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'P... | from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'P... | Python | 0.000125 |
ed333751b78ee63adee9317d1462b99e8d92fed1 | Tag v0.9-dev for development | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name="bentoo",
description="Benchmarking tools",
version="0.9-dev",
packages=find_packages(),
scripts=["scripts/generator.py", "scripts/runner.py",
"scripts/collector.py", "scripts/analyser.py"],
... | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name="bentoo",
description="Benchmarking tools",
version="0.8",
packages=find_packages(),
scripts=["scripts/generator.py", "scripts/runner.py",
"scripts/collector.py", "scripts/analyser.py"],
p... | Python | 0 |
d0d86c658d549c70d4f66241414e6f0a85d632ad | Add dep. | setup.py | setup.py | import re
from setuptools import setup, find_packages
versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M)
with open("src/fusion_index/_version.py", "rt") as f:
version = versionPattern.search(f.read()).group(1)
setup(
name='fusion-index',
version=version,
description='Lookup/searc... | import re
from setuptools import setup, find_packages
versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M)
with open("src/fusion_index/_version.py", "rt") as f:
version = versionPattern.search(f.read()).group(1)
setup(
name='fusion-index',
version=version,
description='Lookup/searc... | Python | 0.000001 |
55acaf3f70eaf8e8baa59b57d85ce1202c01580f | Modify the version number. | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'parsec.py',
version = '2.0.0',
description = 'parser combinator.',
long_description = 'A univeral Python parser combinator library inspirted by Parsec library of Haskell.',
author = 'He Tao',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'parsec.py',
version = '1.0.0',
description = 'parser combinator.',
long_description = 'A univeral Python parser combinator library inspirted by Parsec library of Haskell.',
author = 'He Tao',
... | Python | 0.000001 |
9041036f52458669215769775c0be4337e0f1352 | Add clean command to setup.py | setup.py | setup.py | import os
import re
import setuptools
class CleanCommand(setuptools.Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system("rm -vrf ./build ./dist ... | import os
import re
import setuptools
directory = os.path.dirname(os.path.abspath(__file__))
# Extract version information
path = os.path.join(directory, "metal", "__init__.py")
with open(path) as read_file:
text = read_file.read()
pattern = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE)
version... | Python | 0.000001 |
92a9b98b0b17e6322ff4c81511c4186baac3dd2d | Add explicit argparse dependency for Python 2.6. | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2015 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from os.path import abspath, dirname, join
import sys
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py')
def get_v... | #!/usr/bin/env python
# Copyright (c) 2015 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from os.path import abspath, dirname, join
import sys
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py')
def get_v... | Python | 0 |
e7d8039e1c42062b1816cec7294135b25e103650 | Fix up setup.py | setup.py | setup.py | #!/usr/bin/env python3
# Copyright 2012-2020 James Geboski <jgeboski@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights... | #!/usr/bin/env python3
# Copyright 2012-2020 James Geboski <jgeboski@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights... | Python | 0.000003 |
2f403df689f0566e9197fff277bac8d5e1e4d3dd | update setup.py | setup.py | setup.py | #!/usr/bin/python
# ex:set fileencoding=utf-8:
import os
import sys
import re
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import contact_form_bootstrap
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
install_requires = [
'djan... | #!/usr/bin/python
# ex:set fileencoding=utf-8:
import os
import sys
import re
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import contact_form_bootstrap
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
install_requires = [
'djan... | Python | 0.000001 |
7bc2295ef2f3f1d44a8a1f0c7592edb2e1fcf79f | enforce django-fluent-utils 1.1.2 for PyDev/PyCharm fixes | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
# When creating the sdist, make sure the django.mo file also exists:
if 'sdist' in sys.argv or 'develop' in sys.argv:
try:
os.chdir('fluent_contents')
from django.cor... | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
# When creating the sdist, make sure the django.mo file also exists:
if 'sdist' in sys.argv or 'develop' in sys.argv:
try:
os.chdir('fluent_contents')
from django.cor... | Python | 0.000001 |
7be23730a3712eadba620184f62f49c9064bb9a5 | bump version to b13, no release yet | setup.py | setup.py | from __future__ import print_function
try:
from setuptools import setup # try first in case it's already there.
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='vpython',
packages=['vpython'],
version='0.2.0b13',
descri... | from __future__ import print_function
try:
from setuptools import setup # try first in case it's already there.
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='vpython',
packages=['vpython'],
version='0.2.0b12',
descri... | Python | 0 |
1b2bf239a8357f5de9fcfab2f9f6fe2fd9557db3 | Make python3 compatible. | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright (C) 2012-2014 MUJIN Inc
from distutils.core import setup
try:
from mujincommon.setuptools import Distribution
except ImportError:
from distutils.dist import Distribution
version = {}
exec(open('python/mujincontrollerclient/version.py').read(), version)
setup(
distclass=... | # -*- coding: utf-8 -*-
# Copyright (C) 2012-2014 MUJIN Inc
from distutils.core import setup
try:
from mujincommon.setuptools import Distribution
except ImportError:
from distutils.dist import Distribution
version = {}
execfile('python/mujincontrollerclient/version.py', version)
setup(
distclass=Distribut... | Python | 0 |
8b0dc1ac533c566060020723252c7dfd5551fc8f | Update pytest-cov requirement from <2.11.0,>=2.8.1 to >=2.8.1,<2.12.0 (#612) | setup.py | setup.py | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.10.2",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.10.2",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | Python | 0.00001 |
3249702ba601377dd21daab2131d851aeb90a6ff | update dependency of chilero to >=3.4.2 | setup.py | setup.py | import setuptools
setup_params = dict(
name='chilero_pg',
use_scm_version=True,
namespace_packages=['chilero'],
packages=setuptools.find_packages(),
include_package_data=True,
url='https://github.com/dmonroy/chilero.pg',
author='Darwin Monroy',
author_email='contact@darwinmonroy.com',
... | import setuptools
setup_params = dict(
name='chilero_pg',
use_scm_version=True,
namespace_packages=['chilero'],
packages=setuptools.find_packages(),
include_package_data=True,
url='https://github.com/dmonroy/chilero.pg',
author='Darwin Monroy',
author_email='contact@darwinmonroy.com',
... | Python | 0 |
87fd39eafd4a2d8310a9273136a95438b7c36f56 | fix blessings requirement to allow 1.5, don't require <2 | setup.py | setup.py | from setuptools import setup
import ast
import os
def version():
"""Return version string."""
with open(os.path.join('curtsies', '__init__.py')) as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
setup(name='curt... | from setuptools import setup
import ast
import os
def version():
"""Return version string."""
with open(os.path.join('curtsies', '__init__.py')) as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
setup(name='curt... | Python | 0.000009 |
d825a89a1d4d19f9979504078f0091493f41677e | Bump version. | setup.py | setup.py | from setuptools import setup
setup(name='execution-trace',
version='1.0.1',
description='Record the state of Python functions as they execute.',
url='http://github.com/mihneadb/python-execution-trace',
author='Mihnea Dobrescu-Balaur',
author_email='mihnea@linux.com',
license='MIT'... | from setuptools import setup
setup(name='execution-trace',
version='1.0.0',
description='Record the state of Python functions as they execute.',
url='http://github.com/mihneadb/python-execution-trace',
author='Mihnea Dobrescu-Balaur',
author_email='mihnea@linux.com',
license='MIT'... | Python | 0 |
f1527402bc4ca40e638022d611920e855df1244e | use right url and name in setup | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name='python-meteor',
version='0.1.0',
description='An event driven meteor client',
long_description=readme,
license='MIT',
author='Harrison Harnisch',
author_email='hharnisc@gmail.com'... | #!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name='meteor-ddp',
version='0.1.0',
description='An event driven meteor client',
long_description=readme,
license='MIT',
author='Harrison Harnisch',
author_email='hharnisc@gmail.com',
... | Python | 0 |
65dcbf1894444208a0a18cf1993da8b5b7844044 | Fix #14 -- pip not installing full package | setup.py | setup.py | #!/usr/bin/env python
"""How to release a new version: https://packaging.python.org/en/latest/distributing.html#uploading-your-project-to-pypi"""
from businesstime import __version__
from setuptools import find_packages, setup
setup(
name='businesstime',
version=__version__,
author='SeatGeek',
autho... | #!/usr/bin/env python
"""How to release a new version: https://packaging.python.org/en/latest/distributing.html#uploading-your-project-to-pypi"""
from businesstime import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='businesstime',
ve... | Python | 0 |
4c307de8e4efc3f43218d438c1465c3c60ab91b7 | Bump version to 0.21.0 | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = '0.21.0'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | from setuptools import setup, find_packages
__version__ = '0.20.0'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | Python | 0 |
2399c500a43ed4b6eec7f79dce51166c98503721 | update version | setup.py | setup.py | from setuptools import setup
setup(
version = '1.2.16',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap'... | from setuptools import setup
setup(
version = '1.2.15',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap'... | Python | 0 |
13de2353047e22390964497b536f4647f44ad89b | Bump version to 0.30.1 | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = '0.30.1'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | from setuptools import setup, find_packages
__version__ = '0.30.0'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | Python | 0 |
782733ef64fd16418a48f9bca1b288efcb26d057 | Add a few more entrypoints for defaults. | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
def readreq(filename):
result = []
with open(filename) as f:
for req in f:
req = req.partition('#')[0].strip()
if not req:
continue
result.append(req)
return result
def readfile(fil... | #!/usr/bin/env python
import os
from setuptools import setup
def readreq(filename):
result = []
with open(filename) as f:
for req in f:
req = req.partition('#')[0].strip()
if not req:
continue
result.append(req)
return result
def readfile(fil... | Python | 0 |
54b1c8bcfadae586e33cfff7813c8066ca50560d | update version number | setup.py | setup.py | #from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'... | #from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'... | Python | 0.000002 |
ff8b2a2584a85d1df49667e87d4c894b644cc02a | bump version | setup.py | setup.py | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.7.3',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.7.2',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | Python | 0 |
6b7da0bbda76360f22fa95c8bb1a38c59920e16a | Bump version 0.6.5 | setup.py | setup.py | from __future__ import print_function
import os
from setuptools import setup, find_packages
from distutils.command.build import build as _build
executables = [
'jpegoptim',
'pngcrush',
'optipng',
'convert', # From GraphicsMagick or ImageMagick.
'lessc',
'r.js',
'postcss',
]
def which(e... | from __future__ import print_function
import os
from setuptools import setup, find_packages
from distutils.command.build import build as _build
executables = [
'jpegoptim',
'pngcrush',
'optipng',
'convert', # From GraphicsMagick or ImageMagick.
'lessc',
'r.js',
'postcss',
]
def which(e... | Python | 0.000001 |
e1a900485e1917d251336e104d2a4c18774c62e4 | Bump version | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2015 grafana-dashboard-builder contributors
#
# 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/LICENS... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2015 grafana-dashboard-builder contributors
#
# 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/LICENS... | Python | 0 |
fb166c2afa110b758efbc8aeae9ff177050bfa0c | Add correct filename in OnionLauncher ui directory | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import sys
setup(name="OnionLauncher",
version="0.0.1",
description="Launcher for Tor",
license = "BSD",
author="Neel Chauhan",
author_email="neel@neelc.org",
url="https://www.github.com/neelchauhan/OnionLauncher/",
packages=["OnionLauncher"],
entry_points={'... | #!/usr/bin/env python
from setuptools import setup
import sys
setup(name="OnionLauncher",
version="0.0.1",
description="Launcher for Tor",
license = "BSD",
author="Neel Chauhan",
author_email="neel@neelc.org",
url="https://www.github.com/neelchauhan/OnionLauncher/",
packages=["OnionLauncher"],
entry_points={'... | Python | 0.000003 |
f3c72bae983dd5ed5ead47573120fb48f3bac521 | Update pypi.python.org URL to pypi.org | setup.py | setup.py | #!/usr/bin/env python
from io import open
from setuptools import find_packages, setup
setup(
name='django-debug-toolbar',
version='1.9.1',
description='A configurable set of panels that display various debug '
'information about the current request/response.',
long_description=open('R... | #!/usr/bin/env python
from io import open
from setuptools import find_packages, setup
setup(
name='django-debug-toolbar',
version='1.9.1',
description='A configurable set of panels that display various debug '
'information about the current request/response.',
long_description=open('R... | Python | 0 |
6a0f3af96e331882e620c6d6bffe020979323f26 | Create a PIP-installable package | setup.py | setup.py | from distutils.core import setup
setup(
name='logcandy',
version='0.1.0',
author='Wojciech Gaca',
author_email='wmgaca@gmail.com',
packages=['logcandy'],
scripts=[],
url='http://github.com/wmgaca/logcandy',
license='LICENSE',
description='Python logging utils.',
long_description... | from distutils.core import setup
setup(
name='logcandy',
version='0.1.0',
author='Wojciech Gaca',
author_email='wmgaca@gmail.com',
packages=['logcandy'],
scripts=[],
url='http://github.com/wmgaca/logcandy',
license='LICENSE.txt',
description='Python logging utils.',
long_descrip... | Python | 0.000001 |
a216f8ca01afa17e42079077c03e00313aea8fd0 | Update github url on pypi | setup.py | setup.py | #!/usr/bin/env python
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. 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... | #!/usr/bin/env python
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. 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... | Python | 0 |
a8f36f4cbab4f4740c632cc9f9831c9626f52220 | Bump version to v0.5.1 | setup.py | setup.py | # -*- coding: utf-8 -*-
from os import path, chdir, pardir
from setuptools import setup, find_packages
README = open(path.join(path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
chdir(path.normpath(path.join(path.abspath(__file__), pardir)))
setup(
name="django-onfido",
ve... | # -*- coding: utf-8 -*-
from os import path, chdir, pardir
from setuptools import setup, find_packages
README = open(path.join(path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
chdir(path.normpath(path.join(path.abspath(__file__), pardir)))
setup(
name="django-onfido",
ve... | Python | 0 |
1c510e27027cf2490a69b8ce351a468c588e62a6 | Add isodate dependency - anticipating datetime fix. | setup.py | setup.py | #!/usr/bin/env python
import sys
import re
def setup_python3():
# Taken from "distribute" setup.py
from distutils.filelist import FileList
from distutils import dir_util, file_util, util, log
from os.path import join
tmp_src = join("build", "src")
log.set_verbosity(1)
fl = FileList()
... | #!/usr/bin/env python
import sys
import re
def setup_python3():
# Taken from "distribute" setup.py
from distutils.filelist import FileList
from distutils import dir_util, file_util, util, log
from os.path import join
tmp_src = join("build", "src")
log.set_verbosity(1)
fl = FileList()
... | Python | 0 |
3352920f7e92e2732eb2914313bdee6b5ab7f549 | Fix bin scripts having python2 or python3 specific path. | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright (C) 2012-2014 MUJIN Inc
from distutils.core import setup
try:
from mujincommon.setuptools import Distribution
except ImportError:
from distutils.dist import Distribution
version = {}
exec(open('python/mujincontrollerclient/version.py').read(), version)
setup(
distclass=... | # -*- coding: utf-8 -*-
# Copyright (C) 2012-2014 MUJIN Inc
from distutils.core import setup
try:
from mujincommon.setuptools import Distribution
except ImportError:
from distutils.dist import Distribution
version = {}
exec(open('python/mujincontrollerclient/version.py').read(), version)
setup(
distclass=... | Python | 0.000003 |
58ac22761db59f58362a0c25e5961348a67137f1 | no hgtools | setup.py | setup.py | from setuptools import setup, find_packages
import os
# The version of the wrapped library is the starting point for the version number of the python package.
# In bugfix releases of the python package, add a '-' suffix and an incrementing integer.
# For example, a packaging bugfix release version 1.4.4 of the js.jque... | from setuptools import setup, find_packages
import os
# The version of the wrapped library is the starting point for the version number of the python package.
# In bugfix releases of the python package, add a '-' suffix and an incrementing integer.
# For example, a packaging bugfix release version 1.4.4 of the js.jque... | Python | 0.999709 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.