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 |
|---|---|---|---|---|---|---|---|---|
9d8c769b9d0a3c1fa2da62c2a2a221e9a5764571 | bump version for release | motmot/wxglvideo,motmot/wxglvideo,motmot/wxglvideo | setup.py | setup.py | from setuptools import setup, find_packages
import os
kws = {}
if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )):
kws['install_requires'] = ['numpy>=1.0.4',
'motmot.imops>=0.5.2.dev',
'pyglet>=1.0',
'wxPython>=2.8',
... | from setuptools import setup, find_packages
import os
kws = {}
if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )):
kws['install_requires'] = ['numpy>=1.0.4',
'motmot.imops>=0.5.2.dev',
'pyglet>=1.0',
'wxPython>=2.8',
... | bsd-3-clause | Python |
a5587dadbc152ba2a4cf1baa076f544018cac40e | Update setup.py Update Version Number. | trakerr-com/trakerr-python,trakerr-io/trakerr-python,trakerr-io/trakerr-python,trakerr-com/trakerr-python | setup.py | setup.py | # coding: utf-8
"""
Trakerr API
Get your application events and errors to Trakerr via the *Trakerr API*.
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file... | # coding: utf-8
"""
Trakerr API
Get your application events and errors to Trakerr via the *Trakerr API*.
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file... | apache-2.0 | Python |
b8fcd65e0fb4b3d35c09068d6972778918d1d2aa | Bump version to 0.7.0 | ghickman/django-cache-url | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
django-cache-url
~~~~~~~~~~~~~~~~
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``CACHE_URL`` environment variable to configure your Django application.
Usage
-----
Configure your cache in ``settings.py``::
CACHE... | # -*- coding: utf-8 -*-
"""
django-cache-url
~~~~~~~~~~~~~~~~
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``CACHE_URL`` environment variable to configure your Django application.
Usage
-----
Configure your cache in ``settings.py``::
CACHE... | mit | Python |
8f4b1fee00a70b1e22e27b4f5e9a256ff2964cf4 | update setup.py download_url to point to wheel | mathandy/svgpathtools | setup.py | setup.py | from setuptools import setup
import codecs
import os
VERSION = '1.4.2'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
GITHUB = 'https://github.com/mathandy/svgpathtools'
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume U... | from setuptools import setup
import codecs
import os
VERSION = '1.4.2'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
GITHUB = 'https://github.com/mathandy/svgpathtools'
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume U... | mit | Python |
989b110bf0a0681db45036cd1a130634b278d971 | Update setup.py | django-py/django-openid-provider,wojtek-fliposports/django-oidc-provider,juanifioren/django-oidc-provider,wojtek-fliposports/django-oidc-provider,Sjord/django-oidc-provider,nmohoric/django-oidc-provider,bunnyinc/django-oidc-provider,Sjord/django-oidc-provider,ByteInternet/django-oidc-provider,django-py/django-openid-pr... | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.... | mit | Python |
40afc357e0850c71153f8779583fc03f643b2271 | Reorder and group metadata and options together | adamkalis/satnogs-client,adamkalis/satnogs-client | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name='satnogsclient',
version='0.2.5',
url='https://github.com/satnogs/satnogs-client/',
author='SatNOGS team',
author_email='client-dev@satnogs.org',
description='SatNOGS Client',
zip_safe=False,
install_requires=[
'APSchedule... | from setuptools import find_packages, setup
setup(name='satnogsclient',
packages=find_packages(),
version='0.2.5',
author='SatNOGS team',
author_email='client-dev@satnogs.org',
url='https://github.com/satnogs/satnogs-client/',
description='SatNOGS Client',
include_package_dat... | agpl-3.0 | Python |
55b1315aca711869df34dc2d427a1b08053e3ed0 | Bump version to v0.1.1 | ad-m/python-anticaptcha | setup.py | setup.py | from setuptools import setup
from codecs import open
from os import path, system
import sys
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
version = '0.1.1'
if sys.argv[-1] ==... | from setuptools import setup
from codecs import open
from os import path, system
import sys
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
version = '0.1.0'
if sys.argv[-1] ==... | mit | Python |
ec2b867a9203bbcf21f239c9b3d7d6c90b4b6642 | bump to version 0.1.7 | enricobacis/wos | setup.py | setup.py | from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.7',
description='Web of Science client using API v3.',
long_description=long_description... | from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.6',
description='Web of Science client using API v3.',
long_description=long_description... | mit | Python |
f1af14959468ca4f8d18ce3c2e03557036ffb32e | Bump version | ludios/Monoclock,ludios/Monoclock | setup.py | setup.py | #!/usr/bin/env python
import sys
from distutils.core import setup
from distutils.extension import Extension
if sys.platform == 'darwin':
monoclock_libraries = []
else:
monoclock_libraries = ['rt']
setup(
name='Monoclock',
version='14.4.18',
description="Monotonic clock access for Python",
url="https://github.c... | #!/usr/bin/env python
import sys
from distutils.core import setup
from distutils.extension import Extension
if sys.platform == 'darwin':
monoclock_libraries = []
else:
monoclock_libraries = ['rt']
setup(
name='Monoclock',
version='14.4.16',
description="Monotonic clock access for Python",
url="https://github.c... | mit | Python |
4eb298af6131c6747c8053b3ed7ddf9058fc23a6 | Allow setup.py to work when cython is not available | ondergetekende/python-panavatar | setup.py | setup.py | from setuptools import setup, find_packages
try:
from Cython.Build import cythonize
ext_modules = cythonize("wallpaper/*.pyx")
except ImportError:
ext_modules = []
setup(
name='python-wallpaper',
version='0.2.3',
url='https://github.com/ondergetekende/python-wallpaper',
description=(
... | from setuptools import setup, find_packages
from Cython.Build import cythonize
setup(
name='python-wallpaper',
version='0.2.2',
url='https://github.com/ondergetekende/python-wallpaper',
description=(
'python-wallpaper generates pseudorandom abstract wallpapers'
),
author='Koert van der ... | mit | Python |
b65b0ed8d09d4a22164f16ed60f7c5b71d6f54db | Move download_url and bump version | chuckbutler/git-vendor | setup.py | setup.py | import setuptools
from gitvendor.version import Version
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Software Development'
]
setuptools.setup(name='git-vendor',
ver... | import setuptools
from gitvendor.version import Version
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Software Development'
]
setuptools.setup(name='git-vendor',
ver... | mit | Python |
8f30f96ce48f347bc940f3da6f96254dc988817a | Update setup.py to include gl modules. | inclement/vispy,sh4wn/vispy,dchilds7/Deysha-Star-Formation,hronoses/vispy,sh4wn/vispy,jdreaver/vispy,hronoses/vispy,srinathv/vispy,drufat/vispy,RebeccaWPerry/vispy,michaelaye/vispy,kkuunnddaannkk/vispy,drufat/vispy,srinathv/vispy,michaelaye/vispy,sbtlaarzc/vispy,RebeccaWPerry/vispy,sh4wn/vispy,Eric89GXL/vispy,drufat/vi... | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
import sys
# get pygly's version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
execfile('pygly/version.py')
os_x_requires = ['pyglet(>=1.2)', 'pyob... | #!/usr/bin/env python
from distutils.core import setup
import sys
# get pygly's version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
execfile('pygly/version.py')
os_x_requires = ['pyglet(>=1.2)', 'pyob... | bsd-3-clause | Python |
ee22c23462b93c532e7b419bc9665916196a86e8 | Add C language classifier | blink1073/vidsrc,blink1073/vidsrc | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
import numpy
import re
readme = open('README.rst').read()
text = open('tifffile/__init__.py').read()
version = re.search("__version__ = '(.*?)'", text).groups()[0]
setup(
name='tifffile',
version=version,
descrip... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
import numpy
import re
readme = open('README.rst').read()
text = open('tifffile/__init__.py').read()
version = re.search("__version__ = '(.*?)'", text).groups()[0]
setup(
name='tifffile',
version=version,
descrip... | bsd-3-clause | Python |
33ed7983faec74c389902cd6ec6f6586d81e3168 | Fix setup.py on 2.x | SimonSapin/azureblur,SimonSapin/azureblur,SimonSapin/azureblur,SimonSapin/azureblur | setup.py | setup.py | # coding: utf8
import os
import io
from setuptools import setup
setup(
name='azureblur',
version='0.1',
url='https://github.com/SimonSapin/azureblur',
license='MPL2',
maintainer='Simon Sapin',
maintainer_email='simon.sapin@exyr.org',
description='The triple box blur implementation from Fire... | import os
import io
from setuptools import setup
setup(
name='azureblur',
version='0.1',
url='https://github.com/SimonSapin/azureblur',
license='MPL2',
maintainer='Simon Sapin',
maintainer_email='simon.sapin@exyr.org',
description='The triple box blur implementation from Firefox’s moz2d/Azu... | mpl-2.0 | Python |
051c02e4511d1ef2cc1627c125e0f3a35310e6f8 | bump version | hopshadoop/hops-util-py,hopshadoop/hops-util-py | setup.py | setup.py | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.4.9',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.4.8',
author='Robin Andersson',
author_email='robin2@kth.se',
description='A helper library for Hops that facilitates development by hi... | apache-2.0 | Python |
2bd52cd615f2b8e244b0b5db3e21b983456b07f4 | Change version to 0.54 | bukson/steampy | setup.py | setup.py | from setuptools import setup
import sys
if not sys.version_info[0] == 3 and sys.version_info[1] < 5:
sys.exit('Python < 3.5 is not supported')
version = '0.54'
setup(
name='steampy',
packages=['steampy', 'test', 'examples', ],
version=version,
description='A Steam lib for trade automation',
a... | from setuptools import setup
import sys
if not sys.version_info[0] == 3 and sys.version_info[1] < 5:
sys.exit('Python < 3.5 is not supported')
version = '0.53'
setup(
name='steampy',
packages=['steampy', 'test', 'examples', ],
version=version,
description='A Steam lib for trade automation',
a... | mit | Python |
44a68e01b6051ce8f1c30997187e725402c048a4 | Add long_description to setup.py | tree-sitter/py-tree-sitter,tree-sitter/py-tree-sitter,tree-sitter/py-tree-sitter | setup.py | setup.py | """
Py-Tree-sitter
"""
import os
import platform
from setuptools import setup, Extension
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, 'README.md')) as f:
long_description = f.read()
setup(
name = "tree_sitter",
version = "0.0.8",
maintainer = "Max Brunsfeld",
maintainer_... | """
Py-Tree-sitter
"""
import platform
from setuptools import setup, Extension
setup(
name = "tree_sitter",
version = "0.0.8",
maintainer = "Max Brunsfeld",
maintainer_email = "maxbrunsfeld@gmail.com",
author = "Max Brunsfeld",
author_email = "maxbrunsfeld@gmail.com",
url = "https://gith... | mit | Python |
e1411e0dfe5bea90dc52605eb08d4fb98e21edab | Bump version to 0.8.1 | exoscale/cs | setup.py | setup.py | # coding: utf-8
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='cs',
version='0.8.1',
url='https://github.com/exoscale/cs',
license='BSD',
author=u'Bruno Renié',
description=('A simple yet powerful CloudStack API client for '
... | # coding: utf-8
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='cs',
version='0.8.0',
url='https://github.com/exoscale/cs',
license='BSD',
author=u'Bruno Renié',
description=('A simple yet powerful CloudStack API client for '
... | bsd-3-clause | Python |
589c2f6422a3d27d47e1e7f80d9cb5a48f8e5d26 | Bump version instructed by bamboo | pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer | 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()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=django... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=django... | bsd-3-clause | Python |
9cbc694535b81ba9d9d268d1efc5f0862daa93c8 | Switch package URL back. | KevinOrtman/behave,spacediver/behave,benthomasson/behave,mzcity123/behave,connorsml/behave,joshal/behave,charleswhchan/behave,vrutkovs/behave,mzcity123/behave,jenisys/behave,Gimpneek/behave,jenisys/behave,KevinMarkVI/behave-parallel,metaperl/behave,benthomasson/behave,tokunbo/behave-parallel,connorsml/behave,hugeinc/be... | setup.py | setup.py | import os
import os.path
import sys
from setuptools import find_packages, setup
requirements = ['parse>=1.3.3']
major, minor = sys.version_info[:2]
if major == 2 and minor < 7:
requirements.append('argparse')
if major == 2 and minor < 6:
requirements.append('simplejson')
description = ''.join(open('README.rs... | import os
import os.path
import sys
from setuptools import find_packages, setup
requirements = ['parse>=1.3.3']
major, minor = sys.version_info[:2]
if major == 2 and minor < 7:
requirements.append('argparse')
if major == 2 and minor < 6:
requirements.append('simplejson')
description = ''.join(open('README.rs... | bsd-2-clause | Python |
918c5d1649d9b1581a3dc7bd9fe889c4e59d4b9a | Upgrade core | openfisca/country-template,openfisca/country-template | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='1.3.1',
author='OpenFisca Team',
author_email='contact@openfisca.fr',
description=u'OpenFisca tax and benefit system for Country-Template',
keywords='... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='1.3.1',
author='OpenFisca Team',
author_email='contact@openfisca.fr',
description=u'OpenFisca tax and benefit system for Country-Template',
keywords='... | agpl-3.0 | Python |
bfda5f0c6fecdc3558db106e0562364bb0406759 | Bump 0.2 | srounet/Pymem | setup.py | setup.py | import re
import setuptools
def load_dependencies(filename):
install_requires = []
dependency_links = []
for line in open(filename):
line = line.strip()
m = re.match(r'http.+#egg=(?P<pkgname>.+)', line)
if m:
dependency_links.append(line)
install_requires.ap... | import re
import setuptools
def load_dependencies(filename):
install_requires = []
dependency_links = []
for line in open(filename):
line = line.strip()
m = re.match(r'http.+#egg=(?P<pkgname>.+)', line)
if m:
dependency_links.append(line)
install_requires.ap... | mit | Python |
8cedb458180f80304d073a27ed1f9a1560761f3d | Read file using proper encoding | fivejjs/pyuv,saghul/pyuv,fivejjs/pyuv,saghul/pyuv,saghul/pyuv,fivejjs/pyuv | setup.py | setup.py | # coding=utf8
import codecs
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from setup_libuv import libuv_build_ext, libuv_sdist
__version__ = "0.11.2"
setup(name = "pyuv",
version = __version__,
author ... | # coding=utf8
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from setup_libuv import libuv_build_ext, libuv_sdist
__version__ = "0.11.2"
setup(name = "pyuv",
version = __version__,
author = "Saúl Ibarra ... | mit | Python |
284e4268211d868d2940c504b46e421cac31dec4 | Bump version | pinax/django-waitinglist,pinax/django-waitinglist | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "django-waitinglist",
version = "1.0b4",
author = "Brian Rosner",
author_email = "brosner@gmail.com",
description = "a Django waiting list app for running a private beta with cohorts support",
long_description = open("README.rst").read(... | from setuptools import setup, find_packages
setup(
name = "django-waitinglist",
version = "1.0b3",
author = "Brian Rosner",
author_email = "brosner@gmail.com",
description = "a Django waiting list app for running a private beta with cohorts support",
long_description = open("README.rst").read(... | mit | Python |
5ea4bc2f30477266ab73d2ef625b650dd048f87c | patch from Diane Trout, ref https://github.com/python-caldav/caldav/issues/33, move nose dependency to test_requires | python-caldav/caldav | setup.py | setup.py | #!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.0'
if __name__ == '__main__':
setup(
name='caldav',
version=version,
description="CalDAV (RFC4791) client library",
classifiers=["Development Status :: 4 - Beta",
... | #!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.0'
if __name__ == '__main__':
setup(
name='caldav',
version=version,
description="CalDAV (RFC4791) client library",
classifiers=["Development Status :: 4 - Beta",
... | apache-2.0 | Python |
654c93a3aa38c9344624f94922a4c1a928f201d7 | Fix merge conflict with package_data. | awslabs/aws-shell | setup.py | setup.py | #!/usr/bin/env python
import re
import ast
from setuptools import setup, find_packages
requires = [
'awscli>=1.8.9,<2.0.0',
'prompt-toolkit==0.52',
'boto3>=1.2.1',
'configobj>=5.0.6',
]
with open('awsshell/__init__.py', 'r') as f:
version = str(
ast.literal_eval(
re.search(
... | #!/usr/bin/env python
import re
import ast
from setuptools import setup, find_packages
requires = [
'awscli>=1.8.9,<2.0.0',
'prompt-toolkit==0.52',
'boto3>=1.2.1',
'configobj>=5.0.6',
]
with open('awsshell/__init__.py', 'r') as f:
version = str(
ast.literal_eval(
re.search(
... | apache-2.0 | Python |
f813467253be80ee9f3ac9d1d61bf39124932537 | Add long_description | nolze/msoffcrypto-tool,nolze/ms-offcrypto-tool,nolze/ms-offcrypto-tool,nolze/msoffcrypto-tool | setup.py | setup.py | from setuptools import setup
setup(
name='msoffcrypto-tool',
version='4.0.0',
description='A Python tool and library for decrypting MS Office files with passwords or other secrets',
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
url='https://githu... | from setuptools import setup
setup(
name='msoffcrypto-tool',
version='4.0.0',
description='A Python tool and library for decrypting MS Office files with passwords or other secrets',
url='https://github.com/nolze/msoffcrypto-tool',
author='nolze',
author_email='nolze@archlinux.us',
license='... | mit | Python |
aaaf1657694f8aab0f5c58a74c72a340de08c1f6 | change package specification | shuttle1987/tail,shuttle1987/tail | setup.py | setup.py | from setuptools import setup
setup(
name='python-tail',
description='Python implementation of UNIX tail command',
version='0.1',
packages=['tail'],
install_requires=[
'Click',
],
)
| from setuptools import setup
setup(
name='python-tail',
description='Python implementation of UNIX tail command',
version='0.1',
packages=find_packages(),
install_requires=[
'Click',
],
)
| mit | Python |
bcf8ffbf0119d9c2e3522895a6af6d47760dc6e9 | Remove utilities as a direct dep | 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 |
d18abfddd3bec084af70467c54ed37633c774aed | Add missing deps | protream/iquery | setup.py | setup.py | #!/usr/bin/env python3
from codecs import open
from tickets import __version__
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(
name='tickets',
version=__version__,
description='Train tickets query via command line.',
long_description=read(... | #!/usr/bin/env python3
from codecs import open
from tickets import __version__
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(
name='tickets',
version=__version__,
description='Train tickets query via command line.',
long_description=read(... | mit | Python |
901b608e9ea9e03ab3755fb746bfcd4b2bebf399 | increment version | Ichindar/dsts,Ichindar/dsts,Ichindar/dsts | setup.py | setup.py | #from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'... | #from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'... | bsd-3-clause | Python |
ab99c1a57a7b87c2a920b33348bac228dbd632bd | update version | usc-isi-i2/etk,usc-isi-i2/etk,usc-isi-i2/etk | setup.py | setup.py | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
install_requires = list()
for line in f:
re = line.strip()
if re:
install_requires.append(re)
setuptools.setup(
name="etk",
version="2.2.6",
a... | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
install_requires = list()
for line in f:
re = line.strip()
if re:
install_requires.append(re)
setuptools.setup(
name="etk",
version="2.2.5",
a... | mit | Python |
b141e55b4b302348a599a3ea568e6409dcc27f5a | Improve setup.py | chronossc/django-ldapdb,mejiaa/django-ldapdb,jlaine/django-ldapdb,django-ldapdb/django-ldapdb,randuhmm/django-ldapdb | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="django-ldapdb",
version="0.1.0",
description=u"An LDAP database backend for Django",
long_description=open('README.md').read(),
#license = ldapdb.__license__,
url="https://github.com/jlaine/django-ldapdb",
author="Jeremy Laine... | #!/usr/bin/env python
from distutils.core import setup
setup(
name = "django-ldapdb",
version = "0.1.0",
#license = ldapdb.__license__,
url = "http://opensource.bolloretelecom.eu/projects/django-ldapdb/",
author = "Jeremy Laine",
author_email = "jeremy.laine@bolloretelecom.eu",
packages = ... | bsd-2-clause | Python |
a8d94e131bcc2ebcbf7d9a92f84c81de7e59d784 | switch to setuptools | pholanda/pymonetdb,pholanda/pymonetdb | setup.py | setup.py | #!/usr/bin/env python
# The contents of this file are subject to the MonetDB Public License
# Version 1.1 (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.monetdb.org/Legal/MonetDBLicense
#
# Software distributed under the License ... | #!/usr/bin/env python
# The contents of this file are subject to the MonetDB Public License
# Version 1.1 (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.monetdb.org/Legal/MonetDBLicense
#
# Software distributed under the License ... | mpl-2.0 | Python |
79421c1c0b1480da70c426f782585fa66416eed0 | add setuptools_scm to setup_requires | rauc/rauc-hawkbit | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rauc-hawkbit',
description='hawkBit client for RAUC',
author='Bastian Stender and Enrico Joerns',
author_email='entwicklung@pengutronix.de',
license='LGPL-2.1',
use_scm_version=Tr... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rauc-hawkbit',
description='hawkBit client for RAUC',
author='Bastian Stender and Enrico Joerns',
author_email='entwicklung@pengutronix.de',
license='LGPL-2.1',
use_scm_version=Tr... | lgpl-2.1 | Python |
684603543f1e056693acf0288b71232395b3a8f5 | Bump package version to 0.4.9 | edx/XBlock,mitodl/XBlock,mitodl/XBlock,edx/XBlock | setup.py | setup.py | """Set up for XBlock"""
from setuptools import setup
setup(
name='XBlock',
version='0.4.9',
description='XBlock Core Library',
packages=[
'xblock',
'xblock.django',
'xblock.reference',
'xblock.test',
'xblock.test.django',
],
install_requires=[
'lx... | """Set up for XBlock"""
from setuptools import setup
setup(
name='XBlock',
version='0.4.8',
description='XBlock Core Library',
packages=[
'xblock',
'xblock.django',
'xblock.reference',
'xblock.test',
'xblock.test.django',
],
install_requires=[
'lx... | apache-2.0 | Python |
17adf1d0e0947637511f5babbed704ed77bec1cd | remove unneded dependency link | GreyRook/madmin,GreyRook/madmin,GreyRook/madmin | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='madmin',
version='0.0.1',
install_requires=['rueckenwind==0.2.0', 'motor==0.1.1', 'PyMongo==2.5.0'],
packages=find_packages(),
include_package_data=True,
)
| from setuptools import setup, find_packages
setup(
name='madmin',
version='0.0.1',
install_requires=['rueckenwind==0.2.0', 'motor==0.1.1', 'PyMongo==2.5.0'],
packages=find_packages(),
include_package_data=True,
dependency_links=['git+ssh://git@git.dev.rook/lib/rueckenwind.git@master#egg=ruecken... | apache-2.0 | Python |
f9fa797ddf5d5539402d3aa07340c39e7bccc152 | Create a pypi library | ArthurFortes/CaseRecommender | setup.py | setup.py | from distutils.core import setup
__author__ = "Arthur Fortes"
setup(
name='CaseRecommender',
packages=['framework'],
version='0.0.3',
description='A recommender systems framework for python',
author='Arthur Fortes da Costa',
author_email='fortes.arthur@gmail.com',
url='https://github.com/A... | from distutils.core import setup
__author__ = "Arthur Fortes"
setup(
name='CaseRecommender',
packages=['CaseRecommender'],
version='0.0.3',
description='A recommender systems framework for python',
author='Arthur Fortes da Costa',
author_email='fortes.arthur@gmail.com',
url='https://github... | mit | Python |
44694af0d60a1daee6bc1dea95b75ffe4be1d7f5 | Bump version to 0.1.14 | mwilliamson/stickytape | setup.py | setup.py | #!/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='stickytape',
version='0.1.14',
description='Convert Python packages into a single script',
long_description=read("README.rst"),
author=... | #!/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='stickytape',
version='0.1.13',
description='Convert Python packages into a single script',
long_description=read("README.rst"),
author=... | bsd-2-clause | Python |
bb1c07877249f4d0ccaeb06b96e7e1ae3e622473 | Fix URL | tldr-pages/tldr-python-client,Anmol-Singh-Jaggi/tldr-python-client | setup.py | setup.py | import sys
from setuptools import setup
if sys.argv[-1] in ('sdist', 'bdist_wheel'):
setup_requires = ['setuptools-markdown']
else:
setup_requires = []
setup(
name='tldr',
version="0.1.3.1",
author='Felix Yan',
author_email='felixonmars@gmail.com',
url='https://github.com/tldr-pages/tldr-p... | import sys
from setuptools import setup
if sys.argv[-1] in ('sdist', 'bdist_wheel'):
setup_requires = ['setuptools-markdown']
else:
setup_requires = []
setup(
name='tldr',
version="0.1.3.1",
author='Felix Yan',
author_email='felixonmars@gmail.com',
url='https://github.com/felixonmars/tldr-... | mit | Python |
d3537cf1ab18cf813c5bfd957e51ca6699e3e0a3 | Update eth-utils version requirement | pipermerriam/ethereum-abi-utils | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
"pytest==3.3.2",
"pytest-xdist",
"tox>=2.9.1,<3",
],
'lint': [
"flake8==3.4.1",
"isort>=4.2.15,<5",
],
'doc': [
"Sphinx... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
"pytest==3.3.2",
"pytest-xdist",
"tox>=2.9.1,<3",
],
'lint': [
"flake8==3.4.1",
"isort>=4.2.15,<5",
],
'doc': [
"Sphinx... | mit | Python |
fe46c864b625519f90f23502da520a7fcaada972 | Bump version | voltgrid/django-webhooks | setup.py | setup.py | from setuptools import setup, find_packages
VERSION = '0.0.4'
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("Warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='django-webh... | from setuptools import setup, find_packages
VERSION = '0.0.3'
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("Warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='django-webh... | bsd-3-clause | Python |
c7994b2e8b8dfdd5ad60850ed56afd7e1c69646a | fix typo in setup.py | paulvangentcom/heartrate_analysis_python | setup.py | setup.py | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="heartpy",
version="1.2.3",
author="Paul van Gent",
author_email="P.vanGent@tudelft.nl",
description="Heart Rate Analysis Toolkit",
long_description=long_description,
long_descripti... | import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="heartpy",
version="1.2.3",
author="Paul van Gent",
author_email="P.vanGent@tudelft.nl",
description="Heart Rate Analysis Toolkit",
long_description=long_description,
long_descripti... | mit | Python |
c1d111ab00cdc916412cc2985ef4bbc184166f20 | Change contact field and author field for PyPI. | onecodex/onecodex,refgenomics/onecodex,refgenomics/onecodex,onecodex/onecodex | setup.py | setup.py | """
``onecodex``
------------
``onecodex`` provides a command line client for interaction with the
One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup
setup(
name='onecodex',
version='0.0.1',
url='https://www... | """
``onecodex``
------------
``onecodex`` provides a command line client for interaction with the
One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup
setup(
name='onecodex',
version='0.0.1',
url='https://www... | mit | Python |
c3fe1e939708dad0628cae57a4249b5ab2a44dd7 | Bump to 0.7.0, beta. (#105) | googleapis/gapic-generator-python,googleapis/gapic-generator-python | setup.py | setup.py | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
c3294f7ec5e1d91196d53ccc84c38511941ff7c7 | update version | AfricasTalkingLtd/africastalking-python,AfricasTalkingLtd/africastalking-python,AfricasTalkingLtd/africastalking-python | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import sys
import os
version = '1.2.3'
long_description = open('README.md').read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='africastalking',
version=version,
packages=['africastalking'],
... | #!/usr/bin/env python
from setuptools import setup
import sys
import os
version = '1.2.2'
long_description = open('README.md').read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='africastalking',
version=version,
packages=['africastalking'],
... | mit | Python |
8243a52b7db8962ae381cc1b565c5c519f32bb9d | Bump version | lightning-viz/lightning-python,garretstuber/lightning-python,peterkshultz/lightning-python,peterkshultz/lightning-python,garretstuber/lightning-python,lightning-viz/lightning-python,peterkshultz/lightning-python,garretstuber/lightning-python | setup.py | setup.py | #!/usr/bin/env python
'''The setup and build script for the lightning-python library.'''
__author__ = 'github@mathisonian.com'
__version__ = '1.0.8'
# The base package metadata to be used by both distutils and setuptools
METADATA = dict(
name = "lightning-python",
version = __version__,
packages = ['lightning'... | #!/usr/bin/env python
'''The setup and build script for the lightning-python library.'''
__author__ = 'github@mathisonian.com'
__version__ = '1.0.7'
# The base package metadata to be used by both distutils and setuptools
METADATA = dict(
name = "lightning-python",
version = __version__,
packages = ['lightning'... | mit | Python |
66a148f9240133ead3b74a50fb0b6d43f1903de7 | Update to next dev version | SophieIPP/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,adrienpacifico/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,antoinearnoud/openfisca-france,antoinearnoud/openfisca-france | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <contact@openfisca.fr>
#
# Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redist... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <contact@openfisca.fr>
#
# Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redist... | agpl-3.0 | Python |
afdbc1a8200e47be78f81947349372e1a846b1eb | update requirements | legnaleurc/wcpan.worker | setup.py | setup.py | import os.path as op
from setuptools import setup
with open(op.join(op.dirname(__file__), './README.rst')) as fin:
long_description = fin.read()
setup(
name='wcpan.worker',
version='3.0.1',
description='An asynchronous task queue with priority support.',
long_description=long_des... | import os.path as op
from setuptools import setup
with open(op.join(op.dirname(__file__), './README.rst')) as fin:
long_description = fin.read()
setup(
name='wcpan.worker',
version='3.0.1',
description='An asynchronous task queue with priority support.',
long_description=long_des... | mit | Python |
493d73bea7d7a6b1b3c5be11fe47f3aa39fa4a49 | Upgrade version to 1.0.0 | hubo1016/vlcp,hubo1016/vlcp,hubo1016/vlcp,hubo1016/vlcp | setup.py | setup.py | #!/usr/bin/env python
'''
Created on 2015/11/17
:author: hubo
'''
try:
import ez_setup
ez_setup.use_setuptools()
except:
pass
from setuptools import setup, find_packages
VERSION = '1.0.0'
setup(name='vlcp',
version=VERSION,
description='Full stack framework for SDN Controller, support Openflo... | #!/usr/bin/env python
'''
Created on 2015/11/17
:author: hubo
'''
try:
import ez_setup
ez_setup.use_setuptools()
except:
pass
from setuptools import setup, find_packages
VERSION = '0.11.1'
setup(name='vlcp',
version=VERSION,
description='Full stack framework for SDN Controller, support Openfl... | apache-2.0 | Python |
99f82543bd97c54ee0850a154e1cb97957c33ea9 | Swap pycrypto for pycryptodome | kylemacfarlane/django-cb-storage-s3 | 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()
install_requires = [
'setuptools',
'pycryptodome'
]
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
setup(... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'setuptools',
'pycrypto'
]
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
setup(
... | bsd-3-clause | Python |
197dca6e5c81dc1437f65af192e2b590a575bf53 | Bump to next dev 0.1.1.dev1 | postlund/pyatv,postlund/pyatv | setup.py | setup.py | #!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='pyatv',
version='0.1.1.dev1',
license='MIT',
url='https://github.com/postlund/pyatv',
author='Pierre Ståhl',
author_email='pierre.staahl@gmail.com',
description='Library for controlling an App... | #!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='pyatv',
version='0.1.0',
license='MIT',
url='https://github.com/postlund/pyatv',
author='Pierre Ståhl',
author_email='pierre.staahl@gmail.com',
description='Library for controlling an Apple TV... | mit | Python |
1c2881332fb12389b161b9bf7c79248f36dc9b07 | Bump version | thombashi/pathvalidate | setup.py | setup.py | from __future__ import with_statement
import sys
import os.path
import setuptools
needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open... | from __future__ import with_statement
import sys
import os.path
import setuptools
needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open... | mit | Python |
79c4d0f19ffb569919b1d210674884a22fd80c0b | Fix up setup.py | ping/instagram_private_api | setup.py | setup.py | from os import path
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import unittest.mock
has_mock = True
except ImportError:
has_mock = False
__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.6.0'
packages = [
'instagram_privat... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import unittest.mock
has_mock = True
except ImportError:
has_mock = False
__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.6.0'
packages = [
'instagram_private_api',
'instagram_private... | mit | Python |
51e4a9eb5708b7f35784f4a4a704f72ac5e00e6f | remove package stuff | abonaca/gary,abonaca/gary,abonaca/gary | setup.py | setup.py | # coding: utf-8
from __future__ import division, print_function
__author__ = "adrn <adrn@astro.columbia.edu>"
# Standard library
import os, sys
from distutils.core import setup
from distutils.extension import Extension
# Third-party
import numpy as np
from Cython.Distutils import build_ext
# Get numpy path
numpy_b... | # coding: utf-8
from __future__ import division, print_function
__author__ = "adrn <adrn@astro.columbia.edu>"
# Standard library
import os, sys
from distutils.core import setup
from distutils.extension import Extension
# Third-party
import numpy as np
from Cython.Distutils import build_ext
# Get numpy path
numpy_b... | mit | Python |
ccd45d35b05c4f3e2a134d285e485523c08298cf | Add misc package to setup.py | hips/autograd,HIPS/autograd,hips/autograd,HIPS/autograd | setup.py | setup.py | from setuptools import setup
setup(
name='autograd',
version='1.1.11',
description='Efficiently computes derivatives of numpy code.',
author='Dougal Maclaurin and David Duvenaud and Matthew Johnson',
author_email="maclaurin@physics.harvard.edu, duvenaud@cs.toronto.edu, mattjj@csail.mit.edu",
pa... | from setuptools import setup
setup(
name='autograd',
version='1.1.11',
description='Efficiently computes derivatives of numpy code.',
author='Dougal Maclaurin and David Duvenaud and Matthew Johnson',
author_email="maclaurin@physics.harvard.edu, duvenaud@cs.toronto.edu, mattjj@csail.mit.edu",
pa... | mit | Python |
a30ed634f641c3c62dc0d4501ed4cb852c9930d0 | Update TreeTime dep link now that the py3 branch is merged | nextstrain/augur,blab/nextstrain-augur,nextstrain/augur,nextstrain/augur | setup.py | setup.py | import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "trevor@bedford.io, richard.neher@unibas.ch",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywo... | import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "trevor@bedford.io, richard.neher@unibas.ch",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywo... | agpl-3.0 | Python |
0ad4eadaeca3e442b85bb29d530b791e06c6c07f | Bump version number | nocarryr/AWS-Identity-Manager | setup.py | setup.py | from setuptools import setup
setup(
name = "aws-identity-manager",
version = "0.0.2",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Manage credentials for multiple AWS accounts"),
url='https://github.com/nocarryr/AWS-Identity-Manager',
license='MIT',
... | from setuptools import setup
setup(
name = "aws-identity-manager",
version = "0.0.1",
author = "Matthew Reid",
author_email = "matt@nomadic-recording.com",
description = ("Manage credentials for multiple AWS accounts"),
url='https://github.com/nocarryr/AWS-Identity-Manager',
license='MIT',
... | mit | Python |
776663716437e3d6e255046a04bd301c697a020f | Drop declared support for Python 3.6 - breaks on upload to PyPI | jaraco/keyring | setup.py | setup.py | #!/usr/bin/env python
# Generated by jaraco.develop 2.27.1
# https://pypi.python.org/pypi/jaraco.develop
import io
import sys
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pyte... | #!/usr/bin/env python
# Generated by jaraco.develop 2.27.1
# https://pypi.python.org/pypi/jaraco.develop
import io
import sys
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pyte... | mit | Python |
e47d69382863438b9506f2b153fec2c38a7707dd | fix setup.py | mathause/netCDF4p | setup.py | setup.py | from setuptools import setup
setup(name='netCDF4p',
version='0.9',
description='Addition to netCDF4 to select by dimension',
url='',
author='Mathias Hauser',
author_email='mathias.hauser@env.ethz.ch',
license='MIT',
packages=['netCDF4p'],
install_requires=['collections',... | from setuptools import setup
setup(name='netCDF4p',
version='0.9',
description='Addition to netCDF4 to select by dimension',
url='',
author='Mathias Hauser',
author_email='mathias.hauser@env.ethz.ch',
license='MIT',
packages=['netCDF4p'],
install_requires=[
<<<<<<< HEAD
=======
... | mit | Python |
fb762b21947c5c3116c6deac394e2e47fbfc880f | Bump version to 0.5.0 | mwilliamson/funk | setup.py | setup.py | import os
from setuptools import setup
def read(path):
with open(os.path.join(os.path.dirname(__file__), path)) as fileobj:
return fileobj.read()
setup(
name='Funk',
version='0.5.0',
description='A mocking framework for Python',
long_description=read("README.rst"),
author='Michael Wi... | import os
from setuptools import setup
def read(path):
with open(os.path.join(os.path.dirname(__file__), path)) as fileobj:
return fileobj.read()
setup(
name='Funk',
version='0.4.0',
description='A mocking framework for Python',
long_description=read("README.rst"),
author='Michael Wi... | bsd-2-clause | Python |
2842771b78f8452de5515dccf879eb63060ec620 | comment README | Akagi201/xor-string,Akagi201/xor_string | setup.py | setup.py |
# import os
from setuptools import setup
# here = os.path.abspath(os.path.dirname(__file__))
# README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor-string',
packages=['xor-string',],
version='0.1.2',
url='https://github.com/Akagi201/xor-string',
... |
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor-string',
packages=['xor-string',],
version='0.1.2',
url='https://github.com/Akagi201/xor-string',
downl... | mit | Python |
fc245f061bc185d465218a9af36f926045a6ca3b | Bump version | SUNET/eduid-dashboard-amp | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
version = '0.3.3b1'
requires = [
'pymongo >= 2.8,<3', # CI fails to build unless a version (sa... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
version = '0.3.3b0'
requires = [
'pymongo >= 2.8,<3', # CI fails to build unless a version (sa... | bsd-3-clause | Python |
8e3c0d3794a65e10000da68495ea84771f663016 | Improve Python package information. | KitwareMedical/MorphologicalContourInterpolation,KitwareMedical/MorphologicalContourInterpolation,KitwareMedical/ITKMorphologicalContourInterpolation,dzenanz/MorphologicalContourInterpolation,KitwareMedical/ITKMorphologicalContourInterpolation,dzenanz/MorphologicalContourInterpolation | setup.py | setup.py | # -*- coding: utf-8 -*-
from __future__ import print_function
from os import sys
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip instal... | # -*- coding: utf-8 -*-
from __future__ import print_function
from os import sys
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip instal... | apache-2.0 | Python |
efadb71c0598f50d2f5966a0e0eeef33779d72fc | Bump version to 0.2.0-alpha5 (#36) | Patreon/cartographer,Patreon/cartographer | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='cartographer',
version='0.2.0-alpha5',
description='Python library for using JSON API, especially with Flask.',
url='http://github.com/Patreon/cartographer',
author='Patreon',
author_email='david@patreon.com',
license='Apache 2... | from setuptools import setup, find_packages
setup(name='cartographer',
version='0.2.0-alpha4',
description='Python library for using JSON API, especially with Flask.',
url='http://github.com/Patreon/cartographer',
author='Patreon',
author_email='david@patreon.com',
license='Apache 2... | apache-2.0 | Python |
5ba4c4b572d0ef569e536c1153dab4af40be8725 | add conf to datafiles in setup | internetfett/newrelic-nfsmond,internetfett/newrelic-nfsmond | setup.py | setup.py | import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
exec(open('src/__init__.py').read())
setup(
name='newrelicnfsmond',
version=__version__,
license='MIT License',
description='NFS disk monitoring plugin for New Relic',
author='Co... | import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
exec(open('src/__init__.py').read())
setup(
name='newrelicnfsmond',
version=__version__,
license='MIT License',
description='NFS disk monitoring plugin for New Relic',
author='Co... | mit | Python |
5a4c9ec51061241ce091b1dd4759c0817b1db9ef | bump version to 0.1.10 | nimbis/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
from uuid import uuid1
# parse requirements
reqs = parse_requirements("requirements/common.txt", session=uuid1())
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.10',
descript... | #!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
from uuid import uuid1
# parse requirements
reqs = parse_requirements("requirements/common.txt", session=uuid1())
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.9',
descripti... | bsd-3-clause | Python |
2dd096cfab529f33d6d132795c7706d2bed92f68 | bump version to v0.1.2 | Telecominfraproject/gnpy | setup.py | setup.py | #!/usr/bin/python3
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gnpy',
version='0.1.2',
description='route ... | #!/usr/bin/python3
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gnpy',
version='0.1.1',
description='route ... | bsd-3-clause | Python |
1f793daf03f821f993b0920256652185f0445a78 | Add more metadata info to the setup.py file. | wglass/rotterdam | setup.py | setup.py | from setuptools import setup
setup(
name="rotterdam",
version="0.0.7",
description=(
"Simple distributed job queue via redis."
),
author="William Glass",
author_email="william.glass@gmail.com",
url="http://github.com/wglass/rotterdam",
packages=["rotterdam"],
include_package... | from setuptools import setup
setup(
name="rotterdam",
version="0.0.6",
packages=["rotterdam"],
include_package_data=True,
package_data={
'rotterdam': ['lua/*.lua']
},
scripts=[
"bin/rotterdam",
"bin/rotterdamctl"
],
install_requires=[
"cython==0.19.1"... | mit | Python |
47c347e8277c63d8e157d44084604408fb8cdcc7 | Comment on git submodules | rgbkrk/bookstore | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
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 upload')
sys.exit()
requires = ['pyrax>=1.4.7',
'ipython==1.0.0a',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
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 upload')
sys.exit()
requires = ['pyrax>=1.4.7',
'ipython==1.0.0a',
... | apache-2.0 | Python |
023c0f17652037c80c9513a8ab522373d7ccae9d | Add download_url to setup.py | goldmann/docker-scripts,jpopelka/docker-scripts,lichia/docker-scripts,TomasTomecek/docker-scripts,goldmann/docker-squash | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
version = "0.3.1"
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-scripts",
version = version,
packages = find_packages(),
url = 'https://github.com/goldmann/docker-scripts',
download... | #!/usr/bin/python
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-scripts",
version = "0.3.1",
packages = find_packages(),
url='https://github.com/goldmann/docker-scripts',
author='Marek Goldmann',
... | mit | Python |
b90ff6c5c1dcc36e9da1255c753e0ffbec73f15a | Update homepage. | djc/fixlib | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 KenTyde
# All rights reserved.
#
# This software is licensed as described in the file LICENSE,
# which you should have received as part of this distribution.
from setuptools import setup
import os
desc = open(os.path.join(os.path.dirname(__file__), ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 KenTyde
# All rights reserved.
#
# This software is licensed as described in the file LICENSE,
# which you should have received as part of this distribution.
from setuptools import setup
import os
desc = open(os.path.join(os.path.dirname(__file__), ... | bsd-3-clause | Python |
cf9eaa922dfd0b853090d24a2a7571f0301925a1 | bump version number | kindy61/mako,bdoms/mako | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2.1'
setup(name='Mako',
version=version,
description="A super-fast templating language that borrows the \
best ideas from the existing templating languages.",
long_description="""\
Mako is a template library written in Python. It provides a f... | from setuptools import setup, find_packages
version = '0.2.0'
setup(name='Mako',
version=version,
description="A super-fast templating language that borrows the \
best ideas from the existing templating languages.",
long_description="""\
Mako is a template library written in Python. It provides a f... | mit | Python |
a013ab75809a630b88ee996486098b36977553f1 | Bump version to 0.1.18. | hq6/smux | setup.py | setup.py | from setuptools import setup
with open('README.md') as f:
long_description = f.read()
short_description = "Simple tmux launcher that will take less than 2 minutes to learn."
setup(
name="smux.py",
version='0.1.18',
author="Henry Qin",
author_email="root@hq6.me",
description=short_description,
long_d... | from setuptools import setup
with open('README.md') as f:
long_description = f.read()
short_description = "Simple tmux launcher that will take less than 2 minutes to learn."
setup(
name="smux.py",
version='0.1.17',
author="Henry Qin",
author_email="root@hq6.me",
description=short_description,
long_d... | mit | Python |
5d53bd04783edc49558262d24b3c0c5a5b5b8e76 | Bump version to 1.5 | seemethere/retry.it | setup.py | setup.py | from setuptools import setup
__version__ = '1.5'
__author__ = 'Eli Uriegas'
retry_classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',... | from setuptools import setup
__version__ = '1.4'
__author__ = 'Eli Uriegas'
retry_classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',... | mit | Python |
d61733eed29923ae1f7db6e38bba181e3581051f | Bump version number | mwilliamson/whack | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='whack',
version='0.3.0',
description='Utility for installing binaries from source with a single command',
long_description=read("README... | #!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='whack',
version='0.2.5',
description='Utility for installing binaries from source with a single command',
long_description=read("README... | bsd-2-clause | Python |
0fdd77907ef09fbdae6647b177c9ba4cf8c3de9c | Bump version to 0.9.1 | thombashi/pytablereader,thombashi/pytablereader,thombashi/pytablereader | setup.py | setup.py | #!/usr/bin/env python
# encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
import os.path
import sys
import setuptools
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with... | #!/usr/bin/env python
# encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
import os.path
import sys
import setuptools
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with... | mit | Python |
39a42a6b013ecb57457559810e6a48c9e76fe474 | update to setup.py | ThaWeatherman/trackopy | setup.py | setup.py | """
"""
from setuptools import setup
import trackopy
with open('README.md') as r:
readme = r.read()
setup(
name=trackopy.__title__,
version=trackopy.__version__,
url='https://github.com/ThaWeatherman/trackopy',
license='MIT',
author='Sean Beck',
author_email='seanmckaybeck@gmail.com',
... | """
"""
from setuptools import setup
import trackopy
with open('README.md') as r:
readme = r.read()
setup(
name=trackopy.__title__,
version=trackopy.__version__,
url='https://github.com/ThaWeatherman/trackopy',
license='MIT',
author='Sean Beck',
author_email='seanmckaybeck@gmail.com',
... | mit | Python |
b4b968af6bbd6c94e23ece02dbe33c1ee9475868 | Fix setuptools v38.0+ compatbility | RazerM/bucketcache | setup.py | setup.py | import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
INIT_FILE = 'bucketcache/__init__.py'
init_data = open(INIT_FILE).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_data))
AUTHOR_EMAIL = metadata['author']
VERSION = metadata['... | import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
INIT_FILE = 'bucketcache/__init__.py'
init_data = open(INIT_FILE).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_data))
AUTHOR_EMAIL = metadata['author']
VERSION = metadata['... | mit | Python |
0f18b3ff63bf6183247e7bce25160547f8cfc21d | Change PyPI trove classifier for license terms. | devinmcgloin/advent,devinmcgloin/advent | setup.py | setup.py | import os
import sys
from distutils.core import setup
if sys.version_info < (3,):
print('\nSorry, but Adventure can only be installed under Python 3.\n')
sys.exit(1)
README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt')
with open(README_PATH, encoding="utf-8") as f:
README_TEXT ... | import os
import sys
from distutils.core import setup
if sys.version_info < (3,):
print('\nSorry, but Adventure can only be installed under Python 3.\n')
sys.exit(1)
README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt')
with open(README_PATH, encoding="utf-8") as f:
README_TEXT ... | apache-2.0 | Python |
0b77331cba0b23b9d8498860dee5fdd3fe8baf93 | Bump version | thombashi/pytablewriter | setup.py | setup.py | 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(os.path.join("docs", "pages", "introdu... | 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(os.path.join("docs", "pages", "introdu... | mit | Python |
05a414230aad6bd6d7eefb82c5900228436ddd99 | bump mpl version | wright-group/WrightTools,wright-group/WrightTools | setup.py | setup.py | #! /usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
with open(os.path.join(here, fname)) as f:
return f.read()
extra_files = {
"WrightTools": [
"datasets",
"datasets/*",
"datasets/... | #! /usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
with open(os.path.join(here, fname)) as f:
return f.read()
extra_files = {
"WrightTools": [
"datasets",
"datasets/*",
"datasets/... | mit | Python |
8be643093a47e15e8e21aff2358bd2382363660a | Adjust setup.py dependencies | ZeroCater/zc_common,ZeroCater/zc_common | setup.py | setup.py | import os
from setuptools import setup
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='zc_common',
... | import os
from setuptools import setup
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='zc_common',
... | mit | Python |
3c952110aef7f94766fe69e6ee2cb6ff3a0be15a | Bump version to 2.0.34 | 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.34'
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.33'
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 |
6263930e5870c938b431967869e8b45f2c343d1b | bump version to 2.3.0 in setup | EBIvariation/eva-cttv-pipeline | setup.py | setup.py | import os
import os.path
from setuptools import setup, find_packages
def get_package_data():
package_data = []
for root, dirnames, filenames in os.walk('./eva_cttv_pipeline/evidence_string_generation/resources'):
root = root.replace("./eva_cttv_pipeline/", "")
for filename in filenames:
... | import os
import os.path
from setuptools import setup, find_packages
def get_package_data():
package_data = []
for root, dirnames, filenames in os.walk('./eva_cttv_pipeline/evidence_string_generation/resources'):
root = root.replace("./eva_cttv_pipeline/", "")
for filename in filenames:
... | apache-2.0 | Python |
782bfa8f716d60c402b944d381dd40fa23486544 | Bump pypi version | massard-t/etnawrapper | setup.py | setup.py | from distutils.core import setup
__version__ = '0.4'
setup(
name='etnawrapper',
packages=['etnawrapper'],
version=__version__,
description='API wrapper for ETNA\' APIs',
author='Theo Massard',
author_email='massar_t@etna-alternance.net',
url='https://github.com/massard-t/etnawrapper',
... | from distutils.core import setup
__version__ = '0.3'
setup(
name='etnawrapper',
packages=['etnawrapper'],
version=__version__,
description='API wrapper for ETNA\' APIs',
author='Theo Massard',
author_email='massar_t@etna-alternance.net',
url='https://github.com/massard-t/etnawrapper',
... | mit | Python |
8fd65ff32118c453eb655bd88140f4a3fd81a4b0 | fix py.typed path | ahawker/ulid | setup.py | setup.py | """
ulid
~~~~
Universally Unique Lexicographically Sortable Identifier
:copyright: (c) 2017 Andrew Hawker.
:license: Apache 2.0, see LICENSE for more details.
"""
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version_regex =... | """
ulid
~~~~
Universally Unique Lexicographically Sortable Identifier
:copyright: (c) 2017 Andrew Hawker.
:license: Apache 2.0, see LICENSE for more details.
"""
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version_regex =... | apache-2.0 | Python |
853a3f689850f906871ecca0d5db72e51e93d367 | Increment patch version number | danijar/layered | setup.py | setup.py | import sys
import subprocess
import setuptools
from setuptools.command.build_ext import build_ext
from setuptools.command.test import test
class TestCommand(test):
description = 'run tests, linters and create a coverage report'
user_options = []
def run(self):
super().run()
self._call(['... | import sys
import subprocess
import setuptools
from setuptools.command.build_ext import build_ext
from setuptools.command.test import test
class TestCommand(test):
description = 'run tests, linters and create a coverage report'
user_options = []
def run(self):
super().run()
self._call(['... | mit | Python |
288c01a3e653103f2fd1310aa9dd227afda2a7f4 | Read version from infinity.py in setup.py | kvesteri/infinity | setup.py | setup.py | """
infinity
--------
All-in-one infinity value for Python. Can be compared to any object.
"""
from setuptools import setup, find_packages
import os
import re
import sys
HERE = os.path.dirname(os.path.abspath(__file__))
PY3 = sys.version_info[0] == 3
def get_version():
filename = os.path.join(HERE, 'infinity.p... | """
infinity
--------
All-in-one infinity value for Python. Can be compared to any object.
"""
from setuptools import setup, find_packages
import sys
PY3 = sys.version_info[0] == 3
extras_require = {
'test': [
'pytest>=2.2.3',
'Pygments>=1.2',
'six>=1.4.1'
],
}
setup(
name='in... | bsd-3-clause | Python |
44dedbe4152f0e6fd308783672f9e277929a7bae | bump version | daytonb/webdiff,danvk/webdiff,daytonb/webdiff,danvk/webdiff,danvk/webdiff,danvk/webdiff,daytonb/webdiff,danvk/webdiff,daytonb/webdiff | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='webdiff',
version='0.6.2',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='danvdk@gmail.com',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
... | from setuptools import setup, find_packages
setup(name='webdiff',
version='0.6.1',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='danvdk@gmail.com',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
... | apache-2.0 | Python |
e9b3b2a067e31f73596cff0140ba27b6a5745b1e | fix setup | openprocurement/restkit,benoitc/restkit | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -
#
# Copyright (c) 2008 Benoit Chesneau <benoitc@e-engura.com>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies... | #!/usr/bin/env python
# -*- coding: utf-8 -
#
# Copyright (c) 2008 Benoit Chesneau <benoitc@e-engura.com>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies... | apache-2.0 | Python |
d366be9d552209e1e5e9c7ac789d2dc832b9f39a | Update setup file. | AdamGagorik/pydarkstar,LegionXI/pydarkstar | setup.py | setup.py | from distutils.core import setup
setup(
name='pydarkstar',
version='0.1',
packages=['pydarkstar'],
url='git@github.com:AdamGagorik/pydarkstar.git',
license='MIT',
author='Adam Gagorik',
author_email='adam.gagorik@gmail.com',
description='A python module for interacting with a darkstar s... | from distutils.core import setup
setup(
name='pydarkstar',
version='0.1',
packages=['tests', 'pydarkstar'],
url='git@github.com:AdamGagorik/pydarkstar.git',
license='MIT',
author='Adam Gagorik',
author_email='adam.gagorik@gmail.com',
description='A python module for interacting with a d... | mit | Python |
6cdc906b3cb6d49eb5a1994c9e30549106f1ad78 | fix minimal version | go1dshtein/selectel-api | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
... | #!/usr/bin/python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
... | mit | Python |
1641243682f080257b7f79b35503985d3d72aa44 | Fix requirement for diff tool | ethan-nelson/osm_hall_monitor | setup.py | setup.py | from setuptools import setup
setup(name='osm_hall_monitor',
version='0.2',
description='Passive changeset monitoring for OpenStreetMap.',
url='http://github.com/ethan-nelson/osm_hall_monitor',
author='Ethan Nelson',
author_email='ethan-nelson@users.noreply.github.com',
install_requi... | from setuptools import setup
setup(name='osm_hall_monitor',
version='0.2',
description='Passive changeset monitoring for OpenStreetMap.',
url='http://github.com/ethan-nelson/osm_hall_monitor',
author='Ethan Nelson',
author_email='ethan-nelson@users.noreply.github.com',
install_requi... | mit | Python |
c0155f59f52696e178def437f712f22c610c333a | Add classifiers for Python 3.3 and PyPy | faassen/morepath,taschini/morepath,morepath/morepath | setup.py | setup.py | import io
from setuptools import setup, find_packages
long_description = '\n'.join((
io.open('README.rst', encoding='utf-8').read(),
io.open('CHANGES.txt', encoding='utf-8').read()
))
setup(
name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_descri... | import io
from setuptools import setup, find_packages
long_description = '\n'.join((
io.open('README.rst', encoding='utf-8').read(),
io.open('CHANGES.txt', encoding='utf-8').read()
))
setup(
name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_descri... | bsd-3-clause | Python |
97f03ffd2a309340bf41d381b35703272be600cc | Bump version. | grokcode/django-email-analytics | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'django-email-analytics',
'version': '0.4',
'author': 'Jess Johnson',
'author_email': 'jess@grokcode.com',
'packages': ['emailanalytics'],
'scripts': [],
'url': 'https://github.... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'django-email-analytics',
'version': '0.3',
'author': 'Jess Johnson',
'author_email': 'jess@grokcode.com',
'packages': ['emailanalytics'],
'scripts': [],
'url': 'https://github.... | mit | Python |
024878fc913097364123d28a99ab7cb5501b0af5 | Set permission mask to allow read/exec for all users | rinodung/udemy-dl | setup.py | setup.py | #!/usr/bin/env python
import os
import subprocess
from distutils.core import setup
requirements = [pkg.split('=')[0] for pkg in open('requirements.txt').readlines()]
description = 'Download videos from Udemy for personal offline use'
try:
subprocess.call(["pandoc", "README.md", "-f", "markdown", "-t", "rst", "-o... | #!/usr/bin/env python
import subprocess
from distutils.core import setup
requirements = [pkg.split('=')[0] for pkg in open('requirements.txt').readlines()]
description = 'Download videos from Udemy for personal offline use'
try:
subprocess.call(["pandoc", "README.md", "-f", "markdown", "-t", "rst", "-o", "README... | unlicense | Python |
a1a0de9e1f290161d83165f2983335844a5c17f9 | fix tests_require | a358003542/skeleton,a358003542/skeleton | setup.py | setup.py | #!/usr/bin/env python
#-*-coding:utf-8-*-
from setuptools import setup, find_packages
#+BEGIN_DELETE
import os.path
# anditional to make a tar.gz file
import tarfile
with tarfile.open("skeleton.tar.gz", "w:gz") as tar:
for name in ["setup.py", "LICENSE", "README.md", "requirements.txt",
"pyskele... | #!/usr/bin/env python
#-*-coding:utf-8-*-
from setuptools import setup, find_packages
#+BEGIN_DELETE
import os.path
# anditional to make a tar.gz file
import tarfile
with tarfile.open("skeleton.tar.gz", "w:gz") as tar:
for name in ["setup.py", "LICENSE", "README.md", "requirements.txt",
"pyskele... | mit | Python |
a6d27ef03438133e7dd38f4a26208dc7d3904f6e | Fix url in setup.py file. | heynemann/webassets,JDeuce/webassets,heynemann/webassets,aconrad/webassets,john2x/webassets,scorphus/webassets,rs/webassets,glorpen/webassets,scorphus/webassets,JDeuce/webassets,glorpen/webassets,florianjacob/webassets,0x1997/webassets,aconrad/webassets,glorpen/webassets,florianjacob/webassets,heynemann/webassets,aconr... | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
print "Sphinx not installed - needed to build documentation"
cmdclass = {}
# Figure out the version; this could be done b... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
print "Sphinx not installed - needed to build documentation"
cmdclass = {}
# Figure out the version; this could be done b... | bsd-2-clause | Python |
c18bbf109a19eb0a5ee65be61030a1c3dd54a6d4 | Bump version | ericsomdahl/python-bittrex | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='python-bittrex',
version='0.2.2',
url="https://github.com/ericsomdahl/python-bittrex",
packages=['bittrex'],
modules=['bittrex'],
install_requires=['requests'],
description='Python bindings for bittrex API.',
aut... | #!/usr/bin/env python
from setuptools import setup
setup(name='python-bittrex',
version='0.2.1',
url="https://github.com/ericsomdahl/python-bittrex",
packages=['bittrex'],
modules=['bittrex'],
install_requires=['requests'],
description='Python bindings for bittrex API.',
aut... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.