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 |
|---|---|---|---|---|---|---|---|---|
12af8b9fb5244f476711c6c48fcf786177e9e161 | Bump version to 2.0.42 | UCBerkeleySETI/blimpy,UCBerkeleySETI/blimpy | setup.py | setup.py | """
setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
__version__ = '2.0.42'
with open("README.md", "r") as fh:
long_description = fh.read()
# create entry points
# see http://astropy.readthedocs.org/en/latest/development/scripts.html
entry_points = {
'console_scri... | """
setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
__version__ = '2.0.41'
with open("README.md", "r") as fh:
long_description = fh.read()
# create entry points
# see http://astropy.readthedocs.org/en/latest/development/scripts.html
entry_points = {
'console_scri... | bsd-3-clause | Python |
77ba87f3e06e9cccca914f58b5cdc8a55291bf50 | Add setuptools requirements | federicobond/django-form-utils-bootstrap3 | setup.py | setup.py | import setuptools
setuptools.setup(
name="django-form-utils-bootstrap3",
version="0.1.1",
url="https://github.com/federicobond/django-form-utils-bootstrap3",
author="Federico Bond",
author_email="federicobond@gmail.com",
description="Render forms with fieldsets using Bootstrap markup via djan... | import setuptools
setuptools.setup(
name="django-form-utils-bootstrap3",
version="0.1.1",
url="https://github.com/federicobond/django-form-utils-bootstrap3",
author="Federico Bond",
author_email="federicobond@gmail.com",
description="Render forms with fieldsets using Bootstrap markup via djan... | mit | Python |
3cda9763badcb123bb1099f40a2d1d6b053218a7 | Revert to previously tested Fabric versions | tjrivera/harvest,chop-dbhi/harvest | setup.py | setup.py | import sys
from setuptools import setup, find_packages
install_requires = [
'Fabric>=1.6,<1.7',
'virtualenv>=1.8.2',
]
if sys.version_info < (2, 7):
install_requires.append('argparse>=1.2.1')
install_requires.append('ordereddict>=1.1')
kwargs = {
# Packages
'packages': find_packages(exclude=... | import sys
from setuptools import setup, find_packages
install_requires = [
'Fabric>=1.8',
'virtualenv>=1.10.1',
]
if sys.version_info < (2, 7):
install_requires.append('argparse>=1.2.1')
install_requires.append('ordereddict>=1.1')
kwargs = {
# Packages
'packages': find_packages(exclude=['te... | bsd-2-clause | Python |
1e8a1f1e9bb4f1f8dfc5ebd1c6180f2ac2493016 | Fix `install_requires` list in `setup.py` | KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound | setup.py | setup.py | from __future__ import print_function
from os import sys
from skbuild import setup
setup(
name='itk-ultrasound',
version='0.5.8',
author='Matthew McCormick',
author_email='matt.mccormick@kitware.com',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMe... | from __future__ import print_function
from os import sys
from skbuild import setup
setup(
name='itk-ultrasound',
version='0.5.8',
author='Matthew McCormick',
author_email='matt.mccormick@kitware.com',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMe... | apache-2.0 | Python |
bc62adc069da7268e86ef11f0cad3128f94d5168 | Update version, fix packaging. | dokterbob/django-multilingual-model | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
#try:
# REQUIREMENTS = open('requirements.txt').lines()
#except:
# REQUIREMENTS = None
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
#try:
# REQUIREMENTS = open('requirements.txt').lines()
#except:
# REQUIREMENTS = None
... | agpl-3.0 | Python |
2ee5f47a70d847c33836227b99ae4139aa299c9f | Add a note about using sqlitedb in the serialize module. | punchagan/cinspect,punchagan/cinspect | cinspect/index/serialize.py | cinspect/index/serialize.py | from __future__ import absolute_import, print_function
# fixme: it might be better to use an sqlitedb instead
import json
from os.path import exists, expanduser
# fixme: this should be something more package specific.
DEFAULT_PATH = expanduser('~/.index.json')
def read_index(db):
""" Read the index and return t... | from __future__ import absolute_import, print_function
import json
from os.path import exists, expanduser
# fixme: this should be something more package specific.
DEFAULT_PATH = expanduser('~/.index.json')
def read_index(db):
""" Read the index and return the data.
Returns an empty dictionary if no index e... | bsd-3-clause | Python |
8226f4f88f0f341fa72ca12e39a4e691d56edf95 | use io.open instead of open because of python compatiblity | meysammahfouzi/cinema | setup.py | setup.py | # -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
def readme():
with io.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='cinema',
packages=find_packages(),
version='0.0.7',
description='Everything about Cinema!',
long_description=re... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def readme():
with open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='cinema',
packages=find_packages(),
version='0.0.7',
description='Everything about Cinema!',
long_description=readme(),
au... | mit | Python |
2d050525fae26a73e64bccb1640e1049676e1424 | fix typo | hachibeeDI/forwardable.py | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
LICENSE = open(
os.path.join(os.path.dirname(__file__), 'LICENSE')).read().strip()
DESCRIPTION = open(
os.path.join(os.path.dirname(__file__), 'README.rst')).read().strip()
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI ... | #!/usr/bin/env python
import os
from setuptools import setup
LICENSE = open(
os.path.join(os.path.dirname(__file__), 'LICENSE')).read().strip()
DESCRIPTION = open(
os.path.join(os.path.dirname(__file__), 'README.md')).read().strip()
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI A... | mit | Python |
fafe1c88525c41e13b45c257777f0c15a4f7b686 | fix typo in install_requires specification | helena-project/tockloader | setup.py | setup.py | from setuptools import setup
# Save people like Pat from themselves:
import sys
if sys.version_info < (3,0):
sys.exit('Sorry, Python < 3.0 is not supported')
import re
VERSIONFILE="tockloader/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE,... | from setuptools import setup
# Save people like Pat from themselves:
import sys
if sys.version_info < (3,0):
sys.exit('Sorry, Python < 3.0 is not supported')
import re
VERSIONFILE="tockloader/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE,... | mit | Python |
9330b16f04fac005aa27c5978c965f28efc910e8 | Add fn for parsing cli args | Vnet-as/cisco-olt-client | cisco_olt_client/command.py | cisco_olt_client/command.py | import shlex
import collections
try:
str_t = basestring
except NameError:
str_t = str
def args2mapping(args, mapping_cls=collections.OrderedDict):
'''
Parse list of command line arguments into mapping (ordered by default)
'''
return mapping_cls([arg2tuple(arg) for arg in args])
def arg2tupl... | import shlex
import collections
def arg2tuple(arg):
'''
Parse command line argument into name, value tuple
'''
name, value = arg.split('=', 1)
if name.startswith('--'):
name = name[2:]
# try to normalize string that's quoted
_value = shlex.split(value)
# other length than 1 m... | mit | Python |
c5d934f82e1892b9c04ae0dd19f052f60c5be9d9 | Add content types to setup.py, Fixes a bug reported in IRC by berndt | yfli/django-tastypie,Perkville/django-tastypie,backslash112/django-tastypie,SeanHayes/django-tastypie,pveglia/django-tastypie,annacorobco/django-tastypie,frifri/django-tastypie,ocadotechnology/django-tastypie,tyaslab/django-tastypie,mjschultz/django-tastefulpy,doselect/django-tastypie,strets123/django-tastypie-tweaks,s... | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='django-tastypie',
version='0.9.12-alpha',
description='A flexible & capable API layer for Django... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='django-tastypie',
version='0.9.12-alpha',
description='A flexible & capable API layer for Django... | bsd-3-clause | Python |
d9ce811820b18c24deb280c24805f8b5f67324fb | Fix setup for Python 3 | Uname-a/knife_scraper,Uname-a/knife_scraper,Uname-a/knife_scraper | setup.py | setup.py | #!/usr/bin/env python
#coding: utf8
from __future__ import unicode_literals
from distutils.core import setup
from willie import __version__
import tempfile
import sys
import os
import shutil
requires = ['feedparser', 'pytz', 'lxml', 'praw', 'enchant', 'pygeoip']
if sys.version_info.major < 3:
requires.append('bac... | #!/usr/bin/env python
#coding: utf8
from __future__ import unicode_literals
from distutils.core import setup
from willie import __version__
import tempfile
import os
import shutil
def do_setup():
try:
# This special screwing is to make willie.py get installed to PATH as
# willie, not willie.py. Do... | mit | Python |
758c80b543bfe095718082673901533c2603e69f | Use the same headline as the API | jacebrowning/coverage-space-cli | setup.py | setup.py | #!/usr/bin/env python
"""Setup script for The Coverage Space CLI."""
import setuptools
from coveragespace import __project__, __version__, CLI
try:
README = open("README.rst").read()
CHANGES = open("CHANGES.rst").read()
except IOError:
DESCRIPTION = "<placeholder>"
else:
DESCRIPTION = README + '\n' ... | #!/usr/bin/env python
"""Setup script for The Coverage Space CLI."""
import setuptools
from coveragespace import __project__, __version__, CLI
try:
README = open("README.rst").read()
CHANGES = open("CHANGES.rst").read()
except IOError:
DESCRIPTION = "<placeholder>"
else:
DESCRIPTION = README + '\n' ... | mit | Python |
c7a35971fd06e30078c5396bceaa30449133bafc | update requirements | ripiu/ripiu.cmsplugin_articles,ripiu/ripiu.cmsplugin_articles | setup.py | setup.py | from setuptools import setup
from ripiu.cmsplugin_articles import __version__
setup(
name='ripiu.cmsplugin_articles',
version=__version__,
url='https://github.com/ripiu/cmsplugin_articles',
license='BSD-new',
description='Articles',
long_description=open('README.rst').read(),
author='matte... | from setuptools import setup
from ripiu.cmsplugin_articles import __version__
setup(
name='ripiu.cmsplugin_articles',
version=__version__,
url='https://github.com/ripiu/cmsplugin_articles',
license='BSD-new',
description='Articles',
long_description=open('README.rst').read(),
author='matte... | bsd-3-clause | Python |
9542740c5c8615848cd50f1e3c0bb1978d4f56be | declare base-class of Tweet | attakei/twinkerer | twinkerer/twitterapi.py | twinkerer/twitterapi.py | # -*- coding:utf8 -*-
"""Tweet operate classes.
"""
import datetime
def _strptime(date_string):
"""wrapper to parse datetime-string for Twitter-API
"""
return datetime.datetime.strptime(
date_string,
'%a %b %d %H:%M:%S %z %Y'
)
class _ConvertPattern(object):
class ConvertFailed(E... | # -*- coding:utf8 -*-
"""Tweet operate classes.
"""
import datetime
def _strptime(date_string):
"""wrapper to parse datetime-string for Twitter-API
"""
return datetime.datetime.strptime(
date_string,
'%a %b %d %H:%M:%S %z %Y'
)
class _ConvertPattern(object):
class ConvertFailed(E... | mit | Python |
3bad349d0b2ed82a2ad371c46f957f936edd8aa4 | Fix dependencies | openfisca/openfisca-tunisia-pension | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia Pension specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operatin... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia Pension specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operatin... | agpl-3.0 | Python |
dd6aa8726761878aa09c2257ea87521a6718c9c3 | Bump version | harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name="redshift_etl",
version="1.19.0",
author="Harry's Data Engineering and Analytics Engineering",
description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters",
license="MIT",
keywords="redshift postgresql E... | from setuptools import find_packages, setup
setup(
name="redshift_etl",
version="1.18.0",
author="Harry's Data Engineering and Analytics Engineering",
description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters",
license="MIT",
keywords="redshift postgresql E... | mit | Python |
1a4026a483b8a587f5a37e00765ba67151fc0649 | Bump version | infoxchange/docker-forklift,infoxchange/docker-forklift | setup.py | setup.py | #
# Copyright 2014 Infoxchange Australia
#
# 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 2014 Infoxchange Australia
#
# 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 |
b089cb1018f507b50003c5c0b4f0fe49f0b2b896 | Update version to 0.1.7 | aarcro/helga-versionone | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.1.7'
setup(name="helga-versionone",
version=version,
description=('VersionOne interface for helga chat bot'),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Communications :: Chat :: Internet Relay Chat',
... | from setuptools import setup, find_packages
version = '0.1.6'
setup(name="helga-versionone",
version=version,
description=('VersionOne interface for helga chat bot'),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Communications :: Chat :: Internet Relay Chat',
... | mit | Python |
281dc487c443be9b1851262147dcf07b762b3a20 | Bump version to 0.4.7. | craigahobbs/chisel | setup.py | setup.py | #
# Copyright (C) 2012-2013 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | #
# Copyright (C) 2012-2013 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | mit | Python |
30da867d3b9dfcffbe2058ecf7acedb9629aa540 | Test tweak | nanuxbe/djangopackages,nanuxbe/djangopackages,audreyr/opencomparison,pydanny/djangopackages,QLGu/djangopackages,miketheman/opencomparison,nanuxbe/djangopackages,miketheman/opencomparison,pydanny/djangopackages,QLGu/djangopackages,QLGu/djangopackages,audreyr/opencomparison,pydanny/djangopackages | searchv2/tests/test_builders.py | searchv2/tests/test_builders.py | from django.test import TestCase
from package.tests import initial_data
from searchv2.models import SearchV2
from searchv2.builders import build_1
class BuilderTest(TestCase):
def setUp(self):
initial_data.load()
def test_build_1_count(self):
self.assertEquals(SearchV2.objects.count(), 0)
... | from datetime import datetime
from django.test import TestCase
from package.models import Package
from package.tests import data, initial_data
from searchv2.models import SearchV2
from searchv2.builders import build_1
class BuilderTest(TestCase):
def setUp(self):
initial_data.load()
... | mit | Python |
dbb48df8fa8fd4d43f5bd6fde43de737c16507dd | add xarray to dependencies | michaelaye/pyciss | setup.py | setup.py | from os import path
from setuptools import find_packages, setup
DISTNAME = 'pyciss'
DESCRIPTION = "Software for handling Cassini ISS data"
AUTHOR = "K.-Michael Aye"
AUTHOR_EMAIL = "michael.aye@lasp.colorado.edu"
MAINTAINER_EMAIL = AUTHOR_EMAIL
URL = "https://github.com/michaelaye/pyciss"
LICENSE = "ISC"
KEYWORDS = ['... | from os import path
from setuptools import find_packages, setup
DISTNAME = 'pyciss'
DESCRIPTION = "Software for handling Cassini ISS data"
AUTHOR = "K.-Michael Aye"
AUTHOR_EMAIL = "michael.aye@lasp.colorado.edu"
MAINTAINER_EMAIL = AUTHOR_EMAIL
URL = "https://github.com/michaelaye/pyciss"
LICENSE = "ISC"
KEYWORDS = ['... | isc | Python |
6ea9d1c47136e4e7cf852a5b7c88cfcd829838c1 | Update install script. Should fix #186 | nsc-norway/genologics,senthil10/genologics,SciLifeLab/genologics,BigelowLab/genologics,Galithil/genologics | setup.py | setup.py | from setuptools import setup, find_packages
from genologics.version import __version__
import sys, os
import subprocess
import glob
# Fetch version from git tags.
# if git is not available (PyPi package), use stored version.py.
try:
version = subprocess.Popen(["git", "describe", "--abbrev=0"],stdout=subprocess.PI... | from setuptools import setup, find_packages
from genologics.version import __version__
import sys, os
import subprocess
import glob
# Fetch version from git tags.
# if git is not available (PyPi package), use stored version.py.
version_py = os.path.join(os.path.dirname(__file__), 'genologics', 'version.py')
version =... | mit | Python |
ce3d75b8884131cf795128ad6ba795c8d506d633 | Update trove classifiers | Code0x58/python-jsonstore | setup.py | setup.py | import codecs
from os import path
from textwrap import dedent
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with codecs.open(path.join(here, "README.rst"), encoding='utf-8') as f:
long_description = f.read()
setup(
name='python-jsonstore',
use_scm_version=True,
description... | import codecs
from os import path
from textwrap import dedent
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with codecs.open(path.join(here, "README.rst"), encoding='utf-8') as f:
long_description = f.read()
setup(
name='python-jsonstore',
use_scm_version=True,
description... | mit | Python |
b346b15d3eb465ec828a31fea0a00df3ae582942 | bump version number | mdrohmann/txtemplates,mdrohmann/txtemplates | txtemplates/__init__.py | txtemplates/__init__.py | """
This is the main module of the txtemplates project.
"""
from dist import Version
version = Version('txtemplates', 0, 4, 0)
# vim: set spell spelllang=en sw=4:
| """
This is the main module of the txtemplates project.
"""
from dist import Version
version = Version('txtemplates', 0, 4, 0, 'alpha')
# vim: set spell spelllang=en sw=4:
| bsd-3-clause | Python |
71dd54563d6472ba2677533ca56a781c7abdc699 | Change license to MIT in setup,py | IdanHaim/RavenDB-Python-Client | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='pyravendb',
packages=find_packages(),
version='3.5.3.3',
description='This is the official python client for RavenDB document database',
author='Idan Haim Shalom',
author_email='haimdude@gmail.com',
url='https://github.com/IdanHaim/Ra... | from setuptools import setup, find_packages
setup(
name='pyravendb',
packages=find_packages(),
version='3.5.3.3',
description='This is the official python client for RavenDB document database',
author='Idan Haim Shalom',
author_email='haimdude@gmail.com',
url='https://github.com/IdanHaim/Ra... | mit | Python |
8bf8ee961da5ee5ad52f58a4a72665f8e60512a6 | bump version to 0.5.3 | williballenthin/python-evtx | setup.py | setup.py | #!/usr/bin/env python
import setuptools
long_description="""python-evtx is a pure Python parser for recent Windows Event Log files (those with the file extension ".evtx"). The module provides programmatic access to the File and Chunk headers, record templates, and event entries. For example, you can use python-evtx t... | #!/usr/bin/env python
import setuptools
long_description="""python-evtx is a pure Python parser for recent Windows Event Log files (those with the file extension ".evtx"). The module provides programmatic access to the File and Chunk headers, record templates, and event entries. For example, you can use python-evtx t... | apache-2.0 | Python |
1e9f7575a28bd5910e5cd1e1e60ab06faa148ccc | Bump version to 0.0.5 | sunscrapers/djet | setup.py | setup.py | from setuptools import setup
requires = [
'Django>=1.3'
]
setup(
name='djet',
version='0.0.5',
description='TestCase extension for Django views unit testing.',
long_description=open('README.rst').read(),
author='SUNSCRAPERS',
author_email='info@sunscrapers.com',
packages=['djet'],
... | from setuptools import setup
requires = [
'Django>=1.3'
]
setup(
name='djet',
version='0.0.4',
description='TestCase extension for Django views unit testing.',
long_description=open('README.rst').read(),
author='SUNSCRAPERS',
author_email='info@sunscrapers.com',
packages=['djet'],
... | mit | Python |
c53c7f423de7a91821a05298701683f17ef7a7b8 | use the new task command in main | ceph/ceph-installer,ceph/ceph-installer,ceph/ceph-installer,ceph/mariner-installer | ceph_installer/cli/main.py | ceph_installer/cli/main.py | import sys
from tambo import Transport
import ceph_installer
from ceph_installer.cli import log
from ceph_installer.cli import dev, task
from ceph_installer.cli.decorators import catches
class CephInstaller(object):
_help = """
A command line utility to install and configure Ceph using an HTTP API as a REST serv... | import sys
from tambo import Transport
import ceph_installer
from ceph_installer.cli import log
from ceph_installer.cli import dev
from ceph_installer.cli.decorators import catches
class CephInstaller(object):
_help = """
A command line utility to install and configure Ceph using an HTTP API as a REST service
to... | mit | Python |
9be6cbe57a8ae380acc134eb44b6c258430fff29 | trim uneeded logging configuration from the main cli handler | ceph/ceph-installer,ceph/ceph-installer,ceph/mariner-installer,ceph/ceph-installer | ceph_installer/cli/main.py | ceph_installer/cli/main.py | import sys
import logging
from tambo import Transport
import ceph_installer
from ceph_installer.cli import log
from ceph_installer.cli import dev
from ceph_installer.cli.decorators import catches
class CephInstaller(object):
_help = """
A command line utility to install and configure Ceph using an HTTP API as a ... | import sys
import logging
from tambo import Transport
import ceph_installer
from ceph_installer.cli import log
from ceph_installer.cli import dev
from ceph_installer.cli.decorators import catches
class CephInstaller(object):
_help = """
A command line utility to install and configure Ceph using an HTTP API as a ... | mit | Python |
cd9a238549f5e9db6d80f0a670bb354cdca52bda | Bump Version | burke-software/django-content-edit,burke-software/django-content-edit,burke-software/django-content-edit,burke-software/django-content-edit | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "django-content-edit",
version = "2.0",
author = "David Burke",
author_email = "david@burkesoftware.com",
description = ("A very simple way to let users edit content on the front end of a website."),
license = "BSD",
keywords = "djan... | from setuptools import setup, find_packages
setup(
name = "django-content-edit",
version = "1.7",
author = "David Burke",
author_email = "david@burkesoftware.com",
description = ("A very simple way to let users edit content on the front end of a website."),
license = "BSD",
keywords = "djan... | bsd-3-clause | Python |
e75f099b76ffae78888511316d78499ab77c40e9 | add SecItemExport binding | sholsapp/cryptography,kimvais/cryptography,sholsapp/cryptography,skeuomorf/cryptography,kimvais/cryptography,Hasimir/cryptography,kimvais/cryptography,sholsapp/cryptography,bwhmather/cryptography,skeuomorf/cryptography,Hasimir/cryptography,Hasimir/cryptography,skeuomorf/cryptography,bwhmather/cryptography,skeuomorf/cry... | src/cryptography/hazmat/bindings/commoncrypto/secimport.py | src/cryptography/hazmat/bindings/commoncrypto/secimport.py | # This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
from __future__ import absolute_import, division, print_function
INCLUDES = """
#include <Security/SecImportExport.h>
"""
TYPES = """
typ... | # This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
from __future__ import absolute_import, division, print_function
INCLUDES = """
#include <Security/SecImportExport.h>
"""
TYPES = """
typ... | bsd-3-clause | Python |
e51420713701edcda8b44eb193421dfa94d8f52a | bump sqlalchemy and requests versions | datawagovau/ckan-service-provider | setup.py | setup.py | from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.md'), encoding='utf-8') as ... | from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.md'), encoding='utf-8') as ... | agpl-3.0 | Python |
a60d7e4858d111c849c135364f99806d91000e41 | fix new voting phase url | dpausp/arguments,dpausp/arguments,dpausp/arguments,dpausp/arguments | src/ekklesia_portal/concepts/ekklesia_portal/cell/index.py | src/ekklesia_portal/concepts/ekklesia_portal/cell/index.py | from ekklesia_portal.concepts.ekklesia_portal.cell.layout import LayoutCell
from ekklesia_portal.concepts.proposition.propositions import Propositions
from ekklesia_portal.concepts.voting_phase.voting_phases import VotingPhases
class IndexCell(LayoutCell):
def insecure_development_mode_enabled(self):
ret... | from ekklesia_portal.concepts.ekklesia_portal.cell.layout import LayoutCell
from ekklesia_portal.concepts.proposition.propositions import Propositions
from ekklesia_portal.concepts.voting_phase.voting_phases import VotingPhases
class IndexCell(LayoutCell):
def insecure_development_mode_enabled(self):
ret... | agpl-3.0 | Python |
208f1a2095df0fe473f0bd9e4d408baad1420b64 | Bump sphinx from 4.0.1 to 4.0.2 | marshmallow-code/marshmallow-sqlalchemy | setup.py | setup.py | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=3.0.0", "SQLAlchemy>=1.2.0")
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-lazy-fixture"],
"lint": ["flake8==3.9.2", "flake8-bugbear==21.4.3", "pre-commit~=2.0"],
"docs": ["sphinx==4.0.2", "alabaster==0.7.12", "sphinx... | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=3.0.0", "SQLAlchemy>=1.2.0")
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-lazy-fixture"],
"lint": ["flake8==3.9.2", "flake8-bugbear==21.4.3", "pre-commit~=2.0"],
"docs": ["sphinx==4.0.1", "alabaster==0.7.12", "sphinx... | mit | Python |
d3b618216e77358500203ac0a823fc5da8badd01 | Bump version | dylanaraps/pywal,dylanaraps/pywal,dylanaraps/pywal | setup.py | setup.py | """wal - setup.py"""
from setuptools import setup
DESC = (
"View the README at: https://github.com/dylanaraps/wal.py\n\n"
"Pypi doesn't like markdown OR rst with anchor links so "
"you'll have to view the documentation elsewhere.\n"
)
DESC = "".join(DESC)
setup(
name="pywal",
version="0.1.4",
... | """wal - setup.py"""
from setuptools import setup
DESC = (
"View the README at: https://github.com/dylanaraps/wal.py\n\n"
"Pypi doesn't like markdown OR rst with anchor links so "
"you'll have to view the documentation elsewhere.\n"
)
DESC = "".join(DESC)
setup(
name="pywal",
version="0.1.3",
... | mit | Python |
04454d40eef05c2680a946be8b83ebe681d32aff | add requirements | LinkageIO/LocusPocus,schae234/LocusPocus | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages, Extension
from Cython.Distutils import build_ext
import io
import os
import re
import numpy
from setuptools.command.develop import develop
from setuptools.command.install import install
from subprocess import check_call
class PostDevelopCommand(dev... | #!/usr/bin/env python3
from setuptools import setup, find_packages, Extension
from Cython.Distutils import build_ext
import io
import os
import re
import numpy
from setuptools.command.develop import develop
from setuptools.command.install import install
from subprocess import check_call
class PostDevelopCommand(dev... | mit | Python |
ca3b2555380e19d159df21431e500be95bfc2242 | Bump version to 0.1.2 | CognitiveScale/scrapyjs | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='scrapyjs',
version='0.1.2',
url='https://github.com/scrapinghub/scrapyjs',
description='JavaScript support for Scrapy using Splash',
long_description=open('README.rst').read(),
author='Scrapy developer',
maintainer='Mikhail Kor... | #!/usr/bin/env python
from setuptools import setup
setup(
name='scrapyjs',
version='0.1.1',
url='https://github.com/scrapinghub/scrapyjs',
description='JavaScript support for Scrapy using Splash',
long_description=open('README.rst').read(),
author='Scrapy developer',
maintainer='Mikhail Kor... | bsd-3-clause | Python |
0568afd4d87d4c076b12b3eaaad8b49fea02f647 | bump version to 0.8.1 | PolyJIT/benchbuild,PolyJIT/benchbuild,PolyJIT/benchbuild,PolyJIT/benchbuild | setup.py | setup.py | #!/usr/bin/evn python2
from setuptools import setup, find_packages
setup(name='pprof',
version='0.8.1',
packages= find_packages(),
author = "Andreas Simbuerger",
author_email = "simbuerg@fim.uni-passau.de",
description = "This is the experiment driver for the pprof study",
license =... | #!/usr/bin/evn python2
from setuptools import setup, find_packages
setup(name='pprof',
version='0.8',
packages= find_packages(),
author = "Andreas Simbuerger",
author_email = "simbuerg@fim.uni-passau.de",
description = "This is the experiment driver for the pprof study",
license = "... | mit | Python |
e2cdf1be3a9f1e9eb501332a4f2358f037dea0bd | Use docker-crane for pypi name, since somebody already took crane | victorlin/crane | setup.py | setup.py | from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='docker-crane',
version='0.1.0',
description="A simple tool for building Dockerfiles",
author='Victor Lin',
author_email='bornstub@gmail.com',
keywords='docker dockerfile build',
ur... | from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='crane',
version='0.1.0',
description="A simple tool for building Dockerfiles",
author='Victor Lin',
author_email='bornstub@gmail.com',
keywords='docker dockerfile build',
url='http... | apache-2.0 | Python |
973755ed11da133f50501e1fe8cb7aa7f5cccf26 | Update project description | verybada/rarbgapi | setup.py | setup.py | import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
about = dict()
with open(os.path.join(here, 'rarbgapi', '__version__.py'), 'r') as f:
exec(f.read(), about)
long_description = None
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='RarbgA... | import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
about = dict()
with open(os.path.join(here, 'rarbgapi', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(
name='RarbgAPI',
version=about['__version__'],
author="verybada",
author_email="verybada.lin@... | bsd-3-clause | Python |
0fe9a2dedc3ee5c7d2bf4e99ef761d17cdde43fd | Bump to version 1.5.0 | acrisci/i3ipc-python | setup.py | setup.py | from setuptools import setup
from os import path
from io import open
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
long_description = open(readme_path, encoding='utf-8').read()
install_requires = ['enum-compat']
setup(
name='i3ipc',
version='1.5.0',
description='An improved ... | from setuptools import setup
from os import path
from io import open
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
long_description = open(readme_path, encoding='utf-8').read()
install_requires = ['enum-compat']
setup(
name='i3ipc',
version='1.4.0',
description='An improved ... | bsd-3-clause | Python |
b61a0df377e9ec9b569733d03a1cf18f81ef5ca5 | add dependency | sim0nx/eml_parser,GOVCERT-LU/eml_parser | setup.py | setup.py | # -*- coding: utf-8 -*-
import os.path
from setuptools import setup
VERSION = (0, 9)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = ['python-dateutil'
... | # -*- coding: utf-8 -*-
import os.path
from setuptools import setup
VERSION = (0, 9)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = []
setup(name='eml_parser',
... | agpl-3.0 | Python |
b24fe940e9240df45cd1c9a0d144b7953bea9882 | fix install | yihuang/pyccv | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
try:
from Cython.Distutils import build_ext
have_cython = True
except ImportError:
have_cython = False
c_files = [
"deps/ccv/lib/ccv_bbf.c",
"deps/ccv/lib/ccv_cache.c",
"deps/ccv/lib/ccv_io.c",
... | #!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
try:
from Cython.Distutils import build_ext
have_cython = True
except ImportError:
have_cython = False
c_files = [
"deps/ccv/lib/ccv_bbf.c",
"deps/ccv/lib/ccv_cache.c",
"deps/ccv/lib/ccv_io.c",
... | mit | Python |
e3956b37c38c57b56a98cc97cb6180a08b018265 | update album | JustinShenk/party-pi,JustinShenk/party-pi,JustinShenk/party-pi | uploader.py | uploader.py | #!/ usr/bin/python
########### Python 2.7 #############
import pyimgur
from emotionpi import emotion_api
class Uploader(object):
def __init__(self):
self.initPyimgur()
def initPyimgur(self):
"""
Initialize variables and parameters for PyImgur.
"""
# self.album = "iX0u... | #!/ usr/bin/python
########### Python 2.7 #############
import pyimgur
from emotionpi import emotion_api
class Uploader(object):
def __init__(self):
self.initPyimgur()
def initPyimgur(self):
"""
Initialize variables and parameters for PyImgur.
"""
# self.album = "iX0u... | mit | Python |
9969cbf3cc157800b4cdd7f198f36d28a87b3230 | bump version | autopulated/yotta,eyeye/yotta,ARMmbed/yotta,stevenewey/yotta,ntoll/yotta,bridadan/yotta,eyeye/yotta,BlackstoneEngineering/yotta,bridadan/yotta,iriark01/yotta,stevenewey/yotta,ARMmbed/yotta,iriark01/yotta,BlackstoneEngineering/yotta,theotherjimmy/yotta,autopulated/yotta,theotherjimmy/yotta,ntoll/yotta | setup.py | setup.py | 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()
setup(
name = "yotta",
version = "0.0.28",
author = "James Crosby",
author_email = "James.Crosby@arm.c... | 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()
setup(
name = "yotta",
version = "0.0.27",
author = "James Crosby",
author_email = "James.Crosby@arm.c... | apache-2.0 | Python |
2cb8f80c21c0a46a5fbfe75e7b685bc3419db956 | Change name | sandwich-share/sandwich | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
__version__ = '0.1'
setup(
name = 'sandwich',
version = __version__,
description = 'A little file sharing application.',
author = 'HacSoc',
author_email = 'hacsoc@case.edu',
url = 'https://github.com/hacsoc/sandwich',
long_description=open("README").re... | #!/usr/bin/env python
from setuptools import setup
__version__ = '0.1'
setup(
name = 'sandwich',
version = __version__,
description = 'A little file sharing application.',
author = 'HacSoc',
author_email = 'hacsoc@case.edu',
url = 'https://github.com/hacsoc/hacKSU',
long_description=open("README").read... | bsd-2-clause | Python |
45ff132625c86e3ef99a04f5304af9bb53674c92 | fix setup.py | Menda/Leolo | setup.py | setup.py | # coding=utf-8
import os
from setuptools import setup, find_packages
from version import get_git_version
app_name = "leolo"
version = get_git_version()
README = os.path.join(os.path.dirname(__file__), "README")
long_description = open(README).read()
setup(
name = app_name,
version = version,
description = (... | # coding=utf-8
import os
from setuptools import setup, find_packages
from version import get_git_version
app_name = "leolo"
version = get_git_version()
README = os.path.join(os.path.dirname(__file__), "README")
long_description = open(README).read()
setup(
name = app_name,
version = version,
description = (... | apache-2.0 | Python |
8f6bee1bd9b954cceaa03121962886cdd2e28228 | remove unused sqlalchemy shim | podhub-io/website | podhub/website/__init__.py | podhub/website/__init__.py | from flask.ext.script import Manager
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.migrate import Migrate, MigrateCommand
from podhub.meh import Meh
_config = {
'DB_PASSWORD': 'ni0Thoug uti1Dei7 geoShah4 wie1Ahch',
'DB_USER': 'mehdev',
'DB_DATABASE': 'mehdev',
'DB_HOST': 'localhost',
}
_c... | from flask.ext.script import Manager
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.migrate import Migrate, MigrateCommand
from podhub.meh import Meh
_config = {
'DB_PASSWORD': 'ni0Thoug uti1Dei7 geoShah4 wie1Ahch',
'DB_USER': 'mehdev',
'DB_DATABASE': 'mehdev',
'DB_HOST': 'localhost',
}
_c... | apache-2.0 | Python |
c5bb1e8ffe36d3513c56a96c437f9e91d818776d | fix name | simon-db/django-cked,simon-db/django-cked,simon-db/django-cked,simon-db/django-cked | setup.py | setup.py | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='cked',
version='0.1.1',
author='Future Colors (original... | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-cked-fc',
version='0.1.1',
author='Future Colors... | bsd-2-clause | Python |
77dc82537b5a1dbf882350ef0e8ba5934fb1b127 | Remove pypandoc from setup.py | phdata/sdc-api-tool,phdata/sdc-api-tool | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import pypandoc
version = '0.9.4'
long_description = open('README.rst').read()
setup(name='sdctool',
version=version,
description='Streamsets DataCollector API utility',
author='phData inc',
author_email='brian@phdata.io, tony@phdata.io',
... | #!/usr/bin/env python
from setuptools import setup
import pypandoc
version = '0.9.4'
long_description = open('README.rst').read()
setup(name='sdctool',
version=version,
description='Streamsets DataCollector API utility',
author='phData inc',
author_email='brian@phdata.io, tony@phdata.io',
... | apache-2.0 | Python |
e805fe7d1d869a5b3785018a09f340ecf2bbb139 | Make dependency of the setup script on setuptools optional. | hodgestar/genshi,hodgestar/genshi,hodgestar/genshi,mitchellrj/genshi,hodgestar/genshi,mitchellrj/genshi,mitchellrj/genshi,mitchellrj/genshi | 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... | bsd-3-clause | Python |
402d406c6279a9e3aec15dae85089fdf96dfe8bc | increment pyannote.metrics requirement | pyannote/pyannote-server,pyannote/pyannote-server | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
#
# The MIT License (MIT)
#
# Copyright (c) 2013-2014 Hervé BREDIN (http://herve.niderb.fr/)
#
# 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... | #!/usr/bin/env python
# encoding: utf-8
#
# The MIT License (MIT)
#
# Copyright (c) 2013-2014 Hervé BREDIN (http://herve.niderb.fr/)
#
# 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... | mit | Python |
79763c1dd798a320cf77321e4fc730dc43e7dbda | update version | gescheit/fastsnmp | setup.py | setup.py | #!/usr/bin/python3
__version__ = '0.8'
from distutils.core import setup
from distutils.extension import Extension
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :... | #!/usr/bin/python3
__version__ = '0.7'
from distutils.core import setup
from distutils.extension import Extension
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :... | mit | Python |
660d8017706646d3882020257a53f9bdaa6cb754 | bump version to 0.2.5 | vpavlin/pirate-get,vikstrous/pirate-get,vikstrous/pirate-get | setup.py | setup.py | from setuptools import setup
setup(name='pirate-get',
version='0.2.5',
description='A command line interface for The Pirate Bay',
url='https://github.com/vikstrous/pirate-get',
author='vikstrous',
author_email='me@viktorstanchev.com',
license='GPL',
packages=['pirate'],
entry_points={
... | from setuptools import setup
setup(name='pirate-get',
version='0.2.4',
description='A command line interface for The Pirate Bay',
url='https://github.com/vikstrous/pirate-get',
author='vikstrous',
author_email='me@viktorstanchev.com',
license='GPL',
packages=['pirate'],
entry_points={
... | agpl-3.0 | Python |
9ffc80a699402fb93680cfe470e20c81b2f18575 | Bump version number | coddingtonbear/django-measurement | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
requirements = []
with open('requirements.txt', 'r') as in_:
requirements = in_.readlines()
setup(
name='django-measurement',
version='2.2.0',
url='http://github.com/coddingtonbear/django-measurement/',
description='Conven... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
requirements = []
with open('requirements.txt', 'r') as in_:
requirements = in_.readlines()
setup(
name='django-measurement',
version='2.1.1',
url='http://github.com/coddingtonbear/django-measurement/',
description='Conven... | mit | Python |
ae8a896581fd65699362f9ac60a2583822dbe62e | bump version | llimllib/slackrtm | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='slackrtm',
version='0.0.2',
description='Python client for Slack.com',
url='http://github.com/llimllib/slackrtm',
author='Bill Mill',
author... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='slackrtm',
version='0.0.1',
description='Python client for Slack.com',
url='http://github.com/llimllib/slackrtm',
author='Bill Mill',
author... | mit | Python |
26881ef0460a5555ab8f6c771f9726f61c5dc2ee | Update requirements | thomasleese/will-there-be-space,tomleese/will-there-be-space,thomasleese/will-there-be-space,tomleese/will-there-be-space,thomasleese/will-there-be-space,thomasleese/will-there-be-space,thomasleese/will-there-be-space,tomleese/will-there-be-space,tomleese/will-there-be-space,tomleese/will-there-be-space | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from willtherebespace import __version__
setup(
name='will-there-be-space',
version=__version__,
author='Thomas Leese',
author_email='inbox@thomasleese.me',
packages=find_packages(exclude=['tests*']),
zip_safe=True,
setup_r... | #!/usr/bin/env python
from setuptools import setup, find_packages
from willtherebespace import __version__
setup(
name='will-there-be-space',
version=__version__,
author='Thomas Leese',
author_email='inbox@thomasleese.me',
packages=find_packages(exclude=['tests*']),
zip_safe=True,
setup_r... | mit | Python |
8c12aaa456990cd85f021ef090aa9fcef310f7f3 | fix setup but tests is broken | wiiiky/miserable,wiiiky/shadowsocks | setup.py | setup.py | #!/usr/bin/env python3
import codecs
from setuptools import setup
with codecs.open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='miserable',
version='1.0',
license='http://www.apache.org/licenses/LICENSE-2.0',
description="A fast tunnel proxy that help you get thro... | #!/usr/bin/env python3
import codecs
from setuptools import setup
with codecs.open('README.origin.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='miserable',
version='1.0',
license='http://www.apache.org/licenses/LICENSE-2.0',
description="A fast tunnel proxy that help you ... | apache-2.0 | Python |
f0d6d9f61441092ac48721fd65a7eda4fac0e3c6 | Update Trove classifiers. | FlipperPA/wagtailcodeblock,FlipperPA/wagtailcodeblock,FlipperPA/wagtailcodeblock | setup.py | setup.py | from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="wagtailcodeblock",
description="Wagtail Code Block provides PrismJS syntax highlighting in Wagtail.",
long_description=long_description,
long_description_content_type="text/markdown",
... | from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="wagtailcodeblock",
description="Wagtail Code Block provides PrismJS syntax highlighting in Wagtail.",
long_description=long_description,
long_description_content_type="text/markdown",
... | bsd-3-clause | Python |
a496e132648eb78c8c2566a4c6790cc485fc63b4 | Add psutil | percyfal/snakemake-rules,percyfal/snakemakelib-rules,percyfal/snakemake-rules,percyfal/snakemakelib-rules,percyfal/snakemakelib-rules | setup.py | setup.py | # Copyright (c) 2014 Per Unneberg
# Modelled on bokeh setup script
# --------------------------------------------------
# Imports
# --------------------------------------------------
from __future__ import print_function
# stdlib
import os
from setuptools import setup
from os.path import realpath, dirname, relpath, j... | # Copyright (c) 2014 Per Unneberg
# Modelled on bokeh setup script
# --------------------------------------------------
# Imports
# --------------------------------------------------
from __future__ import print_function
# stdlib
import os
from setuptools import setup
from os.path import realpath, dirname, relpath, j... | mit | Python |
6439b67e2db67a3ec7847069a6589c4cee4274f7 | fix email addres | aprotopopov/lifetimes,CamDavidsonPilon/lifetimes | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
exec(compile(open('lifetimes/version.py').read(),
'lifetimes/version.py', 'exec'))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='Lifetimes',
version=__version__,
descr... | #!/usr/bin/env python
import os
from distutils.core import setup
exec(compile(open('lifetimes/version.py').read(),
'lifetimes/version.py', 'exec'))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='Lifetimes',
version=__version__,
descr... | mit | Python |
a3eecfecf2b7486a2bb1166de442d6188bebc3a3 | Add pyopenssl>=17.1.0 dependency. | mithrandi/txacme | setup.py | setup.py | import os
import codecs
import versioneer
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f:
return f.read()
setup(
version=versioneer.get_version(),
cmdclass=versionee... | import os
import codecs
import versioneer
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f:
return f.read()
setup(
version=versioneer.get_version(),
cmdclass=versionee... | mit | Python |
800f88e67ea0049dc306c9d9c003f52484b2d793 | update setup.py | lamby/django-directed-edge | setup.py | setup.py | from setuptools import setup
setup(
name='django-directed-edge',
version=1,
packages=(
'django_directed_edge',
),
url='https://chris-lamb.co.uk/projects/django-directed-edge',
author="Chris Lamb",
author_email="chris@chris-lamb.co.uk",
description="Helpful Django-oriented sugar ... | from setuptools import setup
setup(
name='django-directed-edge',
version=1,
packages=(
'django_directed_edge',
),
)
| bsd-3-clause | Python |
29e3af79eb40b10ef91c4dc547b02609ec3e206a | increase version to 0.0.9 | cloud4rpi/cloud4rpi | setup.py | setup.py | from setuptools import setup
description = ''
try:
import pypandoc # pylint: disable=F0401
description = pypandoc.convert('README.md', 'rst')
except Exception:
pass
setup(name='cloud4rpi',
version='0.0.9',
description='cloud4rpi client library',
long_description=description,
url... | from setuptools import setup
description = ''
try:
import pypandoc # pylint: disable=F0401
description = pypandoc.convert('README.md', 'rst')
except Exception:
pass
setup(name='cloud4rpi',
version='0.0.8',
description='cloud4rpi client library',
long_description=description,
url... | mit | Python |
95e318cecd2292b6eb63a43a282c691bf8597bff | update version 2.3.3 | cytomine/Cytomine-python-client,cytomine/Cytomine-python-client | setup.py | setup.py | # -*- coding: utf-8 -*-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
# *
# * 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... | # -*- coding: utf-8 -*-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
# *
# * 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... | apache-2.0 | Python |
9fa12cb429a7a4c610850a7f60cf2dad59330622 | update setup.py | IdanHaim/RavenDB-Python-Client | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='pyravendb',
packages=find_packages(),
version='1.3.1',
description='This is the official python client for RavenDB document database',
author='Idan Haim Shalom',
author_email='haimdude@gmail.com',
url='https://github.com/IdanHaim/Rave... | from setuptools import setup, find_packages
setup(
name='pyravendb',
packages=find_packages(),
version='1.3.0',
description='This is the official python client for RavenDB document database',
author='Idan Haim Shalom',
author_email='haimdude@gmail.com',
url='https://github.com/IdanHaim/Rave... | mit | Python |
3bf450040caa431e8ddfdb0d4dbf764e7c03b09a | Bump pandas from 0.25.2 to 0.25.3 (#305) | larq/larq | setup.py | setup.py | from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.7.4",
python_requires=">=3.6",
author="Plumerai",
author_email="lukas@plumerai.co.uk",
description="An Open Source Machine Learning Library f... | from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.7.4",
python_requires=">=3.6",
author="Plumerai",
author_email="lukas@plumerai.co.uk",
description="An Open Source Machine Learning Library f... | apache-2.0 | Python |
fdf267cddbc9dfed7eadbf41715d3f47de6157cd | update release | TerryHowe/ansible-modules-dcos,TerryHowe/ansible-modules-dcos | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
files = [
"ansible/module_utils",
"ansible/modules/dcos",
]
long_description = open('README.rst', 'r').read()
setup(name='ansible-modules-dcos',
version='1.0.5',
description='DCOS Ansible Modules',
long_description=long_description,
... | #!/usr/bin/env python
from distutils.core import setup
files = [
"ansible/module_utils",
"ansible/modules/dcos",
]
long_description = open('README.rst', 'r').read()
setup(name='ansible-modules-dcos',
version='1.0.4',
description='DCOS Ansible Modules',
long_description=long_description,
... | mit | Python |
cb316834081be09232ee8de85a6e0c895c7f1ca2 | Fix a typo in setup.py. | pombredanne/django-simple-history,luzfcb/django-simple-history,pombredanne/django-simple-history,treyhunner/django-simple-history,emergence/django-simple-history,luzfcb/django-simple-history,emergence/django-simple-history,treyhunner/django-simple-history | setup.py | setup.py | from distutils.core import setup
import os
# 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, filenames in os.walk('simple_history'):
# ignore ... | from distutils.core import setup
import os
# 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, filenames in os.walk('simple_history'):
# ignore ... | bsd-3-clause | Python |
3558a6b9b74ff1b8f9015f4e50bf5abe1d091c92 | Update setup.py with more info | trimailov/timeflow | setup.py | setup.py | from setuptools import setup
setup(
name='timeflow',
packages=['timeflow'],
version='0.1',
description='Small CLI time logger',
author='Justas Trimailovas',
author_email='j.trimailvoas@gmail.com',
url='https://github.com/trimailov/timeflow',
keywords=['timelogger', 'logging', 'timetrack... | from setuptools import setup
setup(
name='timeflow',
version='0.1',
py_modules=['timeflow'],
entry_points='''
[console_scripts]
timeflow=timeflow.main:main
tf=timeflow.main:main
''',
)
| mit | Python |
b7615bfbfb61c8af2957bee412637a8ac2ffe345 | Remove debugger call | okfn/ckanext-opendatani,okfn/ckanext-opendatani,okfn/ckanext-opendatani,okfn/ckanext-opendatani | ckanext/opendatani/dcat.py | ckanext/opendatani/dcat.py | from rdflib.namespace import Namespace
from ckanext.dcat.profiles import RDFProfile
DCT = Namespace("http://purl.org/dc/terms/")
class NIArcGISProfile(RDFProfile):
'''
An RDF profile for the Northern Ireland ArcGIS harvester
'''
def parse_dataset(self, dataset_dict, dataset_ref):
dataset_d... | from rdflib.namespace import Namespace
from ckanext.dcat.profiles import RDFProfile
DCT = Namespace("http://purl.org/dc/terms/")
class NIArcGISProfile(RDFProfile):
'''
An RDF profile for the Northern Ireland ArcGIS harvester
'''
def parse_dataset(self, dataset_dict, dataset_ref):
dataset_d... | agpl-3.0 | Python |
26a7a7cbbf3a3cd0ff1a96e54db1af78ebe4543c | Make Ian maintainer again in setup.py because he's done much more than me. | memnonila/chardet,asdfsx/chardet,ddboline/chardet,memnonila/chardet,barak066/chardet,barak066/chardet,ddboline/chardet,chardet/chardet,chardet/chardet,asdfsx/chardet | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from chardet import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(name='chardet',
version=__version__,
description='Universal encoding detector for Python 2 and 3',
long_description=readme(),
auth... | #!/usr/bin/env python
from setuptools import setup
from chardet import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(name='chardet',
version=__version__,
description='Universal encoding detector for Python 2 and 3',
long_description=readme(),
auth... | lgpl-2.1 | Python |
1be686b28cbb4375a26029a3fd4c2edeeacd3f50 | Change email address | danielgreve/beets-mpdadd | setup.py | setup.py | from setuptools import setup
setup(
name='beets-mpdadd',
version='0.2',
description='beets plugin that adds query results to the current MPD playlist',
author='Daniel Greve',
author_email='danielgreve@users.noreply.github.com',
license='MIT',
platforms='ALL',
packages=['beetsplug'],
... | from setuptools import setup
setup(
name='beets-mpdadd',
version='0.2',
description='beets plugin that adds query results to the current MPD playlist',
author='Daniel Greve',
author_email='god-complex@users.noreply.github.com',
license='MIT',
platforms='ALL',
packages=['beetsplug'],
... | mit | Python |
2d5244e04d28f16ed6ec7d892927855c07cb6ad9 | Bump version | thombashi/pytablewriter | setup.py | setup.py | from __future__ import with_statement
import sys
import os.path
import setuptools
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(... | from __future__ import with_statement
import sys
import os.path
import setuptools
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(... | mit | Python |
e3bd408b4de2e3e481edba9b91fdbde60e004a44 | Switch colors for log | JBarberU/strawberry_py | util/log.py | util/log.py | import sys
from colors import Colors
class Log:
@classmethod
def print_msg(cls, title, msg, color, new_line = True):
Log.raw("{0}{1}{2}: {3}".format(color, title, Colors.NORMAL, msg), new_line)
@classmethod
def msg(cls, msg, new_line = True):
Log.print_msg("Message", msg, Colors.MAGENTA_FG, new_line)... | import sys
from colors import Colors
class Log:
@classmethod
def print_msg(cls, title, msg, color, new_line = True):
Log.raw("{0}{1}{2}: {3}".format(color, title, Colors.NORMAL, msg), new_line)
@classmethod
def msg(cls, msg, new_line = True):
Log.print_msg("Message", msg, Colors.GREEN_FG, new_line)
... | mit | Python |
03bf981e90f5245e4e1a70d266b21db89c5c2089 | add requirement | 360skyeye/kael | setup.py | setup.py | """
kael
"""
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('kael/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='kael',
version=version,
url='https:... | """
kael
"""
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('kael/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='kael',
version=version,
url='https:... | apache-2.0 | Python |
2c3aa862509e9e663cd412f3b35b581fe5566724 | Update setup.py | quantumgraph/qg_utils | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='qg_utils',
version='0.0.6',
description='',
url='https://github.com/quantumgraph/qg_utils',
author='QuantumGraph',
author_email='contact@qu... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='qg_utils',
version='0.0.5',
description='',
url='https://github.com/quantumgraph/qg_utils',
author='QuantumGraph',
author_email='contact@qu... | mit | Python |
0354a9a929e12eaec8fb49e8c45eb06ea8121761 | Update setup.py syntax so RuntimeError is properly raised for older versions of Python | pypa/setuptools_scm,RonnyPfannschmidt/setuptools_scm,RonnyPfannschmidt/setuptools_scm,pypa/setuptools_scm | setup.py | setup.py | """\
important note:
the setup of setuptools_scm is self-using,
the first execution of `python setup.py egg_info`
will generate partial data
its critical to run `python setup.py egg_info`
once before running sdist or easy_install on a fresh checkouts
pip usage is recommended
"""
import os
import sys
import setuptool... | """\
important note:
the setup of setuptools_scm is self-using,
the first execution of `python setup.py egg_info`
will generate partial data
its critical to run `python setup.py egg_info`
once before running sdist or easy_install on a fresh checkouts
pip usage is recommended
"""
import os
import sys
import setuptool... | mit | Python |
52bb8873aaecf78a3853c75ad3c89a5ec6f5a782 | add MIT license to setup.py | swstack/simpcli,swstack/simpcli | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="simpcli",
description="Simple command line interfaces",
url="https://github.com/swstack/simpcli",
author="Stack, Stephen",
author_email="ss@stephenstack.com",
packages=find_packages(),
version='dev',
license='mit',
)
| from setuptools import setup, find_packages
setup(
name="simpcli",
description="Simple command line interfaces",
url="https://github.com/swstack/simpcli",
author="Stack, Stephen",
author_email="ss@stephenstack.com",
packages=find_packages(),
version='dev'
)
| mit | Python |
51adad0be221c98f1fad6db7b36a022f6cee401e | add sphinx-autodoc-typehints | xflr6/concepts | setup.py | setup.py | # setup.py
import pathlib
from setuptools import setup, find_packages
setup(
name='concepts',
version='0.10.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Formal Concept Analysis with Python',
keywords='fca complete lattice graph join meet galois',
... | # setup.py
import pathlib
from setuptools import setup, find_packages
setup(
name='concepts',
version='0.10.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Formal Concept Analysis with Python',
keywords='fca complete lattice graph join meet galois',
... | mit | Python |
2b626af9eed77a4e06988a20e2342ee24a7c478b | update version | aipescience/queryparser | setup.py | setup.py | import sys
from setuptools import setup
version = '0.1.2'
python_version = sys.version_info.major
author = u'Gal Matijevic'
author_email = u'gmatijevic@aip.de'
packages = [
'queryparser',
'queryparser.adql',
'queryparser.mysql'
]
package_dir = {
'': 'lib/python%d' % python_version
}
requirements ... | import sys
from setuptools import setup
version = '0.1.1'
python_version = sys.version_info.major
author = u'Gal Matijevic'
author_email = u'gmatijevic@aip.de'
packages = [
'queryparser',
'queryparser.adql',
'queryparser.mysql'
]
package_dir = {
'': 'lib/python%d' % python_version
}
requirements ... | apache-2.0 | Python |
0ac21ddb86d58a6f86bfe7948f6b60ce2369a16b | update python version | ipudu/order | setup.py | setup.py | ###############################################################################
# -*- coding: utf-8 -*-
# Order: A tool to characterize the local structure of liquid water
# by geometric order parameters
#
# Authors: Pu Du
#
# Released under the MIT MIT License
################################################... | ###############################################################################
# -*- coding: utf-8 -*-
# Order: A tool to characterize the local structure of liquid water
# by geometric order parameters
#
# Authors: Pu Du
#
# Released under the MIT MIT License
################################################... | mit | Python |
f250f4bea626622771ddcfe0cc33aa847ee2d57d | bump version to 0.10.0rc1 | sibson/redbeat | setup.py | setup.py | from setuptools import setup
long_description = open('README.rst').read()
setup(
name="celery-redbeat",
description="A Celery Beat Scheduler using Redis for persistent storage",
long_description=long_description,
version="0.10.0rc1",
url="https://github.com/sibson/redbeat",
license="Apache Lic... | from setuptools import setup
long_description = open('README.rst').read()
setup(
name="celery-redbeat",
description="A Celery Beat Scheduler using Redis for persistent storage",
long_description=long_description,
version="0.9.3rc5",
url="https://github.com/sibson/redbeat",
license="Apache Lice... | apache-2.0 | Python |
f3ae1cfd87fc7597057c1c66f7d1f709182d18c0 | Bump up version | thiagofa/pysendy | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.0.6.dev'
setup(
name='pysendy',
version=version,
description='Sendy API v1.1.7 for Python.',
long_description=open('README.md').read(),
author='Thiago Faria de Andrade',
author_email='thiagofa@gmail.com',
url='h... | #!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.0.5'
setup(
name='pysendy',
version=version,
description='Sendy API v1.1.7 for Python.',
long_description=open('README.md').read(),
author='Thiago Faria de Andrade',
author_email='thiagofa@gmail.com',
url='https... | mit | Python |
1cb41c4bd2fb73333db0ddfef136e8b34539d022 | address pip crash | beOn/varys | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
fpath = os.path.join(os.path.dirname(__file__), fname)
if os.path.exists(fpath):
return open(fpath).read()
return ""
setup(name='varys',
version='0.5.0',
author='Ben Acland',
author_email='benacland@gmai... | #!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='varys',
version='0.5',
author='Ben Acland',
author_email='benacland@gmail.com',
description='For parsing and reformatting behavioral... | bsd-3-clause | Python |
42d765de20fc15a09bc9cc1a3bbecf4b6e114dc1 | Bump version number | edx/xblock-utils,edx/xblock-utils,edx/xblock-utils | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# Copyright (C) 2014-2015 edX
#
# This software's license gives you freedom; you can copy, convey,
# propagate, redistribute and/or modify this program under the terms of
# the GNU Affero General Public License (AGPL) as published by the Free
# Software Foundation (FSF), either version 3 of th... | # -*- coding: utf-8 -*-
#
# Copyright (C) 2014-2015 edX
#
# This software's license gives you freedom; you can copy, convey,
# propagate, redistribute and/or modify this program under the terms of
# the GNU Affero General Public License (AGPL) as published by the Free
# Software Foundation (FSF), either version 3 of th... | agpl-3.0 | Python |
51920e97452360bac28cab53a798b6c95ed513c9 | update min requirement for pycryptodomex | GetStream/stream-python,GetStream/stream-python,GetStream/stream-python | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from stream import __version__, __maintainer__, __email__, __license__
import sys
tests_require = ["pytest==3.2.5", "unittest2", "pytest-cov", "python-dateutil"]
ci_require = ["flake8", "codecov"... | #!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from stream import __version__, __maintainer__, __email__, __license__
import sys
tests_require = ["pytest==3.2.5", "unittest2", "pytest-cov", "python-dateutil"]
ci_require = ["flake8", "codecov"... | bsd-3-clause | Python |
dcae89428a6d1e1f003fe029f8220a0b382ec2c9 | Use a name= kwarg to avoid UNKNOWN. | xtaran/debian-devel-changes-bot,lamby/debian-devel-changes-bot,lamby/debian-devel-changes-bot,lamby/debian-devel-changes-bot,sebastinas/debian-devel-changes-bot,xtaran/debian-devel-changes-bot | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='debian-devel-changes-bot', packages=find_packages())
| #!/usr/bin/env python
from setuptools import setup, find_packages
setup(packages=find_packages())
| agpl-3.0 | Python |
d5935e456921ad85a7764a489b4a475987f111f3 | remove flask-login requirement | LandRegistry/audit-plugin-alpha | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='lraudit',
version='0.1',
description='Adds auditing to LR Flask apps',
author='Land Registry',
author_email='lr-dev@example.org',
url='http://github.com/LandRegistry/audit-plugin',
packages=find_packages(... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='lraudit',
version='0.1',
description='Adds auditing to LR Flask apps',
author='Land Registry',
author_email='lr-dev@example.org',
url='http://github.com/LandRegistry/audit-plugin',
packages=find_packages(... | mit | Python |
3b021ddeac1b435245af4bdff39538c41b8177f4 | Fix the requirements for queries | gmr/mikkoo | setup.py | setup.py | from setuptools import setup
import sys
classifiers = ['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
... | from setuptools import setup
import sys
classifiers = ['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
... | bsd-3-clause | Python |
19944ce694fb2517824355de7f897ae60a1383ce | add version 3.6 | akamai-open/NetStorageKit-Python,AstinCHOI/netstorage-python | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'r') as f:
readme = f.read()
setup (
name = 'netstorageapi',
version = '1.2.12',
description = 'Akamai Netstorage API for Python',
long_description = readme,
namespace_packages=['akamai'],
package... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'r') as f:
readme = f.read()
setup (
name = 'netstorageapi',
version = '1.2.12',
description = 'Akamai Netstorage API for Python',
long_description = readme,
namespace_packages=['akamai'],
package... | apache-2.0 | Python |
add114736bc2370b41b077f3ace117eb9b630dc7 | Remove duplicate classifier. | percipient/django-querysetsequence | setup.py | setup.py | import codecs
from setuptools import setup, find_packages
def long_description():
with codecs.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='django-querysetsequence',
packages=find_packages(),
version='0.13dev',
description='Chain together multiple (disparate) Que... | import codecs
from setuptools import setup, find_packages
def long_description():
with codecs.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='django-querysetsequence',
packages=find_packages(),
version='0.13dev',
description='Chain together multiple (disparate) Que... | isc | Python |
99e7857fd28c2527d8eb137bb961a2979b3fcb42 | use colorlog | montefra/dodocs | setup.py | setup.py | """Install the library and the script ``dodoc``
Copyright (c) 2015 Francesco Montesano
"""
import sys
try:
from pathlib import Path
except ImportError:
sys.exit("This code requires ``pathlib`` which is shipped with python 3.4"
" or older")
from setuptools import setup, find_packages
# import onl... | """Install the library and the script ``dodoc``
Copyright (c) 2015 Francesco Montesano
"""
import sys
try:
from pathlib import Path
except ImportError:
sys.exit("This code requires ``pathlib`` which is shipped with python 3.4"
" or older")
from setuptools import setup, find_packages
# import onl... | mit | Python |
5e27a850f352d0f2c621cd3e47f7b0a0e32c558f | update version | jcheong0428/facesync | setup.py | setup.py | # from nltools.version import __version__
from setuptools import setup, find_packages
__version__ = '0.0.3'
# try:
# from setuptools.core import setup
# except ImportError:
# from distutils.core import setup
extra_setuptools_args = dict(
tests_require=['pytest']
)
setup(
name='facesync',
version=... | # from nltools.version import __version__
from setuptools import setup, find_packages
__version__ = '0.0.2'
# try:
# from setuptools.core import setup
# except ImportError:
# from distutils.core import setup
extra_setuptools_args = dict(
tests_require=['pytest']
)
setup(
name='facesync',
version=... | mit | Python |
261a820ac10aacc2fb7f3e05d0a1bd439067b8fa | Add setuptool | fabianp/pytron,fabianp/pytron,fabianp/pytron | setup.py | setup.py | from Cython.Distutils import build_ext
import numpy as np
from glob import glob
from setuptools import setup, Extension
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Programming... |
from distutils.core import setup, Extension
from Cython.Distutils import build_ext
import numpy as np
from glob import glob
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Progra... | bsd-3-clause | Python |
b258f7c3445ca9fcb5534e179fe5b7811862e4c4 | bump version for deploying to PyPI | danrschlosser/eventum,danrschlosser/eventum,danrschlosser/eventum,danrschlosser/eventum | setup.py | setup.py | from setuptools import setup
setup(name='eventum',
version='0.2.7',
description='A content management system for event-driven Flask apps',
url='http://github.com/danrschlosser/eventum',
author='Dan Schlosser',
author_email='dan@schlosser.io',
license='MIT',
packages=['eventum'... | from setuptools import setup
setup(name='eventum',
version='0.2.6',
description='A content management system for event-driven Flask apps',
url='http://github.com/danrschlosser/eventum',
author='Dan Schlosser',
author_email='dan@schlosser.io',
license='MIT',
packages=['eventum'... | mit | Python |
3cd7f3a5686b674790fed7354240c1869455d3a4 | Update version to 3.0.8 | luzfcb/cookiecutter-django,luzfcb/cookiecutter-django,trungdong/cookiecutter-django,pydanny/cookiecutter-django,ryankanno/cookiecutter-django,ryankanno/cookiecutter-django,trungdong/cookiecutter-django,luzfcb/cookiecutter-django,pydanny/cookiecutter-django,trungdong/cookiecutter-django,pydanny/cookiecutter-django,trung... | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.8"
if sys.argv... | #!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = "3.0.7"
if sys.argv... | bsd-3-clause | Python |
ec5de0064c9a73fb33e40f1e6ef3e32285de31c5 | update setup.py | twaldear/flask-csp | setup.py | setup.py | from setuptools import setup
import flask_csp
setup(
name = 'flask-csp',
packages = ['flask_csp'],
include_package_data = True,
package_data = {'':['csp_default.json']},
version = '0.39',
description = 'Flask Content Security Policy header support',
long_description = """
Add a Content Security Policy h... | from setuptools import setup
import flask_csp
setup(
name = 'flask-csp',
py_modules = ['flask_csp'],
packages = ['flask_csp'],
include_package_data = True,
package_data = {'':['csp_default.json']},
version = '0.37',
description = 'Flask Content Security Policy header support',
long_description = """
A... | mit | Python |
7bdd5a921f253fbe323249cfa97fd9fd8603271e | add install requirement (py) | latorrefabian/topmine | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name='topmine',
version='0.2.6',
description='topmine python implementation',
author='Fabian Latorre',
author_email='latorrefabian@gmail.com',
url='',
packages=['topmine'],
install_requires=['py>=1.4'],
)
| #!/usr/bin/env python
from distutils.core import setup
setup(name='topmine',
version='0.2.6',
description='topmine python implementation',
author='Fabian Latorre',
author_email='latorrefabian@gmail.com',
url='',
packages=['topmine'],
)
| bsd-2-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.