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 |
|---|---|---|---|---|---|---|---|---|
c9d1ec6f74d1e835b55600c22a35cb51d2473431 | Bump to 0.3.0 | hzdg/django-periodically,jscott1989/django-periodically | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-periodically",
version = "0.3.0",
description='Periodic task management for your Django pr... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-periodically",
version = "0.2.0",
description='Periodic task management for your Django pr... | mit | Python |
b8087ec3f1cd119079283045e4fe291fca80533b | Fix classifier. | whilp/stacklogger | setup.py | setup.py | import sys
from setuptools import setup
meta = dict(
name="stacklogger",
version="0.1.0",
description="A stack-aware logging extension",
author="Will Maier",
author_email="willmaier@ml1.net",
py_modules=["stacklogger"],
test_suite="tests",
install_requires=["setuptools"],
keywords=... | import sys
from setuptools import setup
meta = dict(
name="stacklogger",
version="0.1.0",
description="A stack-aware logging extension",
author="Will Maier",
author_email="willmaier@ml1.net",
py_modules=["stacklogger"],
test_suite="tests",
install_requires=["setuptools"],
keywords=... | isc | Python |
fd31619b1344044d3327c2e21bf1a704c702c796 | add url | brandverity/sitemap_loader | setup.py | setup.py | from distutils.core import setup
setup(name='sitemap_loader',
author='Alec Deason',
email='alec@brandverity.com',
version='1.0',
install_requires=['tldextract'],
url='https://github.com/brandverity/sitemap_loader',
scripts=['sitemap_loader']
)
| from distutils.core import setup
setup(name='sitemap_loader',
author='Alec Deason',
email='alec@brandverity.com',
version='1.0',
install_requires=['tldextract'],
scripts=['sitemap_loader']
)
| mit | Python |
d964dd491b23bb9421edd8d992c6df2081620d86 | Bump version | laterpay/laterpay-client-python | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import codecs
import os
_version = "4.5.0"
_packages = find_packages('.', exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
if os.path.exists('README.rst'):
_long_description = codecs.open('README.rst', 'r', 'utf-8').read()
else:
_long_d... | # -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import codecs
import os
_version = "4.4.1"
_packages = find_packages('.', exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
if os.path.exists('README.rst'):
_long_description = codecs.open('README.rst', 'r', 'utf-8').read()
else:
_long_d... | mit | Python |
1389c495dd84747b03789f5fa82abed08def8f51 | Tweak setup config. | lovette/mysqlstmt | setup.py | setup.py | from setuptools import setup
setup(
name='mysqlstmt',
version='1.0.1',
url='https://github.com/lovette/mysqlstmt',
download_url='https://github.com/lovette/mysqlstmt/archive/master.tar.gz',
license='BSD',
author='Lance Lovette',
author_email='lance.lovette@gmail.com',
description='Pytho... | from setuptools import setup
setup(
name='mysqlstmt',
version='1.0.0',
url='https://github.com/lovette/mysqlstmt',
download_url = 'https://github.com/lovette/mysqlstmt/archive/master.tar.gz',
license='BSD',
author='Lance Lovette',
author_email='lance.lovette@gmail.com',
description='Python... | bsd-3-clause | Python |
af6d200b41f36385c867dc9b033160c99655ceda | Fix license | PyBossa/enki | setup.py | setup.py | # -*- encoding: utf8 -*-
from setuptools import setup, find_packages
setup(
name='enki',
version='0.0.1',
packages=find_packages(),
install_requires=['pybossa-client', 'pandas'],
# metadata for upload to PyPI
author='Daniel Lombraña González',
author_email='teleyinex@gmail.com',
descrip... | from setuptools import setup, find_packages
setup(
name='enki',
version='0.0.1',
packages=find_packages(),
install_requires=['pybossa-client', 'pandas'],
# metadata for upload to PyPI
author='Daniel Lombraña González',
author_email='teleyinex@gmail.com',
description='A Python library to... | agpl-3.0 | Python |
5bd4acbf866d81a3b442bb86d2bc3cf08582f23e | add setuptools as a requirement | cjekel/piecewise_linear_fit_py,cjekel/piecewiseLinearFitPython,cjekel/piecewise_linear_fit_py | setup.py | setup.py | from setuptools import setup
setup(
name='pwlf',
version='1.1.6',
author='Charles Jekel',
author_email='cjekel@gmail.com',
packages=['pwlf'],
url='https://github.com/cjekel/piecewise_linear_fit_py',
license='MIT License',
description='fit piecewise linear functions to data',
long_de... | from setuptools import setup
setup(
name='pwlf',
version='1.1.6',
author='Charles Jekel',
author_email='cjekel@gmail.com',
packages=['pwlf'],
url='https://github.com/cjekel/piecewise_linear_fit_py',
license='MIT License',
description='fit piecewise linear functions to data',
long_de... | mit | Python |
1118e4997cdde595ff8822aef747b0bffedc52e7 | Bump version: 0.6.8 -> 0.6.9 | bennylope/mock-django,dcramer/mock-django | setup.py | setup.py | from setuptools import setup, find_packages
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
except ImportE... | from setuptools import setup, find_packages
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
except ImportE... | apache-2.0 | Python |
bb22665ebd3f849859eaa8569ea24008c910dd87 | Bump to 0.3.1 | wddwycc/tifa | setup.py | setup.py | import os
import sys
from shutil import rmtree
from setuptools import setup, Command
here = os.path.abspath(os.path.dirname(__file__))
class PublishCommand(Command):
"""Support setup.py publish."""
description = 'Build and publish the package.'
user_options = []
@staticmethod
def status(s):
... | import os
import sys
from shutil import rmtree
from setuptools import setup, Command
here = os.path.abspath(os.path.dirname(__file__))
class PublishCommand(Command):
"""Support setup.py publish."""
description = 'Build and publish the package.'
user_options = []
@staticmethod
def status(s):
... | mit | Python |
b12aa82d8f8679c4e933a0d7becd78f8cd707591 | change default requirements from Kajiki to Mako | jimrollenhagen/pecan,citrix-openstack-build/pecan,StackStorm/pecan,ryanpetrello/pecan,jdandrea/pecan,StackStorm/pecan,jdandrea/pecan,ryanpetrello/pecan,jimrollenhagen/pecan,citrix-openstack-build/pecan,pecan/pecan,pecan/pecan | setup.py | setup.py | from setuptools import setup, Command, find_packages
version = '0.1'
#
# integration with py.test for `python setup.py test`
#
tests_require = [
"py == 1.3.4",
"WebTest == 1.2.2",
]
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
... | from setuptools import setup, Command, find_packages
version = '0.1'
#
# integration with py.test for `python setup.py test`
#
tests_require = [
"py == 1.3.4",
"WebTest == 1.2.2",
]
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
... | bsd-3-clause | Python |
894f33dc1f1605da6723ebf7bb5eeca007a743a8 | Fix shebang and coding | CygnusNetworks/pypureomapi | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf8 -*-
# library for communicating with an isc dhcp server over the omapi protocol
#
# Copyright (C) 2010-2013 Cygnus Networks GmbH
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the ... | #!/usr/bin/python
#
# library for communicating with an isc dhcp server over the omapi protocol
#
# Copyright (C) 2010-2013 Cygnus Networks GmbH
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation,... | apache-2.0 | Python |
d7a5d7484dcd2547f6d9066a259ded24f08c6afa | Bump to 0.1.4 | ulule/django-badgify,ulule/django-badgify | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, 'README.rst')) as f:
README = f.read()
setup(
name='django-badgify',
version='0.1.4',
description='Badges app for Django',
long_description=... | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, 'README.rst')) as f:
README = f.read()
setup(
name='django-badgify',
version='0.1.3',
description='Badges app for Django',
long_description=... | mit | Python |
35a3ad4950fb85b65b83ab20acffaca26066a2c4 | Bump version. | mwchase/class-namespaces,mwchase/class-namespaces | setup.py | setup.py | """A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open as c_open
from os import path
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with c_open(pat... | """A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open as c_open
from os import path
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with c_open(pat... | mit | Python |
80df52e7623edacbbf91fb9768f3cf1404505abf | determine module names dynamically | abacusresearch/gitflow,abacusresearch/gitflow | setup.py | setup.py | import os
from setuptools import setup
from gitflow import const
def load_requirements(file):
with open(file) as dependency_file:
return list(filter(lambda line: len(line),
[line.split('#')[0].strip() for line in dependency_file.readlines()]
))
def... | from setuptools import setup
from gitflow import const
def load_requirements(file):
with open(file) as dependency_file:
return list(filter(lambda line: len(line),
[line.split('#')[0].strip() for line in dependency_file.readlines()]
))
setup(name='gi... | mit | Python |
e751e31bab28a80e83c5b4b6520979e553a61a10 | Support for Python 3.4 has been dropped | pallets/werkzeug,fkazimierczak/werkzeug,pallets/werkzeug,mitsuhiko/werkzeug,fkazimierczak/werkzeug,pallets/werkzeug,fkazimierczak/werkzeug,mitsuhiko/werkzeug | setup.py | setup.py | import io
import re
from setuptools import find_packages
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
with io.open("src/werkzeug/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read(), re.M).group(1)
setup(
... | import io
import re
from setuptools import find_packages
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
with io.open("src/werkzeug/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read(), re.M).group(1)
setup(
... | bsd-3-clause | Python |
3a6e9444b1e64803b6f8ae6ad67a351b3f7238fc | Fix error in setup.py that prevented an install | buckbaskin/r4 | setup.py | setup.py | #!/usr/bin/env python
import os
import re
import sys
from codecs import open
from setuptools import setup
from setuptools.command.test import test as TestCommand
packages = [
'r4',
'r4.client',
]
requires = []
version = '0.0.1'
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setup(
... | #!/usr/bin/env python
import os
import re
import sys
from codecs import open
from setuptools import setup
from setuptools.command.test import test as TestCommand
packages = [
'r4',
'r4.backend',
'r4.client',
'r4.fileserver',
'r4.userserver',
]
requires = []
version = '0.0.1'
with open('README... | mit | Python |
932c6e1eedcee21a870ea479ffcaece1ace9b2f8 | add missing package requirement while using setup.py develop | lucius-feng/tg2,lucius-feng/tg2 | setup.py | setup.py | import os
here = os.path.abspath(os.path.dirname(__file__))
execfile(os.path.join(here, 'tg', 'release.py'))
from setuptools import find_packages, setup
setup(
name='TurboGears2',
version=version,
description=description,
long_description=long_description,
classifiers=[],
keywords='turbogears p... | import os
here = os.path.abspath(os.path.dirname(__file__))
execfile(os.path.join(here, 'tg', 'release.py'))
from setuptools import find_packages, setup
setup(
name='TurboGears2',
version=version,
description=description,
long_description=long_description,
classifiers=[],
keywords='turbogears p... | mit | Python |
af4bf9b87391f91961d08ea99ae8b732920d0f87 | Fix to pyyaml requirement. | DallasTrinkle/Onsager,DallasTrinkle/Onsager | setup.py | setup.py | from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('test', pattern='test_*.py')
return test_suite
here = path.abspath(path.dirname(... | from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('test', pattern='test_*.py')
return test_suite
here = path.abspath(path.dirname(... | mit | Python |
188d6f37339e1e2edf49e786e65b362a29088ca8 | Update setup development status | johanvdw/niche_vlaanderen | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
version = {}
with open("niche_vlaanderen/version.py") as fp:
exec(fp.read(), version)
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'pandas',
'numpy',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
version = {}
with open("niche_vlaanderen/version.py") as fp:
exec(fp.read(), version)
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'pandas',
'numpy',
... | mit | Python |
06da346c8676e76ed4062880081cc5e384b1c9eb | Add Django 2.1 to trove. | django-ldapdb/django-ldapdb,jlaine/django-ldapdb | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# This software is distributed under the two-clause BSD license.
# Copyright (c) The django-ldapdb project
from __future__ import unicode_literals
import codecs
import os
import re
from setuptools import find_packages, setup
root_dir = os.path.abspath(os.path.dirname(__... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# This software is distributed under the two-clause BSD license.
# Copyright (c) The django-ldapdb project
from __future__ import unicode_literals
import codecs
import os
import re
from setuptools import find_packages, setup
root_dir = os.path.abspath(os.path.dirname(__... | bsd-2-clause | Python |
fc375e267b3bcd95768d179c853f193b5627157e | Update version to 0.3.0 | iustin/pyxattr,iustin/pyxattr | setup.py | setup.py | #!/usr/bin/python
#import distutils
#from distutils.core import setup, Extension
from setuptools import setup, Extension
long_desc = """This is a C extension module for Python which
implements extended attributes manipulation. It is a wrapper on top
of the attr C library - see attr(5)."""
version = "0.3.0"
setup(nam... | #!/usr/bin/python
#import distutils
#from distutils.core import setup, Extension
from setuptools import setup, Extension
long_desc = """This is a C extension module for Python which
implements extended attributes manipulation. It is a wrapper on top
of the attr C library - see attr(5)."""
version = "0.2.2"
setup(nam... | lgpl-2.1 | Python |
3c74e3a572fd1f3c7a8488d4d485b417effca024 | add maintainer names and email, fix url | typesupply/compositor,typesupply/compositor | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function
from setuptools import setup
try:
import fontTools
except:
print("*** Warning: defcon requires FontTools, see:")
print(" github.com/behdad/fonttools")
setup(
name="compositor",
version="0.2b",
description="A simple OpenType GSUB... | #!/usr/bin/env python
from __future__ import print_function
from setuptools import setup
try:
import fontTools
except:
print("*** Warning: defcon requires FontTools, see:")
print(" github.com/behdad/fonttools")
setup(
name="compositor",
version="0.2b",
description="A simple OpenType GSUB... | mit | Python |
1b10101e27b25af7cac648b9fd9e52fb7d9e21a0 | Bump version to 2.6. | HXLStandard/libhxl-python,HXLStandard/libhxl-python | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup
setup(name='libhxl',
version='2.6',
description='Python support for the Humanitarian Exchange Language (HXL).',
author='David Megginson',
author_email='contact@megginson.com',
url='http://hxlproject.org',
install_requires=['python-date... | #!/usr/bin/python
from setuptools import setup
setup(name='libhxl',
version='2.5',
description='Python support for the Humanitarian Exchange Language (HXL).',
author='David Megginson',
author_email='contact@megginson.com',
url='http://hxlproject.org',
install_requires=['python-date... | unlicense | Python |
f6859af5316e3487755089f9b522095b07113f53 | add download url to setup.py | AjayMT/minopt | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name='minopt',
version='0.0.1',
description='minimalistic option parser',
author='Ajay MT',
author_email='ajaymt@icloud.com',
url='http://github.com/ajaymt/minopt',
download_url='https://github.com/AjayMT/minopt/tarball/v0.0.1',... | #!/usr/bin/env python
from distutils.core import setup
setup(
name='minopt',
version='0.0.1',
description='minimalistic option parser',
author='Ajay MT',
author_email='ajaymt@icloud.com',
url='http://github.com/ajaymt/minopt',
py_modules=['minopt'],
keywords='option-parser option parse... | mit | Python |
56c67589c28afa736cb250c68a46741ef775ab0f | Bump version to 0.2.1 | tillberg/gut,tillberg/gut,tillberg/gut | setup.py | setup.py | import os
from setuptools import setup
setup(
name = "gut",
version = "0.2.1",
author = "Dan Tillberg",
author_email = "dan@tillberg.us",
description = ("Realtime bidirectional folder synchronization via modified git"),
license = "ISC",
keywords = "",
url = "https://github.com/tillberg/... | import os
from setuptools import setup
setup(
name = "gut",
version = "0.2.0",
author = "Dan Tillberg",
author_email = "dan@tillberg.us",
description = ("Realtime bidirectional folder synchronization via modified git"),
license = "ISC",
keywords = "",
url = "https://github.com/tillberg/... | isc | Python |
ad7edd1d8a4d677880d679a9c3dabbece996baaf | add treelib dependancy | charliequinn/python-litmos-api | setup.py | setup.py | #!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
import io
import re
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import find_packages
fro... | #!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
import io
import re
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import find_packages
fro... | bsd-2-clause | Python |
df98ef34a311c4ea3f1ae8c500f6fe68fb32c532 | fix setuptools grumpiness | cactus/siphashc,cactus/siphashc | setup.py | setup.py | from setuptools import setup, find_packages, Extension
long_description = """
siphashc
========
python c-module for `siphash`_, based on `floodberry's version`_.
Usage
~~~~~
.. code:: python
>>> from siphashc import siphash
>>> siphash('sixteencharstrng', 'i need a hash of this')
10796923698683394048L
... | from setuptools import setup, find_packages, Extension
long_description = """
siphashc
========
python c-module for `siphash`_, based on `floodberry's version`_.
Usage
~~~~~
.. code:: python
>>> from siphashc import siphash
>>> siphash('sixteencharstrng', 'i need a hash of this')
10796923698683394048L
... | isc | Python |
da41cbba62e18b92586f074f5c4f8789c529d5b9 | Fix setup.py url | dvhbru/dvhb-hybrid | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='dvhb-hybrid',
version='0.0.4',
description='',
author='Malev A',
author_email='am@dvhb.ru',
url='https://github.com/dvhbru/dvhb-hybrid',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'I... | from setuptools import setup, find_packages
setup(
name='dvhb-hybrid',
version='0.0.4',
description='',
author='Malev A',
author_email='am@dvhb.ru',
url='https://git.dvhb.ru/devhub-libs/dvhb-hybrid',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
... | mit | Python |
9515b43ee8a0ad236d3e47cfa2b87762a2955196 | Bump version 0.5.0 | MagicSolutions/django-user-clipboard,IndustriaTech/django-user-clipboard,MagicSolutions/django-user-clipboard,IndustriaTech/django-user-clipboard | setup.py | setup.py | from setuptools import setup
import os
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='django-user-clipboard',
version='0.5.0',
url='https://github.com/IndustriaTech/django-user-clipboard',
description='Clipboard API',
author='Vladimir Rusinov',
author_... | from setuptools import setup
import os
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='django-user-clipboard',
version='0.4.0',
url='https://github.com/IndustriaTech/django-user-clipboard',
description='Clipboard API',
author='Vladimir Rusinov',
author_... | mit | Python |
fcb322005a13828f4ad3fbd78c17cc470ab5a9fb | Add description | KKBOX/trac-attachment-notify-plugin | setup.py | setup.py | #!/usr/bin/env python
#
# Copyright (C) 2013 KKBOX Technologies Ltd.
# Copyright (C) 2013 Gasol Wu <gasol.wu@gmail.com>
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from setuptools import find_packages, setup
PACKAGE = 'TracAttachmentNo... | #!/usr/bin/env python
#
# Copyright (C) 2013 KKBOX Technologies Ltd.
# Copyright (C) 2013 Gasol Wu <gasol.wu@gmail.com>
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from setuptools import find_packages, setup
PACKAGE = 'TracAttachmentNo... | bsd-3-clause | Python |
26787f310188677aa3994513b940db9fecb5108c | Use README.txt as long_description | davidfischer/pycoreutils | setup.py | setup.py |
from distutils.core import setup
import pycoreutils
# Use README.txt + a list of available commands as long_description
long_description = ''.join(open("README.txt").readlines()) + '''
List of available commands
--------------------------
- ''' + "\n- ".join(pycoreutils.listcommands())
setup(
name = "pycoreuti... |
from distutils.core import setup
import pycoreutils
setup(
name = "pycoreutils",
version = pycoreutils.__version__,
description = "Python port of GNU coreutils",
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :... | mit | Python |
9ab04827031b727fe7d49653e14d07f3aa2cc24a | Bump version. | edx/edx-search,edx/edx-search | setup.py | setup.py | #!/usr/bin/env python
""" Setup to allow pip installs of edx-search module """
from __future__ import absolute_import
from setuptools import setup
def load_requirements(*requirements_paths):
"""
Load all requirements from the specified requirements files.
Returns:
list: Requirements file relativ... | #!/usr/bin/env python
""" Setup to allow pip installs of edx-search module """
from __future__ import absolute_import
from setuptools import setup
def load_requirements(*requirements_paths):
"""
Load all requirements from the specified requirements files.
Returns:
list: Requirements file relativ... | agpl-3.0 | Python |
a5910be0da939f6ed36aed6ac98c640fcf0b0101 | Update setup.py with required Python version | igboyes/virtool,virtool/virtool,igboyes/virtool,virtool/virtool | setup.py | setup.py | import importlib
from cx_Freeze import setup, Executable
backend_path = importlib.import_module("bcrypt").__path__[0]
backend_path = backend_path.replace("bcrypt", ".libs_cffi_backend")
# Dependencies are automatically detected, but it might need
# fine tuning.
build_exe_options = {
"include_files": [
("... | import importlib
from cx_Freeze import setup, Executable
backend_path = importlib.import_module("bcrypt").__path__[0]
backend_path = backend_path.replace("bcrypt", ".libs_cffi_backend")
# Dependencies are automatically detected, but it might need
# fine tuning.
build_exe_options = {
"include_files": [
("... | mit | Python |
89f868c11599c6017ad5de51275a45f064649622 | Bump to 3.2 | lawrencebenson/thefuck,scorphus/thefuck,scorphus/thefuck,mlk/thefuck,lawrencebenson/thefuck,nvbn/thefuck,SimenB/thefuck,PLNech/thefuck,Clpsplug/thefuck,mcarton/thefuck,Clpsplug/thefuck,nvbn/thefuck,mlk/thefuck,mcarton/thefuck,PLNech/thefuck,SimenB/thefuck | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
import os
if os.environ.get('CONVERT_README'):
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
else:
long_description = ''
version = sys.version_info[:2]
if version < (2, 7):
print('thefuck requires P... | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
import os
if os.environ.get('CONVERT_README'):
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
else:
long_description = ''
version = sys.version_info[:2]
if version < (2, 7):
print('thefuck requires P... | mit | Python |
03cd0763589da7b9f68c8a5eb53d92795494cac7 | modify setup.py | Sraw/APIphone,Sraw/http_api_exporter | setup.py | setup.py | from setuptools import setup
setup(
name = 'http_api_exporter',
packages = ['http_api_exporter'],
version = '1.1.0',
license = 'MIT',
description = 'A simple api exporter for py',
author = 'Sraw',
author_email = 'lzyl888@gmail.com',
url = 'https://github.com/Sraw/http_api_exporter',
download_url = '... | from setuptools import setup
setup(
name = 'http_api_exporter',
packages = ['http_api_exporter'],
version = '1.1.0',
description = 'A simple api exporter for py',
author = 'Sraw',
author_email = 'lzyl888@gmail.com',
url = 'https://github.com/Sraw/http_api_exporter',
download_url = 'https://github.com/... | mit | Python |
e6a6b94f6399bfc585f621eba9cbacb0154952f3 | Add more classifiers to setup.py | grantmcconnaughey/django-lazy-tags,grantmcconnaughey/django-lazy-tags | setup.py | setup.py | import codecs
import re
import os
from setuptools import setup, find_packages, Command
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)... | import codecs
import re
import os
from setuptools import setup, find_packages, Command
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)... | mit | Python |
9a5c1d7036a4bc1b659b868c90dc8833988d5756 | Install av package as well | danielballan/PyAV,mcpv/PyAV,xxr3376/PyAV,markreidvfx/PyAV,pupil-labs/PyAV,PyAV-Org/PyAV,danielballan/PyAV,markreidvfx/PyAV,mcpv/PyAV,mikeboers/PyAV,mikeboers/PyAV,pupil-labs/PyAV,PyAV-Org/PyAV,pupil-labs/PyAV,markreidvfx/PyAV,xxr3376/PyAV,mcpv/PyAV,danielballan/PyAV,xxr3376/PyAV,pupil-labs/PyAV | setup.py | setup.py | from distutils.core import setup, Extension
import os
import subprocess
if not os.path.exists('config.py'):
subprocess.call(['./configure'])
execfile("config.py")
ext_extra = {
'include_dirs': ['headers'],
}
for chunk in autoconf_flags.strip().split():
if chunk.startswith('-I'):
ext_extra.setdef... | from distutils.core import setup, Extension
import os
import subprocess
if not os.path.exists('config.py'):
subprocess.call(['./configure'])
execfile("config.py")
ext_extra = {
'include_dirs': ['headers'],
}
for chunk in autoconf_flags.strip().split():
if chunk.startswith('-I'):
ext_extra.setdef... | bsd-3-clause | Python |
931f4ec86be88d29b75d51ec99a263191e2963f2 | rename module to cMetalink | pombredanne/pylibmetalink,pombredanne/pylibmetalink | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Python Bindings for libtextcat
#
# Copyright (c) 2008 Per Øyvind Karlsen <peroyvind@mandriva.org>
#
# All rights reserved.
import sys, os
from warnings import warn
from setuptools import setup, Extension
descr = "Python bindings for libmetalink"
long_descr = """PylibMe... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Python Bindings for libtextcat
#
# Copyright (c) 2008 Per Øyvind Karlsen <peroyvind@mandriva.org>
#
# All rights reserved.
import sys, os
from warnings import warn
from setuptools import setup, Extension
descr = "Python bindings for libmetalink"
long_descr = """PylibMe... | mit | Python |
173a40ddc18b35ab803b017cf73c544af319c5d5 | Update setup.py. | keras-team/keras,keras-team/keras | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='2.0.0',
description='Deep Learning for Python',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
download_url='https://github... | from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='2.0.0',
description='Deep Learning for Python',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
download_url='https://github... | apache-2.0 | Python |
05d10e465b1308e12d0527b7183559581632437f | Remove unused dependency | mailgun/flanker,nylas/flanker | setup.py | setup.py | # coding:utf-8
from setuptools import setup, find_packages
setup(name='flanker',
version='0.7.0',
description='Mailgun Parsing Tools',
long_description=open('README.rst').read(),
classifiers=[],
keywords='',
author='Mailgun Inc.',
author_email='admin@mailgunhq.com',
ur... | # coding:utf-8
from setuptools import setup, find_packages
setup(name='flanker',
version='0.7.0',
description='Mailgun Parsing Tools',
long_description=open('README.rst').read(),
classifiers=[],
keywords='',
author='Mailgun Inc.',
author_email='admin@mailgunhq.com',
ur... | apache-2.0 | Python |
a0eeca7179e2e5677b4d0fefe2c3778328067b44 | Bump up version requirement for six. | nkhuyu/mycli,martijnengler/mycli,suzukaze/mycli,mdsrosa/mycli,brewneaux/mycli,jinstrive/mycli,martijnengler/mycli,j-bennet/mycli,oguzy/mycli,webwlsong/mycli,D-e-e-m-o/mycli,ZuoGuocai/mycli,webwlsong/mycli,jinstrive/mycli,thanatoskira/mycli,D-e-e-m-o/mycli,ZuoGuocai/mycli,chenpingzhao/mycli,thanatoskira/mycli,nkhuyu/myc... | setup.py | setup.py | import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('mycli/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
description = 'CLI for MySQL Database. With auto-completi... | import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('mycli/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
description = 'CLI for MySQL Database. With auto-completi... | bsd-3-clause | Python |
443a4eca2be47075367083e94d966abc185f5625 | use ``setuptools.find_packages()`` | ivilata/pymultihash | setup.py | setup.py | # Based on PyPA sample project's setup script.
"""Pymultihash installation script."""
import os.path
from setuptools import setup, find_packages
# Load readme file into long description.
thisdir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(thisdir, 'README.rst')) as readme:
long_descriptio... | # Based on PyPA sample project's setup script.
"""Pymultihash installation script."""
import os.path
from setuptools import setup
# Load readme file into long description.
thisdir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(thisdir, 'README.rst')) as readme:
long_description = readme.read... | mit | Python |
2077516f655338a0bc006d0081f2d30acdf95a2e | Bump version | kcompher/pygraphistry | setup.py | setup.py | #!/usr/bin/env python
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
#from codecs import open
#from os import path
#here = path.abspath(path.dirname(__file__))
#with open(path.joi... | #!/usr/bin/env python
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
#from codecs import open
#from os import path
#here = path.abspath(path.dirname(__file__))
#with open(path.joi... | bsd-3-clause | Python |
9e03ae0a7db5e98c8ee95e930c983d37442581c3 | Add scikit-image as a dep | widoptimization-willett/feature-extraction | setup.py | setup.py | from setuptools import setup
setup(
name='feature-extraction',
author='Liam Marshall',
author_email='limarshall@wisc.edu',
version='0.1',
license='Apache',
packages=['feature_extraction'],
install_requires=['numpy', 'Pillow', 'Click', 'scikit-image'],
entry_points='''
[console_scripts]
extract_features=fea... | from setuptools import setup
setup(
name='feature-extraction',
author='Liam Marshall',
author_email='limarshall@wisc.edu',
version='0.1',
license='Apache',
packages=['feature_extraction'],
install_requires=['numpy', 'Pillow', 'Click'],
entry_points='''
[console_scripts]
extract_features=feature_extraction.... | apache-2.0 | Python |
d0da56aaa49f47291ee1e462e56f18dfb9934a80 | Add new versions to setup.py | riolet/poline,riolet/poline | setup.py | setup.py | import sys
import subprocess
from setuptools import setup, Command
setup(
name='poline',
version='0.3',
description='Python one-liners: Awk-like one-liners for python',
long_description='pol lets you do awk-like one liners in python.',
url='https://github.com/riolet/pol',
author='Rohana Rezel',... | import sys
import subprocess
from setuptools import setup, Command
setup(
name='poline',
version='0.3',
description='Python one-liners: Awk-like one-liners for python',
long_description='pol lets you do awk-like one liners in python.',
url='https://github.com/riolet/pol',
author='Rohana Rezel',... | mit | Python |
72898aab3b429f7f8096731f96b761b081b9860d | Update requirements in setup.py file | MGHComputationalPathology/dicomweb-client | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import re
import setuptools
with io.open('src/dicomweb_client/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setuptools.setup(
name='dicomweb-client',
version=version,
description='... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import re
import setuptools
with io.open('src/dicomweb_client/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setuptools.setup(
name='dicomweb-client',
version=version,
description='... | mit | Python |
dd7ac2a73fa22e1e5843f6a96e46f9bd573219f2 | Simplify version. | smartfile/django-transfer | setup.py | setup.py | #!/bin/env python
import os
from setuptools import setup
name = 'django-transfer'
version = '0.3'
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme) as readme_file:
long_description = readme_file.read()
setup(
name = name,
version = version,
description = 'A django appli... | #!/bin/env python
import os
from setuptools import setup
name = 'django-transfer'
version = '0.2'
release = '2'
versrel = version + '-' + release
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme) as readme_file:
long_description = readme_file.read()
setup(
name = name,
vers... | mit | Python |
68e7b8070fc411e61f91239e4fc6c7110b069685 | Prepare 0.6.7 | dbf256/py-ya-xml | setup.py | setup.py | from setuptools import setup
setup(name='pyyaxml',
version='0.6.7',
description='Python API to Yandex.XML',
url='https://github.com/dbf256/py-ya-xml',
author='Alexey Moskvin',
author_email='dbf256@gmail.com',
license='MIT',
packages=['pyyaxml'],
install_requires=[
... | from setuptools import setup
setup(name='pyyaxml',
version='0.6.6',
description='Python API to Yandex.XML',
url='https://github.com/dbf256/py-ya-xml',
author='Alexey Moskvin',
author_email='dbf256@gmail.com',
license='MIT',
packages=['pyyaxml'],
install_requires=[
... | mit | Python |
603c60fa929b687546dbd1d40fc4417d08433f9c | Add content type description | uservoice/uservoice-python | setup.py | setup.py | import os
import sys
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='uservoice',
version='0.0.24',
description='UserVoice Python library',
url = 'http://pypi.python.org/pypi/uservoice/',
long_description=re.sub(r'```[^\s]*', ... | import os
import sys
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='uservoice',
version='0.0.24',
description='UserVoice Python library',
url = 'http://pypi.python.org/pypi/uservoice/',
long_description=re.sub(r'```[^\s]*', ... | mit | Python |
01f7d9cb06b9f318b801ea35b576f3a02d3d423a | update setup.py | lexruee/pi-switch-python,lexruee/pi-switch-python | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from distutils.extension import Extension
VERSION = "0.3.0"
setup(
name="pi_switch",
packages = [ "pi_switch" ],
version = VERSION,
description = "A library for the raspberry pi to control remote power outlet sockets.",
... | #!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
VERSION = "0.3.0"
setup(
name="pi_switch",
packages = [ "pi_switch" ],
version = VERSION,
description = "A library for the raspberry pi to control remote power outlet sockets.",
author = "Alexander Ru... | lgpl-2.1 | Python |
0b5626ed356b203ec19ed23f3b179b82670206bc | make versioning static | alisaifee/jira-cli,rexyeah/jira-cli,rexyeah/jira-cli,alisaifee/jira-cli | setup.py | setup.py | """
setup.py for jira-cli
"""
__author__ = "Ali-Akber Saifee"
__email__ = "ali@indydevs.org"
import os
import sys
from setuptools import setup, find_packages, Command
version="0.2.7"
setup(name='jira-cli',
author="Ali-Akber Saifee",
author_email="ali@indydevs.org",
url="http://hg.indydevs.org/jira-cli... | """
setup.py for jira-cli
"""
__author__ = "Ali-Akber Saifee"
__email__ = "ali@indydevs.org"
import os
import sys
from setuptools import setup, find_packages, Command
default_version="0.1"
def get_version_from_tag():
is_tag = os.popen("git describe").read().strip()
if not is_tag:
return default_versio... | mit | Python |
1b50171bd56b40ed0bbbdc3e9b5d2beea927221b | update to latest hypothesis (3.4.1) | jab/bidict,jab/bidict | setup.py | setup.py | from io import open
from setuptools import setup
from warnings import warn
try:
with open('bidict/VERSION', encoding='utf8') as f:
version = f.read().strip()
except Exception as e:
version = '0.0.0'
warn('Could not open bidict/VERSION, using bogus version (%s): %r' %
(version, e))
try:
... | from io import open
from setuptools import setup
from warnings import warn
try:
with open('bidict/VERSION', encoding='utf8') as f:
version = f.read().strip()
except Exception as e:
version = '0.0.0'
warn('Could not open bidict/VERSION, using bogus version (%s): %r' %
(version, e))
try:
... | mpl-2.0 | Python |
2f48a49cf8d4b712f1c7830a073e258de04a7f81 | Add pytest-cov to test requirements | pkoszalka/responses,singingwolfboy/responses,getsentry/responses,svisser/responses,florentx/urllib3-mock,getsentry/responses,barseghyanartur/responses | setup.py | setup.py | #!/usr/bin/env python
"""
responses
=========
A utility library for mocking out the `requests` Python library.
:copyright: (c) 2013 Dropbox, Inc.
"""
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
setup_requires = []
if 'test' in sys.argv:
setup_requires.append(... | #!/usr/bin/env python
"""
responses
=========
A utility library for mocking out the `requests` Python library.
:copyright: (c) 2013 Dropbox, Inc.
"""
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
setup_requires = []
if 'test' in sys.argv:
setup_requires.append(... | apache-2.0 | Python |
53c66713502abe4c07f6ff2c937e2a6725176678 | Bump version to 0.2 | naiquevin/pipdeptree,naiquevin/pipdeptree | setup.py | setup.py | from setuptools import setup
with open('./README.rst') as f:
long_desc = f.read()
setup(
name='pipdeptree',
version='0.2',
author='Vineet Naik',
author_email='naikvin@gmail.com',
url='https://github.com/naiquevin/pipdeptree',
license='MIT License',
description='Command line utility t... | from setuptools import setup
with open('./README.rst') as f:
long_desc = f.read()
setup(
name='pipdeptree',
version='0.1',
author='Vineet Naik',
author_email='naikvin@gmail.com',
url='https://github.com/naiquevin/pipdeptree',
license='MIT License',
description='Command line utility t... | mit | Python |
48e47c85a8eaad574bacd7cbcd51fce8aba2bcee | update version | bastbnl/dotmap,drgrib/dotmap | setup.py | setup.py | from setuptools import setup
setup(
version = '1.2.2',
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.1',
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',... | mit | Python |
b1caa108f1a9d07541dc3dac6e144607b1ed9bc6 | bump version | Work4Labs/azure-translator-python-sdk,Work4Labs/azure-translator-python-sdk | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
"""
Read file (README).
"""
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as handle:
return handle.read()
except IOError:
return ''
setup(
name='azure-tra... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
"""
Read file (README).
"""
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as handle:
return handle.read()
except IOError:
return ''
setup(
name='azure-tra... | apache-2.0 | Python |
81e23f147300b7df32e86d3d7552576f65a68928 | add extra metadata | rr-/drill | setup.py | setup.py | from setuptools import setup, find_packages
setup(
author='Marcin Kurczewski',
author_email='rr-@sakuya.pl',
name='drillsrs',
long_description='Spaced repetition learning in CLI',
version='0.1',
url='https://github.com/rr-/drill',
packages=find_packages(),
entry_points={
'conso... | from setuptools import setup, find_packages
setup(
name='drillsrs',
version='0.1',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'drill-srs = drillsrs.__main__:main'
]
},
... | mit | Python |
c9ae560aff59bf544a9df78f8af161f35598cbe2 | Bump version to 3.1 | cloudify-cosmo/cloudify-openstack-provider | setup.py | setup.py | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
0d9fa7536e2acc83532de7485d24ac65155f74b1 | set higher python-spanner requirements (#38) | googleapis/python-spanner-sqlalchemy,googleapis/python-spanner-sqlalchemy | setup.py | setup.py | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | apache-2.0 | Python |
8a1722c2713be2edb51e65f4d47b381090fafa0d | add maintainer email | max-arnold/markdown-tweetable | setup.py | setup.py | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='tweetable',
version='1.0',
maintainer="Max Arnold",
maintainer_email="arnold.maxim@gmail.com",
url="https://github.com/max-arnold/markdown-tweetable",
packages=['tweetable'],
install_requires=['Markdown >= 2.0'],
lice... | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='tweetable',
version='1.0',
maintainer="Max Arnold",
url="https://github.com/max-arnold/markdown-tweetable",
packages=['tweetable'],
install_requires=['Markdown >= 2.0'],
license='LICENSE.md',
description='Tweetable qu... | mit | Python |
1288ccfffd8db1dadc58b07a323c50fc953fcaf7 | Set minimum docutils requirement | myint/rstcheck,myint/rstcheck,sameersingh7/rstcheck,sameersingh7/rstcheck | setup.py | setup.py | #!/usr/bin/env python
"""Installer for rstcheck."""
import ast
import io
import setuptools
def version():
"""Return version string."""
with io.open('rstcheck.py', encoding='utf-8') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse... | #!/usr/bin/env python
"""Installer for rstcheck."""
import ast
import io
import setuptools
def version():
"""Return version string."""
with io.open('rstcheck.py', encoding='utf-8') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse... | mit | Python |
183c6d42e8552699efb2d07502dfc004ea294c31 | Update setup.py | approvals/ApprovalTests.Python,approvals/ApprovalTests.Python,tdpreece/ApprovalTests.Python,approvals/ApprovalTests.Python | setup.py | setup.py | from distutils.core import setup
setup(
name='approvaltests',
version='0.1.8',
description='Assertion/verification library to aid testing',
author='ApprovalTests Contributors',
author_email='jamesrcounts@outlook.com',
url='https://github.com/approvals/ApprovalTests.Python',
packages=['appro... | from distutils.core import setup
setup(
name='approvaltests',
version='0.1.7',
description='Assertion/verification library to aid testing',
author='ApprovalTests Contributors',
author_email='jamesrcounts@outlook.com',
url='https://github.com/approvals/ApprovalTests.Python',
packages=['appro... | apache-2.0 | Python |
cde77c588a78bc00f5c33eb55c88e920263fc82b | Bump black from 22.8.0 to 22.10.0 (#1783) | keras-team/autokeras,keras-team/autokeras,keras-team/autokeras | setup.py | setup.py | from distutils.core import setup
from pathlib import Path
from setuptools import find_packages
this_file = Path(__file__).resolve()
readme = this_file.parent / "README.md"
setup(
name="autokeras",
description="AutoML for deep learning",
package_data={"": ["README.md"]},
long_description=readme.read_t... | from distutils.core import setup
from pathlib import Path
from setuptools import find_packages
this_file = Path(__file__).resolve()
readme = this_file.parent / "README.md"
setup(
name="autokeras",
description="AutoML for deep learning",
package_data={"": ["README.md"]},
long_description=readme.read_t... | apache-2.0 | Python |
46fe4c4ad8060c915bb44d7fe19633d4e0038eb1 | Change to using setup tools | moyogo/compositor,typesupply/compositor,anthrotype/compositor,anthrotype/compositor,typesupply/compositor,moyogo/compositor | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function
from setuptools import setup
try:
import fontTools
except:
print("*** Warning: defcon requires FontTools, see:")
print(" github.com/behdad/fonttools")
setup(
name="compositor",
version="0.2b",
description="A simple OpenType GSUB... | #!/usr/bin/env python
from __future__ import print_function
from distutils.core import setup
try:
import fontTools
except:
print("*** Warning: defcon requires FontTools, see:")
print(" github.com/behdad/fonttools")
setup(
name="compositor",
version="0.2b",
description="A simple OpenType ... | mit | Python |
8869e0eaad258f09dd0b0f58091c3f983b99cf15 | Update pyuntl dependency | unt-libraries/aubreylib | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='aubreylib',
version='2.0.0',
description='A helper library for the Aubrey access system.',
author='University of North Texas Libraries',
author_email='mark.phillips@unt.edu',
url='https://github.com/unt-libraries/aubreylib',
l... | #!/usr/bin/env python
from setuptools import setup
setup(
name='aubreylib',
version='2.0.0',
description='A helper library for the Aubrey access system.',
author='University of North Texas Libraries',
author_email='mark.phillips@unt.edu',
url='https://github.com/unt-libraries/aubreylib',
l... | bsd-3-clause | Python |
06f38dcfe931e6b4d62f30952f5eae468f8e2732 | fix setup.py typo | MaaSiveNet/maasive-py | setup.py | setup.py | from distutils.core import setup
setup(
name='maasivepy',
version='1.2.5',
author='Josh Austin',
author_email='josh@maasive.net',
packages=['maasivepy'],
)
| from distutils.core import setup
setup(
name='maasivepy',
version='1.2.5',
author='Josh Austin',
author_email='josh@maasive.net',
py_modules=['maasivepy'],
)
| mit | Python |
81b6c261bcab547c8701707c618d788d2349c70f | bump version | Sberned/djaio | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'aiohttp==1.0.5',
'aiohttp_jinja2',
'asyncio',
'aiohttp_debugtoolbar',
'aiohttp_autoreload',
'schematics>=2.0.0.dev2',
'aiopg==0.11.0',
'ip... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'aiohttp==1.0.5',
'aiohttp_jinja2',
'asyncio',
'aiohttp_debugtoolbar',
'aiohttp_autoreload',
'schematics>=2.0.0.dev2',
'aiopg==0.11.0',
'ip... | apache-2.0 | Python |
19d1ac00bbbe2e3aa10d580aaffd8c6e67e77b84 | Bump version | alicx1/Sushi,tp7/Sushi | setup.py | setup.py | from distutils.core import setup
import os
try:
import py2exe
except ImportError:
pass
import sys
setup(
name='Sushi',
description='Automatic subtitle shifter based on audio',
version='0.4.4',
url='https://github.com/tp7/Sushi',
console=['sushi.py'],
license='MIT',
options={
... | from distutils.core import setup
import os
try:
import py2exe
except ImportError:
pass
import sys
setup(
name='Sushi',
description='Automatic subtitle shifter based on audio',
version='0.4.3',
url='https://github.com/tp7/Sushi',
console=['sushi.py'],
license='MIT',
options={
... | mit | Python |
f457d2007bd106a1346f76fe1255346bd7fa8317 | add a description | mistydemeo/lazy_paged_sequence | setup.py | setup.py | from setuptools import setup
setup(
name="lazy_paged_sequence",
author="Misty De Meo",
description=("Simple iterable interface to "
"paged data structures such as REST API clients"),
author_email="mistydemeo@gmail.com",
license="AGPL",
version="0.3",
py_modules=["lazy_paged... | from setuptools import setup
setup(
name="lazy_paged_sequence",
author="Misty De Meo",
author_email="mistydemeo@gmail.com",
license="AGPL",
version="0.3",
py_modules=["lazy_paged_sequence"]
)
| agpl-3.0 | Python |
8c65b79d5421f0fe7173ed902f5b46612eddaf76 | Update P5_threadDemo.py added docstrings and wrapped in main function | JoseALermaIII/python-tutorials,JoseALermaIII/python-tutorials | pythontutorials/books/AutomateTheBoringStuff/Ch15/P5_threadDemo.py | pythontutorials/books/AutomateTheBoringStuff/Ch15/P5_threadDemo.py | """Thread demo
This program uses :py:mod:`threading` to demonstrate multithreading.
"""
import time
print('Start of program.')
def takeANap() -> None:
"""Take a nap
Simple 5 second timer using :func:`time.sleep` followed by a 'Wake up!' print statement.
Returns:
None. Waits 5 seconds, then pr... | # This program demonstrates multithreading
import threading, time
print('Start of program.')
def takeANap():
time.sleep(5)
print('Wake up!')
threadObj = threading.Thread(target=takeANap)
threadObj.start()
print('End of program.')
| mit | Python |
242d704c11fd487422e2efc172a74888e266d008 | Standardize docstring quoting | unixorn/logrus | setup.py | setup.py | # The Logrus
#
# Copyright 2015-2017 Joe Block <jpb@unixorn.net>
#
# 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 appl... | # The Logrus
#
# Copyright 2015-2017 Joe Block <jpb@unixorn.net>
#
# 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 appl... | apache-2.0 | Python |
9d31a187fda90e876510c43b692af145345b27d3 | Bump version number. | jvs/sourcer | setup.py | setup.py | import setuptools
def long_description():
try:
with open('README.md') as f:
return f.read()
except:
return ''
setuptools.setup(
name='sourcer',
version='0.3.8',
author='jvs',
author_email='vonseg@protonmail.com',
url='https://github.com/jvs/sourcer',
descri... | import setuptools
def long_description():
try:
with open('README.md') as f:
return f.read()
except:
return ''
setuptools.setup(
name='sourcer',
version='0.3.6',
author='jvs',
author_email='vonseg@protonmail.com',
url='https://github.com/jvs/sourcer',
descri... | mit | Python |
517742cbf787ad7ac09a518c34307ac3c2e561ba | Make sure plugin configuration files are included | dariusbakunas/rawdisk | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='rawdisk',
author='D. Bakunas',
version='0.2dev',
description='Experimental python code to learn different disk formats',
packages=find_packages(),
package_data = {'rawdisk.plugins.filesystems' : ['*.yapsy-plugin']},
license='LICENSE.t... | from setuptools import setup, find_packages
setup(
name='rawdisk',
author='D. Bakunas',
version='0.1dev',
description='Experimental python code to learn different disk formats',
packages=find_packages(),
license='LICENSE.txt',
long_description=open('README.md').read(),
install_requires=... | bsd-3-clause | Python |
d9edbfa12225d11061b3a648f220bfdd519e88b1 | Bump Version to 2.0.60-dev | ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLU... | bsd-2-clause | Python |
38ec0cf8b0affa813abfc0241b07931e7a403071 | change for python 2.X only | natjohan/confgen | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = op... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = op... | bsd-3-clause | Python |
eb363c64645f6341138d6cf0edfaec49a05dbaeb | fix import order | tomi77/django-evostream | setup.py | setup.py | from codecs import open
from setuptools import setup, find_packages
setup(
name="django-evostream",
version='0.1',
author="Tomasz Jakub Rup",
author_email="tomasz.rup@gmail.com",
url='https://github.com/tomi77/django-evostream',
description='Manage EvoStream Media Server',
long_descriptio... | from setuptools import setup, find_packages
from codecs import open
setup(
name="django-evostream",
version='0.1',
author="Tomasz Jakub Rup",
author_email="tomasz.rup@gmail.com",
url='https://github.com/tomi77/django-evostream',
description='Manage EvoStream Media Server',
long_description=... | mit | Python |
7df7c2c8858fdb9bccffd24fc435e36402697e94 | Update setup requirements | jbittel/django-deflect | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from deflect import __version__ as version
packages = [
'deflect',
'deflect.tests',
]
package_data = {
'': ['LICENSE', 'README.rst'],
}
with open('README.rst') as f:
readme = f.read... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from deflect import __version__ as version
packages = [
'deflect',
'deflect.tests',
]
package_data = {
'': ['LICENSE', 'README.rst'],
}
with open('README.rst') as f:
readme = f.read... | bsd-3-clause | Python |
7941e6618d2727286dfe79a017634a4f372406f1 | bump version to 0.1.0 | qba73/nc | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools.command.test import test as TestCommand
import csvnc
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
class PyTest(Te... | #!/usr/bin/env python
import os
import sys
from setuptools.command.test import test as TestCommand
import csvnc
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
class PyTest(Te... | mit | Python |
cb25c5248246d641830b4cd53d68eb2dd3a21ada | add use_2to3=True to setup.py | bear/ronkyuu,bear/ronkyuu | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import codecs
from setuptools import setup, find_packages
cwd = os.path.abspath(os.path.dirname(__file__))
def read(filename):
with codecs.open(os.path.join(cwd, filename), 'rb', 'utf-8') as h:
return h.read()
metadata = read(os.path.joi... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import codecs
from setuptools import setup, find_packages
cwd = os.path.abspath(os.path.dirname(__file__))
def read(filename):
with codecs.open(os.path.join(cwd, filename), 'rb', 'utf-8') as h:
return h.read()
metadata = read(os.path.joi... | mit | Python |
0c5a7f4d5ca1795765c16fb2915de6775ce49dbf | Add web site. | omergertel/logbook,narfdotpl/logbook,RazerM/logbook,maykinmedia/logbook,redtoad/logbook,DasIch/logbook,mbr/logbook,FintanH/logbook,DasIch/logbook,fayazkhan/logbook,dvarrazzo/logbook,alonho/logbook,dvarrazzo/logbook,omergertel/logbook,alonho/logbook,Rafiot/logbook,alex/logbook,pombredanne/logbook,redtoad/logbook,fayazkh... | setup.py | setup.py | r"""
Logbook
-------
An awesome logging implementation that is fun to use.
Quickstart
``````````
::
from logbook import Logger
log = Logger('A Fancy Name')
log.warn('Logbook is too awesome for most applications')
log.error("Can't touch this")
Works for web apps too
``````````````````````
::
... | r"""
Logbook
-------
An awesome logging implementation that is fun to use.
Quickstart
``````````
::
from logbook import Logger
log = Logger('A Fancy Name')
log.warn('Logbook is too awesome for most applications')
log.error("Can't touch this")
Works for web apps too
``````````````````````
::
... | bsd-3-clause | Python |
453bbac2e0525187ef7f38da40470ec542fab924 | bump version | Zunonia/django_replicated,lavr/django_replicated,dmirain/django_replicated | setup.py | setup.py | from distutils.core import setup
setup(
name='django_replicated',
version='1.2',
description='Django DB router for stateful master-slave replication',
packages=[
'django_replicated',
],
)
| from distutils.core import setup
setup(
name='django_replicated',
version='1.1',
description='Django DB router for stateful master-slave replication',
packages=[
'django_replicated',
],
)
| bsd-3-clause | Python |
99cb346c1b0e4e9da4babb9af9654e5c934f58af | update dist info | Beeblio/django-vote,hwbuluo/django-vote | 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='django-vote',
version='1.0.3',
packages=['vote'],
inc... | 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-vote',
version='1.0.2',
packages=['vote'],
inc... | bsd-3-clause | Python |
2d7e1f2953a3c82c7fa988ced087c9b6c8bd3479 | bump version to 0.3.2 | rollbar/rollbar-agent,rollbar/rollbar-agent | 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... | mit | Python |
05427f69163652ea9b3c3955f274339b3839bf0e | use common user agent | tilda/lolbot,tilda/lolbot,tilda/lolbot | cogs/nekos.py | cogs/nekos.py | # noinspection PyPackageRequirements
import discord
import json
# noinspection PyPackageRequirements
from discord.ext import commands
# noinspection PyPackageRequirements
import utils.errors
from cogs.common import user_agent
class Animemes:
def __init__(self, bot):
self.bot = bot
self.config = jso... | # noinspection PyPackageRequirements
import discord
import json
# noinspection PyPackageRequirements
from discord.ext import commands
# noinspection PyPackageRequirements
import utils.errors
class Animemes:
def __init__(self, bot):
self.bot = bot
self.config = json.load(open('config.json'))
... | mit | Python |
5f35af0e5ee1d0082978f2a3ae2ccd78a0ee33e3 | Use io.open to support Python 2 | manrajgrover/halo,ManrajGrover/halo | setup.py | setup.py | import io
from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error
def dependencies(file):
with open(file) as f:
return f.read().splitlines()
with io.open("README.md", encoding='utf-8') as infile:
long_description = infile.read()
setup(
name='halo',
pack... | from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error
def dependencies(file):
with open(file) as f:
return f.read().splitlines()
with open("README.md", encoding='utf-8') as infile:
long_description = infile.read()
setup(
name='halo',
packages=find_pac... | mit | Python |
b6d769458ed0d7f965356b48cba67a64ef7b5b62 | Update setup.py to point at Github. (closes #78) | twisted/twistedchecker | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from setuptools import find_packages, setup
setup(
name='TwistedChecker',
description='A Twisted coding standard compliance checker.',
version='0.2.0',
author='Twisted Matrix Laboratories',
author_email... | #!/usr/bin/env python
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from setuptools import find_packages, setup
setup(
name='TwistedChecker',
description='A Twisted coding standard compliance checker.',
version='0.2.0',
author='Twisted Matrix Laboratories',
author_email... | mit | Python |
1ce48fe0ec403e8145d0dd890d94ed82ab89eb6d | Include tests package | l04m33/pyx | setup.py | setup.py | import os
import ast
from setuptools import setup
PACKAGE_NAME = 'pyx'
def load_description(fname):
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, fname)) as f:
return f.read().strip()
def get_version(fname):
with open(fname) as f:
source = f.read()
... | import os
import ast
from setuptools import setup
PACKAGE_NAME = 'pyx'
def load_description(fname):
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, fname)) as f:
return f.read().strip()
def get_version(fname):
with open(fname) as f:
source = f.read()
... | mit | Python |
c1a9aed39a19bcce91d09b9026e7b91aeafb5d47 | Adjust seutp.py to include the models | apache/cloudstack-gcestack | setup.py | setup.py | #!/usr/bin/env python
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "Li... | #!/usr/bin/env python
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "Li... | apache-2.0 | Python |
34a65a6807057a84f27b7dd63c8172af49af7b63 | fix : new response handler function added | sepandhaghighi/qpage | setup.py | setup.py | from qpage import *
import sys
def error_handler():
close_files()
vector_2 = error_finder()
error_vector = vector_2[0]
pass_vector = vector_2[1]
print(str(len(error_vector)) + " Error")
print("Please Check Following :\n")
for i in range(len(error_vector)):
print(str(i + 1) + "-" + er... | from qpage import *
import sys
def error_handler():
close_files()
vector_2 = error_finder()
error_vector = vector_2[0]
pass_vector = vector_2[1]
print(str(len(error_vector)) + " Error")
print("Please Check Following :\n")
for i in range(len(error_vector)):
print(str(i + 1) + "-" + er... | mit | Python |
5c3b29966e7ae4a9b2a0719558177db8ab38fa0c | Add daiquiri dependency and bump version | cpoisson/rent-a-bot,cpoisson/rent-a-bot | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
Rent-A-Bot
----------
Rent-A-Bot, your automation resource provider!
Rent-A-Bot is designed to help you lock your resources in your automation infrastructure.
Setup
`````
.. code:: bash
$ pip install rent-a-bot
$ export FLASK_APP=rentabot
$ export RENTABOT_RESOURCE_DESCRIPTOR=... | # -*- coding: utf-8 -*-
"""
Rent-A-Bot
----------
Rent-A-Bot, your automation resource provider!
Rent-A-Bot is designed to help you lock your resources in your automation infrastructure.
Setup
`````
.. code:: bash
$ pip install rent-a-bot
$ export FLASK_APP=rentabot
$ export RENTABOT_RESOURCE_DESCRIPTOR=... | mit | Python |
a72a4e22471b28faeb7ada75e485a65e6ee2dc85 | Bump version number for new release. | thmo/trac-mastertickets,thmo/trac-mastertickets,pombredanne/trac-mastertickets,pombredanne/trac-mastertickets | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
import os
from setuptools import setup
setup(
name = 'TracMasterTickets',
version = '3.0.1',
packages = ['mastertickets'],
package_data = { 'mastertickets': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css' ] },
author = 'Noah Kantrowitz',
a... | #!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
import os
from setuptools import setup
setup(
name = 'TracMasterTickets',
version = '3.0',
packages = ['mastertickets'],
package_data = { 'mastertickets': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css' ] },
author = 'Noah Kantrowitz',
aut... | bsd-3-clause | Python |
c046c95ec24d059afb057952ef610a148b93a4e5 | Add requirements | aspyatkin/themis-attack-py | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import io
import os
about = {}
about_filename = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'themis', 'attack', '__about__.py')
with io.open(about_filename, 'rb') as fp:
exec(fp.read(), about)
setup(
name='themis.atta... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import io
import os
about = {}
about_filename = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'themis', 'attack', '__about__.py')
with io.open(about_filename, 'rb') as fp:
exec(fp.read(), about)
setup(
name='themis.atta... | mit | Python |
46350c9bfa743679ef5cd17aa721172581a3c2ac | update version | openbaton/openbaton-cli,openbaton/openbaton-cli | 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="openbaton-cli",
version="3.2.1b",
author="Open Baton",
author_email="dev@openbaton.org",
description="The Open Baton CLI",
license="Apac... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="openbaton-cli",
version="1.0.2b",
author="Open Baton",
author_email="dev@openbaton.org",
description="The Open Baton CLI",
license="Apac... | apache-2.0 | Python |
324a829f35e16489996ee623af54cc73af402185 | fix conflict | baidubce/bce-sdk-python,baidubce/bce-sdk-python | setup.py | setup.py | # Copyright 2014 Baidu, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, softwa... | # Copyright 2014 Baidu, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, softwa... | apache-2.0 | Python |
845969baa542adb5f0110e81cea913498aa24bb8 | Exclude `v4` from setup | burnash/gspread,nateyoder/gspread | setup.py | setup.py | #!/usr/bin/env python
import os.path
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel')
sys.exit()
def read(filename):
return open(os.path.join(os.path.dirname(_... | #!/usr/bin/env python
import os.path
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel')
sys.exit()
def read(filename):
return open(os.path.join(os.path.dirname(_... | mit | Python |
91d70b0d2aea7e2257d87fcbd36db627454ab54b | replace status string | ilayn/harold | setup.py | setup.py | from setuptools import setup
from os import path
import io
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in file... | from setuptools import setup
from os import path
import io
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in file... | mit | Python |
8b9b25dcc0b906d70dd632898146ffaad0bc57fb | Set dev version and link CLI script | napalm-automation/napalm-logs,napalm-automation/napalm-logs | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
The setup script for napalm-logs
'''
import uuid
from setuptools import setup, find_packages
from pip.req import parse_requirements
__author__ = 'Mircea Ulinic <mircea.ulinic@gmail.com>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
The setup script for napalm-logs
'''
import uuid
from setuptools import setup, find_packages
from pip.req import parse_requirements
__author__ = 'Mircea Ulinic <mircea.ulinic@gmail.com>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs... | apache-2.0 | Python |
d3c59843fad8671b8e262b29b83d4f2a66bfe493 | Fix download_url, ver bump to coordinate | rfarley3/Kibana | setup.py | setup.py | from setuptools import setup
setup(
name='kibana',
packages=['kibana'],
version='0.7',
description='Kibana configuration index (.kibana) command line interface and python API (visualization import/export and mappings refresh)',
author='Ryan Farley',
author_email='rfarley@mitre.org',
url='ht... | from setuptools import setup
setup(
name='kibana',
packages=['kibana'],
version='0.6',
description='Kibana configuration index (.kibana) command line interface and python API (visualization import/export and mappings refresh)',
author='Ryan Farley',
author_email='rfarley@mitre.org',
url='ht... | mit | Python |
d0fa2f79e96a59b74daa4f3d5ba232bf4235f2d9 | Set setup.py metadata to show MIT License instead of BSD | artscoop/django-approval,artscoop/django-approval | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-approval',
version='0.9.20160611',
packages=find_packages('.'),
include_package_data=True,
url='',
author='S Kossouho',
author_email='artscoop93@gmail.com',
d... | #!/usr/bin/env python
# coding: utf-8
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-approval',
version='0.9.20160611',
packages=find_packages('.'),
include_package_data=True,
url='',
author='S Kossouho',
author_email='artscoop93@gmail.com',
d... | mit | Python |
d1c172021a168b54df3d04633e69c6c63d4de6bf | Update Version | appknox/vendor,appknox/vendor,appknox/vendor | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='ak-vendor',
version='0.9.29',
description="Some vendor scripts that we use here at Appknox",
long_description="All the Vendor/helper files the Appknox relies on",
url='https://github.com/appknox/vendor',
author='dhilipsiva',
author_em... | from setuptools import setup, find_packages
setup(
name='ak-vendor',
version='0.9.28',
description="Some vendor scripts that we use here at Appknox",
long_description="All the Vendor/helper files the Appknox relies on",
url='https://github.com/appknox/vendor',
author='dhilipsiva',
author_em... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.