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 |
|---|---|---|---|---|---|---|---|---|
01a7cfe54c8638acc245e6c964c8275011f6c679 | Fix typo | rshk/python-pcapng,rshk/python-pcapng | setup.py | setup.py | import os
from setuptools import setup, find_packages
version = '0.2'
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as fp:
longdesc = fp.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as fp:
longdesc += "\n\n" + fp.read()
setup(
name='python-pcapng',
version=ve... | import os
from setuptools import setup, find_packages
version = '0.2'
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as fp:
longdesc = fp.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as fp:
longdesc += "\n\n" + fp.read()
setup(
name='python-pcapng',
version=ve... | apache-2.0 | Python |
7db5828293d383aea7e43f8e885cb86b82461289 | Add penman.models package to setup.py | goodmami/penman | setup.py | setup.py | #!/usr/bin/env python3
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
long_description = ''
with open(os.path.join(base_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
about = {}
with open(os.path.join(base_dir, "penman", "__about__.py")) as f:
exec(f.rea... | #!/usr/bin/env python3
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
long_description = ''
with open(os.path.join(base_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
about = {}
with open(os.path.join(base_dir, "penman", "__about__.py")) as f:
exec(f.rea... | mit | Python |
89d601e899ae276c39fca03f6790375b6e45b99c | Bump version | shuoli84/gevent_socketio2,shuoli84/gevent_socketio2 | setup.py | setup.py | from setuptools import setup
setup(
name = 'gevent_socketio2',
packages = ['socketio', 'socketio.engine', 'socketio.event_emitter'],
version = '0.2.8',
description = 'A gevent implementation for socketio protocol 1.0',
author = 'Shuo Li',
author_email = 'shuoli84@gmail.com',
url = 'https://github.com/shuo... | from setuptools import setup
setup(
name = 'gevent_socketio2',
packages = ['socketio', 'socketio.engine', 'socketio.event_emitter'],
version = '0.2.7',
description = 'A gevent implementation for socketio protocol 1.0',
author = 'Shuo Li',
author_email = 'shuoli84@gmail.com',
url = 'https://github.com/shuo... | mit | Python |
78e963752352c6d3c957c0afc7100e2d96c73022 | Bump to 0.3.1 | haikuginger/kodipydent | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.rst') as readme:
readme = readme.read()
with open('requirements.txt') as req_file:
requirements = req_file.read().splitlines()
setup(
name = "kodipydent",
version = "0.3.1",
packages = ['kodipydent'],
author = "Jesse Shapiro",
... | from setuptools import setup, find_packages
with open('README.rst') as readme:
readme = readme.read()
with open('requirements.txt') as req_file:
requirements = req_file.read().splitlines()
setup(
name = "kodipydent",
version = "0.3",
packages = ['kodipydent'],
author = "Jesse Shapiro",
au... | mit | Python |
05de2965e6d8263c27cc0dcdd036f013df9c6064 | Bump to 0.3 | rockstar/puff | setup.py | setup.py | from setuptools import setup
setup(
name="puff",
version="0.3",
description="API Validation for SQLAlchemy-jsonapi",
maintainer="Paul Hummer",
maintainer_email="paul@eventuallyanyway.com",
url="https://github.com/rockstar/puff",
license="MIT",
install_requires=['sqlalchemy'],
py_mo... | from setuptools import setup
setup(
name="puff",
version="0.1",
description="API Validation for SQLAlchemy-jsonapi",
maintainer="Paul Hummer",
maintainer_email="paul@eventuallyanyway.com",
url="https://github.com/rockstar/puff",
license="MIT",
install_requires=['sqlalchemy'],
py_mo... | mit | Python |
3df2d999a1dee11a432275368a7d2977f6cc2eab | Bump version to 2.10.0. | madisongh/autobuilder | setup.py | setup.py | from setuptools import setup, find_packages
BUILDBOTVERSION = '2.9.3'
setup(
name='autobuilder',
version='2.10.0',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['tem... | from setuptools import setup, find_packages
BUILDBOTVERSION = '2.9.3'
setup(
name='autobuilder',
version='2.9.99',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['tem... | mit | Python |
be8d6400426fb96964a8447bd941d4ab777a867c | Update GitHub repos from blancltd to developersociety | blancltd/blanc-basic-pages | setup.py | setup.py | #!/usr/bin/env python
from codecs import open
from setuptools import find_packages, setup
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='blanc-basic-pages',
version='0.3.7',
description='Blanc Basic Pages for Django',
long_description=readme,
url='https://github.... | #!/usr/bin/env python
from codecs import open
from setuptools import find_packages, setup
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='blanc-basic-pages',
version='0.3.7',
description='Blanc Basic Pages for Django',
long_description=readme,
url='https://github.... | bsd-3-clause | Python |
644d24ad024f0d81f49b85417fecb154a6f259a9 | Include base version for msgpack, because 0.3 doesn't work | zchee/python-client,neovim/python-client,zchee/python-client,0x90sled/python-client,bfredl/python-client,timeyyy/python-client,Shougo/python-client,bfredl/python-client,Shougo/python-client,traverseda/python-client,brcolow/python-client,neovim/python-client,starcraftman/python-client,timeyyy/python-client,meitham/pytho... | setup.py | setup.py | import platform
import sys
from setuptools import setup
install_requires = [
'msgpack-python>=0.4.0',
]
if sys.version_info < (3, 4):
# trollius is just a backport of 3.4 asyncio module
install_requires.append('trollius')
if not platform.python_implementation() == 'PyPy':
# pypy already includes an ... | import platform
import sys
from setuptools import setup
install_requires = [
'msgpack-python',
]
if sys.version_info < (3, 4):
# trollius is just a backport of 3.4 asyncio module
install_requires.append('trollius')
if not platform.python_implementation() == 'PyPy':
# pypy already includes an impleme... | apache-2.0 | Python |
1caa2b955d7d7dcd401f76e3cdedf8b41f3c4e3f | correct notifications dependency | datamade/django-councilmatic,datamade/django-councilmatic,datamade/django-councilmatic,datamade/django-councilmatic | 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-councilmatic',
version='0.7... | 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-councilmatic',
version='0.7... | mit | Python |
44e6b9ee707d4b3ba0c88fae678dbcf4769464a6 | Update setup.py | arq5x/poretools,arq5x/poretools | setup.py | setup.py | import ez_setup
ez_setup.use_setuptools()
import glob
import os
import sys
from setuptools import setup
from distutils.extension import Extension
if 'setuptools.extension' in sys.modules:
m = sys.modules['setuptools.extension']
m.Extension.__dict__ = m._Extension.__dict__
version_py = os.path.join(os.path.di... | import ez_setup
ez_setup.use_setuptools()
import glob
import os
import sys
from setuptools import setup
from distutils.extension import Extension
if 'setuptools.extension' in sys.modules:
m = sys.modules['setuptools.extension']
m.Extension.__dict__ = m._Extension.__dict__
version_py = os.path.join(os.path.di... | mit | Python |
10c3c8c93552fa2255395b395d59f4181039be47 | Work around setuptools bug. | ohsu-qin/qiutil | setup.py | setup.py | import os
import re
import subprocess
import glob
from setuptools import (setup, find_packages)
def version(package):
"""
Return package version as listed in the `__init.py__` `__version__`
variable.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("__version__ =... | import os
import re
import subprocess
import glob
from setuptools import (setup, find_packages)
def version(package):
"""
Return package version as listed in the `__init.py__` `__version__`
variable.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("__version__ =... | bsd-2-clause | Python |
4aa0ea2356daca3af2411320176b00737746a98f | Update setup.py to v0.1.2 | dshean/demcoreg,dshean/demcoreg | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
#To prepare a new release
#python setup.py sdist upload
setup(name='demcoreg',
version='0.1.2',
description='Utilities for DEM co-registration',
author='David Shean',
author_email='dshean@gmail.com',
license='MIT',
url='https://github.com... | #!/usr/bin/env python
from distutils.core import setup
#To prepare a new release
#python setup.py sdist upload
setup(name='demcoreg',
version='0.1.1',
description='Utilities for DEM co-registration',
author='David Shean',
author_email='dshean@gmail.com',
license='MIT',
url='https://github.com... | mit | Python |
9cdd55f66658cfaa17524bb5e89721453c0ba015 | Fix license field | smarkets/statprof,bos/statprof.py | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "statprof",
version = "0.1",
author = "Jeff Muizelaar",
author_email = "jmuizelaar@mozilla.com",
description = ("Statis... | #!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "statprof",
version = "0.1",
author = "Jeff Muizelaar",
author_email = "jmuizelaar@mozilla.com",
description = ("Statis... | lgpl-2.1 | Python |
070caf43c1eb10d2735ef4a80aeea2e7366a16a5 | Bump version to 0.3.2 | all3fox/algos-py | setup.py | setup.py | from distutils.core import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='algos-py',
version='0.3.2',
license='MIT',
author='Aleksandr Lisianoi',
author_email='all3fox@gmail.com',
url='https://github.com/all3fox/algos-py',
packages=[
'src... | from distutils.core import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='algos-py',
version='0.3.1',
license='MIT',
author='Aleksandr Lisianoi',
author_email='all3fox@gmail.com',
url='https://github.com/all3fox/algos-py',
packages=[
'src... | mit | Python |
4b38028cd440517417013208d84e1dfe2bcb18be | remove suds requirement, add requests and lxml | pitthsls/pycounter,chill17/pycounter | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = None # will be set by exec below
exec(open('pycounter/_version.py', 'rb').read())
setup(
name='pycounter',
version=__version__,
packages=find_packages(),
author='Geoffrey Spear',
author_email='geoffspear@gmail.com',
keywords='library ... | from setuptools import setup, find_packages
__version__ = None # will be set by exec below
exec(open('pycounter/_version.py', 'rb').read())
setup(
name='pycounter',
version=__version__,
packages=find_packages(),
author='Geoffrey Spear',
author_email='geoffspear@gmail.com',
keywords='library ... | mit | Python |
d18b2d3393c056e941e01827b8c82ba188f89c03 | Update setup.py script (fix source dir, extract more blocks into functions) | wesm87/dotfiles,wesm87/dotfiles,wesm87/dotfiles,wesm87/dotfiles | setup.py | setup.py | #!/usr/bin/env python
"""
Dotfiles syncronization.
Makes symlinks for files that need to go in $HOME.
e.g. `~/dotfiles/tilde/.zshrc` -> `~/.zshrc`.
"""
from os import path, chdir, readlink, symlink, unlink
from glob import glob
from shutil import rmtree
from typing import Callable
from toolz.curried import curry, pi... | #!/usr/bin/env python
"""
Dotfiles syncronization.
Makes symlinks for files that need to go in $HOME.
e.g. `~/dotfiles/tilde/.zshrc` -> `~/.zshrc`.
"""
from os import path, chdir, readlink, symlink, unlink
from glob import glob
from shutil import rmtree
from typing import Callable
from toolz.curried import curry, pi... | mit | Python |
8942ff8a7c05fc867f5d375e1ce61abe1df39b99 | Update setup.py | koji-kojiro/hylang-hycc | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
from setuptools.command.install import _install
from sys import version_info
ver = version_info[0]
class install(_install):
def __init__(self, *args, **kwargs):
import pip
import atexi... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import atexit
from setuptools import setup
from setuptools.command.install import install
from sys import version_info
ver = version_info[0]
class install_with_compile_hy(install):
def __init__(self, *args, **kwargs):
ins... | mit | Python |
de44a17303e6e4c13d464b180ba967675e9ec06f | bump version to 0.1.2 | crccheck/postdoc | setup.py | setup.py | from setuptools import setup
setup(
name='postdoc',
version='0.1.2',
description='A helper for Postgres + Docker that works for free',
long_description=open('README.rst').read(),
author='Chris Chang',
author_email='c@crccheck.com',
url='https://github.com/crccheck/postdoc',
py_modules=... | from setuptools import setup
setup(
name='postdoc',
version='0.1.1',
description='A helper for Postgres + Docker that works for free',
long_description=open('README.rst').read(),
author='Chris Chang',
author_email='c@crccheck.com',
url='https://github.com/crccheck/postdoc',
py_modules=... | apache-2.0 | Python |
07ec79ea39605fbe430942d0843d3e86044dd989 | Update package metadata | Outernet-Project/squery-lite | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
VERSION = '1.1'
def read(fname):
""" Return content of specified file """
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='squery-lite',
version=VERSION,
author='Outernet Inc',
author_email='apps@o... | import os
from setuptools import setup, find_packages
VERSION = '1.1'
def read(fname):
""" Return content of specified file """
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='squery-lite',
version=VERSION,
license='BSD',
packages=[pkg.__name__],
include_... | bsd-3-clause | Python |
683a7c8848f617a4357e34ddfa1a65531290d087 | Fix setup script | theon/pelicangit | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
requires = ['pelican']
try:
import argparse
except ImportError:
requires.append('argparse')
entry_points = {
'console_scripts': [
'pelicangit = pelicangit:main'
]
}
setup(
name = "pelicangit",
version = "0.1",
url = 'http://theon.... | #!/usr/bin/env python
from setuptools import setup
requires = ['pelican']
try:
import argparse
except ImportError:
requires.append('argparse')
entry_points = {
'console_scripts': [
'pelicangit = pelicangit:main'
]
}
setup(
name = "pelicangit",
version = "0.1",
url = 'http://theon.... | agpl-3.0 | Python |
48462e64aae55d3b388219a1ec25e3af94377869 | bump version | edx/event-tracking | setup.py | setup.py | import os
from setuptools import setup
from setuptools import find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
REQUIREMENTS = [line.strip() for line in
open("requirements.txt").readlines()]
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.p... | import os
from setuptools import setup
from setuptools import find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
REQUIREMENTS = [line.strip() for line in
open("requirements.txt").readlines()]
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.p... | agpl-3.0 | Python |
5fc4ea2be425a1ff46e84f924947742a552f2f90 | Bump version | sveint/vcfiterator | setup.py | setup.py | from distutils.core import setup
setup(
name='vcfiterator',
packages=['vcfiterator'],
version='0.1.3',
description='A package for iterating of .vcf files, parsing it to data structures. Especially useful for converting vcf files to JSON.',
author='Svein Tore Koksrud Seljebotn',
author_email='sv... | from distutils.core import setup
setup(
name='vcfiterator',
packages=['vcfiterator'],
version='0.1.2',
description='A package for iterating of .vcf files, parsing it to data structures. Especially useful for converting vcf files to JSON.',
author='Svein Tore Koksrud Seljebotn',
author_email='sv... | mit | Python |
01dbf463dcd0cf9b337fc198dce497999a311e50 | update to version 2.5.0 | hycis/TensorGraph,hycis/TensorGraph | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
version = '2.5.0'
setup(
name='tensorgraph',
version=version,
author='Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.1... | from distutils.core import setup
from setuptools import find_packages
version = '2.4.0'
setup(
name='tensorgraph',
version=version,
author='Wu Zhen Zhou',
author_email='hyciswu@gmail.com',
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.1... | apache-2.0 | Python |
0d2b587cace8f59ce3d327203428cd6350749a2b | Make pytest_runner and sphinx optionally required. | jaraco/jaraco.itertools | setup.py | setup.py | #!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
import io
import sys
import setuptools
with io.open('README.txt', encoding='utf-8') as readme:
long_description = readme.read()
with io.open('CHANGES.txt', encoding='utf-8') as changes:
long_description += '\... | #!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
import io
import setuptools
with io.open('README.txt', encoding='utf-8') as readme:
long_description = readme.read()
with io.open('CHANGES.txt', encoding='utf-8') as changes:
long_description += '\n\n' + chang... | mit | Python |
827dd42e432f457bac5046d81a20d710bb82dfe7 | Change package info. | winkidney/flask-sockets-tornado,winkidney/flask-sockets-tornado | setup.py | setup.py | #!/usr/bin/env python
"""
Flask-Sockets
-------------
Elegant WebSockets for your Flask apps.
"""
from setuptools import setup
setup(
name='Flask-Sockets-Tornado',
version='0.1',
url='https://github.com/winkidney/flask-sockets',
license='See License',
author='winkidney',
author_email='winkid... | #!/usr/bin/env python
"""
Flask-Sockets
-------------
Elegant WebSockets for your Flask apps.
"""
from setuptools import setup
setup(
name='Flask-Sockets',
version='0.1',
url='https://github.com/kennethreitz/flask-sockets',
license='See License',
author='Kenneth Reitz',
author_email='_@kenne... | mit | Python |
c14f93bfe1da9809292ca23b0a3d7ed339def337 | Fix build errors | epfl-lts2/pygsp,epfl-lts2/pygsp | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
setup(
name = 'pygsp',
version = '0.0.1',
description = 'The official Graph Processing Toolbox',
long_description = open('README.rst').read(),
author = 'Alexandre Lafaye (EPFL LTS2), Basile Châtillon (... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
setup(
name = 'pygsp',
version = '0.0.1',
description = 'The official Graph Processing Toolbox',
long_description = open('README.rst').read(),
author = 'Alexandre Lafaye (EPFL LTS2), Basile Châtillon (... | bsd-3-clause | Python |
4f436f14cd1615175051910b38eb83a512fb26ff | Change the version to be the release version | CBitLabs/django-globals | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'django-globals',
version = '0.2.1',
description = 'Very simple application, that allow to define a thread specific global variables.',
keywords = 'django apps',
license = 'New BSD License',
author = 'Alexander Artemenko',
author_emai... | from setuptools import setup, find_packages
setup(
name = 'django-globals',
version = '0.2.1-rc1',
description = 'Very simple application, that allow to define a thread specific global variables.',
keywords = 'django apps',
license = 'New BSD License',
author = 'Alexander Artemenko',
author_... | bsd-3-clause | Python |
6b8aeb0f291df57ea47aa2d945db84d6ff568903 | Prepare for release | icometrix/dicom2nifti,icometrix/dicom2nifti | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
version = "2.2.6"
print('Starting pypi release version %s' % version)
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support fo... | from distutils.core import setup
from setuptools import find_packages
version = "2.2.5"
print('Starting pypi release version %s' % version)
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support fo... | mit | Python |
3e3072ab2a0617f329bf9dba048b7361762e008c | fix classifiers for pypi | bcicen/slackbot,vektorlab/multivac,bcicen/slackbot,vektorlab/multivac | setup.py | setup.py | from setuptools import setup
exec(open('multivac/version.py').read())
requirements = [ 'slacksocket>=0.7.0',
'Flask>=0.10.1',
'Flask-RESTful>=0.3.2',
'gevent>=1.1b1',
'redis>=2.10.3',
'names>=0.3.0',
'PyYAML>=3.11',
... | from setuptools import setup
exec(open('multivac/version.py').read())
requirements = [ 'slacksocket>=0.7.0',
'Flask>=0.10.1',
'Flask-RESTful>=0.3.2',
'gevent>=1.1b1',
'redis>=2.10.3',
'names>=0.3.0',
'PyYAML>=3.11',
... | mit | Python |
f339e83e7b40d076a835432e006c305f5fb6e23f | Bump version number | mozilla/django-post-request-task | setup.py | setup.py | import codecs
import os
import sys
from setuptools import setup
version = '0.3.0'
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
print('You probably want to also tag the version now:')
print(' git tag -a %s -m "version %s"' % (... | import codecs
import os
import sys
from setuptools import setup
version = '0.2.0'
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
print('You probably want to also tag the version now:')
print(' git tag -a %s -m "version %s"' % (... | mit | Python |
3677f204644291c11b59a861cae397ee78e4c321 | add python 3.4 classifier | cenkalti/kuyruk,cenkalti/kuyruk | setup.py | setup.py | # coding=utf8
import os
import re
from setuptools import setup
def read(*fname):
with open(os.path.join(os.path.dirname(__file__), *fname)) as f:
return f.read()
def get_version():
for line in read('kuyruk', '__init__.py').splitlines():
m = re.match(r"""__version__\s*=\s*['"](.*)['"]""", lin... | # coding=utf8
import os
import re
from setuptools import setup
def read(*fname):
with open(os.path.join(os.path.dirname(__file__), *fname)) as f:
return f.read()
def get_version():
for line in read('kuyruk', '__init__.py').splitlines():
m = re.match(r"""__version__\s*=\s*['"](.*)['"]""", lin... | mit | Python |
36519fdbd850336fc000bfdb0f21f1df3006de95 | Update setup.py | happyleavesaoc/python-myusps | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='myusps',
version='1.3.2',
description='Python 3 API for USPS Informed Delivery, a way to track packages and mailpieces.',
url='https://github.com/happyleavesaoc/python-myusps/',
license='MIT',
author='happyleaves',
author_email='happy... | from setuptools import setup, find_packages
setup(
name='myusps',
version='1.3.2',
description='Python 3 API for USPS Informed Delivery, a way to track packages and mailpieces.',
url='https://github.com/happyleavesaoc/python-myusps/',
license='MIT',
author='happyleaves',
author_email='happy... | mit | Python |
70755cffa81dcecd8cf1f64e95894ce48b52c293 | Rename variable | fabaff/python-mystrom | setup.py | setup.py | """Set up the Python API for myStrom devices."""
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read()
if sys.argv[-1] == 'publish':
os.syst... | """Set up the Python API for myStrom devices."""
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
if sys.argv[-1] == 'publish':
os.system('python... | mit | Python |
60a24c26076c2547b8fd7e805e180870223b7540 | Revert "Pin pytest to previous version" | ticosax/django-fsm-log,gizmag/django-fsm-log | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
def readfile(filename):
with open(filename, 'r') as open_file:
return open_file.read()
setup(
name='django-fsm-log',
version='1.6.2',
description='Logging for django-fsm',
long_description=readfile('README.md'),
long_... | #!/usr/bin/env python
from setuptools import setup, find_packages
def readfile(filename):
with open(filename, 'r') as open_file:
return open_file.read()
setup(
name='django-fsm-log',
version='1.6.2',
description='Logging for django-fsm',
long_description=readfile('README.md'),
long_... | mit | Python |
279b6e4f3a4aed09a744e0e0adea85c60fc1828b | clean up setup.py | phobson/python-pdfkit,phobson/python-pdfkit,Geosyntec/python-pdfkit,lucashtnguyen/python-pdfkit,lucashtnguyen/python-pdfkit,Geosyntec/python-pdfkit | setup.py | setup.py | import codecs
from distutils.core import setup
from setuptools.command.test import test as TestCommand
import re
import os
import sys
import pdfkit
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['pdfkit-tests.py']
self.test_suite ... | import codecs
from distutils.core import setup
from setuptools.command.test import test as TestCommand
import re
import os
import sys
import pdfkit
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['pdfkit-tests.py']
self.test_suite ... | mit | Python |
321d09575139488f32bf00d767378a94479abb68 | Set url of package to github.com project page. | tbaptista/pyafai | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2014-2016 Tiago Baptista
#
# 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... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2014-2016 Tiago Baptista
#
# 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... | apache-2.0 | Python |
9176e16c0629d7574beb21254e305c354e2697e5 | Bump version to 0.0.3 | marius92mc/github-stargazers,marius92mc/github-stargazers | setup.py | setup.py | # pylint: disable=no-name-in-module,import-error
from setuptools import setup
setup(
name='github-stargazers',
#package_dir = {'': 'github-stargazers'},
packages=['github_stargazers'],
version='0.0.3',
description='List stargazers and check if a user starred that repository',
author='Marius-Co... | # pylint: disable=no-name-in-module,import-error
from setuptools import setup
setup(
name='github-stargazers',
#package_dir = {'': 'github-stargazers'},
packages=['github_stargazers'],
version='0.0.2',
description='List stargazers and check if a user starred that repository',
author='Marius-Co... | mit | Python |
133753648b7822ab2beebd8ba4c65c5d6e59ceee | update author email | dhellmann/entry_point_inspector | setup.py | setup.py | #!/usr/bin/env python
PROJECT = 'entry_point_inspector'
# Change docs/source/conf.py too!
VERSION = '0.1'
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name=PROJECT,
version=VERSION,
description=... | #!/usr/bin/env python
PROJECT = 'entry_point_inspector'
# Change docs/source/conf.py too!
VERSION = '0.1'
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name=PROJECT,
version=VERSION,
description=... | apache-2.0 | Python |
299feb3d428bd1e24bb1ff0328882c95c11ca901 | Bump isort from 5.4.2 to 5.5.0 (#565) | larq/larq | setup.py | setup.py | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.10.0",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq",
version="0.10.0",
python_requires=">=3.6",
author="Plumerai",
author_email="opensource@plumerai.com",
description="An Open Source Machine Learning Libra... | apache-2.0 | Python |
74da8edf0baa77d9a7ef01e49bd8d49728d8ce71 | update version | bastbnl/dotmap,drgrib/dotmap | setup.py | setup.py | from setuptools import setup
setup(
version = '1.1.9',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap',... | from setuptools import setup
setup(
version = '1.1.8',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap',... | mit | Python |
c604cac9c4b1752578dc06cf2767709801a04ab1 | Remove outdated argparse dependency [#41] | ErinCall/catsnap,ErinCall/catsnap,ErinCall/catsnap | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup
setup(name="catsnap",
version="6.0.0",
description="catalog and store images",
author="Erin Call",
author_email="hello@erincall.com",
url="https://github.com/ErinCall/",
packages=['catsnap',
'catsnap.document',
... | #!/usr/bin/python
from setuptools import setup
setup(name="catsnap",
version="6.0.0",
description="catalog and store images",
author="Erin Call",
author_email="hello@erincall.com",
url="https://github.com/ErinCall/",
packages=['catsnap',
'catsnap.document',
... | mit | Python |
cf69afe8f9e8151141e6040e9d0212b00edcbef1 | Add gevent 1.0 as a dependency | rgardner/ouimeaux,iancmcc/ouimeaux,tomjmul/wemo,sstangle73/ouimeaux,fritz-fritz/ouimeaux,sstangle73/ouimeaux,aktur/ouimeaux,aktur/ouimeaux,drock371/ouimeaux,fritz-fritz/ouimeaux,sstangle73/ouimeaux,m-kiuchi/ouimeaux,iancmcc/ouimeaux,drock371/ouimeaux,fritz-fritz/ouimeaux,bennytheshap/ouimeaux,iancmcc/ouimeaux,aktur/oui... | setup.py | setup.py | from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='ouimeaux',
version=version,
description="Python API to Belkin WeMo devices",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keyword... | from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='ouimeaux',
version=version,
description="Python API to Belkin WeMo devices",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keyword... | bsd-3-clause | Python |
2753c5d89abd83d466425a66b5e190414f560986 | Bump version to 1.4.0 | twaddington/django-gravatar | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-gravatar2',
version='1.4.0',
description='Essential Gravatar support for Django. Features helper'
' methods, templatetags and a full test suite!',
long_description=open('RE... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-gravatar2',
version='1.3.0',
description='Essential Gravatar support for Django. Features helper'
' methods, templatetags and a full test suite!',
long_description=open('RE... | mit | Python |
4b704666e7b6a960d030adc8583c96566a934829 | Update package version to 0.6.0 | RealPolitiX/mpes | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
__version__ = '0.6.0'
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.read()
# get the dependen... | from setuptools import setup, find_packages
from codecs import open
from os import path
__version__ = '0.5.0'
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.read()
# get the dependen... | mit | Python |
d2c67d5c87197ac6f9af0df4f16f14a681ed077e | Bump version. | HXLStandard/libhxl-python,HXLStandard/libhxl-python | setup.py | setup.py | #!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='libhxl',
version='0.10',
description='Python support for the Humanitarian Exchange Language (HXL).',
author='David Megginson',
url='http://hxlproject.org',
install... | #!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='libhxl',
version='0.9',
description='Python support for the Humanitarian Exchange Language (HXL).',
author='David Megginson',
url='http://hxlproject.org',
install_... | unlicense | Python |
ebfc257946c3a1f4541565477f8a2db418ff8fad | change secretkey to uuid | bderstine/WebsiteMixer-App-Base,bderstine/WebsiteMixer-App-Base,bderstine/WebsiteMixer-App-Base | setup.py | setup.py | #!venv/bin/python
import getpass, sys, os, uuid
#This will need to ask for values and then update and deploy template files with those values.
domain = raw_input('Enter the domain name that will be used (.com/.net/.org): ')
appname = raw_input('Enter the app name that will be used (one word, no special chars!): ')
ad... | #!venv/bin/python
import getpass, sys, os
#This will need to ask for values and then update and deploy template files with those values.
domain = raw_input('Enter the domain name that will be used (.com/.net/.org): ')
appname = raw_input('Enter the app name that will be used (one word, no special chars!): ')
adminema... | mit | Python |
82f0016cd58f7eaf8f6bebb309b6f935f3783198 | Drop Python2: setup.py (pip package): Require python >= 3.6 | stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester | setup.py | setup.py | # coding: utf-8
import setuptools
long_description = """\
# Stb-tester open-source APIs (stbt_core)
**Automated User Interface Testing for Set-Top Boxes & Smart TVs**
* Copyright © 2013-2021 Stb-tester.com Ltd,
2012-2014 YouView TV Ltd. and other contributors.
* License: LGPL v2.1 or (at your option) any later v... | # coding: utf-8
import setuptools
long_description = """\
# Stb-tester open-source APIs (stbt_core)
**Automated User Interface Testing for Set-Top Boxes & Smart TVs**
* Copyright © 2013-2020 Stb-tester.com Ltd,
2012-2014 YouView TV Ltd. and other contributors.
* License: LGPL v2.1 or (at your option) any later v... | lgpl-2.1 | Python |
397bc5b98a9125acbf97e0ca47076edecea6a249 | add uninstall end-point to setup.py | josl/ASM_challenge,josl/Fastq-dump_ENA_NCBI,josl/NCBI-Downloader,josl/Fastq-dump_ENA_NCBI,josl/ASM_challenge,josl/NCBI-Downloader | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup file for isolates.
This file was generated with PyScaffold 2.4.2, a tool that easily
puts up a scaffold for your new Python project. Learn more under:
http://pyscaffold.readthedocs.org/
"""
import sys
import os
from setuptools import setup
def se... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup file for isolates.
This file was generated with PyScaffold 2.4.2, a tool that easily
puts up a scaffold for your new Python project. Learn more under:
http://pyscaffold.readthedocs.org/
"""
import sys
import os
from setuptools import setup
def se... | apache-2.0 | Python |
851fe5b3dbdfc328e9bfb403dfbfe51b4d1c5be1 | bump version number | kvh/recurrent | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2.5'
setup(name='recurrent',
version=version,
description="Natural language parsing of recurring events",
long_description="See http://github.com/kvh/recurrent",
classifiers=[
'Natural Language :: English',
'Topic :: ... | from setuptools import setup, find_packages
version = '0.2.4'
setup(name='recurrent',
version=version,
description="Natural language parsing of recurring events",
long_description="See http://github.com/kvh/recurrent",
classifiers=[
'Natural Language :: English',
'Topic :: ... | mit | Python |
234804ce5ccd08870c82ccc1e55f86d06eeaf494 | change project name as robotx | idumpling/robotx | setup.py | setup.py | #!/usr/bin/env python
import os
import re
import codecs
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
... | #!/usr/bin/env python
import os
import re
import codecs
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
... | mit | Python |
ee57052a6749459e2702b36a0341e03d6b5e448a | Change version number for new pypi image | hsolbrig/SNOMEDToOWL,hsolbrig/SNOMEDToOWL,hsolbrig/SNOMEDToOWL | setup.py | setup.py |
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# typing library was introduced as a core module in version 3.5.0
requires = ["dirlistproc", "jsonasobj", "rdflib", "rdflib-jsonld"]
if sys.version_info < (3, 5):
requires.append("typing")
setup(
name='S... |
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# typing library was introduced as a core module in version 3.5.0
requires = ["dirlistproc", "jsonasobj", "rdflib", "rdflib-jsonld"]
if sys.version_info < (3, 5):
requires.append("typing")
setup(
name='S... | apache-2.0 | Python |
3e8df061f8b215c3c93113c48d0c125a82c961cb | update project information | SmartDeveloperHub/gitlab-enhancer | setup.py | setup.py | """
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
This file is part of the Smart Developer Hub Project:
http://www.smartdeveloperhub.org
Center for Open Middleware
http://www.centeropenmiddleware.com/
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-... | """
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
This file is part of the Smart Developer Hub Project:
http://www.smartdeveloperhub.org
Center for Open Middleware
http://www.centeropenmiddleware.com/
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-... | apache-2.0 | Python |
63d7abbe7a0d2d6b945e123bb295390e43bef8df | Bump version to 0.3.2 | Gautier/bitbucket-sync | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='bitbucket-sync',
version='0.3.2',
description='bitbucket-sync synchronize locally all the repositories of a bitbucket account',
author='Gautier Hayoun',
author_email='ghayoun@gmail.com',
url='https://github.com/gautier/bitbucket-sync',
... | from setuptools import setup, find_packages
setup(
name='bitbucket-sync',
version='0.3.1',
description='bitbucket-sync synchronize locally all the repositories of a bitbucket account',
author='Gautier Hayoun',
author_email='ghayoun@gmail.com',
url='https://github.com/gautier/bitbucket-sync',
... | mit | Python |
37ecf18d0ad09d7402143f22443e957a57ec7a2a | Include pyjwt in distribution artifacts (#654) | firebase/firebase-admin-python,firebase/firebase-admin-python | setup.py | setup.py | # Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
726d843a1fc8c54f179b3a1e85c3dd3fae8392ec | Bump version number | solarnz/nose-watcher,solarnz/nose-watcher | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='nose-watcher',
version='0.1.3',
description='A n... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='nose-watcher',
version='0.1.2',
description='A n... | bsd-3-clause | Python |
e98784875a2b681e25fc2b65d22b893706a42f83 | Bump up the version for fleet-py | totem/fleet-py | setup.py | setup.py | from distutils.core import setup
with open('requirements.txt') as req_file:
requirements = req_file.read().splitlines()
setup(
name='fleet-py',
install_requires=requirements,
version='0.1.2',
description='Fleet SDK Wrapper for Python',
author='Sukrit Khera',
author_email='',
url='https... | from distutils.core import setup
with open('requirements.txt') as req_file:
requirements = req_file.read().splitlines()
setup(
name='fleet-py',
install_requires=requirements,
version='0.1.1',
description='Fleet SDK Wrapper for Python',
author='Sukrit Khera',
author_email='',
url='https... | mit | Python |
cd3d1899091f1b9d3f63d80837ee54480fb7aee9 | Fix trove. | icydoge/Constantine | setup.py | setup.py | """ A setuptools based setup module.
Adapted from:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='Constantine',
version='1.0',
descriptio... | """ A setuptools based setup module.
Adapted from:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='Constantine',
version='1.0',
descriptio... | mit | Python |
2dc452d8c7499081bb777f312887cd0f0be7df92 | Fix package name | andfoy/spyder-terminal,spyder-ide/spyder-terminal,andfoy/spyder-terminal,spyder-ide/spyder-terminal,spyder-ide/spyder-terminal,spyder-ide/spyder-terminal,andfoy/spyder-terminal | setup.py | setup.py | # -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) Spyder Project Contributors
#
# Licensed under the terms of the MIT License
# (see LICENSE.txt for details)
# -----------------------------------------------------------------------------
"""Setup scr... | # -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) Spyder Project Contributors
#
# Licensed under the terms of the MIT License
# (see LICENSE.txt for details)
# -----------------------------------------------------------------------------
"""Setup scr... | mit | Python |
692d1f0622890a00d142bfa6fe3d772d15e2109a | fix typo in long desc | pombredanne/jip,Darkade/jip,sunng87/jip,sunng87/jip,Darkade/jip,baztian/jip,baztian/jip,pombredanne/jip | setup.py | setup.py | #! /usr/bin/jython
# Copyright (C) 2011 Sun Ning<classicning@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.... | #! /usr/bin/jython
# Copyright (C) 2011 Sun Ning<classicning@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.... | mit | Python |
f35273e85c827b5eb8563f0ad3cdb6c01e0a2389 | Bump version number for release. | nimbis/django-shop-richproduct,nimbis/django-shop-richproduct | setup.py | setup.py | from setuptools import setup
from pip.req import parse_requirements
# parse requirements
reqs = parse_requirements("requirements/common.txt")
# setup the project
setup(
name="django-shop-richproduct",
version="0.1.0",
author="Nimbis Services, Inc.",
author_email="info@nimbisservices.com",
descript... | from setuptools import setup
from pip.req import parse_requirements
# parse requirements
reqs = parse_requirements("requirements/common.txt")
# setup the project
setup(
name="django-shop-richproduct",
version="0.0.4",
author="Nimbis Services, Inc.",
author_email="info@nimbisservices.com",
descript... | bsd-3-clause | Python |
3d1a7f20ed2b4efdb87dacec6548091e7a581f2d | Bump version to 0.14.4 | limbera/django-nap,MarkusH/django-nap | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-nap',
version='0.14.4',
description='A light REST tool for Django',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='http://github.com/funkybob/django-nap',
keywords=['django', 'json', 'rest'],
packages = f... | from setuptools import setup, find_packages
setup(
name='django-nap',
version='0.14.3',
description='A light REST tool for Django',
author='Curtis Maloney',
author_email='curtis@tinbrain.net',
url='http://github.com/funkybob/django-nap',
keywords=['django', 'json', 'rest'],
packages = f... | bsd-3-clause | Python |
4b9838deb38c370226df1ba2af3c5cfef9a5b006 | Bump version. | Grokzen/redisco,kiddouk/redisco,iamteem/redisco,heckj/redisco,Grokzen/redisco | setup.py | setup.py | #!/usr/bin/env python
import os
version = '0.1.dev20'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='redisco',
version=version,
description='Python Containe... | #!/usr/bin/env python
import os
version = '0.1.dev19'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='redisco',
version=version,
description='Python Containe... | mit | Python |
bac0efb5ad5d8d0281aa5cb95139cbafad0e0176 | update setup.py, too | artefactual-labs/agentarchives | setup.py | setup.py | from setuptools import setup
setup(
name="agentarchives",
description="Clients to retrieve, add, and modify records from archival management systems",
author="Misty De Meo",
author_email="mdemeo@artefactual.com",
license="AGPL 3",
version="0.1",
packages=["agentarchives", "agentarchives.arc... | from setuptools import setup
setup(
name="agentarchives",
description="Clients to retrieve, add, and modify records from archival management systems",
author="Misty De Meo",
author_email="mdemeo@artefactual.com",
license="AGPL 3",
version="0.1",
packages=["agentarchives", "agentarchives.arc... | agpl-3.0 | Python |
5dd41cead32a069e49c9d1bd7177e91f588784a8 | update to latest mailbox-server 0.3.1 | warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole | setup.py | setup.py | from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass()
trove_classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: Syste... | from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass()
trove_classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: Syste... | mit | Python |
ac3f62a5897b2e8bdd3cbb803b93e5925e53d550 | Fix package data bit | kahnjw/wincast | setup.py | setup.py | from setuptools import setup, find_packages
install_requires = [
'dill==0.2.5',
'easydict==1.6',
'h5py==2.6.0',
'jsonpickle==0.9.3',
'Keras==1.2.0',
'nflgame==1.2.20',
'numpy==1.11.2',
'pandas==0.19.1',
'scikit-learn==0.18.1',
'scipy==0.18.1',
'tensorflow==0.12.0rc1',
'... | from setuptools import setup, find_packages
install_requires = [
'dill==0.2.5',
'easydict==1.6',
'h5py==2.6.0',
'jsonpickle==0.9.3',
'Keras==1.2.0',
'nflgame==1.2.20',
'numpy==1.11.2',
'pandas==0.19.1',
'scikit-learn==0.18.1',
'scipy==0.18.1',
'tensorflow==0.12.0rc1',
'... | mit | Python |
d5ddc58578c9b9b047b2fa24dd123b8ae580b61e | Change version. for packaging. | bdastur/spam,bdastur/spam | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.md') as fhandle:
long_description = fhandle.read()
setup(
name='pyansible',
version='1.0.1',
description='A module for interfacing with Ansible Runner and Inventory.',
long_description=long_description,
url="https://github.com/bdas... | from setuptools import setup, find_packages
with open('README.md') as fhandle:
long_description = fhandle.read()
setup(
name='pyansible',
version='1.0.0',
description='A module for interfacing with Ansible Runner and Inventory.',
long_description=long_description,
url="https://github.com/bdas... | apache-2.0 | Python |
8e07f42fd684c88679fa4b9770c286e69875fe1f | add channel grid data files to distribution | idies/pyJHTDB,idies/pyJHTDB,idies/pyJHTDB,idies/pyJHTDB | setup.py | setup.py | #! /usr/bin/env python
from setuptools import setup
import datetime
now = datetime.datetime.now()
#TODO: change format string at some point before the year 9999
date_name = '{0:0>4}{1:0>2}{2:0>2}'.format(now.year, now.month, now.day)
setup(
name = 'pyJHTDB',
version = date_name,
packages = [... | #! /usr/bin/env python
from setuptools import setup
import datetime
now = datetime.datetime.now()
#TODO: change format string at some point before the year 9999
date_name = '{0:0>4}{1:0>2}{2:0>2}'.format(now.year, now.month, now.day)
setup(
name = 'pyJHTDB',
version = date_name,
packages = [... | apache-2.0 | Python |
e2d9146764c3894383a831b251182ccd592bab8c | Use readme as long_description | DasIch/relief,DasIch/relief | setup.py | setup.py | # coding: utf-8
import os
import sys
from setuptools import setup
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
PACKAGE_PATH = os.path.join(PROJECT_PATH, "relief")
if sys.version_info[:2] < (2, 7):
install_requires = ['ordereddict>=1.1', 'Counter>=1.0.0']
else:
install_requires = []
def get_ve... | # coding: utf-8
import os
import sys
from setuptools import setup
PACKAGE_PATH = os.path.join(
os.path.abspath(os.path.dirname(__file__)), "relief"
)
if sys.version_info[:2] < (2, 7):
install_requires = ['ordereddict>=1.1', 'Counter>=1.0.0']
else:
install_requires = []
def get_version():
path = os... | bsd-3-clause | Python |
282f4a103d79ac2d69ed3e925d7729a4683a37f3 | fix download | liangrog/lmdo,piwell/lmdo,MerlinTechnology/lmdo | setup.py | setup.py | """Packaging settings."""
from codecs import open
from os.path import abspath, dirname, join
from subprocess import call
from setuptools import Command, find_packages, setup
from lmdo import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
lon... | """Packaging settings."""
from codecs import open
from os.path import abspath, dirname, join
from subprocess import call
from setuptools import Command, find_packages, setup
from lmdo import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
lon... | mit | Python |
c9788d9a9270609cc939bf4ddc1cc61e3b231a81 | Bump version number to 1.1.0 | scraperwiki/xypath | setup.py | setup.py | from setuptools import setup, find_packages
long_desc = """
XYPath is aiming to be XPath for spreadsheets: it offers a framework for
navigating around and extracting values from tabular data.
"""
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers
setup(
name='xypath',
version='1.1.0... | from setuptools import setup, find_packages
long_desc = """
XYPath is aiming to be XPath for spreadsheets: it offers a framework for
navigating around and extracting values from tabular data.
"""
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers
setup(
name='xypath',
version='1.0.1... | bsd-2-clause | Python |
c3e399b4a3d88539685da646a132234ebbd6d1b4 | Remove unused imports from setup.py | dirn/Flask-Simon,dirn/Flask-Simon | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='Flask-Simon',
version='0.4.0',
description='Simple MongoDB Models for Flask',
long_description=open('README.rst').read(),
author='Andy Dirnberger',
author_email='dirn@dirnonline.com',
url='https://github.com/dirn/Flask-Simon',... | #!/usr/bin/env python
from setuptools import setup
import os
import sys
setup(
name='Flask-Simon',
version='0.4.0',
description='Simple MongoDB Models for Flask',
long_description=open('README.rst').read(),
author='Andy Dirnberger',
author_email='dirn@dirnonline.com',
url='https://github.... | bsd-3-clause | Python |
800de2000ef1e5ca228f3eb9cd407909a572d722 | Revert "fix install_requires blocker (#85)" | KeyproOy/OWSLib,jachym/OWSLib,JuergenWeichand/OWSLib,kwilcox/OWSLib,tomkralidis/OWSLib,ocefpaf/OWSLib,jaygoldfinch/OWSLib,kalxas/OWSLib,geographika/OWSLib,jaygoldfinch/OWSLib,menegon/OWSLib,b-cube/OWSLib,daf/OWSLib,datagovuk/OWSLib,dblodgett-usgs/OWSLib,bird-house/OWSLib,QuLogic/OWSLib,Jenselme/OWSLib,datagovuk/OWSLib,... | setup.py | setup.py | from setuptools import setup, find_packages
import owslib
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
... | from setuptools import setup, find_packages
import owslib
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
... | bsd-3-clause | Python |
e1a8a2669dafad28c56eb6f60f03476ba6c1c563 | fix setup.py using absolute paths for data_files | mineo/lala,mineo/lala | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
from lala import __version__
setup(name="lala",
version=__version__,
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
scripts=["run-lala.py"],
packages=["lala", "lala.plugins"],
package_dir = {"lala": "la... | #!/usr/bin/env python
from distutils.core import setup
from lala import __version__
setup(name="lala",
version=__version__,
author="Wieland Hoffmann",
author_email="themineo@gmail.com",
scripts=["run-lala.py"],
packages=["lala", "lala.plugins"],
package_dir = {"lala": "la... | mit | Python |
5e39dd349c66654c997a1126b4547239c42b802f | Remove "or later" to be fully compliant | openmicroscopy/weberror,openmicroscopy/weberror | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016 University of Dundee.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016 University of Dundee.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your... | agpl-3.0 | Python |
50ead76f9e03a33570a973a6e1cc2eef3f226143 | Add trove classifiers for python 3 and python 2. | crs4/hl7apy | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2015, CRS4
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2015, CRS4
#
# 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 ... | mit | Python |
6cd11204c829beebcdcb1bc1de0c4a0112e18063 | Bump version to 0.5.7 | matyasselmeci/osg-configure,opensciencegrid/osg-configure,matyasselmeci/osg-configure,opensciencegrid/osg-configure | setup.py | setup.py | from distutils.core import setup
import glob
config_files = glob.glob('config/*.ini')
setup(name='osg-configure',
version='0.5.7',
description='Package for configure-osg and associated scripts',
author='Suchandra Thapa',
author_email='sthapa@ci.uchicago.edu',
url='http://www.openscienceg... | from distutils.core import setup
import glob
config_files = glob.glob('config/*.ini')
setup(name='osg-configure',
version='0.5.6',
description='Package for configure-osg and associated scripts',
author='Suchandra Thapa',
author_email='sthapa@ci.uchicago.edu',
url='http://www.openscienceg... | apache-2.0 | Python |
d74ccf6611f37a41981cb785e25cbaafde89c331 | fix README reference in setup.py | caktus/django-pagelets,caktus/django-pagelets,caktus/django-pagelets,caktus/django-pagelets | setup.py | setup.py | import os
from setuptools import setup, find_packages
packages = find_packages()
packages.remove('sample_project')
setup(
name='django-pagelets',
version='0.0.1',
author='Caktus Consulting Group',
author_email='solutions@caktusgroup.com',
packages=packages,
install_requires = [],
include_p... | import os
from setuptools import setup, find_packages
packages = find_packages()
packages.remove('sample_project')
setup(
name='django-pagelets',
version='0.0.1',
author='Caktus Consulting Group',
author_email='solutions@caktusgroup.com',
packages=packages,
install_requires = [],
include_p... | bsd-3-clause | Python |
507cf7abfdc6fa34d98802205835b011163363e4 | Fix trove classifiers | edoburu/django-staff-toolbar,edoburu/django-staff-toolbar | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
# When creating the sdist, make sure the django.mo file also exists:
# For develop mode, try to compile but don't abort because it might be an fresh virtualenv install.
if 'sdist' in sys.... | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
# When creating the sdist, make sure the django.mo file also exists:
# For develop mode, try to compile but don't abort because it might be an fresh virtualenv install.
if 'sdist' in sys.... | apache-2.0 | Python |
8ff387b039a83d21eb4999d1bc1704a827b3c3a2 | Increment version number, fix homepage | kevinschaul/open-in-github | setup.py | setup.py | from setuptools import setup
setup(
name='opengithub',
version='0.1.3',
author='Kevin Schaul',
author_email='kevin.schaul@gmail.com',
url='http://kevin.schaul.io',
description='Open your project in GitHub from the command line.',
long_description='Check out the project on GitHub for the lat... | from setuptools import setup
setup(
name='opengithub',
version='0.1.2',
author='Kevin Schaul',
author_email='kevin.schaul@gmail.com',
url='http://www.kevinschaul.com',
description='Open your project in GitHub from the command line.',
long_description='Check out the project on GitHub for the... | mit | Python |
b5b55e241eb2be4b1953b5b439cc786aa2535e26 | update requirements | pyIMS/pyimzML,alexandrovteam/pyimzML | setup.py | setup.py | from pyimzml import __version__
from setuptools import setup
setup(
name='pyimzML',
version=__version__,
description="Parser for conversion of imzML 1.1.0 files",
long_description="""
Parser for conversion of imzML 1.1.0 files.
See specification here: http://imzml.org/download/imzml/specifications_imzM... | from pyimzml import __version__
from setuptools import setup
setup(
name='pyimzML',
version=__version__,
description="Parser for conversion of imzML 1.1.0 files",
long_description="""
Parser for conversion of imzML 1.1.0 files.
See specification here: http://imzml.org/download/imzml/specifications_imzM... | apache-2.0 | Python |
88237122e48f99de709a8ec396f1e9f671764580 | Bump wpilib requirements | robotpy/robotpy-wpilib-utilities,robotpy/robotpy-wpilib-utilities | setup.py | setup.py | #!/usr/bin/env python3
import os
from os.path import dirname, exists, join
import sys, subprocess
from setuptools import setup, find_packages
setup_dir = dirname(__file__)
git_dir = join(setup_dir, ".git")
base_package = "robotpy_ext"
version_file = join(setup_dir, base_package, "version.py")
# Automatically generat... | #!/usr/bin/env python3
import os
from os.path import dirname, exists, join
import sys, subprocess
from setuptools import setup, find_packages
setup_dir = dirname(__file__)
git_dir = join(setup_dir, ".git")
base_package = "robotpy_ext"
version_file = join(setup_dir, base_package, "version.py")
# Automatically generat... | bsd-3-clause | Python |
fb872602dd6d33d355818c18f1ea12465a7d1c53 | update setup.py version to v0.9.4 | civic/elitech-datareader | setup.py | setup.py | from setuptools import setup,find_packages
import os
import setuptools.command.sdist
class SdistCommand(setuptools.command.sdist.sdist):
def run(self):
try:
import pypandoc
rst = pypandoc.convert("README.md", "rst")
with open("README.txt", "w") as f:
f.w... | from setuptools import setup,find_packages
import os
import setuptools.command.sdist
class SdistCommand(setuptools.command.sdist.sdist):
def run(self):
try:
import pypandoc
rst = pypandoc.convert("README.md", "rst")
with open("README.txt", "w") as f:
f.w... | mit | Python |
2e0dec1fb0c7b124f62a0d3461f7a722236b6137 | Move to revision 0.1.0 | pete0emerson/slackhook | setup.py | setup.py | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.di... | import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.di... | mit | Python |
1d23d41bf230a0e8a07d1f3349bde459dda221d7 | Bump version to 0.41 | machtfit/django-emarsys,machtfit/django-emarsys | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='django_emarsys',
version='0.41',
description='Django glue for Emarsys events',
license="MIT",
author='Markus Bertheau',
author_email='mbertheau@gmail.com',
long_description=open('README.md').read(),
packages=['dja... | #!/usr/bin/env python
from setuptools import setup
setup(name='django_emarsys',
version='0.40',
description='Django glue for Emarsys events',
license="MIT",
author='Markus Bertheau',
author_email='mbertheau@gmail.com',
long_description=open('README.md').read(),
packages=['dja... | mit | Python |
e457552287d9fc1fa95d6d93ed2215fd35c66312 | Prepare v1.0.2 release | caleb531/cache-simulator | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
from setuptools import setup
# Get long description (used on PyPI project page)
def get_long_description():
try:
# Use pandoc to create reStructuredText README if possible
import pypandoc
return pypandoc.convert('README.md', 'rst')
except:
... | #!/usr/bin/env python
# coding=utf-8
from setuptools import setup
# Get long description (used on PyPI project page)
def get_long_description():
try:
# Use pandoc to create reStructuredText README if possible
import pypandoc
return pypandoc.convert('README.md', 'rst')
except:
... | mit | Python |
72892abe6d0dc144a04cc516304fd6e99c63ff1e | Fix setup.py | wedi/PyMediaRSS2Gen | setup.py | setup.py | # coding=utf-8
"""Setup script to install PyMediaRSS2Gen."""
import sys
from setuptools import setup
if sys.version_info < (2, 7):
version_dep_reqs = ['ordereddict']
else:
version_dep_reqs = []
try:
long_description = \
open('README.rst').read() + '\n\n' + \
open('CHANGELOG.rst').read() +... | # coding=utf-8
"""Setup script to install PyMediaRSS2Gen."""
import sys
from distutils.core import setup
if sys.version_info < (2, 7):
version_dep_reqs = ['ordereddict']
else:
version_dep_reqs = []
try:
long_description = \
open('README.rst').read() + '\n\n' + \
open('CHANGELOG.rst').read... | mit | Python |
569c398f80cdb040f7ae08f7da4a858c2b10a9be | Prepare pip before any action | starofrainnight/rabird.core | setup.py | setup.py | #!/usr/bin/env python
from ez_setup import get_best_downloader
downloader = get_best_downloader()
try:
import pip
except:
# If we do not have pip, we fetch and install one. It will also install
# setuptools and wheel.
downloader("https://bootstrap.pypa.io/get-pip.py", "get-pip.py")
exec(open("ge... | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
import os
import os.path
import sys
import shutil
import logging
import fnmatch
# First remove "./rabird" directory, otherwise it would failed to import
# global rabird.core.
shutil.rmtree("./rabird", ignore_errors=True)
from src.rabird.core... | apache-2.0 | Python |
366e74d8ac6fe0d8583db9b7a2cb69c2481504d5 | add synth_data package | oscarlorentzon/OpenSfM,oscarlorentzon/OpenSfM,oscarlorentzon/OpenSfM,mapillary/OpenSfM,mapillary/OpenSfM,mapillary/OpenSfM,oscarlorentzon/OpenSfM,oscarlorentzon/OpenSfM,mapillary/OpenSfM,mapillary/OpenSfM | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function
from distutils.core import setup
import os
import errno
import subprocess
import sys
def mkdir_p(path):
'''Make a directory including parent directories.
'''
try:
os.makedirs(path)
except os.error as exc:
if exc.errno != errn... | #!/usr/bin/env python
from __future__ import print_function
from distutils.core import setup
import os
import errno
import subprocess
import sys
def mkdir_p(path):
'''Make a directory including parent directories.
'''
try:
os.makedirs(path)
except os.error as exc:
if exc.errno != errn... | bsd-2-clause | Python |
3693b2956201f8f2224b406fae64784a227113b0 | Include nested packages in setup.py | maxmalysh/disposable-emails | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='disposable-emails',
version='0.9',
description='Weed out disposable email providers with ease',
url='https://github.com/maxmalysh/disposable-emails',
author='Max Malysh',
author_email='github@maxmalysh.com',
license='MIT',
package... | from setuptools import setup
setup(
name='disposable-emails',
version='0.9',
description='Weed out disposable email providers with ease',
url='https://github.com/maxmalysh/disposable-emails',
author='Max Malysh',
author_email='github@maxmalysh.com',
license='MIT',
packages=['disposable_... | mit | Python |
5bc2d9a995b17aaea3b5b149504f71b508fdff8f | Add missing viz requirements to setup.py | Parsl/parsl,Parsl/parsl,Parsl/parsl,Parsl/parsl | setup.py | setup.py | from setuptools import setup, find_packages
with open('parsl/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
install_requires = f.readlines()
extras_require = {
'monitoring' : [
'psutil',
'sqlalchemy',
'sqlalchemy_utils',
'pydot',
'networkx',
... | from setuptools import setup, find_packages
with open('parsl/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='parsl',
version=VERSION,
description='Simple data dependent workflows in Python',
long_description='Simple parallel ... | apache-2.0 | Python |
2cfb66ed1a9e97a4e3949c8d344d501f524810e7 | add licence in setup.py | Psycojoker/holygrail | setup.py | setup.py | #!/usr/bin/python
# -*- coding:Utf-8 -*-
from setuptools import setup
setup(name='HolyGrail',
version='0.1.1 Galahad',
description='High level lib to manage the holy quests of your life (in other words GTD next actions)',
author='Laurent Peuch',
author_email='cortex@worlddomination.be',
... | #!/usr/bin/python
# -*- coding:Utf-8 -*-
from setuptools import setup
setup(name='HolyGrail',
version='0.1.1 Galahad',
description='High level lib to manage the holy quests of your life (in other words GTD next actions)',
author='Laurent Peuch',
author_email='cortex@worlddomination.be',
... | agpl-3.0 | Python |
018913e4b518648b832d057169746e3976f39761 | Bump version number post release | c-w/Gutenberg,hugovk/Gutenberg | setup.py | setup.py | """Library installer."""
from setuptools import find_packages
from setuptools import setup
setup(
name='Gutenberg',
version='0.4.1',
author='Clemens Wolff',
author_email='clemens.wolff+pypi@gmail.com',
packages=find_packages(exclude=['tests']),
url='https://github.com/c-w/Gutenberg',
dow... | """Library installer."""
from setuptools import find_packages
from setuptools import setup
setup(
name='Gutenberg',
version='0.4.0',
author='Clemens Wolff',
author_email='clemens.wolff+pypi@gmail.com',
packages=find_packages(exclude=['tests']),
url='https://github.com/c-w/Gutenberg',
dow... | apache-2.0 | Python |
d95daa5d57ad5c86e7362efd6bdbf4bcd3209132 | remove celery from requirements in setup.py | hanpama/wagtail,serzans/wagtail,nutztherookie/wagtail,JoshBarr/wagtail,iho/wagtail,nimasmi/wagtail,mayapurmedia/wagtail,mikedingjan/wagtail,stevenewey/wagtail,FlipperPA/wagtail,janusnic/wagtail,lojack/wagtail,rsalmaso/wagtail,inonit/wagtail,bjesus/wagtail,Pennebaker/wagtail,nrsimha/wagtail,rsalmaso/wagtail,gasman/wagta... | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
# exit of python setup.py test # in multiprocessing/util.py _exit_function when
# running python setup.py ... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
# exit of python setup.py test # in multiprocessing/util.py _exit_function when
# running python setup.py ... | bsd-3-clause | Python |
c8b3c3ed8f05fc03f669a107f16cced9eeb9156a | Bump version | guykisel/robotframework-faker,guykisel/robotframework-faker | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
short_description = 'Robot Framework wrapper for faker, a fake test data generator'
try:
description = open('README.md').read()
except IOError:
description = short_description
try:
license = open('LICENSE').read()
except IOError:
license = 'MIT L... | #!/usr/bin/env python
from distutils.core import setup
short_description = 'Robot Framework wrapper for faker, a fake test data generator'
try:
description = open('README.md').read()
except IOError:
description = short_description
try:
license = open('LICENSE').read()
except IOError:
license = 'MIT L... | mit | Python |
dbbe1bdc168c1efc40941c387e91447d27837e26 | Bump to v0.11.0 | gisce/enerdata | setup.py | setup.py | import sys
from setuptools import setup, find_packages
INSTALL_REQUIRES = ['pytz', 'workalendar']
if sys.version_info < (2, 7):
INSTALL_REQUIRES += ['backport_collections']
setup(
name='enerdata',
version='0.11.0',
packages=find_packages(),
url='http://code.gisce.net',
license='MIT',
auth... | import sys
from setuptools import setup, find_packages
INSTALL_REQUIRES = ['pytz', 'workalendar']
if sys.version_info < (2, 7):
INSTALL_REQUIRES += ['backport_collections']
setup(
name='enerdata',
version='0.10.0',
packages=find_packages(),
url='http://code.gisce.net',
license='MIT',
auth... | mit | Python |
7714ce804a2f1e3bb1d72b125aa0ad1fcc0746d6 | Bump patch version. | 18F/regulations-site,18F/regulations-site,eregs/regulations-site,18F/regulations-site,eregs/regulations-site,eregs/regulations-site,18F/regulations-site,eregs/regulations-site | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name="regulations",
version="8.4.2",
packages=find_packages(),
include_package_data=True,
install_requires=[
'cached-property',
'django>=1.8,<1.12',
'enum34;python_version<"3.4"',
'futures;python_version<"3"',
... | from setuptools import find_packages, setup
setup(
name="regulations",
version="8.4.1",
packages=find_packages(),
include_package_data=True,
install_requires=[
'cached-property',
'django>=1.8,<1.12',
'enum34;python_version<"3.4"',
'futures;python_version<"3"',
... | cc0-1.0 | Python |
1b0874f959472ac9a0f3fccc5fba2d66824694e7 | fix find_packages path | jaredculp/faker,trtd/faker,joke2k/faker,GLMeece/faker,xfxf/faker-python,johnraz/faker,yiliaofan/faker,venmo/faker,thedrow/faker,beetleman/faker,meganlkm/faker,xfxf/faker-1,ShaguptaS/faker,ericchaves/faker,MaryanMorel/faker,HAYASAKA-Ryosuke/faker,danhuss/faker,joke2k/faker | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.3'
setup(name='fake-factory',
version=version,
description=... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.3'
setup(name='fake-factory',
version=version,
description=... | mit | Python |
eb2cfa7578012f7312bdb655368ce543cb680a0d | Upgrade tangled.web from 0.1a5 to 0.1a9 | TangledWeb/tangled.auth | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.auth',
version='0.1a4.dev0',
description='Tangled auth integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.auth/tags',
author='Wyatt Baldwin',
... | from setuptools import setup
setup(
name='tangled.auth',
version='0.1a4.dev0',
description='Tangled auth integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
download_url='https://github.com/TangledWeb/tangled.auth/tags',
author='Wyatt Baldwin',
... | mit | Python |
a40aa7617237ca82b5bd34733286d076ccf13f8e | Fix Development Status | edoburu/django-slug-preview,edoburu/django-slug-preview | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*parts):
version_file = read(... | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*parts):
version_file = read(... | apache-2.0 | Python |
3187ff297b02eaf1c0b6debdb48d2f6396751947 | Update deps for initial release | bbangert/retools,0x1997/retools,mozilla-services/retools | setup.py | setup.py | __version__ = '0.1'
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()
setup(name='retools',
version=__version__,
description='Redis Tools'... | __version__ = '0.1'
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()
setup(name='retools',
version=__version__,
description='Redis Tools'... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.