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 |
|---|---|---|---|---|---|---|---|---|
95c4e831a83267ca2ef0b7f36257844ae913ea3e | Clean up setup.py | DanielSank/observed | setup.py | setup.py | import re
import setuptools
README_FILENAME = "README.md"
VERSION_FILENAME = "observed.py"
VERSION_RE = r"^__version__ = ['\"]([^'\"]*)['\"]"
# Get version information
with open(VERSION_FILENAME, "r") as version_file:
mo = re.search(VERSION_RE, version_file.read(), re.M)
if mo:
version = mo.group(1)
else:
... | import re
import setuptools
README_FILENAME = "README.md"
VERSION_FILENAME = "observed.py"
VERSION_RE = r"^__version__ = ['\"]([^'\"]*)['\"]"
# Get version information
with open(VERSION_FILENAME, "rt") as version_file:
mo = re.search(VERSION_RE, version_file.read(), re.M)
if mo:
version = mo.group(1)
else:... | mit | Python |
90a48cbbc099b6b76e00b8248ebb4327803a53e2 | Increment version number to 0.7.15-dev | IS-ENES-Data/esgf-pid | setup.py | setup.py | from setuptools import setup, find_packages
# Dependencies for using the library:
dependencies = [
'pika==0.11.2',
'requests>=2.20.0'
]
# Dependencies for running the tests:
test_dependencies = [
'mock'
]
# Packages to be included for using the library:
packages = [
'esgfpid',
'esgfpid/assistant'... | from setuptools import setup, find_packages
# Dependencies for using the library:
dependencies = [
'pika==0.11.2',
'requests>=2.20.0'
]
# Dependencies for running the tests:
test_dependencies = [
'mock'
]
# Packages to be included for using the library:
packages = [
'esgfpid',
'esgfpid/assistant'... | apache-2.0 | Python |
ee9205fad3218ea3422035de9a6ab9f0e2c40af6 | Revert changes to setup.py; they broke pip. | KenKundert/nonstdlib,kalekundert/nonstdlib,KenKundert/nonstdlib,kalekundert/nonstdlib | setup.py | setup.py | #!/usr/bin/env python3
import distutils.core
import subprocess, shlex
# Uploading to PyPI
# =================
# The first time only:
# $ python setup.py register -r pypi
#
# Every version bump:
# $ git tag <version>; git push
# $ python setup.py sdist upload -r pypi
version = '1.2'
distutils.core.setup(
name... | #!/usr/bin/env python3
import distutils.core
import subprocess, shlex
# Uploading to PyPI
# =================
# The first time only:
# $ python setup.py register -r pypi
#
# Every version bump:
# $ git tag <version>; git push
# $ python setup.py sdist upload -r pypi
version = subprocess.check_output(shlex.split('git... | mit | Python |
c1112f9aaeab9beb4395045e6c20185a33f05483 | Indent according to PEP8 | sebest/ectoken-py,sebest/ectoken-py | setup.py | setup.py | name, version='ectoken', '0.2'
from distutils.core import setup, Extension
blowfish=Extension(
name='_ecblowfish',
sources=['blowfish.c'],
libraries=['crypto'],
)
setup(
name=name,
version=version,
description='Python implementation of EdgeCast Token (ectoken_generate)',
author="Sebastien... | name, version = 'ectoken', '0.2'
from distutils.core import setup, Extension
from distutils.sysconfig import get_python_lib
blowfish = Extension(
name = '_ecblowfish',
sources = ['blowfish.c'],
libraries=['crypto'],
)
setup(
name=name,
version=version,
description='Python implementation of EdgeCast... | bsd-3-clause | Python |
ce9a5c219dd3480a9f9fbc24969e79f2f5fc2872 | Exclude tests from installation. | hackebrot/tweepy,techieshark/tweepy,svven/tweepy,Choko256/tweepy,tsablic/tweepy,abhishekgahlot/tweepy,obskyr/tweepy,nickmalleson/tweepy,edsu/tweepy,LikeABird/tweepy,robbiewoods05/tweepy,cinemapub/bright-response,sa8/tweepy,cinemapub/bright-response,tweepy/tweepy,awangga/tweepy,kylemanna/tweepy,vikasgorur/tweepy,IsaacHa... | setup.py | setup.py | #!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
from tweepy import __version__
setup(name="tweepy",
version=__version__,
description="Twitter library for python",
license="MIT",
author="Joshua Roesslein",
author_email="tweepy@googlegroup... | #!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
from tweepy import __version__
setup(name="tweepy",
version=__version__,
description="Twitter library for python",
license="MIT",
author="Joshua Roesslein",
author_email="tweepy@googlegroup... | mit | Python |
8072b835fc55a4d5b7632f8e3737d546040ec965 | change version number | PetrDlouhy/django-smart-selects,digi604/django-smart-selects,digi604/django-smart-selects,PetrDlouhy/django-smart-selects,johtso/django-smart-selects,knixeur/django-smart-selects,savoirfairelinux/django-smart-selects,savoirfairelinux/django-smart-selects,knixeur/django-smart-selects,johtso/django-smart-selects | setup.py | setup.py | from setuptools import setup, find_packages
setup(name="django-smart-selects",
version="1.2.0",
description="Django application to handle chained model fields.",
author="Patrick Lauber",
packages=find_packages(),
include_package_data=True,
)
| from setuptools import setup, find_packages
setup(name="django-smart-selects",
version="1.1.1",
description="Django application to handle chained model fields.",
author="Patrick Lauber",
packages=find_packages(),
include_package_data=True,
)
| bsd-3-clause | Python |
434a8e851d6b5d5576aa6367701f82309ae59aa1 | Add missing metadata in setup.py [ci skip] | sbussetti/django-nested-admin,sbussetti/django-nested-admin,sbussetti/django-nested-admin | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="3.0.0",
install_requires=[
'python-monkey-busines... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-nested-admin',
version="3.0.0",
install_requires=[
'python-monkey-busines... | bsd-2-clause | Python |
baf362ad38926d7c1f2d9d5d303338da8b3d5a4b | Use io.open | masayuko/urilib | setup.py | setup.py | import io, os.path, re, sys
from setuptools import setup
# environment markers require a recent setuptools and/or pip version
if sys.version_info >= (3, 3) or 'bdist_wheel' in sys.argv:
install_requires = []
elif sys.version_info >= (3, 0):
install_requires = ['ipaddress>=1.0.7']
else:
install_requires = ... | import codecs, os.path, re, sys
from setuptools import setup
# environment markers require a recent setuptools and/or pip version
if sys.version_info >= (3, 3) or 'bdist_wheel' in sys.argv:
install_requires = []
elif sys.version_info >= (3, 0):
install_requires = ['ipaddress>=1.0.7']
else:
install_require... | mit | Python |
699851f72e856260463a793f7c80908a0af2d502 | bump it | tnoff/OpenStack-Account-Setup | setup.py | setup.py | #!/usr/bin/env python
import setuptools
VERSION = '0.9'
setuptools.setup(
author='Tyler Daniel North',
author_email='tylernorth18@gmail.com',
description='OpenStack Account Setup Script',
install_requires=[
'python-cinderclient >= 1.0.9',
'python-glanceclient >= 0.13.1',
'pytho... | #!/usr/bin/env python
import setuptools
VERSION = '0.8'
setuptools.setup(
author='Tyler Daniel North',
author_email='tylernorth18@gmail.com',
description='OpenStack Account Setup Script',
install_requires=[
'python-cinderclient >= 1.0.9',
'python-glanceclient >= 0.13.1',
'pytho... | bsd-2-clause | Python |
8f39114551d5e98d2274a6a000654d6a42b31848 | Bump Version | microsoft/dpu-utils,microsoft/dpu-utils | setup.py | setup.py | import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name='dpu_utils',
version='0.1.28',
license='MIT',
description='Python utilities used by Deep Procedural Intelligence',
long_description=long_description,
long_description_co... | import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name='dpu_utils',
version='0.1.27',
license='MIT',
description='Python utilities used by Deep Procedural Intelligence',
long_description=long_description,
long_description_co... | mit | Python |
96907aa691a84a657102a1442e8a5d3b872076b5 | add test files to package data | timothydmorton/isochrones,timothydmorton/isochrones | setup.py | setup.py | from setuptools import setup, find_packages
import os, sys
def readme():
with open('README.rst') as f:
return f.read()
# Hackishly inject a constant into builtins to enable importing of the
# package before the library is built.
if sys.version_info[0] < 3:
import __builtin__ as builtins
else:
imp... | from setuptools import setup, find_packages
import os, sys
def readme():
with open('README.rst') as f:
return f.read()
# Hackishly inject a constant into builtins to enable importing of the
# package before the library is built.
if sys.version_info[0] < 3:
import __builtin__ as builtins
else:
imp... | mit | Python |
4db284d176bef7eae2bc1238edb2722f0e768d63 | Update trove classifiers | myyk/honcho,janusnic/honcho,nickstenning/honcho,xarisd/honcho,nickstenning/honcho | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
from honcho import __version__
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except:
long_description = None
setup(
name='honcho',
version=__version__,
packages=find_packages(... | import os
import sys
from setuptools import setup, find_packages
from honcho import __version__
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except:
long_description = None
setup(
name='honcho',
version=__version__,
packages=find_packages(... | mit | Python |
7b6865a494b0aaa94d40a9cbf33e6ff53ca1a19f | Update setup.py | thelinuxkid/gumjabi | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
import os
EXTRAS_REQUIRES = dict(
web=[
'bottle>=0.11',
'paste>=1.7.5.1',
'requests>=0.14.1',
],
mongo=[
'pymongo>=2.3',
],
test=[
'pytest>=2.2.4',
'mock>=0.8.0',
],
dev=[
... | #!/usr/bin/python
from setuptools import setup, find_packages
EXTRAS_REQUIRES = dict(
web=[
'bottle>=0.11',
'paste>=1.7.5.1',
'requests>=0.14.1',
],
mongo=[
'pymongo>=2.3',
],
test=[
'pytest>=2.2.4',
'mock>=0.8.0',
],
dev=[
'ipytho... | mit | Python |
02f4927080ac3083da4cb5398fb90faf9919029d | Use setuptools instead of distutils | andrejtokarcik/python-czechtile | setup.py | setup.py | #!/usr/bin/env python
"""Installs package using distutils
Run:
python setup.py install
to install this package.
"""
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup
from distutils.command.install import INSTALL_SCHEMES
import sys
required_python... | #!/usr/bin/env python
"""Installs package using distutils
Run:
python setup.py install
to install this package.
"""
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import sys
required_python_version = '2.4'
################################################################... | bsd-3-clause | Python |
1e088a1a1c393a798c06da72574a4f7819799fd3 | Bump version to 3.1m1 / 1.1m1 | codilime/cloudify-plugins-common,codilime/cloudify-plugins-common,isaac-s/cloudify-plugins-common,isaac-s/cloudify-plugins-common,geokala/cloudify-plugins-common,cloudify-cosmo/cloudify-plugins-common,isaac-s/cloudify-plugins-common,xdegenne/cloudify-plugins-common,cloudify-cosmo/cloudify-plugins-common,codilime/cloudi... | 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 |
1b6eeaf53168e855b8cca188f927618fa2d9bdd7 | update aiohttp version | aio-libs/aiohttp_debugtoolbar,aio-libs/aiohttp-debugtoolbar,aio-libs/aiohttp_debugtoolbar,aio-libs/aiohttp-debugtoolbar,aio-libs/aiohttp_debugtoolbar,aio-libs/aiohttp-debugtoolbar | setup.py | setup.py | from setuptools import setup, find_packages
import pathlib
import re
with (pathlib.Path(__file__).parent /
'aiohttp_debugtoolbar' / '__init__.py').open() as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'$", fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to de... | from setuptools import setup, find_packages
import pathlib
import re
with (pathlib.Path(__file__).parent /
'aiohttp_debugtoolbar' / '__init__.py').open() as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'$", fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to de... | apache-2.0 | Python |
d47a582e749d3a61071ff249175d67e37bef7e6c | update setup.py with pbr version | nadeemsyed/swift,nadeemsyed/swift,notmyname/swift,scality/ScalitySproxydSwift,zackmdavis/swift,mjwtom/swift,clayg/swift,mjzmjz/swift,prashanthpai/swift,hbhdytf/mac2,notmyname/swift,mjzmjz/swift,bkolli/swift,iostackproject/IO-Bandwidth-Differentiation,Akanoa/swift,matthewoliver/swift,Khushbu27/Tutorial,wenhuizhang/swift... | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unle... | #!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unle... | apache-2.0 | Python |
c6265c2112ee9985af8b6b80fe0bee1811dc6abd | Add author and increase version number | ap--/python-oceanoptics | setup.py | setup.py | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='oceanoptics',
version='0.2.7',
author='Andreas Poehlmann, Jose A. Jimenez-Berni, Ben Gamari, Simon Dickreuter, Ian Ross Williams',
author_email='mail@andreaspoehlmann.de',
packages=['oceanoptics', 'oceanoptics.spectrometers'],
... | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='oceanoptics',
version='0.2.6',
author='Andreas Poehlmann, Jose A. Jimenez-Berni, Ben Gamari, Simon Dickreuter',
author_email='mail@andreaspoehlmann.de',
packages=['oceanoptics', 'oceanoptics.spectrometers'],
description='A Py... | mit | Python |
6ffb9eeb988107c82159db4bc78ca8d105410990 | Improve formatting in setup.py | svven/tweepy,tweepy/tweepy | setup.py | setup.py | #!/usr/bin/env python
import re
from setuptools import find_packages, setup
VERSION_FILE = "tweepy/__init__.py"
with open(VERSION_FILE) as version_file:
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file.read(), re.MULTILINE)
if match:
version = match.group(1)
else:
... | #!/usr/bin/env python
import re
from setuptools import find_packages, setup
VERSION_FILE = "tweepy/__init__.py"
with open(VERSION_FILE) as version_file:
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file.read(), re.MULTILINE)
if match:
version = match.group(1)
else:
... | mit | Python |
59718f0a66756bef7bd12df40bb0d27867f79459 | Update version to 3.5.0 | madisongh/autobuilder | setup.py | setup.py | from setuptools import setup, find_packages
BUILDBOTVERSION = '3.3.0'
setup(
name='autobuilder',
version='3.5.0',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['temp... | from setuptools import setup, find_packages
BUILDBOTVERSION = '3.3.0'
setup(
name='autobuilder',
version='3.4.3',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['temp... | mit | Python |
748f09f5ac868228de1dbdd809d6f052278c4cdf | Bump version to 0.1.14. | hq6/smux | setup.py | setup.py | from setuptools import setup
long_description=\
"""
smux
====================
The minimal tmux launcher, with the fewest options to set and the fastest
ramp-up time.
Originally created to be tool to make it easier to reproduce (and interactively
debug) distributed systems bugs that required sshing into a lot of serv... | from setuptools import setup
long_description=\
"""
smux
====================
The minimal tmux launcher, with the fewest options to set and the fastest
ramp-up time.
Originally created to be tool to make it easier to reproduce (and interactively
debug) distributed systems bugs that required sshing into a lot of serv... | mit | Python |
25c9fbf148cb7ff2005a14d1f1d405ee5cef542a | Fix setup.py, add tests_require and test_suite | brickgao/specchio | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from specchio import __version__
from setuptools import find_packages, setup
setup(
name="Specchio",
version=__version__,
url="https://github.com/brickgao/specchio",
license="MIT",
description="Specchio is a tool that can help you rsync your file,"
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from specchio import __version__
setup(
name="Specchio",
version=__version__,
url="https://github.com/brickgao/specchio",
license="MIT",
description="Specchio is a tool that can help you rsync your file,"
... | mit | Python |
b3f29c3426ff03ab713612fab6e627bfd2e58e09 | Allow older version of python-humanize | buckket/twtxt | setup.py | setup.py | import ast
import re
import sys
from setuptools import find_packages
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('twtxt/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='twtx... | import ast
import re
import sys
from setuptools import find_packages
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('twtxt/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='twtx... | mit | Python |
ca0fd46fcd851a006960925886b07e1766b0b5b0 | Add missing package_data from vendored pip 9.0.3 | suutari/prequ,suutari/prequ,suutari-ai/prequ | setup.py | setup.py | """
pip-tools keeps your pinned dependencies fresh.
"""
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
def read_file(filename):
"""Read the contents of a file located relative to setup.py"""
with open(join(abspath(dirname(__file__)), filename)) as thefile:
return... | """
pip-tools keeps your pinned dependencies fresh.
"""
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
def read_file(filename):
"""Read the contents of a file located relative to setup.py"""
with open(join(abspath(dirname(__file__)), filename)) as thefile:
return... | bsd-2-clause | Python |
52c69fe3b8964330374358b7b8df1a725be1f899 | Remove mention of 2.7 from setup.py | GreatFruitOmsk/nativeconfig | setup.py | setup.py | import os
from setuptools import setup
from sys import platform
REQUIREMENTS = []
if platform.startswith('darwin'):
REQUIREMENTS.append('pyobjc-core >= 2.5')
with open(os.path.join(os.path.dirname(__file__), 'nativeconfig', 'version.py')) as f:
version = None
code = compile(f.read(), 'version.py', 'exe... | import os
from setuptools import setup
from sys import platform
REQUIREMENTS = []
if platform.startswith('darwin'):
REQUIREMENTS.append('pyobjc-core >= 2.5')
with open(os.path.join(os.path.dirname(__file__), 'nativeconfig', 'version.py')) as f:
version = None
code = compile(f.read(), 'version.py', 'exe... | mit | Python |
8c73fa8facf2e013e602befb45443a1a7bc9724b | update setup.py | eddieantonio/unormalize | setup.py | setup.py | import codecs
from setuptools import find_packages, setup # type: ignore
import unormalize
def long_description():
with codecs.open("README.rst", encoding="utf8") as f:
return f.read()
setup(
name="unormalize",
version=unormalize.__version__,
description="Unicode normalization filters",
... | from setuptools import setup, find_packages
import unormalize
import codecs
def long_description():
with codecs.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='unormalize',
version=unormalize.__version__,
description='Unicode normalization filters',
long_descriptio... | mit | Python |
b2c070a6422387e1ddf23dc54348c2bb24371a50 | change package title | michalwerner/django-filebrowser,michalwerner/django-filebrowser,michalwerner/django-filebrowser-tinymce4,michalwerner/django-filebrowser,michalwerner/django-filebrowser-tinymce4,michalwerner/django-filebrowser-tinymce4 | 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='django-filebrowser-tinymce4',
version='3.5.7',
description='Media-Management with Grappelli',
long_description = read('README.rst'),
url = 'htt... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-filebrowser',
version='3.5.7',
description='Media-Management with Grappelli',
long_description = read('README.rst'),
url = 'http://djang... | bsd-3-clause | Python |
4ebd3cce5f7766eb9063b99768e189ff911c9439 | change download URL | Unidata/netcdf4-python,Unidata/netcdf4-python,Unidata/netcdf4-python | setup.py | setup.py | import os
from numpy.distutils.core import setup, Extension
import Pyrex.Distutils
HDF5_dir = os.environ.get('HDF5_DIR')
netCDF4_dir = os.environ.get('NETCDF4_DIR')
if HDF5_dir is None or netCDF4_dir is None:
raise KeyError, 'please specify the locations of netCDF4 and HDF5 with the NETCDF4_DIR and HDF5_DIR envir... | import os
from numpy.distutils.core import setup, Extension
import Pyrex.Distutils
HDF5_dir = os.environ.get('HDF5_DIR')
netCDF4_dir = os.environ.get('NETCDF4_DIR')
if HDF5_dir is None or netCDF4_dir is None:
raise KeyError, 'please specify the locations of netCDF4 and HDF5 with the NETCDF4_DIR and HDF5_DIR envir... | mit | Python |
e77b8ed4342ee343aa55b420a5be2da82af0f592 | bump version | rylans/typeguess | setup.py | setup.py | #!/usr/bin/env python
from codecs import open
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(name='typeguess',
version='0.0.2',
description='Data type guesser',
long_description=read('README.rst'),
author='Rylan Santinon',
aut... | #!/usr/bin/env python
from codecs import open
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(name='typeguess',
version='0.0.1',
description='Data type guesser',
long_description=read('README.rst'),
author='Rylan Santinon',
aut... | apache-2.0 | Python |
153cb460bb144ec3cbbd0843e07606952bb4fe60 | move meta data to setup.cfg | andrenarchy/krypy | setup.py | setup.py | from setuptools import setup
if __name__ == "__main__":
setup()
| # Use setuptools for these commands (they don't work well or at all
# with distutils). For normal builds use distutils.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='krypy',
packages=['krypy', 'krypy.recycling'],
version='2.1.7',
descript... | mit | Python |
22dcc7c48475905f0eace75c79e5bc3bcc3fb69c | Bump version to 1.2.0 for release | victal/ulp,victal/ulp | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
def get_description():
try:
with open("README.md") as f:
return f.read()
except IOError:
return ""
setup(name='ulp',
version='1.2.0',
author='Guilherme Victal',
author_email='guilherme@v... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
def get_description():
try:
with open("README.md") as f:
return f.read()
except IOError:
return ""
setup(name='ulp',
version='1.1.1',
author='Guilherme Victal',
author_email='guilherme@v... | mit | Python |
0e2ceba5eae900b6fc38faf5a3fcb5288f70a622 | Fix URL in setup.py (#835) | maraujop/django-crispy-forms,django-crispy-forms/django-crispy-forms,maraujop/django-crispy-forms,django-crispy-forms/django-crispy-forms | setup.py | setup.py | import os
import sys
import crispy_forms
from setuptools import setup, find_packages
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip freeze | grep twine"):
print("twin... | import os
import sys
import crispy_forms
from setuptools import setup, find_packages
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip freeze | grep twine"):
print("twin... | mit | Python |
6c94e4eda2b39a1186593419709e0e6a2839c9ea | Use setuptools when available | jbittel/django-ldap-sync,PGower/django-ldap3-sync,alexsilva/django-ldap-sync,alexsilva/django-ldap-sync | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from ldap_sync import __version__ as version
packages = [
'ldap_sync',
'ldap_sync.management',
'ldap_sync.management.commands',
]
package_data = {
'': ['LICENSE', 'README.rst'],
}
w... | #!/usr/bin/env python
from distutils.core import setup
from ldap_sync import __version__ as version
packages = [
'ldap_sync',
'ldap_sync.management',
'ldap_sync.management.commands',
]
package_data = {
'': ['LICENSE', 'README.rst'],
}
with open('README.rst') as f:
readme = f.read()
setup(
... | bsd-3-clause | Python |
e01697c5d5e5e45a0dd20870c71bb17399991ca1 | Comment out entrypoint because it blows up django-nose in connection with tox. Ouch. | millerdev/django-nose,millerdev/django-nose,harukaeru/django-nose,dgladkov/django-nose,sociateru/django-nose,360youlun/django-nose,mzdaniel/django-nose,brilliant-org/django-nose,sociateru/django-nose,dgladkov/django-nose,krinart/django-nose,fabiosantoscode/django-nose-123-fix,mzdaniel/django-nose,franciscoruiz/django-n... | setup.py | setup.py | import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name='django-nose',
version='0.2',
description='Django test runner that uses nose.',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
author='Jeff Balogh',
author_email... | import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name='django-nose',
version='0.2',
description='Django test runner that uses nose.',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
author='Jeff Balogh',
author_email... | bsd-3-clause | Python |
dde6d93011eaa68734f2abfcbde2fed8c937d647 | Bump version number to 1.0 for PyPi release #28 | ckuethe/OkCupid-Message-Downloader,ckuethe/OkCupid-Message-Downloader,lehrblogger/OkCupid-Message-Downloader,lehrblogger/OkCupid-Message-Downloader | setup.py | setup.py | from setuptools import setup
setup(
name = 'okcmd',
packages = ['okcmd'],
package_dir = {'okcmd': 'src'},
entry_points = {'console_scripts': [
'okcmd = okcmd.arrow_fetcher:main',
],},
version = '1.0',
description = 'A simple Python script for downloading your sent and received OkCupid messages.',
... | from setuptools import setup
setup(
name = 'okcmd',
packages = ['okcmd'],
package_dir = {'okcmd': 'src'},
entry_points = {'console_scripts': [
'okcmd = okcmd.arrow_fetcher:main',
],},
version = '0.13',
description = 'A simple Python script for downloading your sent and received OkCupid messages.',
... | mit | Python |
227701c1da5845edc82f2cfe2aa5aa73618bb523 | Bump version to 0.3. | quantopian/coal-mine | setup.py | setup.py | import sys
from pypandoc import convert
from setuptools import setup, find_packages
if sys.version_info[0] < 3:
sys.exit("This package does not work with Python 2.")
setup(
name="coal_mine",
version='0.3',
author='Quantopian Inc.',
author_email='opensource@quantopian.com',
description="Coal Mi... | import sys
from pypandoc import convert
from setuptools import setup, find_packages
if sys.version_info[0] < 3:
sys.exit("This package does not work with Python 2.")
setup(
name="coal_mine",
version='0.2.4',
author='Quantopian Inc.',
author_email='opensource@quantopian.com',
description="Coal ... | apache-2.0 | Python |
dfd8b44f17aac57183a87aa24819438c0a0411f6 | Prepare to new version | angus-ai/angus-gateway,angus-ai/angus-gateway,angus-ai/angus-gateway | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# 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 Licens... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# 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 Licens... | apache-2.0 | Python |
4e5c756c87f598e4fd143852999c8315b1b5ad9a | Bump version | justinabrahms/imhotep,justinabrahms/imhotep | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='imhotep',
version='1.1.1',
packages=find_packages(),
url='https://github.com/justinabrahms/imhotep',
license='MIT',
author='Justin Abrahms',
author_email='justin@abrah.ms',
description='A tool to pipe linters into code review',
... | from setuptools import setup, find_packages
setup(
name='imhotep',
version='1.1.0',
packages=find_packages(),
url='https://github.com/justinabrahms/imhotep',
license='MIT',
author='Justin Abrahms',
author_email='justin@abrah.ms',
description='A tool to pipe linters into code review',
... | mit | Python |
4fef172188762fbfea1739cc62aa721634666ffb | Bump version | alberthier/sweech-cli | setup.py | setup.py | from setuptools import setup
def read(fname):
import os
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "sweech-cli",
version = "1.1.0",
description = "A command-line utility to interact with your Android device through the Sweech app",
long_description = read(... | from setuptools import setup
def read(fname):
import os
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "sweech-cli",
version = "1.0.1",
description = "A command-line utility to interact with your Android device through the Sweech app",
long_description = read(... | mit | Python |
a70b8555164e8745d9683b6d37160522d9028333 | Add pypy to classifiers | MisanthropicBit/bibpy,MisanthropicBit/bibpy | setup.py | setup.py | """bibpy module setup script for distribution."""
from __future__ import with_statement
import os
import distutils.core
def get_version(filename):
with open(filename) as fh:
for line in fh:
if line.startswith('__version__'):
return line.split('=')[-1].strip()[1:-1]
distutil... | """bibpy module setup script for distribution."""
from __future__ import with_statement
import os
import distutils.core
def get_version(filename):
with open(filename) as fh:
for line in fh:
if line.startswith('__version__'):
return line.split('=')[-1].strip()[1:-1]
distutil... | mit | Python |
5c11645e69d4604ab8fb9f268c54cb405b873680 | update setup.py | whitews/FlowIO | setup.py | setup.py | from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='FlowIO',
version='0.9.6',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
long_description=long_description,
long_description_content_type="t... | from setuptools import setup
setup(
name='FlowIO',
version='0.9.6b',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
author="Scott White",
author_email="whitews@gmail.com",
license='BSD',
url="https://github.com/whitews/flowio",
requires=[]... | bsd-3-clause | Python |
920d1079d4d3220196107f2ad4bf0c524f0bc76f | bump version to 2.4.0 | Morgaroth/spotify-ripper,sokie/spotify-ripper,Morgaroth/spotify-ripper,Morgaroth/spotify-ripper | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
import os
def _read(fn):
path = os.path.join(os.path.dirname(__file__), fn)
return open(path).read()
setup(
name='spotify-ripper',
version='2.4.0',
packages=find_packages(exclude=["tests"]),
scripts=['spotify_r... | #!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
import os
def _read(fn):
path = os.path.join(os.path.dirname(__file__), fn)
return open(path).read()
setup(
name='spotify-ripper',
version='2.3.3',
packages=find_packages(exclude=["tests"]),
scripts=['spotify_r... | mit | Python |
796d964dabafabe94f74f7253a8a5444df8621ff | Upgrade celery to 4.2.0 | lsst-sqre/ltd-keeper,lsst-sqre/ltd-keeper | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file in the package."""
full_filename = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
filename)
with open(full_filename) as f:
content = f.read()
return content
name = 'lsst-t... | import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file in the package."""
full_filename = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
filename)
with open(full_filename) as f:
content = f.read()
return content
name = 'lsst-t... | mit | Python |
5b7700d12eeb158e2435772cac0f64ee3fb3b9de | Bump django from 2.2.13 to 2.2.18 (#377) | praekeltfoundation/ndoh-hub,praekeltfoundation/ndoh-hub,praekeltfoundation/ndoh-hub | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name="ndoh-hub",
version="0.8.36",
url="http://github.com/praekeltfoundation/ndoh-hub",
license="BSD",
author="Praekelt Foundation",
author_email="dev@praekeltfoundation.org",
packages=find_packages(),
include_package_data=True,
ins... | from setuptools import find_packages, setup
setup(
name="ndoh-hub",
version="0.8.36",
url="http://github.com/praekeltfoundation/ndoh-hub",
license="BSD",
author="Praekelt Foundation",
author_email="dev@praekeltfoundation.org",
packages=find_packages(),
include_package_data=True,
ins... | bsd-3-clause | Python |
13a53492ccda365034d3fe6d37c2ca1f662d95f7 | Bump version | abaldwin88/roamer | setup.py | setup.py | from distutils.core import setup
version = '0.2.0'
setup(
name = 'roamer',
packages = ['roamer'],
version = version,
description = 'Plain Text File Explorer',
author = 'Alex Baldwin',
author_email = 'abaldwintech+hub@gmail.com',
url = 'https://github.com/abaldwin88/roamer',
download_url = 'https://githu... | from distutils.core import setup
version = '0.1.1'
setup(
name = 'roamer',
packages = ['roamer'],
version = version,
description = 'Plain Text File Explorer',
author = 'Alex Baldwin',
author_email = 'abaldwintech+hub@gmail.com',
url = 'https://github.com/abaldwin88/roamer',
download_url = 'https://githu... | mit | Python |
97a8635a3ad7af2da3dd15532bde304820949ae6 | change version | lalo73/django-log-register | setup.py | setup.py | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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-log-register',
version='0.1.2',
packages=['log_regis... | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).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-log-register',
version='0.1.1',
packages=['log_regis... | bsd-3-clause | Python |
c766a56ea8e9f9e4ce5b340c70915912869419b4 | update version | pelodelfuego/jupyjet | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = """\
Jupyjet is a IPyhton notebook extention which allows you to dynamically genrates python file / module from a notebook.
Code portions registered with %jet or %jet-init magics will be written and updated into a python f... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = """\
Jupyjet is a IPyhton notebook extention which allows you to dynamically genrates python file / module from a notebook.
Code portions registered with %jet or %jet-init magics will be written and updated into a python f... | mit | Python |
e0163cdd3c5ec6c8d843223b95de58a90250c63a | bump minor version | raiderrobert/django-multiurl,jacobian-archive/django-multiurl | setup.py | setup.py | from setuptools import setup
setup(
name='django-multiurl',
py_modules=['multiurl'],
version='1.5.0',
description='Allow multiple views to match the same URL.',
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
license='BSD',
url='https://github.com... | from setuptools import setup
setup(
name='django-multiurl',
py_modules=['multiurl'],
version='1.4.0',
description='Allow multiple views to match the same URL.',
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
license='BSD',
url='https://github.com... | bsd-3-clause | Python |
072890f73130268612bc8c3321f8b46be5397fad | Use "setuptools" so I can use development mode. | gthank/pytips,gthank/pytips,gthank/pytips,gthank/pytips | setup.py | setup.py | from setuptools import setup
setup(
name="PyTips",
version="0.1.0-alpha.1",
packages=["pytips"],
license="ISC",
long_description=open("README.md").read(),
)
| from distutils.core import setup
setup(
name="PyTips",
version="0.1.0-alpha.1",
packages=["pytips"],
license="ISC",
long_description=open("README.md").read(),
)
| isc | Python |
c6b4408d838b3f457a212466a95479937dc13e54 | Change ordering of dependencies | marty-sullivan/pyndfd | setup.py | setup.py | from distutils.core import setup
setup(
name = 'pyndfd',
packages = ['pyndfd'],
version = '0.8.2',
license = 'MIT License',
description = 'Python routines for easy caching/retrieval of NWS\'s NDFD variables',
author = 'Marty J. Sullivan',
author_email = 'marty.sullivan@cornell.edu',
url = 'https://gith... | from distutils.core import setup
setup(
name = 'pyndfd',
packages = ['pyndfd'],
version = '0.8.2',
license = 'MIT License',
description = 'Python routines for easy caching/retrieval of NWS\'s NDFD variables',
author = 'Marty J. Sullivan',
author_email = 'marty.sullivan@cornell.edu',
url = 'https://gith... | mit | Python |
713adac57feac9a404762e81e86433f4f0160b6c | Set to 1.0.0.rc1 | icgood/pysasl | setup.py | setup.py | # Copyright (c) 2022 Ian C. Good
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distrib... | # Copyright (c) 2022 Ian C. Good
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distrib... | mit | Python |
1e320ebb0ba169cb90fe2456b1bf053897d9a3ce | Bump version to 0.2.8 | polyaxon/polyaxon,polyaxon/polyaxon,polyaxon/polyaxon | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(sel... | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(sel... | apache-2.0 | Python |
7e05e69cbf243e8fcbc92cbc28905caae37406a9 | make symlink to genirapper source in /usr/share/. Install geniwrapper initscript in /etc/init.d/ | onelab-eu/sfa,yippeecw/sfa,onelab-eu/sfa,yippeecw/sfa,onelab-eu/sfa,yippeecw/sfa | setup.py | setup.py | #!/usr/bin/python
"""
Installation script for the geniwrapper module
"""
from distutils.core import setup, Extension
import os, sys
import shutil
version = '0.2'
scripts = ['geni/gimport.py', 'geni/plc.py', 'cmdline/sfi.py']
package_dirs = ['geni', 'geni/util', 'geni/methods']
data_files = [('/etc/geni/', ['geni/agg... | #!/usr/bin/python
"""
Installation script for the geniwrapper module
"""
from distutils.core import setup, Extension
import os, sys
import shutil
version = '0.2'
scripts = ['geni/gimport.py', 'geni/plc.py', 'cmdline/sfi.py']
package_dirs = ['geni', 'geni/util', 'geni/methods']
data_files = [('/etc/geni/', ['geni/agg... | mit | Python |
5aed4c96a21b92aea7b097e3861652ae981d50d6 | fix a setup bug: rangedict is not included in installed modules | WKPlus/rangedict | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = '0.1.2'
LONG_DESCRIPTION = '''
rangedict is a dict whose key is a range.
Usage
-----
>>> from rangdict import RangeDict
>>> rd = RangeDict()
>>> rd[(1, 2)] = 1
>>> rd[(3, 3)] = 3
>>> rd[(5, 7... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = '0.1.0'
LONG_DESCRIPTION = '''
rangedict is a dict whose key is a range.
Usage
-----
>>> from rangdict import RangeDict
>>> rd = RangeDict()
>>> rd[(1, 2)] = 1
>>> rd[(3, 3)] = 3
>>> rd[(5, 7... | mit | Python |
aad80fdcaeb22bfda0ed7faff0ef3e5c466a63c3 | set dependancy | iamalbert/chinese-segmenter,iamalbert/chinese-segmenter,iamalbert/chinese-segmenter | setup.py | setup.py | from distutils.core import setup
setup(
name = 'chineseseg',
packages = ['chineseseg'],
version = '0.2',
description = 'A Python3 wrapper for a collection of Chinese word segmenter',
author = 'WenLi Zhuang',
author_email = 'r03922101@ntu.edu.tw',
url = 'https://github.com/iamalbert/chinese-segmenter',
... | from distutils.core import setup
setup(
name = 'chineseseg',
packages = ['chineseseg'],
version = '0.1',
description = 'A Python3 wrapper for a collection of Chinese word segmenter',
author = 'WenLi Zhuang',
author_email = 'r03922101@ntu.edu.tw',
url = 'https://github.com/iamalbert/chinese-segmenter',
... | mit | Python |
b704e0ed9a0304a16d10743bdf2fcc3ed8e8df71 | Add management package to setup. Closes #14 | aljp/drf-generators,pombredanne/drf-generators,Brobin/drf-generators | setup.py | setup.py | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='drf-generators',
version='0.2.5',
description='Generate... | import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='drf-generators',
version='0.2.5',
description='Generate... | mit | Python |
535c8140db79ed716bdd8110a3ec58dd7ffcd194 | Bump version to 3.1m1 / 1.1m1 | cloudify-cosmo/cloudify-puppet-plugin,cloudify-cosmo/cloudify-puppet-plugin | setup.py | setup.py | #########
# Copyright (c) 2014 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) 2014 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 |
0227c183d36a703d73232935a9c65ec7a73cfc75 | update and add RTD requires | openego/data_processing | setup.py | setup.py | from setuptools import find_packages, setup
import os
setup(
name='dataprocessing',
version='0.3.0',
packages=find_packages(),
package_data={
'dataprocessing': [os.path.join('sql_snippets','*.sql')]
},
url='https://github.com/openego/dataprocessing',
license='GNU GENERAL PUBLIC LICE... | from setuptools import find_packages, setup
import os
setup(
name='dataprocessing',
version='0.1-pre',
packages=find_packages(),
package_data={
'dataprocessing': [os.path.join('sql_snippets','*.sql')]
},
url='https://github.com/openego/dataprocessing',
license='GNU GENERAL PUBLIC LI... | agpl-3.0 | Python |
3d9f9fe57e573905d53d7408116d671040346511 | remove legacy entry point | fritz0705/lglass | setup.py | setup.py | #!/usr/bin/env python3
"""lglass is a collection of code and data files written in Python. It is designed
to support registries in their work and to provide public services for access
to the database."""
import setuptools
setuptools.setup(
name="lglass",
version="1.1",
packages=[
"lglass",
... | #!/usr/bin/env python3
"""lglass is a collection of code and data files written in Python. It is designed
to support registries in their work and to provide public services for access
to the database."""
import setuptools
setuptools.setup(
name="lglass",
version="1.1",
packages=[
"lglass",
... | mit | Python |
de9dd02cbc4decd3afe32be971a947e7fcc68b05 | Add packages to setup install requirements | pennsignals/aptos | setup.py | setup.py | from setuptools import find_packages, setup
setup(
install_requires=[
'colorama',
'termcolor',
],
name='aptos',
version='1.0.2',
url='https://github.com/pennsignals/aptos',
author='Jason Walsh',
author_email='jason.walsh@uphs.upenn.edu',
maintainer='Jason Walsh',
pac... | from setuptools import find_packages, setup
setup(
name='aptos',
version='1.0.2',
url='https://github.com/pennsignals/aptos',
author='Jason Walsh',
author_email='jason.walsh@uphs.upenn.edu',
maintainer='Jason Walsh',
packages=find_packages(),
setup_requires=[
'pytest-runner',
... | apache-2.0 | Python |
2b6ae0792bba464f901dd8b0fd42bf992ed35d5b | Bump to version 0.1.0 | jbrudvik/yahooscraper | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
README = 'README.md'
try:
import pypandoc
long_description = pypandoc.convert(README, 'rst')
except:
long_description = ''
setup(
name='yahooscraper',
version='0.1.0',
description='Utilities for scr... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
README = 'README.md'
try:
import pypandoc
long_description = pypandoc.convert(README, 'rst')
except:
long_description = ''
setup(
name='yahooscraper',
version='0.0.6',
description='Utilities for scr... | mit | Python |
550cfe3db38e85c9f5ba7b1d88bfcd72f00d2f78 | upgrade clld | clld/parabank,clld/parabank | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='parabank',
version='0.0',
description='parabank',
long_description='',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP ::... | from setuptools import setup, find_packages
setup(
name='parabank',
version='0.0',
description='parabank',
long_description='',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP ::... | apache-2.0 | Python |
b9201e9169b71fb6dfc4725ffddc38b9a8e953f8 | Remove python prefix of the package name | glidernet/python-ogn-client | setup.py | setup.py | #!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
from ogn.client.settings import PACKAGE_VERSION
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f... | #!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
from ogn.client.settings import PACKAGE_VERSION
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f... | agpl-3.0 | Python |
8bc03abc4b43dbfd27e46e141b887baac317b561 | Update dependencies | rm-hull/luma.led_matrix,rm-hull/max7219 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
def read_file(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as r:
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
def read_file(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as r:
... | mit | Python |
09efa2fee07ea4af063c88c0f2937d1615b47388 | Add package | freeman-lab/muffle | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import muffle
setup(
name='muffle',
version=muffle.__version__,
description='silence output from external process',
author='freeman-lab',
author_email='the.freeman.lab@gmail.com',
packages=['muffle'],
url='https://github.com/freeman-lab/mu... | #!/usr/bin/env python
from setuptools import setup
import muffle
setup(
name='muffle',
version=muffle.__version__,
description='silence output from external process',
author='freeman-lab',
author_email='the.freeman.lab@gmail.com',
url='https://github.com/freeman-lab/muffle',
long_descripti... | mit | Python |
9a0315fd5770eb6ecd01ebda0042a80ad43dc54c | bump version to 0.2.0 | csdev/datacheck,csdev/datacheck | setup.py | setup.py | import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
# ref: https://tox.readthedocs.org/en/latest/example/basic.html#integration-with-setuptools-distribute-test-commands
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def ini... | import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
# ref: https://tox.readthedocs.org/en/latest/example/basic.html#integration-with-setuptools-distribute-test-commands
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def ini... | mit | Python |
d24f91f158b4b90ca2e9fa6f01fedb5418dd9ed7 | bump version | ewdurbin/sentry-datadog-helpers | setup.py | setup.py | #!/usr/bin/env python
"""
sentry-datadog-helpers
======================
An suite of Sentry tools which enhance integrations with Datadog
"""
from setuptools import setup
install_requires = []
raven_requires = [
'raven>=5.6.0',
]
sentry_requires = [
'sentry>=7.4.0',
]
tests_requires = [
'mock==1.3.0',
] ... | #!/usr/bin/env python
"""
sentry-datadog-helpers
======================
An suite of Sentry tools which enhance integrations with Datadog
"""
from setuptools import setup
install_requires = []
raven_requires = [
'raven>=5.6.0',
]
sentry_requires = [
'sentry>=7.4.0',
]
tests_requires = [
'mock==1.3.0',
] ... | bsd-3-clause | Python |
634d28ad753ae2f0ee86ba83c479767ee8e76105 | clean up imports. | dreampuf/lprofiler,eblur/line_profiler,Doctorhoenikker/line_profiler,dreampuf/lprofiler,ymero/line_profiler,jsalva/line_profiler,Doctorhoenikker/line_profiler,jsalva/line_profiler,jstasiak/line_profiler,amegianeg/line_profiler,certik/line_profiler,amegianeg/line_profiler,eblur/line_profiler,jstasiak/line_profiler,dream... | setup.py | setup.py |
from distutils.core import setup
from distutils.extension import Extension
from distutils.log import warn
try:
from Cython.Distutils import build_ext
cmdclass = dict(build_ext=build_ext)
line_profiler_source = '_line_profiler.pyx'
except ImportError, e:
warn("Could not import Cython. Using pre-generat... |
from distutils.core import setup
from distutils.extension import Extension
from distutils.log import warn
import os
import sys
try:
from Cython.Distutils import build_ext
cmdclass = dict(build_ext=build_ext)
line_profiler_source = '_line_profiler.pyx'
except ImportError, e:
warn("Could not import Cyth... | bsd-3-clause | Python |
88412a33a3ffcc1e74f99ad41bb7aa197c304913 | bump version | noisyboiler/wampy | setup.py | setup.py | from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='wampy',
version='0.7.0',
description='WAMP RPC and Pub... | from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='wampy',
version='0.6.0',
description='WAMP RPC and Pub... | mpl-2.0 | Python |
da10b6baa19c1ef3a5f875297187e7248b7460b1 | Use PEP 508 version markers. | ssanderson/interface | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
long_description = ''
if 'upload' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
def extras_require():
return {
'test': [
'tox>=2.0',
'pytest>=2.8.5',
'pyt... | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
long_description = ''
if 'upload' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
def extras_require():
return {
'test': [
'tox>=2.0',
'pytest>=2.8.5',
'pyt... | apache-2.0 | Python |
dc7a37134709cd64600b2bb4f58048f8f9a9991d | Tweak the description text. | tandreas/pyptools | setup.py | setup.py | from setuptools import setup, find_packages
NAME = 'pyptools'
VERSION = '0.01'
DESCRIPTION = 'Tools for parsing line delimited log files'
URL = 'https://github.com/tandreas/pyptools'
AUTHOR = 'Trevor Andreas'
AUTHOR_EMAIL = 'tandreas@gmail.com'
LICENSE = 'MIT'
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
p... | from setuptools import setup, find_packages
NAME = 'pyptools'
VERSION = '0.01'
DESCRIPTION = 'Tools to help parsing delimited log files'
URL = 'https://github.com/tandreas/pyptools'
AUTHOR = 'Trevor Andreas'
AUTHOR_EMAIL = 'tandreas@gmail.com'
LICENSE = 'MIT'
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
pa... | mit | Python |
633d3ddf1f6994950d37994d66a16a05131cbc9f | add long description to setup.py from README.md | jpopelka/dockerfile-parse,jpopelka/dockerfile-parse,DBuildService/dockerfile-parse,DBuildService/dockerfile-parse | setup.py | setup.py | #!/usr/bin/python
"""
Copyright (c) 2015 Red Hat, Inc
All rights reserved.
This software may be modified and distributed under the terms
of the BSD license. See the LICENSE file for details.
"""
import re
import sys
import io
from os import path
from setuptools import setup, find_packages
def _get_requirements(path... | #!/usr/bin/python
"""
Copyright (c) 2015 Red Hat, Inc
All rights reserved.
This software may be modified and distributed under the terms
of the BSD license. See the LICENSE file for details.
"""
import re
import sys
from setuptools import setup, find_packages
def _get_requirements(path):
try:
with open(... | bsd-3-clause | Python |
0458cc6e41b55bdd6e393c517492a5f6631a51c9 | Fix package data so that VERSION file actually gets installed | ryanraaum/oldowan.mtdna | setup.py | setup.py | from setuptools import setup, find_packages
import sys, os
PACKAGE = 'mtdna'
VERSION = open(os.path.join(os.path.dirname(os.path.realpath(__file__)),'oldowan', PACKAGE, 'VERSION')).read().strip()
desc_lines = open('README', 'r').readlines()
setup(name='oldowan.%s' % PACKAGE,
version=VERSION,
description... | from setuptools import setup, find_packages
import sys, os
PACKAGE = 'mtdna'
VERSION = open(os.path.join(os.path.dirname(os.path.realpath(__file__)),'oldowan', PACKAGE, 'VERSION')).read().strip()
desc_lines = open('README', 'r').readlines()
setup(name='oldowan.%s' % PACKAGE,
version=VERSION,
description... | mit | Python |
8c9610f2a8c504eafbb56b0031de79545ad83c6a | Fix Classifiers | CoolCloud/quokka,maurobaraldi/quokka,Ckai1991/quokka,romulocollopy/quokka,CoolCloud/quokka,wushuyi/quokka,alexandre/quokka,wushuyi/quokka,fdumpling/quokka,ChengChiongWah/quokka,felipevolpone/quokka,maurobaraldi/quokka,felipevolpone/quokka,wushuyi/quokka,ChengChiongWah/quokka,wushuyi/quokka,Ckai1991/quokka,cbeloni/quokk... | setup.py | setup.py | #!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import quokka
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()
if not i.startswith("http")]
dependency_links = [i.strip() for i in open("requirements.txt").readlines()
... | #!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import quokka
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()
if not i.startswith("http")]
dependency_links = [i.strip() for i in open("requirements.txt").readlines()
... | mit | Python |
4fca86a7d2c8bbe2458c2208b65a672acdcc0c63 | remove dependency_links from setup.py | simonsdave/ecs,simonsdave/ecs | setup.py | setup.py | #
# to build the distrubution @ dist/ecs-*.*.*.tar.gz
#
# >git clone https://github.com/simonsdave/ecs.git
# >cd ecs
# >python setup.py sdist --formats=gztar
#
import re
from setuptools import setup
#
# this approach used below to determine ```version``` was inspired by
# https://github.com/kennethreitz/reques... | #
# to build the distrubution @ dist/ecs-*.*.*.tar.gz
#
# >git clone https://github.com/simonsdave/ecs.git
# >cd ecs
# >python setup.py sdist --formats=gztar
#
import re
from setuptools import setup
#
# this approach used below to determine ```version``` was inspired by
# https://github.com/kennethreitz/reques... | mit | Python |
f4787933bfdb341e10aa74253e119157e10a700c | bump version | nhumrich/dunderdoc | setup.py | setup.py | from setuptools import setup
setup(
name='dunderdoc',
version='0.1.0',
requires=['click'],
packages=['dunderdoc'],
url='https://github.com/nhumrich/dunderdoc',
license='MIT',
author='nhumrich',
author_email='',
description='A Documentation module for dunder methods'
)
| from setuptools import setup
setup(
name='dunderdoc',
version='0.0.0',
requires=['click'],
packages=['dunderdoc'],
url='https://github.com/nhumrich/dunderdoc',
license='MIT',
author='nhumrich',
author_email='',
description='A Documentation module for dunder methods'
)
| mit | Python |
bed1c8f5b2a49564ccada217a33c73eff4ff7246 | add missing Extension for NN to setup.py | jeongyoonlee/Kaggler,jeongyoonlee/Kaggler,jeongyoonlee/Kaggler | setup.py | setup.py | from setuptools import setup, Extension
from Cython.Distutils import build_ext
import numpy as np
setup(
name='Kaggler',
version='0.2.dev',
author='Jeong-Yoon Lee',
author_email='jeongyoon.lee1@gmail.com',
packages=['kaggler',
'kaggler.model',
'kaggler.online_model',... | from setuptools import setup, Extension
from Cython.Distutils import build_ext
import numpy as np
setup(
name='Kaggler',
version='0.2.dev',
author='Jeong-Yoon Lee',
author_email='jeongyoon.lee1@gmail.com',
packages=['kaggler',
'kaggler.model',
'kaggler.online_model',... | mit | Python |
888b375e402623c385898b005e821f00531ab7ec | bump version | contextio/Python-ContextIO | setup.py | setup.py | from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='v1.11.1',
description='Library for accessing the Context.IO API (v2.0 and Lite) in Python',
author='Tony Blank, Jesse Dhillon, Alex Tanton',
author_email='tony@context.io, jesse@deva0.net',
url='... | from setuptools import setup, find_packages
requires=['rauth', 'six']
setup(name='contextio',
version='v1.11.0',
description='Library for accessing the Context.IO API (v2.0 and Lite) in Python',
author='Tony Blank, Jesse Dhillon',
author_email='tony@context.io, jesse@deva0.net',
url='http://contex... | apache-2.0 | Python |
23844330be2010d672a3f74df9ba8a71b46744c1 | Fix nassl version in setup.py; fixes #243 | nabla-c0d3/sslyze | setup.py | setup.py | #!/usr/bin/env python
from sslyze import PROJECT_URL, PROJECT_DESC, __author__, __email__, __version__, __license__
SSLYZE_SETUP = {
'name': 'SSLyze',
'version': __version__,
'description': PROJECT_DESC,
'author': __author__,
'author_email': __email__,
'license': __license__,
'url': PROJEC... | #!/usr/bin/env python
from sslyze import PROJECT_URL, PROJECT_DESC, __author__, __email__, __version__, __license__
SSLYZE_SETUP = {
'name': 'SSLyze',
'version': __version__,
'description': PROJECT_DESC,
'author': __author__,
'author_email': __email__,
'license': __license__,
'url': PROJEC... | agpl-3.0 | Python |
b7458fd308787ca02d260961a32a1145b097601d | Update setup | lenarother/draw-devops-against-humanity | setup.py | setup.py | import os
from codecs import open
from setuptools import find_packages, setup
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
test_requires = [
... | import os
from codecs import open
from setuptools import find_packages, setup
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
test_requires = [
... | mit | Python |
5fb71c787aad4d1de09e78cc79f977a86d5ec2b1 | Use io instead of codecs | romanvm/python-web-pdb,romanvm/python-web-pdb,romanvm/python-web-pdb | setup.py | setup.py | # coding: utf-8
# Created on:
# Author: Roman Miroshnychenko aka Roman V.M. (roman1972@gmail.com)
#
# Copyright (c) 2016 Roman Miroshnychenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Softwar... | # coding: utf-8
# Created on:
# Author: Roman Miroshnychenko aka Roman V.M. (roman1972@gmail.com)
#
# Copyright (c) 2016 Roman Miroshnychenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Softwar... | mit | Python |
df20e52e737108366565295bd3b9af0b5f03d1f7 | correct typo in attribution | counsyl/hgvs | setup.py | setup.py | from setuptools import setup, Extension
import distutils.core
import sys
import os
description = ("This library provides a simple to use Python API for parsing, "
"formatting, and normalizing variant names specified in the "
"standard recommended by the Human Genome Variation Society "
... | from setuptools import setup, Extension
import distutils.core
import sys
import os
description = ("This library provides a simple to use Python API for parsing, "
"formatting, and normalizing variant names specified in the "
"standard recommended by the Human Genome Variation Society "
... | mit | Python |
79c9e5e53cb2bd9127ecb3fde0dd1df32e75c7ee | Remove the misleading test_suite key from setup.py | prophile/beewarn | setup.py | setup.py | import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.md') as f:
description = f.read()
from beewarn import VERSION
setup(name='beewarn',
version=VERSION,
description='Utility for warning about bees',
author='Alistair Lynn',
author_email='arplynn@gmail.... | import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.md') as f:
description = f.read()
from beewarn import VERSION
setup(name='beewarn',
version=VERSION,
description='Utility for warning about bees',
author='Alistair Lynn',
author_email='arplynn@gmail.... | mit | Python |
48507b16f5e808dffaf0c4a0c9299981913212d7 | Update version link | instagrambot/instabot,instagrambot/instabot,ohld/instabot | setup.py | setup.py | from setuptools import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.4.1',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov, Evgeny Kemerov',
author_email='ohld@icloud.com, eskemerov@gmail.com',
url... | from setuptools import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.4.1',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov, Evgeny Kemerov',
author_email='ohld@icloud.com, eskemerov@gmail.com',
url... | apache-2.0 | Python |
98b4f9654b7e7397f259aa7af6ebfb46b7835ccb | Bump version | dirkcuys/s3imageresize | setup.py | setup.py | from distutils.core import setup
setup(
name='S3ImageResize',
version='0.1.1',
author='Dirk Uys',
author_email='dirk@p2pu.org',
packages=['s3imageresize'],
scripts=['bin/s3imageresize.py'],
url='http://pypi.python.org/pypi/s3imageresize/',
license='LICENSE.txt',
description='Script ... | from distutils.core import setup
setup(
name='S3ImageResize',
version='0.1.0',
author='Dirk Uys',
author_email='dirk@p2pu.org',
packages=['s3imageresize'],
scripts=['bin/s3imageresize.py'],
url='http://pypi.python.org/pypi/s3imageresize/',
license='LICENSE.txt',
description='Script ... | mit | Python |
8f21a3c3078461f7895ff93e9b2538eaf70ef762 | Remove unnused unittest2 dependency | sontek/pyramid_webassets | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages, Command
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as fp:
README = fp.read()
with open(os.path.join(here, 'CHANGES.txt')) as fp:
CHANGES = fp.read()
#requires = open('requirements... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages, Command
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as fp:
README = fp.read()
with open(os.path.join(here, 'CHANGES.txt')) as fp:
CHANGES = fp.read()
#requires = open('requirements... | mit | Python |
821cff24588eaa225f28f58c37ff555f8a01418f | bump to v0.4.0 | mgrouchy/django-stronghold | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
dependencies = []
test_dependencies = ["django>1.8.0"]
setup(
name="django-stronghold",
version="0.4.0",
description="Get inside your stronghold and make all your ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
dependencies = []
test_dependencies = ["django>1.8.0"]
setup(
name="django-stronghold",
version="0.3.2",
description="Get inside your stronghold and make all your ... | mit | Python |
0309dbd25b6d7603aba5f0cf686e9d049716b711 | Add `"shapely"` dependency to extra requirements | oemof/feedinlib | 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="feedinlib",
version="0.1.0dev",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="feedinlib",
version="0.1.0dev",
description="Creating time series from pv or wind power plants.",
url="http://github.com/oemof/feedinlib",
author="oemof dev... | mit | Python |
e21a806c6a052dba75e038ee9e3e5692c8031b2a | update setup.py file | wwrechard/pydlm,wwrechard/PyDLM | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'pydlm',
version = '0.1.0',
author = 'Xiangyu Wang',
author_email = 'wwrechard@gmail.com',
description = ('A python package for the Bayesian dynamic linear ' +
'model for time series modeling'),
license = 'BSD',
keywords = 'dlm... | from setuptools import setup, find_packages
setup(
name = 'pydlm',
version = '0.1.0',
author = 'Xiangyu Wang',
author_email = 'wwrechard@gmail.com',
description = ('A python package for the Bayesian dynamic linear ' +
'model for time series modeling'),
license = 'BSD',
keywords = 'dlm... | bsd-3-clause | Python |
d009115d63f7371583e676592bb414f05cd4bd61 | manage only tag starting v | ZTH1970/alcide,ZTH1970/alcide,ZTH1970/alcide,ZTH1970/alcide,ZTH1970/alcide | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup, find_packages
import os
def get_version():
from calebasse import __version__
version = __version__
if os.path.exists('.git'):
import subprocess
p = subprocess.Popen(['git','describe','--dirty','--match=v*'],
stdout=subprocess.P... | #!/usr/bin/python
from setuptools import setup, find_packages
import os
def get_version():
from calebasse import __version__
version = __version__
if os.path.exists('.git'):
import subprocess
p = subprocess.Popen(['git','describe','--dirty'],
stdout=subprocess.PIPE)
... | agpl-3.0 | Python |
3fdb81f0f547965674d3630e80f5ce902033769e | Add long description to setup.py | SirAnthony/slpp | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from os import path
cur_dir = path.abspath(path.dirname(__file__))
with open(path.join(cur_dir, 'README.markdown'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='SLPP',
description='SLPP is a simple lua-python data structures parser',
... | #!/usr/bin/env python
from setuptools import setup
setup(
name='SLPP',
description='SLPP is a simple lua-python data structures parser',
version='1.1',
author='SirAnthony',
url='https://github.com/SirAnthony/slpp',
license='https://github.com/SirAnthony/slpp/blob/master/LICENSE',
keywords=[... | mit | Python |
57658b38e4dbbf9cbeb548a7aae518ff4d80f811 | bump to new beta version | whitews/FlowIO | setup.py | setup.py | from setuptools import setup
setup(
name='FlowIO',
version='0.9.6b',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
author="Scott White",
author_email="whitews@gmail.com",
license='BSD',
url="https://github.com/whitews/flowio",
requires=[]... | from setuptools import setup
setup(
name='FlowIO',
version='0.9.5',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
author="Scott White",
author_email="whitews@gmail.com",
license='BSD',
url="https://github.com/whitews/flowio",
requires=[],... | bsd-3-clause | Python |
05d645c976bb80ee2983e8f64279c2df9ae854ab | Bump version for release 1.0.2 | mwengren/sensorml2iso,ioos/sensorml2iso,mwengren/sensorml2iso,ioos/sensorml2iso | setup.py | setup.py | from setuptools import setup
reqs = [line.strip() for line in open('requirements.txt')]
kwargs = {
"name": "sensorml2iso",
"author": "Micah Wengren",
"author_email": "micah.wengren@gmail.com",
"url": "https://github.com/ioos/sensorml2iso",
"description": "A small utility to convert IOOS SOS Sens... | from setuptools import setup
reqs = [line.strip() for line in open('requirements.txt')]
kwargs = {
"name": "sensorml2iso",
"author": "Micah Wengren",
"author_email": "micah.wengren@gmail.com",
"url": "https://github.com/ioos/sensorml2iso",
"description": "A small utility to convert IOOS SOS Sens... | mit | Python |
993731b038ff9f5b4b56dc711915c60bf890a18f | Reformat setup file | nigma/dj-cmd | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
version = "0.2.post1"
setup(
name="dj-cmd",
version=version,
description="`dj cmd` is a Django shortcut command.",
license="BSD",
author="Filip Wasilewski",
author_email="en@ig.ma",
url="https://github.com/nigma... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
version = "0.2.post1"
setup(
name = "dj-cmd",
version = version,
description = "`dj cmd` is a Django shortcut command.",
license = "BSD",
author = "Filip Wasilewski",
author_email = "en@ig.ma",
url = "https://git... | bsd-3-clause | Python |
839a7c1c9541692d9a60d31de07d606ede3a0267 | fix license info in setup | tamland/mopidy-banshee | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(
name='Mopidy-Banshee',
version='0.1.1',
description='Banshee extension for Mopidy',
long_description=open('README.rst').read(),
author='Thomas Amland',
autho... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(
name='Mopidy-Banshee',
version='0.1.1',
description='Banshee extension for Mopidy',
long_description=open('README.rst').read(),
author='Thomas Amland',
autho... | apache-2.0 | Python |
b78c634069354565cf749ed139cade244415b5a4 | Include author email since it's required info | madmaze/pytesseract | setup.py | setup.py | import os
from setuptools import setup
longDesc = ""
if os.path.exists("README.rst"):
longDesc = open("README.rst").read().strip()
setup(
name = "pytesseract",
version = "0.1.6",
author = "Samuel Hoffstaetter",
author_email="pytesseract@madmaze.net",
maintainer = "Matthias Lee",
maintainer_e... | import os
from setuptools import setup
longDesc = ""
if os.path.exists("README.rst"):
longDesc = open("README.rst").read().strip()
setup(
name = "pytesseract",
version = "0.1.6",
author = "Samuel Hoffstaetter",
author_email="",
maintainer = "Matthias Lee",
maintainer_email = "pytesseract@mad... | apache-2.0 | Python |
6ce5a0a33eb52e68bf9110e431fcecb08fd47b0e | Add homepage to setup.py | dbryant4/furtive | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
long_description = "See https://furtive.readthedocs.org"
setup(name='Furtive',
version='0.2',
description='File Integrity Verification System',
author='Derrick Bryant',
author_email='dbryant4@gmail.com',
long_description=long_descri... | #!/usr/bin/env python
from distutils.core import setup
long_description = "See https://furtive.readthedocs.org"
setup(name='Furtive',
version='0.2',
description='File Integrity Verification System',
author='Derrick Bryant',
author_email='dbryant4@gmail.com',
long_description=long_descri... | mit | Python |
71738c2a35247dc4cbbaab194a51be4a70a2fea9 | Bump absl-py version to 0.1.9. | abseil/abseil-py,abseil/abseil-py | setup.py | setup.py | # Copyright 2017 The Abseil Authors.
#
# 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 ... | # Copyright 2017 The Abseil Authors.
#
# 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 ... | apache-2.0 | Python |
eb2519670858dce133de01c9277bad6d71a339bb | Fix requirements retrieval | angus-ai/angus-framework | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# 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 Licens... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# 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 Licens... | apache-2.0 | Python |
93b2cbbb079f765e95eea976d877b1fad1653d27 | Remove long description. | UMIACS/umobj,UMIACS/umobj | setup.py | setup.py | #!/usr/bin/env python
from __future__ import with_statement
try:
from setuptools import setup
extra = dict(test_suite="tests.test.suite", include_package_data=True)
except ImportError:
from distutils.core import setup
extra = {}
import sys
from umobj import __version__
if sys.version_info <= (2, 5)... | #!/usr/bin/env python
from __future__ import with_statement
try:
from setuptools import setup
extra = dict(test_suite="tests.test.suite", include_package_data=True)
except ImportError:
from distutils.core import setup
extra = {}
import sys
import os
from umobj import __version__
if sys.version_info... | lgpl-2.1 | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.