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 |
|---|---|---|---|---|---|---|---|---|
e45f056e92c7e5b2956072f7f2985ce1f7d213ed | FIX moved bio script to misc.bio_utils | dieterich-lab/riboseq-utils | setup.py | setup.py | from setuptools import setup
console_scripts = [
'extract-metagene-profiles=riboutils.extract_metagene_profiles:main',
'estimate-metagene-profile-bayes-factors=riboutils.estimate_metagene_profile_bayes_factors:main',
'select-periodic-offsets=riboutils.select_periodic_offsets:main'
]
def readme():
with... | from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='riboutils',
version='0.1',
description="This package contains utilities for other ribosome profiling projects.",
long_description=readme(),
keywords="ribosome profiling utili... | mit | Python |
743e51d9305c63865d487064fcf8d564bf087f96 | Update version to 0992 | wangtai/django_render,YuelianINC/django_render,wangtai/django_render,kkzxak47/django_render,YuelianINC/django_render,kkzxak47/django_render | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# author: xiLin.ding
from setuptools import setup, find_packages
try:
long_description = open('README.md').read()
except:
long_description = ''
setup(
name='django-render-url',
version='0.9.9.2',
packages=find_packages(),
author='WANG Tai',
a... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# author: xiLin.ding
from setuptools import setup, find_packages
try:
long_description = open('README.md').read()
except:
long_description = ''
setup(
name='django-render-url',
version='0.9.9.1',
packages=find_packages(),
author='WANG Tai',
a... | apache-2.0 | Python |
0341954b620f53e6218dc7aa12ba88a0c6f69f42 | make dependent on latest nanoplotter | wdecoster/NanoPlot,wdecoster/NanoPlot | setup.py | setup.py | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
exec(open('nanoplot/version.py').read())
setup(
name='NanoPlot',
version=__version__,
description='Pl... | # Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
exec(open('nanoplot/version.py').read())
setup(
name='NanoPlot',
version=__version__,
description='Pl... | mit | Python |
b0c5264687c1ae06ef824f26294d886717359687 | Add python_requires >= 3 | eddie-dunn/swytcher | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
# pylint: disable=invalid-name
# pylint: disable=fixme
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
r... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
# pylint: disable=invalid-name
# pylint: disable=fixme
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
r... | mit | Python |
0208a5368a4565dc87668d54e9b0a369f06159f9 | Bump version | catalpainternational/OIPA,catalpainternational/OIPA,catalpainternational/OIPA,catalpainternational/OIPA | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from pip.req import parse_requirements
install_requirements = parse_requirements('OIPA/requirements.txt', session=False)
requirements = [str(ir.req) for ir in install_requirements]
setup(name='OIPA',
version='2.2.2',
author='Zimmerman & Zi... | #!/usr/bin/env python
from setuptools import setup, find_packages
from pip.req import parse_requirements
install_requirements = parse_requirements('OIPA/requirements.txt', session=False)
requirements = [str(ir.req) for ir in install_requirements]
setup(name='OIPA',
version='2.2.1',
author='Zimmerman & Zi... | agpl-3.0 | Python |
7b2d6614b6d2f9ff827420889a893472c5b5c308 | Fix test extras setup and Make mismatch. | kitsunde/jack-bower | setup.py | setup.py | import os
from setuptools import setup, find_packages
import bower as app
dev_requires = [
'flake8',
]
install_requires = [
'django',
]
tests_requires = [
'django-discover-runner',
]
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError... | import os
from setuptools import setup, find_packages
import bower as app
dev_requires = [
'flake8',
]
install_requires = [
'django',
]
test_requires = [
'django-discover-runner',
]
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:... | mit | Python |
72d7f5ff2a3879aa499f6e510d5b6bbd8bd79172 | Update setup.py allow django 1.10 (#31) | divio/djangocms-column,divio/djangocms-column | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from djangocms_column import __version__
INSTALL_REQUIRES = [
'django-cms>=3.2.0',
'django>=1.8,<1.11',
]
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Djang... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from djangocms_column import __version__
INSTALL_REQUIRES = [
'django-cms>=3.2.0',
'django>=1.8,<1.10',
]
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Djang... | bsd-3-clause | Python |
429f58f47bf4abef40350571b034b416ec42a6ea | Bump to 2.0.3 | mhinz/neovim-remote,mhinz/neovim-remote | setup.py | setup.py | from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'neovim-remote',
author = 'Marco Hinz',
author_email = 'mh.codebro@g... | from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'neovim-remote',
author = 'Marco Hinz',
author_email = 'mh.codebro@g... | mit | Python |
73358ee6b690144c91ca535decba4993dd09cf61 | bump to 3.0.0 | trustpilot/python-lambdarest | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
readme = read_... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
readme = read_... | mit | Python |
22006857655de4a94f5d8a8ffa5033a4faa38920 | Bump to v0.12.1 | gisce/esios | setup.py | setup.py | from setuptools import setup, find_packages
PACKAGES_DATA = {'esios': ['data/*.xsd']}
setup(
name='esios',
version='0.12.1',
packages=find_packages(),
url='https://github.com/gisce/esios',
license='MIT',
install_requires=['libsaas'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.n... | from setuptools import setup, find_packages
PACKAGES_DATA = {'esios': ['data/*.xsd']}
setup(
name='esios',
version='0.12.0',
packages=find_packages(),
url='https://github.com/gisce/esios',
license='MIT',
install_requires=['libsaas'],
author='GISCE-TI, S.L.',
author_email='devel@gisce.n... | mit | Python |
e3143cc9d58469349f630c95a98b060c4aeb96fa | include the certificate with the package | SpectoLabs/hoverpy | setup.py | setup.py | try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
version = '0.1.5'
dist_version = '0.9.0'
setup(
name = 'hoverpy',
install_requires = ["requests"],
packages = ['hoverpy'],
version = version,
description = 'A python library for HoverFly',
author = 'SpectoL... | try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
version = '0.1.5'
dist_version = '0.9.0'
setup(
name = 'hoverpy',
install_requires = ["requests"],
packages = ['hoverpy'],
version = version,
description = 'A python library for HoverFly',
author = 'SpectoL... | apache-2.0 | Python |
c76c9b9d7c3fa33f81cd7b0a2f041c3e0c3e24aa | add py3 only classifier | eerimoq/argparse_addons | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import argparse_addons
setup(name='argparse_addons',
version=argparse_addons.__version__,
description=('Additional argparse types and actions.'),
long_description=open('README.rst', 'r').read(),
author='Erik Moqvist',
author_email='erik.... | #!/usr/bin/env python
from setuptools import setup
import argparse_addons
setup(name='argparse_addons',
version=argparse_addons.__version__,
description=('Additional argparse types and actions.'),
long_description=open('README.rst', 'r').read(),
author='Erik Moqvist',
author_email='erik.... | mit | Python |
01d2d7abbb0ba949760af6eb70a7b101df09a50a | Add freezegun requirement for tests. | ambitioninc/django-entity-emailer,ambitioninc/django-entity-emailer,wesleykendall/django-entity-emailer,wesleykendall/django-entity-emailer | setup.py | setup.py | # import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215)
import multiprocessing
assert multiprocessing
import re
from setuptools import setup, find_packages
def get_version():
"""
Extracts the version number from the version.py file.
"""
VERSION_FILE = 'entity_emailer/v... | # import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215)
import multiprocessing
assert multiprocessing
import re
from setuptools import setup, find_packages
def get_version():
"""
Extracts the version number from the version.py file.
"""
VERSION_FILE = 'entity_emailer/v... | mit | Python |
42661bb71ad73320e1af88a935a61fe183fb623c | bump version to 0.1.0 | bwhmather/json-config-parser | setup.py | setup.py | """
JSON Config Parser
==================
A straightforward and unambiguous config file parser.
Parses ini style files with json keys.
"""
from setuptools import setup
setup(
name='json-config-parser',
version='0.1.0',
author='Ben Mather',
author_email='bwhmather@bwhmather.com',
description='A str... | """
JSON Config Parser
==================
A straightforward and unambiguous config file parser.
Parses ini style files with json keys.
"""
from setuptools import setup
setup(
name='json-config-parser',
version='0.0.2',
author='Ben Mather',
author_email='bwhmather@bwhmather.com',
description='A str... | bsd-3-clause | Python |
013f287520fa593d5f8162ce31097f9c1bf34622 | change profile | gomafutofu/mbserializer,yezorat/mbserializer | setup.py | setup.py | # coding: utf-8
__author__ = 'Junki Ishida'
from mbserializer._compat import PY26
from setuptools import setup
tests_require=['PyYAML', 'lxml', 'defusedxml', 'pytz', ]
if PY26:
tests_require.append('ordereddict')
setup(
name='mbserializer',
version='0.0.1-alpha',
description='model based serializer ... | # coding: utf-8
__author__ = 'Junki Ishida'
from mbserializer._compat import PY26
from setuptools import setup
tests_require=['PyYAML', 'lxml', 'defusedxml', 'pytz', ]
if PY26:
tests_require.append('ordereddict')
setup(
name='mbserializer',
version='0.0.1-alpha',
description='model based serializer ... | mit | Python |
429980768516ee32e3394ed12b45b07624c34a76 | update version | bird-house/birdhousebuilder.recipe.docker | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
This module contains the tool of birdhousebuilder.recipe.docker
"""
from setuptools import find_packages
from setuptools import setup
name = 'birdhousebuilder.recipe.docker'
version = '0.5.2'
description = 'A Buildout recipe to generate a Dockerfile for Birdhouse applications.'
long_descri... | # -*- coding: utf-8 -*-
"""
This module contains the tool of birdhousebuilder.recipe.docker
"""
from setuptools import find_packages
from setuptools import setup
name = 'birdhousebuilder.recipe.docker'
version = '0.5.1'
description = 'A Buildout recipe to generate a Dockerfile for Birdhouse applications.'
long_descri... | apache-2.0 | Python |
84104e9962ec9aa8453253e6071e351ba14e169c | Add metadata to setup.py informing that now it also works with Python3 | globocom/alf,globocom/alf | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='alf',
version='0.4.1',
description="OAuth Client",
long_description=open('README.rst').read(),
keywords='oauth client client_credentials requests',
author=u'Globo.com',
author_email='timecore@corp.globo.com',
... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='alf',
version='0.4.1',
description="OAuth Client",
long_description=open('README.rst').read(),
keywords='oauth client client_credentials requests',
author=u'Globo.com',
author_email='timecore@corp.globo.com',
... | mit | Python |
4b3d4cdf958ad40fb3f92aff2244cc81adfadd15 | Update email address for PyPI package to use discourse | chapel-lang/sphinxcontrib-chapeldomain | setup.py | setup.py | import os.path
import re
from setuptools import setup, find_packages
with open('README.rst', 'r') as fp:
long_desc = fp.read()
# Grab the version from chapeldomain module.
with open(os.path.join('sphinxcontrib', 'chapeldomain', '__init__.py'), 'r') as fp:
version_pattern = re.compile(r'^VERSION\s*=\s*\'(?P<ve... | import os.path
import re
from setuptools import setup, find_packages
with open('README.rst', 'r') as fp:
long_desc = fp.read()
# Grab the version from chapeldomain module.
with open(os.path.join('sphinxcontrib', 'chapeldomain', '__init__.py'), 'r') as fp:
version_pattern = re.compile(r'^VERSION\s*=\s*\'(?P<ve... | apache-2.0 | Python |
2072d57a295f3c144ab3e459be8df1e207f7665a | Bump version to 0.2 | eliksir/django-quintet | setup.py | setup.py | # -*- coding: utf-8 -*-
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-quintet',
version='0.2.0',
... | # -*- coding: utf-8 -*-
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-quintet',
version='0.1.3',
... | bsd-3-clause | Python |
2317542ed51494d1fc5f3714b3a6848e0e59d606 | add nova-debug to setup.py | rackerlabs/melange,rajarammallya/melange,rajarammallya/melange,openstack-attic/melange,rajarammallya/melange,openstack-attic/melange,rackerlabs/melange,openstack-attic/melange,rackerlabs/melange | setup.py | setup.py | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compli... | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compli... | apache-2.0 | Python |
20c29f095ed7ec9aaa6f4599f17d22c97930f11e | bump to 0.10.0-rc1, update url | graphite-project/ceres | setup.py | setup.py | #!/usr/bin/env python
import os
from glob import glob
from distutils.core import setup
setup(
name='ceres',
version='0.10.0-rc1',
url='http://graphiteapp.org/',
author='Chris Davis',
author_email='chrismd@gmail.com',
license='Apache Software License 2.0',
description='Distributable time-series database... | #!/usr/bin/env python
import os
from glob import glob
from distutils.core import setup
setup(
name='ceres',
version='0.10.0',
url='https://github.com/graphite-project/ceres',
author='Chris Davis',
author_email='chrismd@gmail.com',
license='Apache Software License 2.0',
description='Distributable time-s... | apache-2.0 | Python |
5d25cdcc9c614b4a8ead61013738d2626d6ec5d5 | update version to 1.7.0 | lewzylu/coscmd | setup.py | setup.py | from setuptools import setup, find_packages
from platform import python_version_tuple
def requirements():
with open('requirements.txt', 'r') as fileobj:
requirements = [line.strip() for line in fileobj]
version = python_version_tuple()
if version[0] == 2 and version[1] == 6:
... | from setuptools import setup, find_packages
from platform import python_version_tuple
def requirements():
with open('requirements.txt', 'r') as fileobj:
requirements = [line.strip() for line in fileobj]
version = python_version_tuple()
if version[0] == 2 and version[1] == 6:
... | mit | Python |
76ce000bbaa7fdae1af01c7a542808473a5f94b8 | Update extension author | ckan/ckanext-qa,ckan/ckanext-qa,ckan/ckanext-qa | setup.py | setup.py | from setuptools import setup, find_packages
try:
from ckanext.qa import __version__
except:
__version__ = '0.2a'
setup(
name='ckanext-qa',
version=__version__,
description="Quality assurance plugin for CKAN",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.pyt... | from setuptools import setup, find_packages
try:
from ckanext.qa import __version__
except:
__version__ = '0.2a'
setup(
name='ckanext-qa',
version=__version__,
description="Quality assurance plugin for CKAN",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.pyt... | mit | Python |
c77bd885b42e924a1be909e1244818184b490c31 | Update setup.py | lociii/billomat | setup.py | setup.py | # -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(
name='billomat',
packages=find_packages(),
version='0.1.30',
description='billomat.com API client',
author='Jens Nistler',
author_email='opensource@jensnistler.de',
url='http://jensnistler.de/',
download_url='htt... | # -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(
name='billomat',
packages=find_packages(),
version='0.1.29',
description='billomat.com API client',
author='Jens Nistler',
author_email='opensource@jensnistler.de',
url='http://jensnistler.de/',
download_url='htt... | mit | Python |
63a38835484380f19fced5312994036fcea5f4e3 | Bump sphinx from 2.3.1 to 2.4.0 | marshmallow-code/marshmallow-sqlalchemy | setup.py | setup.py | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=2.15.2", "SQLAlchemy>=1.2.0")
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-lazy-fixture", "mock"],
"lint": ["flake8==3.7.9", "flake8-bugbear==20.1.4", "pre-commit~=2.0"],
"docs": ["sphinx==2.4.0", "alabaster==0.7.12"... | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=2.15.2", "SQLAlchemy>=1.2.0")
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-lazy-fixture", "mock"],
"lint": ["flake8==3.7.9", "flake8-bugbear==20.1.4", "pre-commit~=2.0"],
"docs": ["sphinx==2.3.1", "alabaster==0.7.12"... | mit | Python |
38a5f0a69f228cd26a31e17c52dc2e0d3cc486a4 | Add Python 3.0 classifier and pg_withcluster script. | python-postgres/fe,python-postgres/fe | setup.py | setup.py | #!/usr/bin/env python
##
# copyright 2008, pg/python project.
# http://python.projects.postgresql.org
##
import sys
import os
from distutils.core import Extension
NAME = 'py-postgresql'
VERSION = '0.8'
LONG_DESCRIPTION = """
py-postgresql is a set of Python modules providing interfaces to various parts
of PostgreSQL. ... | #!/usr/bin/env python
##
# copyright 2008, pg/python project.
# http://python.projects.postgresql.org
##
import sys
import os
from distutils.core import Extension
NAME = 'py-postgresql'
VERSION = '0.1'
LONG_DESCRIPTION = """
py-postgresql is a set of Python modules providing interfaces to various parts
of PostgreSQL. ... | bsd-3-clause | Python |
5406bedd3a342df24d4ad496531d1b5c690af2c5 | Bump Core dependency to v33 | openfisca/openfisca-tunisia,openfisca/openfisca-tunisia | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operating System... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operating System... | agpl-3.0 | Python |
08340bd6e8816c4c442ca1b928774d0ee0b79d90 | Add trove classifiers for specific Django and Python versions | gregmuellegger/django-floppyforms,gregmuellegger/django-floppyforms,gregmuellegger/django-floppyforms | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs
import re
from os import path
from distutils.core import setup
from setuptools import find_packages
def read(*parts):
return codecs.open(path.join(path.dirname(__file__), *parts),
encoding='utf-8').read()
def find_version(*file_paths):
version_fil... | # -*- coding: utf-8 -*-
import codecs
import re
from os import path
from distutils.core import setup
from setuptools import find_packages
def read(*parts):
return codecs.open(path.join(path.dirname(__file__), *parts),
encoding='utf-8').read()
def find_version(*file_paths):
version_fil... | bsd-3-clause | Python |
c0cd2ab01cba1eac628e655229c56644c401949b | Bump to v0.10.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.10.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.9.5',
packages=find_packages(),
url='http://code.gisce.net',
license='MIT',
autho... | mit | Python |
3a97360525333dd17f1ef4dec169271ff75caa2c | Rename to just "rock" | silas/rock,silas/rock,silas/rock,silas/rock,silas/rock,silas/rock,silas/rock,silas/rock | setup.py | setup.py | from distutils.core import setup
from rock import __version__ as version
long_description = """
This is a command line tool that simplifies building, testing, and running
applications on the Rock Platform.
See http://www.rockplatform.org for more information.
"""
setup(
name='rock',
version=version,
desc... | from distutils.core import setup
from rock import __version__ as version
long_description = """
This is a command line tool that simplifies building, testing, and running
applications on the Rock Platform.
See http://www.rockplatform.org for more information.
"""
setup(
name='rock',
version=version,
desc... | mit | Python |
a8fe769c790172dd4be4e9293fa0489fe3425306 | Bump to 2.3.0 | massard-t/etnawrapper | setup.py | setup.py | from distutils.core import setup
__version__ = "2.3.0"
URL = "https://github.com/massard-t/etnawrapper/archive/{}.tar.gz".format(__version__)
setup(
name="etnawrapper",
packages=["etnawrapper"],
install_requires=['requests'],
version=__version__,
description="API wrapper for ETNA' APIs",
auth... | from distutils.core import setup
__version__ = "2.2.3"
URL = "https://github.com/massard-t/etnawrapper/archive/{}.tar.gz".format(__version__)
setup(
name="etnawrapper",
packages=["etnawrapper"],
install_requires=['requests'],
version=__version__,
description="API wrapper for ETNA' APIs",
auth... | mit | Python |
e99aa7ecb281675134efd0ff8a0cd9dfb53731b0 | Increment rc version to rc3 | Eugeny/gevent-socketio,gutomaia/gevent-socketio,smurfix/gevent-socketio,bobvandevijver/gevent-socketio,arnuschky/gevent-socketio,kazmiruk/gevent-socketio,gutomaia/gevent-socketio,arnuschky/gevent-socketio,abourget/gevent-socketio,smurfix/gevent-socketio,gutomaia/gevent-socketio,theskumar-archive/gevent-socketio,yacneya... | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
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(self):
#im... | from setuptools import setup
from setuptools import find_packages
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(self):
#im... | bsd-3-clause | Python |
f17a1b3d078e81d9ac4b09d97d1ef87db2c2075b | Bump to version v2.8.0 | jakelever/kindred,jakelever/kindred | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import sys
if sys.version_info[0] < 3:
raise Exception("PubRunner requires Python 3")
VERSION='2.8.0'
here = path.abspath(path.dirname(__file__))
# Get the long description ... | #!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import sys
if sys.version_info[0] < 3:
raise Exception("PubRunner requires Python 3")
VERSION='2.7.8'
here = path.abspath(path.dirname(__file__))
# Get the long description ... | mit | Python |
40840ca11bbe5c9ca1fade77ca3f7440ff32fc58 | Upgrade minimum jax versions to run examples (#347) | pyro-ppl/numpyro | setup.py | setup.py | from __future__ import absolute_import, division, print_function
import os
import sys
from setuptools import find_packages, setup
PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
# Find version
for line in open(os.path.join(PROJECT_PATH, 'numpyro', 'version.py')):
if line.startswith('__version__ = '):
... | from __future__ import absolute_import, division, print_function
import os
import sys
from setuptools import find_packages, setup
PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
# Find version
for line in open(os.path.join(PROJECT_PATH, 'numpyro', 'version.py')):
if line.startswith('__version__ = '):
... | apache-2.0 | Python |
2a5315ddd0e0d85e3f3ee52a0138dd17618dc40e | Add django-classy-tags>=0.3.0 requir | Maplecroft/django-cookie-law,juan-cb/django-cookie-law,TyMaszWeb/django-cookie-law,TyMaszWeb/django-cookie-law,TyMaszWeb/django-cookie-law,barseghyanartur/django-cookie-law,barseghyanartur/django-cookie-law,barseghyanartur/django-cookie-law,APSL/django-cookie-law,douwevandermeij/django-cookie-law,juan-cb/django-cookie-... | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
import cookielaw
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating Sys... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
import cookielaw
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating Sys... | bsd-2-clause | Python |
528bb1c26af1ee15114ec3797c004fe3c66e75a9 | Add a description and url to setup.py | LeMagnesium/cobe,DarkMio/cobe,DarkMio/cobe,LeMagnesium/cobe,meska/cobe,wodim/cobe-ng,wodim/cobe-ng,tiagochiavericosta/cobe,pteichman/cobe,meska/cobe,pteichman/cobe,tiagochiavericosta/cobe | setup.py | setup.py | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "cobe",
version = "0.5",
author = "Peter Teichman",
author_email = "peter@teichman.org",
url = "http://github.com/pteichman/cobe",
description = "A database-back... | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "cobe",
version = "0.5",
author = "Peter Teichman",
author_email = "peter@teichman.org",
packages = ["cobe"],
test_suite = "tests.cobe_suite",
install_requir... | mit | Python |
0c76289835e31b6f92e550745002730e1e7efaf2 | Update the numpy requirement since we use numpy.isin, which is only available in numpy 1.13.0 onwards. | pwcazenave/PyFVCOM | setup.py | setup.py | from setuptools import setup
setup(
name = 'PyFVCOM',
packages = ['PyFVCOM'],
version = '2.1.0',
description = ("PyFVCOM is a collection of various tools and utilities which can be used to extract, analyse and plot input and output files from FVCOM."),
author = 'Pierre Cazenave',
author_email =... | from setuptools import setup
setup(
name = 'PyFVCOM',
packages = ['PyFVCOM'],
version = '2.1.0',
description = ("PyFVCOM is a collection of various tools and utilities which can be used to extract, analyse and plot input and output files from FVCOM."),
author = 'Pierre Cazenave',
author_email =... | mit | Python |
0c58f99fe20fc16b8075c3d2e26943772a6c941f | Change version | shaunstanislaus/grab,SpaceAppsXploration/grab,istinspring/grab,kevinlondon/grab,pombredanne/grab-1,maurobaraldi/grab,codevlabs/grab,lorien/grab,pombredanne/grab-1,raybuhr/grab,codevlabs/grab,DDShadoww/grab,alihalabyah/grab,alihalabyah/grab,kevinlondon/grab,DDShadoww/grab,SpaceAppsXploration/grab,giserh/grab,giserh/grab... | setup.py | setup.py | import os
from setuptools import setup
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
PACKAGE = 'grab'
for dirpath, dirnames, filenames in os.walk(PACKAGE):
... | import os
from setuptools import setup
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
PACKAGE = 'grab'
for dirpath, dirnames, filenames in os.walk(PACKAGE):
... | mit | Python |
6cb8e61abe8b91e850958673a009af041abab35a | bump version to 0.1.0 | oconnor663/duct,oconnor663/duct.py | setup.py | setup.py | import setuptools
setuptools.setup(
name='duct',
version='0.1.0',
py_modules=['duct'],
)
| import setuptools
setuptools.setup(
name='duct',
version='0.0.1',
py_modules=['duct'],
)
| mit | Python |
a65b4a25718c71f4abaca2bfca5a312d219d67b5 | Bump version to 0.0.5 | matrix-org/syutil | setup.py | setup.py | # Copyright 2014 OpenMarket Ltd
#
# 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 2014 OpenMarket Ltd
#
# 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 |
9e146418da1329a8e66ce41d220d098dca0b72b8 | switch to using gunicorn for production deployment | oyiptong/up-headliner,oyiptong/up-headliner | setup.py | setup.py | import os
from setuptools import setup, find_packages
requires = [
"Flask==0.10.1",
"celery==3.1.5",
"redis==2.8.0",
"hiredis==0.1.1",
"requests==2.0.1",
"furl==0.3.6",
"python-dateutil==2.2",
"gevent==1.0",
"grequests==0.2.0",
]
if os.environ.ha... | import os
from setuptools import setup, find_packages
requires = [
"Flask==0.10.1",
"celery==3.1.5",
"redis==2.8.0",
"hiredis==0.1.1",
"requests==2.0.1",
"furl==0.3.6",
"python-dateutil==2.2",
"gevent==1.0",
"grequests==0.2.0",
]
if os.environ.ha... | mpl-2.0 | Python |
067fe37d25e561aa6ea3b4eaba6f3ffe2a1ecc8c | fix dependency and set version 0.2.3 | icgood/provoke,icgood/provoke | setup.py | setup.py |
import sys
from setuptools import setup, find_packages
if sys.version_info[0] == 2:
mysql = 'MySQL-python'
else:
mysql = 'PyMySQL'
setup(name='provoke',
version='0.2.3',
author='Ian Good',
author_email='ian.good@rackspace.com',
description='Lightweight, asynchronous function execut... |
from setuptools import setup, find_packages
setup(name='provoke',
version='0.2.2',
author='Ian Good',
author_email='ian.good@rackspace.com',
description='Lightweight, asynchronous function execution in Python '
'using AMQP.',
packages=find_packages(),
install_req... | mit | Python |
10fa38b6af6ffb13bd541ae00b7c951d496be491 | update version | frascoweb/frasco,frascoweb/frasco | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='frasco',
version='1.1.0',
url='http://github.com/digicoop/frasco',
license='MIT',
author='Maxime Bouroumeau-Fuseau',
author_email='maxime.bouroumeau@gmail.com',
description='Set of extensions for Flask to develop SaaS applications',
... | from setuptools import setup, find_packages
setup(
name='frasco',
version='1.0.22',
url='http://github.com/digicoop/frasco',
license='MIT',
author='Maxime Bouroumeau-Fuseau',
author_email='maxime.bouroumeau@gmail.com',
description='Set of extensions for Flask to develop SaaS applications',... | mit | Python |
0221e2ed00cfd53d7e2fcefa78c97c5b8fa5daa9 | add install_requires | sbuss/wssh,sbuss/wssh,sbuss/wssh,sbuss/wssh | setup.py | setup.py | from setuptools import setup
setup(
name='wssh',
version='0.1.0',
author='Andrea Luzzardi <aluzzardi@gmail.com>',
packages=[
'wssh'
],
scripts=[
'bin/wssh',
'bin/wsshd'
],
package_data={'': ['static/*', 'templates/*']},
include_package_data=True,
... | from setuptools import setup
setup(
name='wssh',
version='0.1.0',
author='Andrea Luzzardi <aluzzardi@gmail.com>',
packages=[
'wssh'
],
scripts=[
'bin/wssh',
'bin/wsshd'
],
package_data={'': ['static/*', 'templates/*']},
include_package_data=True,
... | mit | Python |
e3c6a72a74816120b39809944ce5d5b97bf5e75b | update py version | phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite,phrocker/sharkbite | setup.py | setup.py | import os
import re
import sys
import platform
import subprocess
import multiprocessing
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
cores = multiprocessing.cpu_count()*1.25
threads="-j" + str(int(cores))
class CMakeExtension... | import os
import re
import sys
import platform
import subprocess
import multiprocessing
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
cores = multiprocessing.cpu_count()*1.25
threads="-j" + str(int(cores))
class CMakeExtension... | apache-2.0 | Python |
792781f4b87061a54a406c251be2e455b9caec2d | update trove classifiers | edoburu/django-template-analyzer,edoburu/django-template-analyzer | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import re
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(*parts)
version_m... | #!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import codecs
import re
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(*parts)
version_m... | bsd-3-clause | Python |
7fb414b8b77fa2ce4e972c9fcbe1feb4696e25bf | Use distribute! | LukeCarrier/py3k-gnupg | setup.py | setup.py | from setuptools import setup
setup(name = "python-gnupg",
description="A wrapper for the Gnu Privacy Guard (GPG or GnuPG)",
long_description = "This module allows easy access to GnuPG's key \
management, encryption and signature functionality from Python programs. \
It is intended for use with Python 2.4 or gr... | from distutils.core import setup
setup(name = "python-gnupg",
description="A wrapper for the Gnu Privacy Guard (GPG or GnuPG)",
long_description = "This module allows easy access to GnuPG's key \
management, encryption and signature functionality from Python programs. \
It is intended for use with Python 2.4 o... | bsd-3-clause | Python |
bac846986c539acc8338c270c9cd670899c0e3ac | Add ratatoskd to install path | percyfal/ratatosk,percyfal/ratatosk | setup.py | setup.py | # Copyright (c) 2013 Per Unneberg
#
# 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 (c) 2013 Per Unneberg
#
# 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 |
f545442fbc93255e552fd5c14a45a3c55097fec9 | add pretty lease | fw1121/pannenkoek,fw1121/pannenkoek | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
# Get the long description from the relevant file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "pannenkoek",
... | from setuptools import setup, find_packages
from codecs import open
from os import path
# Get the long description from the relevant file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "pannenkoek",
... | mit | Python |
d3bd3b03678381b635f3858ed908ce0e5762cec8 | support Django 2.1 | misli/cmsplugin-survey,misli/cmsplugin-survey | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'cmsplugin-survey',
version = '1.2.2',
description = 'django CMS plugin to show simple surveys',
author = 'Jakub Dorňák',
author_email = 'jakub.dornak@misli.cz',
license ... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'cmsplugin-survey',
version = '1.2.2',
description = 'django CMS plugin to show simple surveys',
author = 'Jakub Dorňák',
author_email = 'jakub.dornak@misli.cz',
license ... | bsd-3-clause | Python |
61055328ba6bb7e4cd935e362adaa6f219c59ec7 | add setup.py settings | DoWhileGeek/authentise-services | setup.py | setup.py | from setuptools import setup
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="authentise_services",
url="https://github.com/DoWhileGeek/authentise-services",
description="A client library for Authentise open services",
long_description=long_description,
... | from setuptools import setup
setup(
name="authentise_services",
description="A client library for Authentise open services",
author="Joeseph Rodrigues",
author_email="dowhilegeek@gmail.com",
version="0.3.0",
packages=["authentise_services"],
package_data={"authentise_services": ["authentis... | mit | Python |
0b11fe79620458a79f47944536bfc397f2b9a94a | Add automatic 2to3 execution for Python 3 users | humdings/IbPy,sjev/ibpy,jamesblunt/IbPy,chenzeyu/IbPy,chris-ch/IbPy,blampe/IbPy | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IbPy - Interactive Brokers Python API
IbPy is a third-party implementation of the API used for accessing the
Interactive Brokers on-line trading system. IbPy implements functionality
that the Python programmer can use to connect to IB, request stock ticker
data, submit... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IbPy - Interactive Brokers Python API
IbPy is a third-party implementation of the API used for accessing the
Interactive Brokers on-line trading system. IbPy implements functionality
that the Python programmer can use to connect to IB, request stock ticker
data, submit... | bsd-3-clause | Python |
c7517ac81d647028645faab304ec3a9ce504d321 | Bump version to 0.8.12 | craigahobbs/chisel | setup.py | setup.py | #
# Copyright (C) 2012-2014 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | #
# Copyright (C) 2012-2014 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | mit | Python |
21acff64ca9c3ba8c3813af0a8fa8f3e5ef7491e | Add authors to setup.py | nabla-c0d3/sslyze | setup.py | setup.py | #!/usr/bin/env python
from sslyze import SSLYZE_VERSION, PROJECT_URL
from distutils.core import setup
setup(name='SSLyze',
version=SSLYZE_VERSION,
description='Fast and full-featured SSL scanner',
long_description=open('README.md').read()+ '\n' +
open('AUTHORS.txt').read(),
author... | #!/usr/bin/env python
from sslyze import SSLYZE_VERSION, PROJECT_URL
from distutils.core import setup
setup(name='SSLyze',
version=SSLYZE_VERSION,
description='Fast and full-featured SSL scanner',
long_description=open('README.md').read(),
author_email='sslyze@isecpartners.com',
url=PROJECT_URL,
... | agpl-3.0 | Python |
8fe3a2f6e0319d0c233d59ca1c4cd321d5ee59f8 | Fix setup.py | davidastephens/pyportfolio | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from ast import parse
import os
from setuptools import setup
NAME = 'pyportfolio'
def version():
"""Return version string."""
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'pyportfolio',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from ast import parse
import os
from setuptools import setup
NAME = 'pyportfolio'
def version():
"""Return version string."""
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'pyportfolio',
... | bsd-3-clause | Python |
5db134571754df8f224c9de975fce87abc17ec28 | Bump version to 1.1.2 | Thor77/TeamspeakStats,Thor77/TeamspeakStats | setup.py | setup.py | from setuptools import setup
setup(
name='tsstats',
version='1.1.2',
author='Thor77',
author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator',
keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats',
url='https://github.com/Thor77/TeamspeakStats',
packages=... | from setuptools import setup
setup(
name='tsstats',
version='1.1.1',
author='Thor77',
author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator',
keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats',
url='https://github.com/Thor77/TeamspeakStats',
packages=... | mit | Python |
ec9c402eacf41ecfd620ede779d30de82bf723a4 | Use -dev versions for DEPENDENCY_LINKS | pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs.dev',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=dj... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs.9',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=djan... | bsd-3-clause | Python |
26c89fb47e4d14c96dd5af2eb2025557bb9cc647 | fix classifier | globocom/pluct,wpjunior/pluct | setup.py | setup.py | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import re
from setuptools import setup, find_packages, findall
def parse_requirements(file_name):
requirements = []
for line in open(file_name, 'r').read().split('\n'):
if re.match(r'(\s*#)|(\s*$)', line):
continue
if re.match(r'\s*-e\s... | # -*- coding: utf-8 -*-
#!/usr/bin/env python
import re
from setuptools import setup, find_packages, findall
def parse_requirements(file_name):
requirements = []
for line in open(file_name, 'r').read().split('\n'):
if re.match(r'(\s*#)|(\s*$)', line):
continue
if re.match(r'\s*-e\s... | mit | Python |
e8067bc5abea803e36d31c3d2ef0ac698945b32d | update install_requires | raintank/graphite-raintank,raintank/graphite-raintank,raintank/graphite-raintank | setup.py | setup.py | # coding: utf-8
from setuptools import setup
setup(
name='graphite_raintank',
version='0.3',
url='https://github.com/raintank/graphite_raintank',
license='apache2',
author='Anthony Woods',
author_email='awoods@raintank.io',
description=('Raintank backend plugin for graphite_api'),
long_... | # coding: utf-8
from setuptools import setup
setup(
name='graphite_raintank',
version='0.3',
url='https://github.com/raintank/graphite_raintank',
license='apache2',
author='Anthony Woods',
author_email='awoods@raintank.io',
description=('Raintank backend plugin for graphite_api'),
long_... | apache-2.0 | Python |
7c4acd3f1d3d18890c1c06a497e30ff3b3f12e16 | Bump version. Bacwards incompatible. | mwchase/class-namespaces,mwchase/class-namespaces | setup.py | setup.py | """A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open as c_open
from os import path
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with c_open(pat... | """A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open as c_open
from os import path
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with c_open(pat... | mit | Python |
ea13ae2e6761f056623ff1d3ac6c71fcf4f94497 | Bump version to 0.3.4 | slaypni/fastdtw | setup.py | setup.py | import os.path
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext as _build_ext
import sys
import warnings
try:
from Cython.Build import cythonize
USE_CYTHON = True
except ImportError:
USE_CYTHON = False
# numpy path is needed for building with and wi... | import os.path
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext as _build_ext
import sys
import warnings
try:
from Cython.Build import cythonize
USE_CYTHON = True
except ImportError:
USE_CYTHON = False
# numpy path is needed for building with and wi... | mit | Python |
2af5ecb7a8099cf8ffc4c093734043d763793eba | use similar style to setup_blockkeys | ufabdyop/screenlock,ufabdyop/screenlock,ufabdyop/screenlock | setup.py | setup.py | import pythoncom, pyHook
import sys, time, os, zipfile
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "source"))
import screenlockConfig
from distutils.core import setup
import py2exe
import shutil
def zipdir(path, zipfile):
for root, dirs, files in os.walk(path):
for file in files:
... | import pythoncom, pyHook
import sys, time, os, zipfile
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "source"))
import screenlockConfig
from distutils.core import setup
import py2exe
import shutil
def zipdir(path, zipfile):
for root, dirs, files in os.walk(path):
for file in files:
... | mit | Python |
0b9b48593db0a8ee899f114864ebe6de13960106 | Increment version to 1.3.0. | getwarped/powershift-image,getwarped/powershift-image | setup.py | setup.py | import sys
import os
from setuptools import setup
long_description = open('README.rst').read()
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Pytho... | import sys
import os
from setuptools import setup
long_description = open('README.rst').read()
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Pytho... | bsd-2-clause | Python |
5e18cb3bfb5142cc85af8d1c1c3516a47a42b20f | remove json dependency | jeiros/JobSubmitter,jeiros/JobSubmitter,jeiros/JobSumitter,jeiros/MDRun,jeiros/JobSumitter,jeiros/MDRun | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'Click>=6.0',
# TODO: put package requirements here
]
test_requirem... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'Click>=6.0',
'json>=2.0.9',
# TODO: put package requirements he... | mit | Python |
c95db5b49ab0a9824f50a4ca59d583134772c206 | Bump version to 5.2.0 | balloob/pychromecast,dominikkarall/pychromecast,balloob/pychromecast | setup.py | setup.py | from setuptools import setup, find_packages
long_description = open("README.rst").read()
setup(
name="PyChromecast",
version="5.2.0",
license="MIT",
url="https://github.com/balloob/pychromecast",
author="Paulus Schoutsen",
author_email="paulus@paulusschoutsen.nl",
description="Python modu... | from setuptools import setup, find_packages
long_description = open("README.rst").read()
setup(
name="PyChromecast",
version="5.1.0",
license="MIT",
url="https://github.com/balloob/pychromecast",
author="Paulus Schoutsen",
author_email="paulus@paulusschoutsen.nl",
description="Python modu... | mit | Python |
ccccb43aafd87bf77961dfe1fb25e00c63255cd1 | Update supported Python and Django versions | blancltd/blanc-contentfiles | 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-contentfiles',
version='0.2.4',
description='Blanc Content Files',
long_description=readme,
url='https://github.com/deve... | #!/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-contentfiles',
version='0.2.4',
description='Blanc Content Files',
long_description=readme,
url='https://github.com/deve... | bsd-3-clause | Python |
0ce6ea2ca75c3839b0a1e41f0fa32e5a9816f653 | Add management commands to package. | jgoclawski/django-facebook-auth,jgoclawski/django-facebook-auth,pozytywnie/django-facebook-auth,pozytywnie/django-facebook-auth | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
def read(name):
from os import path
return open(path.join(path.dirname(__file__), name)).read()
setup(
name='django-facebook-auth',
version='3.3.4',
description="Authorisation app for Facebook API.",
long_description=read("README.rst"),
... | #!/usr/bin/env python
from distutils.core import setup
def read(name):
from os import path
return open(path.join(path.dirname(__file__), name)).read()
setup(
name='django-facebook-auth',
version='3.3.3',
description="Authorisation app for Facebook API.",
long_description=read("README.rst"),
... | mit | Python |
607e935dc8e3ae4134823e9a003a5218c9ac2927 | Clean up setup.py and disable zip_safe flag | tonyseek/simple-rbac | setup.py | setup.py | #!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
with open('README.rst', 'r') as readme:
long_description = readme.read()
setup(
name='simple-rbac',
version='0.1.1',
description='A simple role based access control utility',
long_description=long_description,
keywords=... | #!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
long_description = open("README.rst", "r").read()
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI ... | mit | Python |
b7a9e79a80d1be827c803308c0abd651920c0b83 | Set the version to 1.2.0 | xgfone/xutils,xgfone/pycom | setup.py | setup.py | import os.path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
README_FILE = os.path.join(ROOT_DIR, "README.rst")
with open(README_FILE) as f:
long_description = f.read()
setup(
name="xutils",
version="1... | import os.path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
README_FILE = os.path.join(ROOT_DIR, "README.rst")
with open(README_FILE) as f:
long_description = f.read()
setup(
name="xutils",
version="1... | mit | Python |
b6c743d9b3d94b9875b5475f7f567fe15c5cb024 | Remove reviewboard requirement; can cause unexpected updates | joshguffin/rboard_bugzilla | setup.py | setup.py | from reviewboard.extensions.packaging import setup
GITHUB_URL = 'https://github.com/joshguffin/rboard_bugzilla'
VERSION = "0.1"
PACKAGE = 'rboard_bugzilla'
EXTENSION = '{0} = {0}.extension:BugzillaExtension'.format(PACKAGE),
setup(
name=PACKAGE,
version=VERSION,
description='Post to BZs',
url=GITHUB_U... | from reviewboard.extensions.packaging import setup
GITHUB_URL = 'https://github.com/joshguffin/rboard_bugzilla'
VERSION = "0.1"
PACKAGE = 'rboard_bugzilla'
EXTENSION = '{0} = {0}.extension:BugzillaExtension'.format(PACKAGE),
setup(
name=PACKAGE,
version=VERSION,
description='Post to BZs',
url=GITHUB_U... | mit | Python |
9a93932ad8d40637661e75b6f6b517589d2ab3b5 | check for readthedocs | adobdin/timmy,adobdin/timmy | setup.py | setup.py | #!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2015 Mirantis, 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-... | #!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2015 Mirantis, 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-... | apache-2.0 | Python |
cf93ec8856d13e359e1e26c5c3d72399a61a23cd | Update version | Jigsaw-Code/net-analysis,Jigsaw-Code/net-analysis,Jigsaw-Code/net-analysis | setup.py | setup.py | #!/usr/bin/python
#
# Copyright 2020 Jigsaw Operations LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicabl... | #!/usr/bin/python
#
# Copyright 2020 Jigsaw Operations LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicabl... | apache-2.0 | Python |
215c9333de2fdb6f3dcb58f209f086563304c2b7 | bump version to 1.4 | Som-Energia/plantmeter | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
readme = open("README.rst").read()
setup(
name = "plantmeter",
version = "1.4",
description =
"OpenERP module and library to manage multisite energy generation",
author = "Som Energia SCCL",
author_email = "info@somenergia.coop",
url = 'https:/... | #!/usr/bin/env python
from setuptools import setup, find_packages
readme = open("README.rst").read()
setup(
name = "plantmeter",
version = "1.3",
description =
"OpenERP module and library to manage multisite energy generation",
author = "Som Energia SCCL",
author_email = "info@somenergia.coop",
url = 'https:/... | agpl-3.0 | Python |
60c78ec565b13043f16f2188d2c93c32fb882d14 | Bump version | blakev/python-syncthing | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'syncthing',
version = '2.4.0',
author = 'Blake VandeMerwe',
author_email = 'blakev@null.net',
description = 'Python bindings to the Syncthing REST interface, targeting v0.14.44',
url = 'https://github.com/bla... | #!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'syncthing',
version = '2.3.1',
author = 'Blake VandeMerwe',
author_email = 'blakev@null.net',
description = 'Python bindings to the Syncthing REST interface, targeting v0.14.44',
url = 'https://github.com/bla... | mit | Python |
f3d8fa30516647b932b1612d9b5a0a3b53b82ab8 | Remove duplicate entries from setup.py | tvincentNuoDB/nuodb-python | setup.py | setup.py | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='pynuodb',
version='0.0.1',
author='NuoDB',
author_email='info@nuodb.com',
description='NuoDB Python driver',
keywords='scalable cloud database',
packages=['pynuodb', 'tests'],
url='https://github.com/nuodb/nuodb-pytho... | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='pynuodb',
version='0.0.1',
author='NuoDB',
author_email='info@nuodb.com',
description='NuoDB Python driver',
license='BSD',
keywords='scalable cloud database',
packages=['pynuodb', 'tests'],
url='https://github.co... | bsd-3-clause | Python |
f4ebb1ae1306f1f51e622ad726b7f383abbbad2d | Bump version | EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi | setup.py | setup.py | import sys
import os
from setuptools import setup, find_packages
_base = os.path.dirname(os.path.abspath(__file__))
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')
version = "1.4.5"
install_requirements = []
with open(_requirements) as f:
... | import sys
import os
from setuptools import setup, find_packages
_base = os.path.dirname(os.path.abspath(__file__))
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')
version = "1.4.4"
install_requirements = []
with open(_requirements) as f:
... | apache-2.0 | Python |
723432b7b5855aae21af89c1a4a36caccf3e6971 | update package name to edx-codejail (#114) | edx/codejail | setup.py | setup.py | """CodeJail: manages execution of untrusted code in secure sandboxes."""
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name="edx-codejail",
version="3.1.5",
license='Apache',
description='CodeJail manages execution of untrusted code in sec... | """CodeJail: manages execution of untrusted code in secure sandboxes."""
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name="codejail",
version="3.1.4",
license='Apache',
description='CodeJail manages execution of untrusted code in secure ... | apache-2.0 | Python |
d18a0d3839f0119e7a7dd7b2577f745c4271d384 | Install requires pyyaml | jalanb/dotsite | setup.py | setup.py | """Set up the pysyte project"""
import os
from setuptools import find_packages
from setuptools import setup
import pysyte
description = """Python modules often used in dotjab, and elsewhere
Available on guthub and pypi for ease of access
But probably not of great interest to others
"""
def package_files(directory)... | """Set up the pysyte project"""
import os
from setuptools import find_packages
from setuptools import setup
import pysyte
description = """Python modules often used in dotjab, and elsewhere
Available on guthub and pypi for ease of access
But probably not of great interest to others
"""
def package_files(directory)... | mit | Python |
66cedf273ef1885473bb0fc0e75060d47124d10d | Upgrade Spark to 2.4.3 (#95) | hopshadoop/hops-util-py,hopshadoop/hops-util-py | setup.py | setup.py | import os
from setuptools import setup, find_packages
exec(open('hops/version.py').read())
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf8').read() #python3
except:
return open(os.path.join(os.path.dirname(__file__), fname)).read() #python2
set... | import os
from setuptools import setup, find_packages
exec(open('hops/version.py').read())
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf8').read() #python3
except:
return open(os.path.join(os.path.dirname(__file__), fname)).read() #python2
set... | apache-2.0 | Python |
66149cfe1d3b0f90eaa7f11d4cb26b48513edb0a | Bump up to 0.1.0 | jbochi/live_thumb,jbochi/live_thumb,jbochi/live_thumb | setup.py | setup.py | from os.path import dirname, abspath, join
from setuptools import setup
with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj:
README = fileobj.read().strip()
install_reqs = [req for req in open(abspath(join(dirname(__file__), 'requirements.txt')))]
setup(
name='live_thumb',
description='M... | from os.path import dirname, abspath, join
from setuptools import setup
with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj:
README = fileobj.read().strip()
install_reqs = [req for req in open(abspath(join(dirname(__file__), 'requirements.txt')))]
setup(
name='live_thumb',
description='M... | mit | Python |
61024f0c87ac026f5b77cab69f394816ce526702 | install urls.api | djaodjin/djaodjin-pages,djaodjin/djaodjin-pages,djaodjin/djaodjin-pages | setup.py | setup.py | # Copyright (c) 2016, DjaoDjin inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and t... | # Copyright (c) 2016, DjaoDjin inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and t... | bsd-2-clause | Python |
172aed42eacb9cf39ab06d5e65c4dff5443f43a6 | add trove classifiers | stefankoegl/kdtree | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
import re
import os.path
dirname = os.path.dirname(os.path.abspath(__file__))
filename = os.path.join(dirname, 'kdtree.py')
src = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", src))
docstrings = re.findall('"""([^"]+)"""', src)
PAC... | #!/usr/bin/env python
from distutils.core import setup
import re
import os.path
dirname = os.path.dirname(os.path.abspath(__file__))
filename = os.path.join(dirname, 'kdtree.py')
src = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", src))
docstrings = re.findall('"""([^"]+)"""', src)
PAC... | isc | Python |
611e35c08835453dbf2a0cab90aeee097bc6cc2e | add comment | tylerdave/FOSSCON-2015-Example | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace(... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace(... | mit | Python |
87a074868803ef3e9fce7ce96c85873510e9bd88 | remove long_description | ponty/entrypoint2,ponty/entrypoint2 | setup.py | setup.py | import os
from setuptools import setup
NAME = "entrypoint2"
URL = "https://github.com/ponty/entrypoint2"
DESCRIPTION = "easy to use command-line interface for python modules"
PACKAGES = [
NAME,
NAME + ".examples",
]
# get __version__
__version__ = None
exec(open(os.path.join(NAME, "about.py")).read())
VERSI... | import os
from setuptools import setup
NAME = "entrypoint2"
URL = "https://github.com/ponty/entrypoint2"
DESCRIPTION = (
"easy to use command-line interface for python modules, fork of entrypoint"
)
PACKAGES = [
NAME,
NAME + ".examples",
]
# get __version__
__version__ = None
exec(open(os.path.join(NAME... | bsd-2-clause | Python |
ceac1a3c99cb8b3d0a825a128e4c22e11c5d6f51 | Update setup.py | johicks/twitterbias | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='twitterbias',
version='0.1.0',
description='Twitter Sentiment Analysis',
long_description=readme,
author='Josh H... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='sample',
version='0.1.0',
description='Sample package for Python-Guide.org',
long_description=readme,
author='Ke... | mit | Python |
ab3cf7ab77fd1b4c661a1f4c6f5b98692e179e1f | Make setup.py executable, name the project the same as the import, and update requirements | jcarbaugh/python-xrd | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
from xrd import __version__
long_description = open('README.rst').read()
setup(name="xrd",
version=str(__version__),
py_modules=["xrd"],
description="Package for serializing and deserializing of XRD documents",
author="Jeremy Carbaugh",
author... | from distutils.core import setup
from xrd import __version__
long_description = open('README.rst').read()
setup(name="python-xrd",
version=str(__version__),
py_modules=["xrd"],
description="Package for serializing and deserializing of XRD documents",
author="Jeremy Carbaugh",
author_email = "jcarb... | bsd-3-clause | Python |
e4d39f0070e7f7d7c10b0199909d05aa61a5fc5e | create cio-crypt.exe, changed main exe to cloud-in-one.exe | vguzmanp/cloud-in-one | setup.py | setup.py | from distutils.core import setup
import py2exe
setup(
options={'py2exe': {'bundle_files': 1, "includes": ["sqlalchemy.dialects.sqlite"], "excludes": ["six.moves.urllib.parse"]}},
#windows = [{'script': "hello.py"}],
console=[{
### Main Python script
"script": "main.py",
# "icon_reso... | from distutils.core import setup
import py2exe
setup(
options = {'py2exe': {'bundle_files': 1, "includes": ["sqlalchemy.dialects.sqlite"], "excludes": ["six.moves.urllib.parse"]}},
#windows = [{'script': "hello.py"}],
console = ["main.py"],
zipfile = None,
data_files = [('config', ['config/config.j... | mit | Python |
87bd6cd3e43fd815d220e867ea93d955b32ec302 | Update setup.py - remove Django from install_requires | rhunwicks/django-import-export,Apkawa/django-import-export,django-import-export/django-import-export,Akoten/django-import-export,django-import-export/django-import-export,luto/django-import-export,Apkawa/django-import-export,luto/django-import-export,brillgen/django-import-export,sergei-maertens/django-import-export,co... | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
VERSION = __import__("import_export").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Deve... | from distutils.core import setup
from setuptools import find_packages
VERSION = __import__("import_export").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Deve... | bsd-2-clause | Python |
98d97c98cc05da6e196ab18daace4d18bca7abce | Add scripts to setup | Darkheir/arithmetic-computing | setup.py | setup.py | from setuptools import setup, find_packages
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: ... | from setuptools import setup, find_packages
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: ... | mit | Python |
33a6d0baa8594d5f37da80b51b7daa7eb645f421 | set zip_safe | davidszotten/django_pg_agefilter | setup.py | setup.py | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-pg-agefilter",
version = "0.0.1",
author = "David Szotten",
author_email = "davidszotten@gmail.com",
description = "Helpers to leverag... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-pg-agefilter",
version = "0.0.1",
author = "David Szotten",
author_email = "davidszotten@gmail.com",
description = "Helpers to leverag... | mit | Python |
71b052ff64faca8a91a608645f6ea0406d26b288 | Add bson to install | jiss-software/jiss-rendering-service,jiss-software/jiss-rendering-service | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='JissRenderingService',
description='Service for operations on files.',
version='1.0',
author='Anton Iskov',
author_email='aiskov@jiss-software.com',
url='http://www.jiss-software.com',
packages=[
'core',
'handl... | #!/usr/bin/env python
from setuptools import setup
setup(
name='JissRenderingService',
description='Service for operations on files.',
version='1.0',
author='Anton Iskov',
author_email='aiskov@jiss-software.com',
url='http://www.jiss-software.com',
packages=[
'core',
'handl... | apache-2.0 | Python |
891d392c3afde015a5537d0a93644a6fbbe67c16 | upgrade pytest | honzajavorek/danube-delta,honzajavorek/danube-delta | setup.py | setup.py | import sys
from setuptools import setup, find_packages
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
message = "Unable to locate 'semantic_release', releasing won't work"
print(message, file=sys.stderr)
version = '1.3.5'
install_requires = [
'pelican',
... | import sys
from setuptools import setup, find_packages
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
message = "Unable to locate 'semantic_release', releasing won't work"
print(message, file=sys.stderr)
version = '1.3.5'
install_requires = [
'pelican',
... | mit | Python |
20b224c2020dd9045c62099524ecdb5e1763bbee | simplify setup.py | liberation/django-admin-tools,liberation/django-admin-tools,noxan/django-admin-tools,liberation/django-admin-tools,noxan/django-admin-tools,liberation/django-admin-tools,noxan/django-admin-tools | setup.py | setup.py | from distutils.core import setup
import os
from admin_tools import VERSION
# taken from django-registration
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dir... | from distutils.core import setup
import os
from admin_tools import VERSION
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
def get_packages():
packages = []
for dirpath, dirnames, filen... | mit | Python |
01013ea1156224bf566d63c312c2eedc413d64a1 | bump version | WebSQL/sdk | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
try:
from sphinx.setup_command import BuildDoc as _BuildDoc
class BuildDoc(_BuildDoc):
def finalize_options(self):
super().finalize_options()
if not self.project:
self.project = self.distribution.name
... | #!/usr/bin/env python
from setuptools import setup
try:
from sphinx.setup_command import BuildDoc as _BuildDoc
class BuildDoc(_BuildDoc):
def finalize_options(self):
super().finalize_options()
if not self.project:
self.project = self.distribution.name
... | mit | Python |
e91316c6037ef9b0935cc1030c353e14de79f60c | Bump tqdm from 4.25.0 to 4.29.0 (#431) | keras-team/autokeras,keras-team/autokeras,keras-team/autokeras | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['scipy==1.1.0',
'torch==0.4.1',
'torchvision==0.2.1',
'numpy==1.14.5',
... | from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['scipy==1.1.0',
'torch==0.4.1',
'torchvision==0.2.1',
'numpy==1.14.5',
... | apache-2.0 | Python |
e68e2c34e049bc020e77fbb17039cd214cd9c8b1 | Remove upper bound on Django version | DESHRAJ/django-organizations,bennylope/django-organizations,DESHRAJ/django-organizations,GauthamGoli/django-organizations,bennylope/django-organizations,st8st8/django-organizations,GauthamGoli/django-organizations,st8st8/django-organizations | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import organizations
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
sy... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import organizations
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
sy... | bsd-2-clause | Python |
0f27fb1a1a83802dc000b81db7e8d37e8a0ba263 | increase version | SiLab-Bonn/pixel_clusterizer | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '2.1.0'
author = 'David-Leon Pohl'
author_email = 'pohl@physik.uni-bonn.de'
# requirements for core functionality from requirements.txt
with open('requir... | #!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '2.0.0'
author = 'David-Leon Pohl'
author_email = 'pohl@physik.uni-bonn.de'
# requirements for core functionality from requirements.txt
with open('requir... | mit | Python |
da93c4d314445fa91e9b3f65e0640f19f91fa84d | Fix dependencies in setup.py | veo-labs/python-socketio-client | setup.py | setup.py | # -*- coding: utf-8 -*-
"""
python-socketio-client
----------------------
Socket.IO client.
"""
from setuptools import setup
setup(
name='python-socketio-client',
version='0.1',
url='http://github.com/veo-labs/python-socketio-client/',
license='MIT',
author='Frédéric Sureau',
author_email='fre... | # -*- coding: utf-8 -*-
"""
python-socketio-client
----------------------
Socket.IO client.
"""
from setuptools import setup
setup(
name='python-socketio-client',
version='0.1',
url='http://github.com/veo-labs/python-socketio-client/',
license='MIT',
author='Frédéric Sureau',
author_email='fre... | mit | Python |
dc24651e13333ce6bd385c143d8697ebe17e0709 | Add long description | davidmogar/cucco,davidmogar/normalizr,davidmogar/cucco | setup.py | setup.py | #!/user/bin/env python
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('cucco/__init__.py').read(),
re.M).group(1)
setup(name='cucco',
version=version,
description='Python library for text normalization',
long_description=o... | #!/user/bin/env python
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('cucco/__init__.py').read(),
re.M).group(1)
setup(name='cucco',
version=version,
description='Python library for text normalization',
author='David More... | mit | Python |
252ddedfb84ccce5e65f804a81d8fe74061c5c76 | Increment version. | opencorato/represent-boundaries,opencorato/represent-boundaries,opencorato/represent-boundaries,newsapps/django-boundaryservice,SpokesmanReview/django-boundaryservice,datamade/represent-boundaries,datamade/represent-boundaries,datamade/represent-boundaries | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name = "django-boundaryservice",
version = "0.1.2",
description = "A reusable system for aggregating and providing API access to regional boundary data.",
#long_description = open('README.rst').read(),
author='Christopher Groskopf',
... | #!/usr/bin/env python
from distutils.core import setup
setup(
name = "django-boundaryservice",
version = "0.1.1",
description = "A reusable system for aggregating and providing API access to regional boundary data.",
#long_description = open('README.rst').read(),
author='Christopher Groskopf',
... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.