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 |
|---|---|---|---|---|---|---|---|---|
c21a6e65611b81681686465607e9c553f048a023 | Bump version to 0.1.1 | bobjansen/django_fabv | setup.py | setup.py | try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name = 'django_fabv',
version = '0.1.1',
url = 'https://pypi.python.org/pypi/django_fabv/0.1.0',
include_package_data=True,
packages=find_packages(),
license = '3... | try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name = 'django_fabv',
version = '0.1.0dev',
url = 'https://pypi.python.org/pypi/django_fabv/0.1.0',
include_package_data=True,
packages=find_packages(),
license =... | bsd-3-clause | Python |
91b6dd49bed885432f9590ab8396382790015879 | Add 'python_requires' check (#953) | alex/django-filter,alex/django-filter | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
f = open('README.rst')
readme = f.read()
f.close()
version = '2.0.0'
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.syste... | import os
import sys
from setuptools import setup, find_packages
f = open('README.rst')
readme = f.read()
f.close()
version = '2.0.0'
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.syste... | bsd-3-clause | Python |
c962788cd09ebee014a3444463c34ade1efdad6e | Update setup.py for preparing v2.1.3 release | chhsiao90/gviewer | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="gviewer",
version="2.1.3",
description="General Viewer",
lon... | from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="gviewer",
version="2.1.2",
description="General Viewer",
lon... | mit | Python |
8756c53539cd597f62aa49a346ded228d8e99650 | Fix build on py3k. | abilian/abilian-core,abilian/abilian-core,abilian/abilian-core,abilian/abilian-core,abilian/abilian-core | setup.py | setup.py | # coding=utf-8
"""
"""
from __future__ import absolute_import, print_function, unicode_literals
from distutils.command.build import build as _build
import pip
import setuptools
from setuptools.command.develop import develop as _develop
from setuptools.command.sdist import sdist as _sdist
session = session = pip.down... | # coding=utf-8
"""
"""
from __future__ import absolute_import, print_function, unicode_literals
from distutils.command.build import build as _build
import pip
import setuptools
from setuptools.command.develop import develop as _develop
from setuptools.command.sdist import sdist as _sdist
session = session = pip.down... | lgpl-2.1 | Python |
3a2c8f90e8997e708cff01e21b8abd937dc7cca4 | fix url | visualfabriq/bqueryd | setup.py | setup.py | from distutils.core import setup
setup(name='bqueryd',
version='0.10',
description='A companion library to make bquery distributed',
maintainer='Carst Vaartjes',
maintainer_email='cvaartjes@visualfabriq.com',
url='https://github.com/visualfabriq/bqueryd',
license='MIT',
packag... | from distutils.core import setup
setup(name='bqueryd',
version='0.10',
description='A companion library to make bquery distributed',
maintainer='Carst Vaartjes',
maintainer_email='cvaartjes@visualfabriq.com',
url='https://github.com/visualfabriq/b4query',
license='MIT',
packag... | bsd-3-clause | Python |
4116cd0fac1eccb66a4aaa6f836a53ea4985e742 | fix setup.py | SmilingXinyi/ansi2utf8,SmilingXinyi/ansi2utf8 | setup.py | setup.py | # -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
from ansi2utf8 import __version__
setup(
name = 'ansi2utf8',
version = __version__,
description = 'ANSI to UTF-8',
url = 'https://github.com/SmilingXinyi/ansi2utf8',
author = 'blaite',
author_email = 'smilingxinyi@gmail.com',
... | # -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
from ansi2utf8 import __version__
setup(
name = 'ansi2utf8',
version = __version__,
description = 'ANSI to UTF-8',
url = 'https://github.com/SmilingXinyi/ansi2utf8',
author = 'blaite',
keywords = 'a2u ansi2utf8',
packages ... | mit | Python |
dfa7bd43cdfadc188b9925de9aa7f058e033fe18 | Bump version to v0.0.2 | incuna/feincms-pages-api | setup.py | setup.py | from setuptools import find_packages, setup
version = '0.0.2'
install_requires = (
'djangorestframework>=2.3.10,<3',
'FeinCMS>=1.9,<1.10',
'django-orderable>=2.0.1,<3',
)
setup(
name='feincms-pages-api',
version=version,
author='Incuna Ltd',
author_email='admin@incuna.com',
url='ht... | from setuptools import find_packages, setup
version = '0.0.1'
install_requires = (
'djangorestframework>=2.3.10,<3',
'FeinCMS>=1.9,<1.10',
'django-orderable>=2.0.1,<3',
)
setup(
name='feincms-pages-api',
version=version,
author='Incuna Ltd',
author_email='admin@incuna.com',
url='ht... | bsd-2-clause | Python |
7ebb342786a3d85fff2ad4cd4c0056515a0c9428 | Fix author_email | snowball-one/cid | setup.py | setup.py | from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='django-cid',
version='1.1.dev0',
description="""Correlation IDs in Django for debugging requests""",
long_description=readme + '\n\n' + histor... | from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='django-cid',
version='1.1.dev0',
description="""Correlation IDs in Django for debugging requests""",
long_description=readme + '\n\n' + histor... | bsd-3-clause | Python |
5803f1f277dcecdd2c43f682c8fce215a31dfcd6 | update version and remove unnecessary packages | sudoguy/instabot,misisnik/testinsta,instagrambot/instabot,AlexBGoode/instabot,ohld/instabot,misisnik/testinsta,instagrambot/instabot,Diapostrofo/instabot | setup.py | setup.py | from distutils.core import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.3.3.18',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov',
author_email='ohld@icloud.com',
url='https://github.com/instagrambo... | from distutils.core import setup
setup(
name='instabot',
packages=['instabot', 'instabot.bot', 'instabot.api'],
version='0.3.3.16',
description='Cool Instagram bot scripts and API python wrapper.',
author='Daniil Okhlopkov',
author_email='ohld@icloud.com',
url='https://github.com/instagrambo... | apache-2.0 | Python |
8722942a35b3feeb6698f6bdb45632a370a1ca68 | clean up setup.py file | dwatkinsweb/django-skin,dwatkinsweb/django-skin | setup.py | setup.py | #!/usr/bin/env python
# coding: utf8
from setuptools import setup
setup(
name='django-skin',
version='0.1dev',
packages=['skin', ],
url='https://github.com/dwatkinsweb/django-skin',
license='MIT',
author='David Watkins',
author_email='dwatkinsweb@gmail.com',
description='Add template s... | #!/usr/bin/env python
# coding: utf8
from __future__ import with_statement
from setuptools import setup, find_packages
# Figure out the version; this could be done by importing the
# module, though that requires dependencies to be already installed,
# which may not be the case when processing a pip requirements
# fi... | mit | Python |
ba6dd6494b428ff0161f303818bb2981b22289e8 | add stress testing to pyramd app | OpenTransitTools/services | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'ott.data',
'ott.utils',
'ott.geocoder',
'ott.otp_client',
... | import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'ott.data',
'ott.utils',
'ott.geocoder',
'ott.otp_client',
... | mpl-2.0 | Python |
b3b8771bfc38aec6b8b3945c1b75ff1c6040adb8 | bump to 0.0.6 | xiachufang/pylogrotate | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pylogrotate',
version='0.0.6',
description='Logrotate in python',
author='gfreezy',
author_email='gfreezy@gmail.com',
url='https://github.com/xiachufang/pylogrotate',
packages=find_packages(exclude=['contrib', 'd... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pylogrotate',
version='0.0.5',
description='Logrotate in python',
author='gfreezy',
author_email='gfreezy@gmail.com',
url='https://github.com/xiachufang/pylogrotate',
packages=find_packages(exclude=['contrib', 'd... | mit | Python |
04b9005d3176aadb00e1abaaffa35d91b3dc4995 | Update ujson requirement from <4.0,>=1.35 to >=1.35,<5.0 | snarfed/oauth-dropins,snarfed/oauth-dropins,snarfed/oauth-dropins | setup.py | setup.py | """setuptools setup module for oauth-dropins.
Docs:
https://packaging.python.org/en/latest/distributing.html
http://pythonhosted.org/setuptools/setuptools.html
Based on https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from setuptools import setup, find_packages
setup(name='oauth-dropins',
versio... | """setuptools setup module for oauth-dropins.
Docs:
https://packaging.python.org/en/latest/distributing.html
http://pythonhosted.org/setuptools/setuptools.html
Based on https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from setuptools import setup, find_packages
setup(name='oauth-dropins',
versio... | unlicense | Python |
fcd0c6b0a3848f123c23de0091f3c56103b7012d | Fix the author names in setup.py | SheffieldML/GPyOpt | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
__version__ = "1.2.6"
packages = find_packages(exclude=("GPyOpt.testing",))
setup(name = 'GPyOpt',
version = __version__,
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
__version__ = "1.2.6"
packages = find_packages(exclude=("GPyOpt.testing",))
setup(name = 'GPyOpt',
version = __version__,
... | bsd-3-clause | Python |
04feb8b345d71e01e4bf053f38ce8225fb23962c | bump to 0.6.0 | mvexel/overpass-api-python-wrapper | setup.py | setup.py | from setuptools import setup
setup(
name='overpass',
packages=['overpass'],
version='0.6.0',
description='Python wrapper for the OpenStreetMap Overpass API',
long_description='See README.md',
author='Martijn van Exel',
author_email='m@rtijn.org',
url='https://github.com/mvexel/overpass-... | from setuptools import setup
setup(
name='overpass',
packages=['overpass'],
version='0.5.7',
description='Python wrapper for the OpenStreetMap Overpass API',
long_description='See README.md',
author='Martijn van Exel',
author_email='m@rtijn.org',
url='https://github.com/mvexel/overpass-... | apache-2.0 | Python |
85b886390bc7b72915f4c805d1655d24b88c5ea9 | Bump up version number. | taenyon/facebook-ads-api,narrowcast/facebook-ads-api,GallopLabs/facebook-ads-api | setup.py | setup.py | import subprocess
import sys
from distutils.core import setup, Command
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, 'test_facebook.py'])
raise... | import subprocess
import sys
from distutils.core import setup, Command
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call([sys.executable, 'test_facebook.py'])
raise... | mit | Python |
d0468b7fa9de3ad5ddcfbea23c4b93ce0d8e14ca | add more classifiers for pypi | vaidik/sherlock | setup.py | setup.py | try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
__title__ = 'sherlock'
__version__ = '.'.join(map(str, (0, 0, 0)))
__author__ = 'Vaidik Kapoor'
import os
# get path of repo fi... | try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
__title__ = 'sherlock'
__version__ = '.'.join(map(str, (0, 0, 0)))
__author__ = 'Vaidik Kapoor'
import os
# get path of repo fi... | mit | Python |
d641548388c188a9b1aa5393b89011b80845bb0c | Update to version 0.6.36 | jadolg/rocketchat_API | setup.py | setup.py | # -*-coding:utf-8-*-
from setuptools import setup
setup(
name='rocketchat_API',
version='0.6.36',
packages=['rocketchat_API', 'rocketchat_API.APIExceptions'],
url='https://github.com/jadolg/rocketchat_API',
license='MIT',
author='Jorge Alberto Díaz Orozco',
author_email='diazorozcoj@gmail.... | # -*-coding:utf-8-*-
from setuptools import setup
setup(
name='rocketchat_API',
version='0.6.35',
packages=['rocketchat_API', 'rocketchat_API.APIExceptions'],
url='https://github.com/jadolg/rocketchat_API',
license='MIT',
author='Jorge Alberto Díaz Orozco',
author_email='diazorozcoj@gmail.... | mit | Python |
c9a61455540b3753dc096a1dd2dcd588ba76988a | Bump version to 1.0.0 | marselester/flask-api-utils | setup.py | setup.py | # coding: utf-8
from distutils.core import setup
setup(
name='Flask-API-Utils',
version='1.0.0',
packages=['api_utils'],
author='Marsel Mavletkulov',
author_email='marselester@ya.ru',
url='https://github.com/marselester/flask-api-utils',
description='Flask-API-Utils helps you to create APIs... | # coding: utf-8
from distutils.core import setup
setup(
name='Flask-API-Utils',
version='0.2.0',
packages=['api_utils'],
author='Marsel Mavletkulov',
author_email='marselester@ya.ru',
url='https://github.com/marselester/flask-api-utils',
description='Flask-API-Utils helps you to create APIs... | mit | Python |
7bf25c429df32a3a94ce1ef67f9a80c4f112a582 | add dependencies | pragmaticcoders/serialization | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | mit | Python |
ef2598dbcb59cca8f1cbc6e6464dd3cd732971b6 | Remove ugly negative look ahead regex | Kitware/cumulus,Kitware/cumulus | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
###############################################################################
# Copyright 2015 Kitware 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 cop... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
###############################################################################
# Copyright 2015 Kitware 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 cop... | apache-2.0 | Python |
b664d49a6aec5fb041f846fb8055d007ee8a663b | Update version to 0.9.2 | yunify/qingcloud-sdk-python,daodewang/qingcloud-sdk-python,Xuanwo/qingcloud-sdk-python,markduan/qingcloud-sdk-python | setup.py | setup.py | # coding:utf-8
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2, 6):
error = 'ERROR: qingcloud-sdk requires Python Version 2.6 or above.'
print >> sys.stderr, error
sys.exit(1)
setup(
name = 'qingcloud-sdk',
versio... | # coding:utf-8
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2, 6):
error = 'ERROR: qingcloud-sdk requires Python Version 2.6 or above.'
print >> sys.stderr, error
sys.exit(1)
setup(
name = 'qingcloud-sdk',
versio... | apache-2.0 | Python |
fcf17161f165af63f7b67b620e1085818c259469 | fix typo in setup. | peerchemist/cryptotik | setup.py | setup.py | from setuptools import setup
setup(name='cryptotik',
version='0.2.6',
description='Standardized common API for several cryptocurrency exchanges.',
url='https://github.com/peerchemist/cryptotik',
author='Peerchemist',
author_email='peerchemist@protonmail.ch',
license='GPL',
pac... | from setuptools import setup
setup(name='cryptotik',
version='0.2.6',
description='Standardized common API for several cryptocurrency exchanges.',
url='https://github.com/peerchemist/cryptotik',
author='Peerchemist',
author_email='peerchemist@protonmail.ch',
license='GLP',
pac... | bsd-3-clause | Python |
1189adefde12756ffe429a1470bb2b0647343f58 | Update request version lib | cloudify-cosmo/cloudify-agent-packager | setup.py | setup.py | from setuptools import setup
import os
import sys
import codecs
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()
install_requires = [
"virtualenv==15.1.0",
"requests... | from setuptools import setup
import os
import sys
import codecs
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()
install_requires = [
"virtualenv==15.1.0",
"requests... | apache-2.0 | Python |
a0c4755da0a4c9856f93144ad77d7236f0f8dddf | Bump version to 0.6.3 | yunojuno/django-perimeter,yunojuno/django-perimeter | setup.py | setup.py | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-perimeter',
version='0.6.3',
packages=['perimeter'... | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-perimeter',
version='0.6.2',
packages=['perimeter'... | mit | Python |
50a690b28d5972133a4e0531df11cf45ddef4f9e | Add README to setup | argaen/aiocache,argaen/aiocache | setup.py | setup.py | import re
import os
from setuptools import setup, find_packages
with open(
os.path.join(
os.path.abspath(os.path.dirname(__file__)),
'aiocache/_version.py')) as fp:
try:
version = re.findall(
r"^__version__ = '([^']+)'\r?$", fp.read(), re.M)[0]
except IndexE... | import re
import os
from setuptools import setup, find_packages
with open(
os.path.join(
os.path.abspath(os.path.dirname(__file__)),
'aiocache/_version.py')) as fp:
try:
version = re.findall(
r"^__version__ = '([^']+)'\r?$", fp.read(), re.M)[0]
except IndexE... | bsd-3-clause | Python |
3e5c790a9dd73698bdaad96eb89015011dcf1bcb | include long_description_content_type in setup.py | siddhantgoel/streaming-form-data | setup.py | setup.py | from setuptools import Extension, find_packages, setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
with open(here.joinpath('README.rst')) as fd:
long_description = fd.read()
setup(
name='streaming-form-data',
version='1.7.0',
description='Streaming parser for multipart/form-data'... | from setuptools import Extension, find_packages, setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
with open(here.joinpath('README.rst')) as fd:
long_description = fd.read()
setup(
name='streaming-form-data',
version='1.7.0',
description='Streaming parser for multipart/form-data'... | mit | Python |
3eaf55b200fd44807a5b979af03f6b25d57eb7ac | clean up the package meta data. | fujimotos/fastcomp | setup.py | setup.py | from distutils.core import setup
setup(
name='fastcomp',
version='1.1.0',
py_modules=['fastcomp'],
author='Fujimoto Seiji',
author_email='fujimoto@ceptord.net',
url='https://github.com/fujimotos/fastcomp',
description='Limited-but-faster computation of Levenshtein distance',
long_descr... | from distutils.core import setup
import io
import os.path
def read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
with io.open(filepath) as fp:
text = fp.read()
return text
setup(
name='fastcomp',
version='1.1.0',
py_modules=['fastcomp'],
author='Fujimoto S... | mit | Python |
eec21cb5fac44ca996dc346e8b43a8b91a8d3be3 | Increment version number | alex-sherman/deco | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name = "deco",
version = "0.5.1",
description = "A decorator for concurrency",
packages = ["deco"],
author='Alex Sherman',
author_email='asherman1024@gmail.com',
url='https://github.com/alex-sherman/deco')
| #!/usr/bin/env python
from distutils.core import setup
setup(
name = "deco",
version = "0.5",
description = "A decorator for concurrency",
packages = ["deco"],
author='Alex Sherman',
author_email='asherman1024@gmail.com',
url='https://github.com/alex-sherman/deco')
| mit | Python |
2b01acb65a4ce36738ace16fbce3eb3206226cc8 | Fix setup.py | chrsbats/kvstore | setup.py | setup.py | from distutils.core import setup
setup(
name='kvstore',
version='0.1',
author='C Bates',
author_email='chrsbats@gmail.com',
packages=['kvstore'],
scripts=[],
url='https://github.com/chrsbats/store',
license='LICENSE.TXT',
description='Key value store with Filesystem and S3 backends'... | from distutils.core import setup
setup(
name='store',
version='0.1',
author='C Bates',
author_email='chrsbats@gmail.com',
packages=['kvstore'],
scripts=[],
url='https://github.com/chrsbats/store',
license='LICENSE.TXT',
description='Key value store with Filesystem and S3 backends',
... | mit | Python |
393e09d79488e9403e19aa70479c8880bbcd9629 | add missing dependency invisibleroads-macros-log | crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute | setup.py | setup.py | from os.path import abspath, dirname, join
from setuptools import find_packages, setup
ENTRY_POINTS = '''
[console_scripts]
crosscompute = crosscompute.scripts:launch
[crosscompute]
projects.add = crosscompute.scripts.projects.add:AddProjectScript
projects.see = crosscompute.scripts.projects.see:SeeProjectScript
proj... | from os.path import abspath, dirname, join
from setuptools import find_packages, setup
ENTRY_POINTS = '''
[console_scripts]
crosscompute = crosscompute.scripts:launch
[crosscompute]
projects.add = crosscompute.scripts.projects.add:AddProjectScript
projects.see = crosscompute.scripts.projects.see:SeeProjectScript
proj... | mit | Python |
fdd584a9f3d9161ec34a1791e236a0f1f7350c2d | Fix GitHub URL links | paulfurley/python-utcdatetime,paulfurley/python-utcdatetime | setup.py | setup.py | # encoding: utf-8
from setuptools import setup, find_packages
import codecs
import os
import re
try:
# Workaround for https://bugs.python.org/issue15881#msg170215
# See: https://groups.google.com/forum/#!topic/nose-users/fnJ-kAUbYHQ
# If this can be removed and the tests pass on Python 2.6, hooray!
... | # encoding: utf-8
from setuptools import setup, find_packages
import codecs
import os
import re
try:
# Workaround for https://bugs.python.org/issue15881#msg170215
# See: https://groups.google.com/forum/#!topic/nose-users/fnJ-kAUbYHQ
# If this can be removed and the tests pass on Python 2.6, hooray!
... | mit | Python |
cbc670b65cccb34f3da8cf6c724d47c72f919a68 | Fix package name in setup | jakesen/pyhatchbuck | setup.py | setup.py | from distutils.core import setup
setup(
name='pyhatchbuck',
version='0.1dev',
description='Python library for Hatchbuck API',
url='https://github.com/jakesen/pyhatchbuck',
author='Jacob Senecal',
author_email='jacob.senecal@gmail.com',
license='MIT',
packages=['hatchbuck',],
install... | from distutils.core import setup
setup(
name='pyhatchbuck',
version='0.1dev',
description='Python library for Hatchbuck API',
url='https://github.com/jakesen/pyhatchbuck',
author='Jacob Senecal',
author_email='jacob.senecal@gmail.com',
license='MIT',
packages=['pyhatchbuck',],
insta... | mit | Python |
88194added3b0e11c786ed69f2cb54cee1dbc60d | Update setup.py Python version to match required version by Django - Fixes #37 | oscarmcm/django-places,oscarmcm/django-places,oscarmcm/django-places | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
readme = open('README.md').read()
history = open('CHANGELOG.md').read()
setup(
author='Oscar Cortez',
author_email='om.cortez.2010@gmail.com',
name='dj-places',
version='5.0.0',
install_requires=['Django>=3... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
readme = open('README.md').read()
history = open('CHANGELOG.md').read()
setup(
author='Oscar Cortez',
author_email='om.cortez.2010@gmail.com',
name='dj-places',
version='5.0.0',
install_requires=['Django>=3... | mit | Python |
5c12f5ccf2896e64356c4d656db58a697fff1ff1 | Bump up version to 0.1.1 | ishikota/PyPokerEngine | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'PyPokerEngine',
version = '0.1.1',
author = 'ishikota',
author_email = 'ishikota086@gmail.com',
description = 'Poker engine for poker AI development in Python ',
license = 'MIT',
keywords = 'python poker emgine ai',
url = 'https... | from setuptools import setup, find_packages
setup(
name = 'PyPokerEngine',
version = '0.1.0',
author = 'ishikota',
author_email = 'ishikota086@gmail.com',
description = 'Poker engine for poker AI development in Python ',
license = 'MIT',
keywords = 'python poker emgine ai',
url = 'https... | mit | Python |
9010453fdd3da5ed97d941b61db14e62ba889e99 | Update setup.py. | incuna/incuna-test-utils,incuna/incuna-test-utils | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='incuna-test-utils',
packages=find_packages(),
include_package_data=True,
version='3.1.0',
description='',
long_description=open('README.rst').read(),
author='Incuna',
author_email='admin@incuna.com',
url='https://github.com/i... | from setuptools import setup, find_packages
setup(
name='incuna-test-utils',
packages=find_packages(),
include_package_data=True,
version='3.0.0',
description='',
long_description=open('README.rst').read(),
author='Incuna',
author_email='admin@incuna.com',
url='https://github.com/i... | bsd-2-clause | Python |
93936654884bd4a19d54fd39076324ce16712f46 | Bump patch version | Turbasen/turbasen.py | setup.py | setup.py | from setuptools import setup
name = 'turbasen'
VERSION = '2.3.7'
setup(
name=name,
packages=[name],
version=VERSION,
description='Client for Nasjonal Turbase REST API',
long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md',
author='Ali Kaafarani',
author_emai... | from setuptools import setup
name = 'turbasen'
VERSION = '2.3.6'
setup(
name=name,
packages=[name],
version=VERSION,
description='Client for Nasjonal Turbase REST API',
long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md',
author='Ali Kaafarani',
author_emai... | mit | Python |
5ce25f189a2bdeb1f74a30b491b90eb7a9f033d5 | update version to 0.2.7 | apapillon/twitter-monitor,michaelbrooks/twitter-monitor | setup.py | setup.py | from setuptools import setup
VERSION="0.2.7"
setup(
name="twitter-monitor",
packages=['twitter_monitor'],
version=VERSION,
download_url='https://github.com/michaelbrooks/twitter-monitor/archive/v%s.zip' % VERSION,
url="https://github.com/michaelbrooks/twitter-monitor",
author="Michael Brooks... | from setuptools import setup
VERSION="0.2.6"
setup(
name="twitter-monitor",
packages=['twitter_monitor'],
version=VERSION,
download_url='https://github.com/michaelbrooks/twitter-monitor/archive/v%s.zip' % VERSION,
url="https://github.com/michaelbrooks/twitter-monitor",
author="Michael Brooks... | mit | Python |
b1d33b0ec9938f10f244601077056335ac767977 | Bump version to 0.12.3 | miLibris/flask-rest-jsonapi | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = '0.12.3'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | from setuptools import setup, find_packages
__version__ = '0.12.2'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, Mo... | mit | Python |
0afbf63284246c54bbc00b1b1034fa71f849428a | Update setup.py classifiers | novapost/django-pimpmytheme,novapost/django-pimpmytheme,novafloss/django-pimpmytheme,novafloss/django-pimpmytheme | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname, abspath
import sys
PY2 = sys.version_info[0] == 2
ROOT = dirname(abspath(__file__))
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # NOQA
def read_relative_file(filename):
"""
Re... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname, abspath
import sys
PY2 = sys.version_info[0] == 2
ROOT = dirname(abspath(__file__))
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # NOQA
def read_relative_file(filename):
"""
Re... | mit | Python |
6c671788bb634fb5f429906aa6f98f50de3d1c4d | fix repo url in setup.py | db-art/mysql-statsd,bnkr/mysql-statsd,art-spilgames/mysql-statsd,spilgames/mysql-statsd | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = open('HISTORY.rst... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
history = open('HISTORY.rst... | bsd-3-clause | Python |
ea4f98d91f6056302ca6eee54b38abd534c0d567 | Bump version for dev. | carljm/django-model-utils,patrys/django-model-utils,kezabelle/django-model-utils,patrys/django-model-utils,carljm/django-model-utils,timmygee/django-model-utils,kezabelle/django-model-utils,yeago/django-model-utils,yeago/django-model-utils,timmygee/django-model-utils,nemesisdesign/django-model-utils,nemesisdesign/djang... | setup.py | setup.py | from setuptools import setup, find_packages
import subprocess
import os.path
try:
# don't get confused if our sdist is unzipped in a subdir of some
# other hg repo
if os.path.isdir('.hg'):
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
stdout=subprocess... | from setuptools import setup, find_packages
import subprocess
import os.path
try:
# don't get confused if our sdist is unzipped in a subdir of some
# other hg repo
if os.path.isdir('.hg'):
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
stdout=subprocess... | bsd-3-clause | Python |
6083cfb9d5e6e648a9c95bd032a41ebc657964d9 | Set zip_safe flag in setup.py | frejanordsiek/hdf5storage,frejanordsiek/hdf5storage | setup.py | setup.py | import sys
if sys.hexversion < 0x2060000:
raise NotImplementedError('Python < 2.6 not supported.')
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(name='hdf5storage',
version='0.2',
description='Utiliti... | import sys
if sys.hexversion < 0x2060000:
raise NotImplementedError('Python < 2.6 not supported.')
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(name='hdf5storage',
version='0.2',
description='Utiliti... | bsd-2-clause | Python |
d79f62ebabd60ded5ccc0012ad5cad80284894d7 | Use -O2 by default | MagicStack/uvloop,1st1/uvloop,MagicStack/uvloop | setup.py | setup.py | import os
import subprocess
import sys
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')
class libuv_build_ext(build_ext):
def build_libuv(self):
cflags = '-fPIC'
env = os.environ.cop... | import os
import subprocess
import sys
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')
class libuv_build_ext(build_ext):
def build_libuv(self):
cflags = '-fPIC'
env = os.environ.cop... | apache-2.0 | Python |
eb5bd8218cb086d9559cbfabf0c88b49a27acb44 | Bump minimum version for google-api-core to 1.14.0. (#8709) | googleapis/python-dlp,googleapis/python-dlp | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | # -*- coding: utf-8 -*-
#
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | apache-2.0 | Python |
bec98cca8a765743cf990f5807f5d52b95dd5d9e | Add debugtools as a dependency. | kxgames/glooey,kxgames/glooey | setup.py | setup.py | #!/usr/bin/env python3
# encoding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
with open('glooey/__init__.py') as file:
version_pattern = re.compile("__version__ = '(.*)'")
version = version_pattern.search(file.read()).group(1)
with open('REA... | #!/usr/bin/env python3
# encoding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
with open('glooey/__init__.py') as file:
version_pattern = re.compile("__version__ = '(.*)'")
version = version_pattern.search(file.read()).group(1)
with open('REA... | mit | Python |
2728f36d7ebff87f100bd63f54836be5f0d5b3ad | Use a newer pykestrel | matterkkila/kestrelweb,matterkkila/kestrelweb | setup.py | setup.py | 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='kestrelweb',
version='0.0.1',
description='Kestrel Web UI',
author='Matt Erkkila',
author_email='matt@ma... | 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='kestrelweb',
version='0.0.1',
description='Kestrel Web UI',
author='Matt Erkkila',
author_email='matt@ma... | mit | Python |
a35982de6b1fd097a21ee7509d8c8a38c2c60e1c | add xaccel, xsendfile and hiawatha support | instapk/django-fileprovider | setup.py | setup.py | from setuptools import setup
__version__ = '0.1.2'
setup(
name='django-fileprovider',
version=__version__,
description='django middleware for serving media files ( or protect them )',
author='Renjith Thankachan',
author_email='mail3renjith@gmail.com',
url='https://github.com/instapk/django-fi... | from setuptools import setup
__version__ = '0.1.1'
setup(
name='django-fileprovider',
version=__version__,
description='django middleware for serving media files',
author='Renjith Thankachan',
author_email='mail3renjith@gmail.com',
url='https://github.com/instapk/django-fileprovider.git',
... | bsd-3-clause | Python |
5ae48009302eacb8bac9339238e0619fab2293bf | Fix setup on Python 3. | gforcada/flake8-todo,schlamar/flake8-todo | setup.py | setup.py | # coding: utf-8
from __future__ import with_statement
from setuptools import setup
def get_version(fname='flake8_todo.py'):
with open(fname) as f:
for line in f:
if line.startswith('__version__'):
return eval(line.split('=')[-1])
def get_long_description():
descr = []
... | # coding: utf-8
from __future__ import with_statement
from setuptools import setup
def get_version(fname='flake8_todo.py'):
with open(fname) as f:
for line in f:
if line.startswith('__version__'):
return eval(line.split('=')[-1])
def get_long_description():
descr = []
... | mit | Python |
92f0e0a955a647640c872cb023c49ab3e8431609 | Bump version | Tehnix/cred-server | setup.py | setup.py | """ Setup file for the cred-server package. """
from setuptools import setup
import sys
# The package only works with python >=3.0
if sys.version_info < (3,):
print("I'm only for 3, please upgrade")
sys.exit(1)
version = '0.2.19'
setup(
name='cred-server',
version=version,
author='Tehnix',
au... | """ Setup file for the cred-server package. """
from setuptools import setup
import sys
# The package only works with python >=3.0
if sys.version_info < (3,):
print("I'm only for 3, please upgrade")
sys.exit(1)
version = '0.2.18'
setup(
name='cred-server',
version=version,
author='Tehnix',
au... | bsd-3-clause | Python |
a805572df2610fe8b9172cc9b0b4f33af2beb578 | Bump version. | armet/python-armet | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import platform
# Required test dependencies.
test_dependencies = (
# Test runner.
'pytest',
# Ensure PEP8 conformance.
'pytest-pep8',
# Ensure test coverage.
'pytest-cov',
# Benchmarki... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import platform
# Required test dependencies.
test_dependencies = (
# Test runner.
'pytest',
# Ensure PEP8 conformance.
'pytest-pep8',
# Ensure test coverage.
'pytest-cov',
# Benchmarki... | mit | Python |
ae6911c3be172d2d163ddbfb27e90e97b7c61684 | Change version from 1.0 to 1.0.0 | ZedThree/jupyter-fortran-kernel | setup.py | setup.py | from distutils.core import setup
setup(name='jupyter_c_kernel',
version='1.0.0',
description='Minimalistic C kernel for Jupyter',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
packages=['jupyter_c_kernel'],
keywords=['jupyter', 'kernel', 'c']
)
| from distutils.core import setup
setup(name='jupyter_c_kernel',
version='1.0',
description='Minimalistic C kernel for Jupyter',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
packages=['jupyter_c_kernel'],
keywords=['jupyter', 'kernel', 'c']
)
| mit | Python |
738b587248d92c02109512719249e37e91abccea | Bump version | SUNET/eduid-idproofing-letter,SUNET/eduid-idproofing-letter | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.2.2b3'
requires = [
'eduid-msg>=0.10.1b2',
'eduid-userdb>=0.1.0b0',
'eduid-common>=0.2.1b5',
'Flask==0.10.1',
'flask-apispec>=0.3.2',
'gunicorn==19.4.1',
'Pillow==3.0.0',
'xhtml2pdf==0.0.6',
'hammock==0.2.4',
]
test_require... | from setuptools import setup, find_packages
version = '0.2.2b2'
requires = [
'eduid-msg>=0.10.1b2',
'eduid-userdb>=0.1.0b0',
'eduid-common>=0.2.1b5',
'Flask==0.10.1',
'flask-apispec>=0.3.2',
'gunicorn==19.4.1',
'Pillow==3.0.0',
'xhtml2pdf==0.0.6',
'hammock==0.2.4',
]
test_require... | bsd-3-clause | Python |
f928f693afcbccb81fdb3723a6f370902cb557f4 | Add Python version classifiers to setup.py | federicotdn/python-wikiquotes | setup.py | setup.py | from distutils.core import setup
setup(
name = 'wikiquote',
packages = ['wikiquote', 'wikiquote.langs'],
version = '0.1.3',
description = 'Retrieve quotes from any Wikiquote page.',
author = 'Federico Tedin',
author_email = 'federicotedin@gmail.com',
install_requires = ['lxml'],
url = 'https://github.c... | from distutils.core import setup
setup(
name = 'wikiquote',
packages = ['wikiquote', 'wikiquote.langs'],
version = '0.1.3',
description = 'Retrieve quotes from any Wikiquote page.',
author = 'Federico Tedin',
author_email = 'federicotedin@gmail.com',
install_requires = ['lxml'],
url = 'https://github.c... | mit | Python |
cb2b768daa999095e5858777628753dc1b97bc34 | BUMP 1.3 | sachinkeshav/mongo-connector,Nagriar/mongo-connector,tonyzhu/mongo-connector,mongodb-labs/mongo-connector,ineo4j/mongo-connector,banzo/mongo-connector,Nagriar/mongo-connector,adammendoza/mongo-connector,benjamine/mongo-connector,thelok/mongo-connector,Philmod/mongo-connector,tonyzhu/mongo-connector,XDestination/mongo-c... | setup.py | setup.py | # Copyright 2013-2014 MongoDB, 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 writin... | # Copyright 2013-2014 MongoDB, 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 writin... | apache-2.0 | Python |
ea1ebc94fe01b2a41ee92b57851bb14a72945aa4 | Fix wrong import on setuptools | Ombitron/flask-influxdb,Ombitron/flask-influxdb | setup.py | setup.py | """
Flask-SQLite3
"""
from setuptools import setup
setup(
name='Flask-InfluxDB',
version='0.1',
url='http://github.com/ombitron/flask-influxdb',
license='BSD',
author='Brennan Ashton',
author_email='brennan@ombitron.com',
description='Flask bindings for the InfluxDB time series database',
... | """
Flask-SQLite3
"""
from setuptools import setuptools
setup(
name='Flask-InfluxDB',
version='0.1',
url='http://github.com/ombitron/flask-influxdb',
license='BSD',
author='Brennan Ashton',
author_email='brennan@ombitron.com',
description='Flask bindings for the InfluxDB time series databas... | bsd-3-clause | Python |
91c226ed33cc91397f3d01d8349c46de05988274 | Bump version number | robotadam/socketconsole | setup.py | setup.py | from setuptools import setup
# To set __version__
__version__ = '0.0.11'
setup(name="socketconsole",
version=__version__,
author='Adam Lowry',
author_email='adam@therobots.org',
license='BSD',
py_modules=['socketconsole'],
description="Unix socket access to python thread dump",
zip_safe=F... | from setuptools import setup
# To set __version__
__version__ = '0.0.10'
setup(name="socketconsole",
version=__version__,
author='Adam Lowry',
author_email='adam@therobots.org',
license='BSD',
py_modules=['socketconsole'],
description="Unix socket access to python thread dump",
zip_safe=F... | bsd-3-clause | Python |
3c68e9b6b910db48e174cff83bb2ba6dc7a62da2 | Add mypy extensions to setup.py | awslabs/chalice | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
README = readme_file.read()
install_requires = [
'click>=6.6,<8.0',
'botocore>=1.12.86,<2.0.0',
'typing==3.6.4;python_version<"3.7"',
'mypy-extensions==0.4.3',
'six>=1.10.0,<2.0.0',
... | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
README = readme_file.read()
install_requires = [
'click>=6.6,<8.0',
'botocore>=1.12.86,<2.0.0',
'typing==3.6.4;python_version<"3.7"',
'six>=1.10.0,<2.0.0',
'pip>=9,<20.2',
'attrs>=19... | apache-2.0 | Python |
7b26bd59db196324a9bc8ddf2f940dd7983185ae | bump to 014 | inorton/junit2html | setup.py | setup.py | from distutils.core import setup
files = ["*.css"]
setup(
name="junit2html",
version="014",
description="Generate HTML reports from Junit results",
author="Ian Norton",
author_email="inorton@gmail.com",
url="https://gitlab.com/inorton/junit2html",
packages=["junit2htmlreport"],
packag... | from distutils.core import setup
files = ["*.css"]
setup(
name="junit2html",
version="013",
description="Generate HTML reports from Junit results",
author="Ian Norton",
author_email="inorton@gmail.com",
url="https://gitlab.com/inorton/junit2html",
packages=["junit2htmlreport"],
packag... | mit | Python |
f78a3ee121278f44e7c2109439c59070eb4ac4eb | fix setup.py. close #324 | skolsuper/django-pipeline,sideffect0/django-pipeline,lydell/django-pipeline,cyberdelia/django-pipeline,TwigWorld/django-pipeline,TwigWorld/django-pipeline,theatlantic/django-pipeline,chipx86/django-pipeline,jazzband/django-pipeline,lexqt/django-pipeline,skolsuper/django-pipeline,kronion/django-pipeline,sideffect0/djang... | setup.py | setup.py | # -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(
name='django-pipeline',
version='1.3.22',
description='Pipeline is an asset packaging library for Django.',
long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
io.open('HISTORY.rst', en... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-pipeline',
version='1.3.22',
description='Pipeline is an asset packaging library for Django.',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
author='Timothée Peignier... | mit | Python |
46c1ee08e4fa4e587dd45bc416006213d6d0841f | Bump version number | jupyterhub/kubespawner,yuvipanda/jupyterhub-kubernetes-spawner,ktong/kubespawner | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='jupyterhub-kubespawner',
version='0.6.0',
install_requires=[
'jupyterhub',
'pyYAML',
'kubernetes==3.*',
'escapism',
'jupyter',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
desc... | from setuptools import setup, find_packages
setup(
name='jupyterhub-kubespawner',
version='0.5.1',
install_requires=[
'jupyterhub',
'pyYAML',
'kubernetes==3.*',
'escapism',
'jupyter',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
desc... | bsd-3-clause | Python |
8e6abacb4acfcca6e4a7faffe19c637e9c81a54a | Update the package version. | ravenac95/PyYAML,Stibbons/pyyaml,Stibbons/pyyaml,ravenac95/simpleyaml,ingydotnet/pyyaml-mirror,ravenac95/PyYAML | setup.py | setup.py |
NAME = 'PyYAML'
VERSION = '3.05'
DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability and
interaction with scripting languages. PyYAML is a YAML parser and
emitter for Python.
PyYAML features a complete YAML 1.1 parser, Unicode ... |
NAME = 'PyYAML'
VERSION = '3.04'
DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability and
interaction with scripting languages. PyYAML is a YAML parser and
emitter for Python.
PyYAML features a complete YAML 1.1 parser, Unicode ... | mit | Python |
ec35f4f631cd3f6cc533d96bdf9f3ad247905aed | Fix setup script | django-oscar/django-oscar-adyen,oscaro/django-oscar-adyen | setup.py | setup.py | from setuptools import setup, find_packages
# dirty hack to allow running sdist in a vbox
# source: Leonardo.Z's answer on this StackOverflow thread:
# http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link
... | from setuptools import setup, find_packages
setup(
name='django-oscar-adyen',
version='0.1',
url='https://github.com/oscaro/django-oscar-adyen',
author='Mathieu Richardoz',
author_email='mr@babik.fr',
description='Adyen payment module for django-oscar',
long_description=open('README.rst')... | bsd-3-clause | Python |
e974370c2981ea2410ec64dedd297d7dc17b4fe2 | Bump version. | aeroevan/pysnappy | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages, Extension
have_cython = False
try:
import Cython
have_cython = True
except ImportError:
pass
ext_modules = []
if have_cython:
ext_modules.append(
Extension("pysnappy.core", sources=["pysnappy/core.pyx"],
libra... | #!/usr/bin/env python
from setuptools import setup, find_packages, Extension
have_cython = False
try:
import Cython
have_cython = True
except ImportError:
pass
ext_modules = []
if have_cython:
ext_modules.append(
Extension("pysnappy.core", sources=["pysnappy/core.pyx"],
libra... | mit | Python |
7947136954606b91ebf18872b24c50fef6d0c975 | Add license to trove classifiers. | AndrewIngram/django-extra-views,AndrewIngram/django-extra-views | setup.py | setup.py | import re
from setuptools import setup
# get version without importing
with open("extra_views/__init__.py", "rb") as f:
VERSION = str(re.search('__version__ = "(.+?)"', f.read().decode("utf-8")).group(1))
setup(
name="django-extra-views",
version=VERSION,
url="https://github.com/AndrewIngram/django-e... | import re
from setuptools import setup
# get version without importing
with open("extra_views/__init__.py", "rb") as f:
VERSION = str(re.search('__version__ = "(.+?)"', f.read().decode("utf-8")).group(1))
setup(
name="django-extra-views",
version=VERSION,
url="https://github.com/AndrewIngram/django-e... | mit | Python |
bc77e08fdb95fc9ee65eb21d95b4c004697144a9 | bump to 0.2.3 | drtoful/pyvault | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pyvault',
version='0.2.3',
packages=["pyvault", "pyvault.ciphers", "pyvault.backends"],
install_requires=[
'pycrypto >= 2.6',
'SecureString >= 0.1',
'pbkdf2 >= 1.3',
'py-bcrypt >= 0.4',
'pairtree ... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pyvault',
version='0.2.2',
packages=["pyvault", "pyvault.ciphers", "pyvault.backends"],
install_requires=[
'pycrypto >= 2.6',
'SecureString >= 0.1',
'pbkdf2 >= 1.3',
'py-bcrypt >= 0.4',
'pairtree ... | bsd-3-clause | Python |
daadcdf12a9e27c078f583eb6985992cd2b3ff65 | bump pyopenssl back up | datasift/datasift-python | setup.py | setup.py | # encoding: utf-8
from setuptools import setup
import os.path
setup(
name="datasift",
version="2.12.0",
author="DataSift",
author_email="opensource@datasift.com",
maintainer="DataSift",
maintainer_email="opensource@datasift.com",
description="The official DataSift API library for Python.",... | # encoding: utf-8
from setuptools import setup
import os.path
setup(
name="datasift",
version="2.12.0",
author="DataSift",
author_email="opensource@datasift.com",
maintainer="DataSift",
maintainer_email="opensource@datasift.com",
description="The official DataSift API library for Python.",... | mit | Python |
ae951d93c2f1c200bd2866c872b24402daaacb93 | Fix to setup.py | alchemistry/alchemlyb | setup.py | setup.py | #! /usr/bin/python
"""Setuptools-based setup script for alchemlyb.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
setup(name='alchemlyb',
version='0.1.0-dev',
description='the simple alchemistry library',
author='David Do... | #! /usr/bin/python
"""Setuptools-based setup script for alchemlyb.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
setup(name='alchemlyb',
version='0.1.0-dev',
description='the simple alchemistry library',
author='David Do... | bsd-3-clause | Python |
1e5d369177b0055e65fb84a6d90b3f9fc52e4f62 | make cffsubr required and compreffor optional | googlei18n/ufo2ft,googlefonts/ufo2ft,jamesgk/ufo2fdk | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
needs_pytest = {"pytest", "test"}.intersection(sys.argv)
pytest_runner = ["pytest_runner"] if needs_pytest else []
needs_wheel = {"bdist_wheel"}.intersection(sys.argv)
wheel = ["wheel"] if needs_wheel else []
with open("README.rst", "r") a... | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
needs_pytest = {"pytest", "test"}.intersection(sys.argv)
pytest_runner = ["pytest_runner"] if needs_pytest else []
needs_wheel = {"bdist_wheel"}.intersection(sys.argv)
wheel = ["wheel"] if needs_wheel else []
with open("README.rst", "r") a... | mit | Python |
16b5560599139d0b2cf92c1298e57dc6f092d233 | Bump version to 1.6 | Youwotma/w3lib,scrapy/w3lib,ArturGaspar/w3lib | setup.py | setup.py | from setuptools import setup
setup(
name='w3lib',
version='1.6',
license='BSD',
description='Library of web-related functions',
author='Scrapy project',
author_email='info@scrapy.org',
url='https://github.com/scrapy/w3lib',
packages=['w3lib'],
platforms=['Any'],
classifiers=[
... | from setuptools import setup
setup(
name='w3lib',
version='1.5',
license='BSD',
description='Library of web-related functions',
author='Scrapy project',
author_email='info@scrapy.org',
url='https://github.com/scrapy/w3lib',
packages=['w3lib'],
platforms=['Any'],
classifiers=[
... | bsd-3-clause | Python |
82a82f1617635f625c9fa253e1e84539de18718c | Set version number to 0.1.32. | nabetama/slacky | setup.py | setup.py | """
Slacky
------
A Python package for Slack's JSON REST API.
Slacky is Simple
````````````````
Save in a hello.py:
.. code:: python
from slacky import Slacky
slacky = Slacky(token='<Your slack api token>')
slacky.chat.post_message('#general', 'Hello World!!')
# '#' is not necessary with channel ... | """
Slacky
------
A Python package for Slack's JSON REST API.
Slacky is Simple
````````````````
Save in a hello.py:
.. code:: python
from slacky import Slacky
slacky = Slacky(token='<Your slack api token>')
slacky.chat.post_message('#general', 'Hello World!!')
# '#' is not necessary with channel ... | mit | Python |
a9de10d374bb6470292fca2894325b91d592b9c4 | read long description as utf8 | SalesforceFoundation/CumulusCI,SalesforceFoundation/CumulusCI | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from pkgutil import walk_packages
import cumulusci
def find_packages(path=".", prefix=""):
yield prefix
prefix = prefix + "."
for _, name, ispkg in walk_packages(path, prefix):
if ispkg:
yield name
with open... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from pkgutil import walk_packages
import cumulusci
def find_packages(path=".", prefix=""):
yield prefix
prefix = prefix + "."
for _, name, ispkg in walk_packages(path, prefix):
if ispkg:
yield name
with open... | bsd-3-clause | Python |
dd09079b5fe9099b056d3f94ec77900a92b183b3 | Fix get_date bug | scieloorg/xylose,fabiobatalha/xylose | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="xylose",
version='0.38',
description="A SciELO library to abstract a JSON data structure that is a product of the ISIS2JSON conversion using the ISIS2JSON type 3 data model.",
... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="xylose",
version='0.37',
description="A SciELO library to abstract a JSON data structure that is a product of the ISIS2JSON conversion using the ISIS2JSON type 3 data model.",
... | bsd-2-clause | Python |
2449ae6fba0eccf2c268876cd1d8e3a3db7fa829 | fix missing comma in setup.py | logicabrity/aeon | setup.py | setup.py | from distutils.core import setup
setup(
name='Aeon',
url='https://github.com/sMAshdot/aeon',
author='Marc-Antonio Bisotti',
author_email='mail@marc-antonio.de',
version='1.0',
packages=['aeon', ],
license='The MIT License (MIT)',
description=('Runtime and number of calls for designated ... | from distutils.core import setup
setup(
name='Aeon',
url='https://github.com/sMAshdot/aeon',
author='Marc-Antonio Bisotti',
author_email='mail@marc-antonio.de',
version='1.0',
packages=['aeon', ],
license='The MIT License (MIT)',
description=('Runtime and number of calls for designated ... | mit | Python |
fce0ab66979b856373b6e7f361ed0caecafed919 | Fix home page url | djangonauts/django-pgjson,djangonauts/django-pgjson | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
description = """
PostgreSQL json field support for Django.
"""
setup(
name="django-pgjson",
version="0.3.1",
url="https://github.com/djangonauts/django-pgjson",
license="BSD",
platforms=["OS Independent"],
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
description = """
PostgreSQL json field support for Django.
"""
setup(
name="django-pgjson",
version="0.3.1",
url="https://github.com/niwibe/djorm-pgjson",
license="BSD",
platforms=["OS Independent"],
de... | bsd-3-clause | Python |
fa162a00b738f97dfbdf015205ede2ba1cacf5dd | Bump the version | hiroaki-yamamoto/mongoengine-goodjson,hiroaki-yamamoto/mongoengine-goodjson | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
"""Setup script."""
import sys
from setuptools import setup, find_packages
dependencies = ["mongoengine", "dateutils"]
desc = "More human readable JSON serializer/de-serializer for MongoEngine"
version = "0.11.0"
if sys.version_info < (2, 7):
raise RuntimeError("Not supported ... | #!/usr/bin/env python
# coding=utf-8
"""Setup script."""
import sys
from setuptools import setup, find_packages
dependencies = ["mongoengine", "dateutils"]
desc = "More human readable JSON serializer/de-serializer for MongoEngine"
version = "0.10.1"
if sys.version_info < (2, 7):
raise RuntimeError("Not supported ... | mit | Python |
1d92d6b975968a68aba72264f179032b27f79a6b | Add project urls to setup.py | h5preserve/h5preserve,aragilar/h5preserve | setup.py | setup.py | import setuptools
import versioneer
DESCRIPTION_FILES = ["pypi-intro.rst"]
long_description = []
import codecs
for filename in DESCRIPTION_FILES:
with codecs.open(filename, 'r', 'utf-8') as f:
long_description.append(f.read())
long_description = "\n".join(long_description)
setuptools.setup(
name = ... | import setuptools
import versioneer
DESCRIPTION_FILES = ["pypi-intro.rst"]
long_description = []
import codecs
for filename in DESCRIPTION_FILES:
with codecs.open(filename, 'r', 'utf-8') as f:
long_description.append(f.read())
long_description = "\n".join(long_description)
setuptools.setup(
name = ... | bsd-3-clause | Python |
29375e0a23a03608d4116d6e6d54b7b9de951019 | Change dependencies | CanalTP/flask-restful | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='Flask-RESTful',
version='0.2.5',
url='https://www.github.com/twilio/flask-restful/',
author='Kyle Conroy',
author_email='help@twilio.com',
description='Simple framework for creating REST APIs',
packages=find_pac... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='Flask-RESTful',
version='0.2.5',
url='https://www.github.com/twilio/flask-restful/',
author='Kyle Conroy',
author_email='help@twilio.com',
description='Simple framework for creating REST APIs',
packages=find_pac... | bsd-3-clause | Python |
61d00ab7272d8b843905ce0802ab5687ab02bde8 | Update python versions listed on PyPI (#550) | wright-group/WrightTools,wright-group/WrightTools | setup.py | setup.py | #! /usr/bin/env python3
import os
from setuptools import setup, find_packages
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
here = os.path.ab... | #! /usr/bin/env python3
import os
from setuptools import setup, find_packages
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
here = os.path.ab... | mit | Python |
857431e22867f37f2bfcc29079178b46996aa6be | add python 3.7 to setup classifiers | knowledge-point/dj_anonymizer | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='dj_anonymizer',
packages=['dj_anonymizer'],
include_package_data=True,
version='0.2.0',
... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='dj_anonymizer',
packages=['dj_anonymizer'],
include_package_data=True,
version='0.2.0',
... | mit | Python |
fd5ec67702256072e1fa3a9958cc8cf33987ec1b | Update version | Josef-Friedrich/audiorename | setup.py | setup.py | from setuptools import setup
setup(
name = 'audiorename',
version = '0.0.4',
author = 'Josef Friedrich',
author_email = 'josef@friedrich.rocks',
description = ('Rename audio files from metadata tags.'),
license = 'MIT',
packages = ['audiorename'],
keywords = 'audio',
url = 'https://github.com/Josef-Friedrich/... | from setuptools import setup
setup(
name = 'audiorename',
version = '0.0.3',
author = 'Josef Friedrich',
author_email = 'josef@friedrich.rocks',
description = ('Rename audio files from metadata tags.'),
license = 'MIT',
packages = ['audiorename'],
keywords = 'audio',
url = 'https://github.com/Josef-Friedrich/... | mit | Python |
d857664eea46c6596f73b68296d95cb816cd391c | bump version to 2.0.0a1 | andrenarchy/krypy,highlando/krypy | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from distutils.core import setup
import codecs
# shamelessly copied from VoroPy
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname),
encoding='utf-8').read()
setup(name='krypy',
packages=['krypy'],
version='2.0.0a... | # -*- coding: utf-8 -*-
import os
from distutils.core import setup
import codecs
# shamelessly copied from VoroPy
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname),
encoding='utf-8').read()
setup(name='krypy',
packages=['krypy'],
version='1.0.1'... | mit | Python |
f5cf7c1d653274b1555b21e050ddaefa11807e4e | Bump version. | JshWright/django-annoying | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="django-annoying",
version="0.8.0",
packages=find_packages(),
author="Stavros Korokithakis",
author_email="stavros@korokithakis.net",
description="This is a django application that tries to eliminate annoying things in the Django framework.... | from setuptools import setup, find_packages
setup(
name="django-annoying",
version="0.7.9",
packages=find_packages(),
author="Stavros Korokithakis",
author_email="stavros@korokithakis.net",
description="This is a django application that tries to eliminate annoying things in the Django framework.... | bsd-3-clause | Python |
5bab78541c296cc6590cfedea999e532d15b9f11 | Update setup.py | jneight/django-db-geventpool | setup.py | setup.py | # coding=utf-8
from setuptools import setup, find_packages
setup(
name='django-db-geventpool',
version='3.0.0',
install_requires=[
'django>=1.5',
'psycogreen>=1.0',
],
url='https://github.com/jneight/django-db-geventpool',
description='Add a DB connection pool using gevent to d... | # coding=utf-8
from setuptools import setup, find_packages
setup(
name='django-db-geventpool',
version='2',
install_requires=[
'django>=1.5',
'psycogreen>=1.0',
],
url='https://github.com/jneight/django-db-geventpool',
description='Add a DB connection pool using gevent to djang... | apache-2.0 | Python |
8d9a534cd170e43c5f3e0f08e99276778cd909db | bump version | AmitMY/pose-format,AmitMY/pose-format,AmitMY/pose-format | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
packages = [p for p in find_packages() if "third_party" not in p]
print(packages)
setup(
name='pose_format',
packages=packages,
version='0.0.5',
description='Library for view... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
packages = [p for p in find_packages() if "third_party" not in p]
print(packages)
setup(
name='pose_format',
packages=packages,
version='0.0.4',
description='Library for view... | mit | Python |
c3b9a81fcf29461652073ce3b3ee02120535536e | Add long_description to setup.py. | WarrenWeckesser/odeintw | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2014, Warren Weckesser
# All rights reserved.
# See the LICENSE file for license information.
from os import path
from setuptools import setup
def get_odeintw_version():
"""
Find the value assigned to __version__ in odeintw/__init__.py.
This function assumes that t... | #!/usr/bin/env python
# Copyright (c) 2014, Warren Weckesser
# All rights reserved.
# See the LICENSE file for license information.
from os import path
from setuptools import setup
def get_odeintw_version():
"""
Find the value assigned to __version__ in odeintw/__init__.py.
This function assumes that t... | bsd-3-clause | Python |
c0e7dc3d3824a7a0ab062b9d69532b53abd483a8 | Bump release | wiliamsouza/humanize | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for humanize."""
from setuptools import setup, find_packages
import io
version = '0.5.2'
# some trove classifiers:
setup(
name='tg-humanize',
version=version,
description="python humanize utilities",
long_description=io.open('README.rst... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for humanize."""
from setuptools import setup, find_packages
import io
version = '0.5.1'
# some trove classifiers:
setup(
name='tg-humanize',
version=version,
description="python humanize utilities",
long_description=io.open('README.rst... | mit | Python |
93caf5be370aa878378aa0d6151434d344c0910e | add package description | kenyansongithub/django-rog,kenyansongithub/django-rog,kenyansongithub/django-rog | setup.py | setup.py | __author__ = 'ndieks'
import os
from setuptools import setup
import setuptools
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(
... | __author__ = 'ndieks'
import os
from setuptools import setup
import setuptools
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(
... | bsd-2-clause | Python |
0e79a91059806a95bb3add422458809e7fba5d43 | Update python-jose | SCUEvals/scuevals-api,SCUEvals/scuevals-api | setup.py | setup.py | from setuptools import setup
setup(
name='scuevals-api',
packages=['scuevals_api'],
include_package_data=True,
test_suite='tests',
entry_points={
'console_scripts': [
'app=scuevals_api.cmd:cli'
]
},
install_requires=[
'alembic==0.9.7',
'beautifuls... | from setuptools import setup
setup(
name='scuevals-api',
packages=['scuevals_api'],
include_package_data=True,
test_suite='tests',
entry_points={
'console_scripts': [
'app=scuevals_api.cmd:cli'
]
},
install_requires=[
'alembic==0.9.7',
'beautifuls... | agpl-3.0 | Python |
a0ac2f1b11b706d777b9a151469e425fcba06f0f | Remove ext. from extras_require | datafolklabs/cement,datafolklabs/cement,datafolklabs/cement | setup.py | setup.py |
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
f = open('README.md', 'r')
LONG = f.read()
f.close()
setup(name='cement',
version=VERSION,
python_requires='>=3.5',
description='Application Framework for Python',
long_description... |
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
f = open('README.md', 'r')
LONG = f.read()
f.close()
setup(name='cement',
version=VERSION,
python_requires='>=3.5',
description='Application Framework for Python',
long_description... | bsd-3-clause | Python |
96a20575d298e41009eb5b874de1f4aee16468c7 | update setup.py | willforde/python-htmlement | setup.py | setup.py | from setuptools import setup
setup(name='htmlement',
version='0.1',
description='Python HTMLParser extension with ElementTree support.',
keywords='html html5 parsehtml htmlparser elementtree dom',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers... | from setuptools import setup
setup(name='htmlement',
version='0.1',
description='Python HTMLParser extension with ElementTree support.',
url='https://github.com/willforde/python-htmlement',
author='William Forde',
author_email='willforde@gmail.com',
license='MIT',
py_modules=[... | mit | Python |
bfee71ad7ff52e96faaec4648732b4b4f63905bb | upgrade flask package version | cbrand/vpnchooser,cbrand/vpnchooser,cbrand/vpnchooser,cbrand/vpnchooser | setup.py | setup.py | # -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
requires = [
'flask ~> 1.0.0',
'Flask-RESTful==0.3.2',
'Flask-Script==2.0.5',
'Flask-SQLAlchemy==2.0',
'paramiko',
'passlib',
'celery',
'redis',
]
VERSION = '0.6.5'
setup(
name='vpnchooser',
version=VERSION... | # -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
requires = [
'flask ~> 0.12.3',
'Flask-RESTful==0.3.2',
'Flask-Script==2.0.5',
'Flask-SQLAlchemy==2.0',
'paramiko',
'passlib',
'celery',
'redis',
]
VERSION = '0.6.5'
setup(
name='vpnchooser',
version=VERSIO... | mit | Python |
f1fed2c0e473b2fb4ec703792ba8468b32da013e | Bump version to 0.2.4 | 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 |
5b37a3547bcf6be20913f38b1a434f637c60a684 | fix desc | silverlogic/prettyexc | setup.py | setup.py | from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_version():
with open('prettyexc/version.txt') as f:
return f.read().strip()
def get_readme():
try:
with open('README.md') as f:
return f.r... | from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_version():
with open('prettyexc/version.txt') as f:
return f.read().strip()
def get_readme():
try:
with open('README.md') as f:
return f.r... | bsd-2-clause | Python |
aeb76544577a4c3cec66d6d344653ab812b9aa27 | Bump version for updated release | mjog/pygi-composite-templates,virtuald/pygi-composite-templates | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(name='pygi-composite-templates',
version='0.2.1',
description='An implementation of GTK3 composite templates for PyGI',
author='Dustin Spicuzza',
author_email='dustin@virtualroadside.com',
url='https://github.com/virtuald/pygi-... | #!/usr/bin/env python
from distutils.core import setup
setup(name='pygi-composite-templates',
version='0.2.0',
description='An implementation of GTK3 composite templates for PyGI',
author='Dustin Spicuzza',
author_email='dustin@virtualroadside.com',
url='https://github.com/virtuald/pygi-... | lgpl-2.1 | Python |
541b8ab93a9d7c10c34bf84fe30f2273e5c7ae2a | Correct PEP8 | Scille/autobahn-sync | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'rb') as readme_file:
readme = readme_file.read().decode('utf8')
REQUIRES = (
'crochet>=1.4.0',
'autobahn>=0.12.0'
)
setup(
name='autobahn-sync',
version='0.3.1',
description='Bring autobahn to your... | # -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
with open('README.rst', 'rb') as readme_file:
readme = readme_file.read().decode('utf8')
REQUIRES = (
'crochet>=1.4.0',
'autobahn>=0.12.0'
)
setup(
name='autobahn-sync',
version='0.3.1',
description='Bring autoba... | mit | Python |
7304837690ab637e696928364223421270b18915 | update author info | elliotpeele/prism_core | setup.py | setup.py | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'pyramid_tm',
'pyramid_debug... | import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'pyramid_tm',
'pyramid_debug... | mit | Python |
184a782bb74334594005216120932cbfad4ee269 | Add missing timezone.pyx file | viniciuschiele/contracts,viniciuschiele/contracts | setup.py | setup.py | import sys
from setuptools import setup, Extension
def has_option(name):
try:
sys.argv.remove('--%s' % name)
return True
except ValueError:
return False
USE_CYTHON = has_option('cython')
ext = '.pyx' if USE_CYTHON else '.c'
extensions = [
Extension('contracts.abc', ['contracts/... | import sys
from setuptools import setup, Extension
def has_option(name):
try:
sys.argv.remove('--%s' % name)
return True
except ValueError:
return False
USE_CYTHON = has_option('cython')
ext = '.pyx' if USE_CYTHON else '.c'
extensions = [
Extension('contracts.abc', ['contracts/... | mit | Python |
7b3d0e1091687dc44783e27da5d99019b5ba9efe | add some packaging shmutz | sciyoshi/CheesePrism,whitmo/CheesePrism,whitmo/CheesePrism,SMFOSS/CheesePrism,SMFOSS/CheesePrism,whitmo/CheesePrism,sciyoshi/CheesePrism | setup.py | setup.py | from setuptools import find_packages
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['Jinja2',
'path.py',
'pkginfo',
... | from setuptools import find_packages
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['Jinja2',
'path.py',
'pkginfo',
... | bsd-2-clause | Python |
6fd9860a54d349db5cc55cb5da7c8f837acd8fbc | update name | ccollins/pest | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="pest",
version="1.0",
packages = ['pest'],
scripts=['pest/pester'],
package_data = {'pest': ['images/*.png'],},
install_requires=['pyobjc-framework-FSEvents','growl-py'],
description="Auto tester for python",
author="Chuck C... | #!/usr/bin/env python
from setuptools import setup
setup(
name="Pest",
version="1.0",
packages = ['pest'],
scripts=['pest/pester'],
package_data = {'pest': ['images/*.png'],},
install_requires=['pyobjc-framework-FSEvents','growl-py'],
description="Auto tester for python",
author="Chuck C... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.