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 |
|---|---|---|---|---|---|---|---|---|
8fdd897e6c58473f2f8597a55e4e6185eac38ef1 | fix dependency identifiers | davisd50/sparc.configuration | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '0.0.1'
setup(name='sparc.configuration',
version=version,
description="Configuration components for the SPARC platform",
long_description=open("README.md").read() + "\n" +
open("HISTORY.txt").read(),
# Get ... | from setuptools import setup, find_packages
import os
version = '0.0.1'
setup(name='sparc.configuration',
version=version,
description="Configuration components for the SPARC platform",
long_description=open("README.md").read() + "\n" +
open("HISTORY.txt").read(),
# Get ... | mit | Python |
5e715bcf4c6e5e88779b4b9bb1dfb673d6a9a066 | Update setup.py | sgmap/openfisca-france,sgmap/openfisca-france,antoinearnoud/openfisca-france,antoinearnoud/openfisca-france | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '19.0.3',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OS... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '19.0.2',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OS... | agpl-3.0 | Python |
d8830e83884983d2e37cd9d842d531635abf5e37 | Add optional GUI dependencies. | timeyyy/python-client,zchee/python-client,brcolow/python-client,meitham/python-client,traverseda/python-client,neovim/python-client,traverseda/python-client,brcolow/python-client,bfredl/python-client,zchee/python-client,0x90sled/python-client,neovim/python-client,bfredl/python-client,meitham/python-client,starcraftman/... | setup.py | setup.py | import platform
import sys
from setuptools import setup
install_requires = [
'msgpack-python>=0.4.0',
]
if sys.version_info < (3, 4):
# trollius is just a backport of 3.4 asyncio module
install_requires.append('trollius')
has_cython = False
if not platform.python_implementation() == 'PyPy':
# pypy a... | import platform
import sys
from setuptools import setup
install_requires = [
'click>=3.0',
'msgpack-python>=0.4.0',
]
if sys.version_info < (3, 4):
# trollius is just a backport of 3.4 asyncio module
install_requires.append('trollius')
has_cython = False
if not platform.python_implementation() == 'P... | apache-2.0 | Python |
0f3a8f96789fafeb6bdb7b67d33ee7aacdc1d171 | update setup.py to include biothings_schema in install_requires | biothings/biothings_explorer,biothings/biothings_explorer | setup.py | setup.py | from setuptools import setup, find_packages
install_requires = [
'jupyter',
'notebook==5.7.5',
'tornado==4.5.3',
'jsonschema>=3.0.1',
'networkx==2.3',
'jsonpath-rw>=1.4.0',
'requests>=2.21.0',
'graphviz>=0.11.1',
'aiohttp',
'pandas',
"biothings_schema @ git+https://github.c... | from setuptools import setup, find_packages
install_requires = [
'jupyter',
'notebook==5.7.5',
'tornado==4.5.3',
'jsonschema>=3.0.1',
'networkx==2.3',
'jsonpath-rw>=1.4.0',
'requests>=2.21.0',
'graphviz>=0.11.1',
'aiohttp',
'pandas'
]
setup(
name="biothings_explorer",
... | apache-2.0 | Python |
a38db5bb06102862e1a3d284e75213f9562556c8 | Add openquake wrapper to the setup.py | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine | setup.py | setup.py | from setuptools import setup, find_packages
version = "1.0.0"
url = "http://openquake.org/"
README = """
OpenQuake is an open source application that allows users to
compute seismic hazard and seismic risk of earthquakes on a global scale.
Please note: the /usr/bin/openquake script requires a celeryconfig.py
file in... | from setuptools import setup, find_packages
version = "1.0.0"
url = "http://openquake.org/"
README = """
OpenQuake is an open source application that allows users to
compute seismic hazard and seismic risk of earthquakes on a global scale.
Please note: the /usr/bin/openquake script requires a celeryconfig.py
file in... | agpl-3.0 | Python |
60f9eec7c8c27a8ed02f3c4554222c469eeb945d | fix version | SpringerSBM/gomatic,SpringerSBM/gomatic | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='gomatic',
version='0.4.14',
description='API for configuring GoCD',
url='https://github.com/SpringerSBM/gomatic',
author='Springer Science+Business Media',
author_email='tools-engineering@groups.springer.com',
license='MIT',
... | from setuptools import setup, find_packages
setup(name='gomatic',
version='0.4.12',
description='API for configuring GoCD',
url='https://github.com/SpringerSBM/gomatic',
author='Springer Science+Business Media',
author_email='tools-engineering@groups.springer.com',
license='MIT',
... | mit | Python |
266b0a53b087082726d61622c0421a3cfd24159c | update version | TaylorOshan/spint | setup.py | setup.py | from setuptools import setup
from distutils.command.build_py import build_py
Major = 1
Feature = 0
Bug = 2
version = '%d.%d.%d' % (Major, Feature, Bug)
setup(name='spint', #name of package
version=version,
description='SPatial INTeraction models', #short <80chr description
url='https://github.com/T... | from setuptools import setup
from distutils.command.build_py import build_py
setup(name='spint', #name of package
version='1.0.1',
description='SPatial INTeraction models', #short <80chr description
url='https://github.com/TaylorOshan/spint', #github repo
download_url='https://pypi.python.org/... | bsd-3-clause | Python |
7d3dd5db2a158ace94824ea182ad81b81716df78 | Include command package to the list of packages for distribution | farzadghanei/distutilazy | setup.py | setup.py | #!/usr/bin/env python
"""
distutilazy
===========
Extra distutils commands.
License
-------
Distutilazy is released under the terms of `MIT license <http://opensource.org/licenses/MIT>`_.
"""
from __future__ import print_function
import os
import sys
try:
import setuptools
from setuptools import setup
e... | #!/usr/bin/env python
"""
distutilazy
===========
Extra distutils commands.
License
-------
Distutilazy is released under the terms of `MIT license <http://opensource.org/licenses/MIT>`_.
"""
from __future__ import print_function
import os
import sys
try:
import setuptools
from setuptools import setup
e... | mit | Python |
af25adc7d15b4b4f6a7e893a97e96a1a02beb864 | Add a prepare script for linux images - for now tries to make sure we get cloud-init output | NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools | setup.py | setup.py | # Copyright 2016-2017 Nitor Creations Oy
#
# 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 ... | # Copyright 2016-2017 Nitor Creations Oy
#
# 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 ... | apache-2.0 | Python |
983c205e2f111adb708206a201cff646fc5bd1d2 | Bump to disqus-2 | dcramer/nashvegas | setup.py | setup.py | import os
from setuptools import setup, find_packages
VERSION = __import__("nashvegas").__version__
def read(*path):
return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *path)).read()
setup(
name="nashvegas",
version=VERSION + '-disqus-2',
description="nashvegas is a management com... | import os
from setuptools import setup, find_packages
VERSION = __import__("nashvegas").__version__
def read(*path):
return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *path)).read()
setup(
name="nashvegas",
version=VERSION + '-disqus-1',
description="nashvegas is a management com... | mit | Python |
5f28a263192da4fc7ef6aa5773215243946b9f4e | Add inflection dependency | prophile/django_split | setup.py | setup.py | from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='django_split',
version='0.1.0',
author='Thread Tech',
author_email='tech@thread.com',
description='Split testing for Django',
long_description=long_description,
class... | from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='django_split',
version='0.1.0',
author='Thread Tech',
author_email='tech@thread.com',
description='Split testing for Django',
long_description=long_description,
class... | mit | Python |
8bc704f6272ccfebd48f7282e02420a56d8e934d | Fix to improperly disabled docs | aalto-speech/flatcat | setup.py | setup.py | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
import re
main_py = open('flatcat/__init__.py').read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", main_py))
requires = [
'morfessor',
]
setup(name='Morfessor FlatCat',
version=metadata[... | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
import re
main_py = open('flatcat/__init__.py').read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", main_py))
requires = [
'morfessor',
]
setup(name='Morfessor FlatCat',
version=metadata[... | bsd-2-clause | Python |
2cb7583da44e5440b757e6b671a95454501cfa8b | fix console_script entry_point. Closes #9 | dylanaraps/pywal,dylanaraps/pywal,dylanaraps/pywal | setup.py | setup.py | """wal - setup.py"""
from setuptools import setup
import pywal
DESC = (
"View the DOCS at: https://github.com/dylanaraps/pywal\n\n"
"Pypi doesn't like markdown OR rst with anchor links so "
"you'll have to view the documentation elsewhere.\n"
)
DESC = "".join(DESC)
VERSION = pywal.__version__
DOWNLOAD_U... | """wal - setup.py"""
from setuptools import setup
import pywal
DESC = (
"View the DOCS at: https://github.com/dylanaraps/pywal\n\n"
"Pypi doesn't like markdown OR rst with anchor links so "
"you'll have to view the documentation elsewhere.\n"
)
DESC = "".join(DESC)
VERSION = pywal.__version__
DOWNLOAD_U... | mit | Python |
a33b69cd06323fcefd32de7ca166a9026927c602 | Add newer scripts to setup.py | JohnDMcMaster/uvscada,JohnDMcMaster/uvscada,JohnDMcMaster/uvscada,JohnDMcMaster/uvscada | setup.py | setup.py | from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(name='pr0ntools',
version='1.0',
comment='Integrated circuit reverse engineering research and development',
description='Integrated circuit reverse engineering research and development',
long_description = long_... | from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(name='pr0ntools',
version='1.0',
comment='Integrated circuit reverse engineering research and development',
description='Integrated circuit reverse engineering research and development',
long_description = long_... | bsd-2-clause | Python |
e9bbdf4afe7e1782f5d3bc9d6325abbcfbb0412a | Add setup.py commands for PyInstaller build and NSIS installer build | coinbox/coinbox-core | setup.py | setup.py | from setuptools import setup, find_packages
# Custom commands to build using PyInstaller and NSIS
from setuptools import Command
from distutils.errors import DistutilsOptionError, DistutilsSetupError
import os
import subprocess
class PyInstallerCommand(Command):
"""
Command which runs the PyInstaller spec fil... | from setuptools import setup, find_packages
setup(
name="Coinbox-pos",
version="0.2",
packages=find_packages(),
scripts=['coinbox'],
zip_safe=True,
namespace_packages=['cbmod'],
include_package_data=True,
install_requires=[
'sqlalchemy>=0.7, <1.0'... | mit | Python |
23602e3e8480b9ba5ad3ef18950e56aaed10ef05 | Fix license in setup.py | andrewsomething/fabric-digitalocean | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='fabric-digitalocean',
version='0.1',
description='A collection of fabric tools for working with DigitalOcean',
long_description=long_description,
url='https://github.com/andrewsom... | from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='fabric-digitalocean',
version='0.1',
description='A collection of fabric tools for working with DigitalOcean',
long_description=long_description,
url='https://github.com/andrewsom... | bsd-2-clause | Python |
1ab850c08c4beb00f4f937dd9f704294daed2207 | Improve setup.py | jvandijk/pla,rtuin/pla | setup.py | setup.py | # The MIT License (MIT)
#
# Copyright (c) 2015 Richard Tuin
#
# 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, modi... | # The MIT License (MIT)
#
# Copyright (c) 2015 Richard Tuin
#
# 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, modi... | mit | Python |
4ed0999d21b8df64f072b94599de276920d6f1bd | Update wheel for release | hughsie/python-cabarchive | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
# note: this is a repeat of the README, to evolve, good enough for now.
long_desc = """
Contributors welcome, either adding new functionality or fixing bugs.
See also: https://msdn.microsoft.com/en-us/library/bb417343.aspx
"""
setup(
name="cabarchive",
vers... | #!/usr/bin/env python
from setuptools import setup
# note: this is a repeat of the README, to evolve, good enough for now.
long_desc = """
Contributors welcome, either adding new functionality or fixing bugs.
See also: https://msdn.microsoft.com/en-us/library/bb417343.aspx
"""
setup(
name="cabarchive",
vers... | lgpl-2.1 | Python |
131626f4d8a5bd024b566465bf0d72f38228293a | Update version | kevinschaul/open-in-github | setup.py | setup.py | from setuptools import setup
setup(
name='opengithub',
version='0.3.4',
author='Kevin Schaul',
author_email='kevin.schaul@gmail.com',
url='http://kevin.schaul.io',
description='Open your project in GitHub from the command line.',
long_description='Check out the project on GitHub for the lat... | from setuptools import setup
setup(
name='opengithub',
version='0.3.3',
author='Kevin Schaul',
author_email='kevin.schaul@gmail.com',
url='http://kevin.schaul.io',
description='Open your project in GitHub from the command line.',
long_description='Check out the project on GitHub for the lat... | mit | Python |
22eacb48333e0a270f1347c22413e6585a3e3081 | Update classifiers | artursmet/django-payments,artursmet/django-payments,artursmet/django-payments | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
PACKAGES = [
'payments',
'payments.authorizenet',
'payments.braintree',
'payments.cybersource',
'payments... | #!/usr/bin/env python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
PACKAGES = [
'payments',
'payments.authorizenet',
'payments.braintree',
'payments.cybersource',
'payments... | bsd-3-clause | Python |
4166fc26c2b335cbe98eb5ca023400c994599a34 | Prepare openprocurement.auction 1.0.0.dev34. | openprocurement/openprocurement.auction,openprocurement/openprocurement.auction | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '1.0.0.dev34'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings f... | from setuptools import setup, find_packages
import os
version = '1.0.0.dev33'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings f... | apache-2.0 | Python |
c83ff3acf911f34eef01eebecdc64cd8866753cb | Add py3k to classifiers | mgedmin/objgraph | setup.py | setup.py | #!/usr/bin/python
import os, re, sys, unittest, doctest
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def relative(filename):
here = os.path.dirname('__file__')
return os.path.join(here, filename)
def read(filename):
f = open(relative(filename))
try:... | #!/usr/bin/python
import os, re, sys, unittest, doctest
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def relative(filename):
here = os.path.dirname('__file__')
return os.path.join(here, filename)
def read(filename):
f = open(relative(filename))
try:... | mit | Python |
09281f7f988534b6735df82ad8935578e41a1f37 | change package name & version | HoonJin/korbit-python | setup.py | setup.py |
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='korbit-python',
packages=['korbit'],
version='0.2.0',
description='korbit API wrapper for Python',
url='http://github.com/Hoonjin/korbit-python/',
author='Daniel Ji',
author_email='b... |
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='korbit-api',
packages=['korbit'],
version='0.1.1',
description='korbit API wrapper for Python',
url='http://github.com/Hoonjin/korbit-python/',
author='Daniel Ji',
author_email='bwjh... | mit | Python |
e17e534349cf2ae62c60803b39605db515fb15bb | add pypi classifiers for python implementation support. | tonyseek/flask-docker | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
next(readme)
long_description = ''.join(readme).strip()
setup(
name='Flask-Docker',
description='Using Docker client in your Flask application.',
long_description=long_description,
... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
next(readme)
long_description = ''.join(readme).strip()
setup(
name='Flask-Docker',
description='Using Docker client in your Flask application.',
long_description=long_description,
... | mit | Python |
63eafdb710489fed612a057672ade367a18ab1ef | Bump version to 3.0.0 | its-dirg/pyop | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='pyop',
version='3.0.0',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/IdentityPython/pyop',
license='Apache 2.0',
author='Rebecka Gulliksson',
author_email='satosa-dev@lists.sunet.se',
descrip... | from setuptools import setup, find_packages
setup(
name='pyop',
version='2.1.1',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/IdentityPython/pyop',
license='Apache 2.0',
author='Rebecka Gulliksson',
author_email='satosa-dev@lists.sunet.se',
descrip... | apache-2.0 | Python |
9787f9e446ff42aa64e912e3c34802b803dc6652 | Move koala-serializer to extra requirements | koala-team/Chillin-PyServer | setup.py | setup.py | import sys
from setuptools import setup, find_packages
setup(
name='chillin-server',
version='2.0.0',
description='Chillin AI Game Framework (Python Server)',
long_description='',
author='Koala',
author_email='mdan.hagh@gmail.com',
url='https://github.com/koala-team/Chillin-PyServer',
... | import sys
from setuptools import setup, find_packages
setup(
name='chillin-server',
version='2.0.0',
description='Chillin AI Game Framework (Python Server)',
long_description='',
author='Koala',
author_email='mdan.hagh@gmail.com',
url='https://github.com/koala-team/Chillin-PyServer',
... | agpl-3.0 | Python |
63b70b9a345683bfe92d39c80dbab327127f3e89 | Mark 0.0.2 as stable. | xethorn/garcon,someboredkiddo/garcon,theorchard/garcon,pkuong/garcon | setup.py | setup.py | from setuptools import find_packages
from setuptools import setup
setup(
name='Garcon',
version='0.0.2',
url='https://github.com/xethorn/garcon/',
author='Michael Ortali',
author_email='hello@xethorn.net',
description=(
'Lightweight library for AWS SWF.'),
license='MIT',
packag... | from setuptools import find_packages
from setuptools import setup
setup(
name='Garcon',
version='0.0.2a10',
url='https://github.com/xethorn/garcon/',
author='Michael Ortali',
author_email='hello@xethorn.net',
description=(
'Lightweight library for AWS SWF.'),
license='MIT',
pac... | mit | Python |
f0a8d94292116c2464d7d76ca3c1d017cd1b76eb | Add python_requires to setup.py | adamchainz/patchy | setup.py | setup.py | # -*- encoding:utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
import codecs
import os
import re
from setuptools import find_packages, setup
def get_version(filename):
with codecs.open(filename, 'r', 'utf-8') as fp:
contents = fp.read()
return re.search(r... | # -*- encoding:utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
import codecs
import os
import re
from setuptools import find_packages, setup
def get_version(filename):
with codecs.open(filename, 'r', 'utf-8') as fp:
contents = fp.read()
return re.search(r... | mit | Python |
c61d0fdb53500d0c44fef1f70f359e3b9a850007 | update setup | abinashpanda/pgmpy,kislayabhi/pgmpy,vivek425ster/pgmpy,ankurankan/pgmpy,jhonatanoliveira/pgmpy,yashu-seth/pgmpy,yashu-seth/pgmpy,kislayabhi/pgmpy,khalibartan/pgmpy,sandeepkrjha/pgmpy,abinashpanda/pgmpy,sandeepkrjha/pgmpy,jhonatanoliveira/pgmpy,liquidmetal/pgmpy,anaviltripathi/pgmpy,pratyakshs/pgmpy,anaviltripathi/pgmpy... | setup.py | setup.py | #/usr/bin/env python3
import ez_setup
ez_setup.use_setuptools()
USE_CYTHON = True
from setuptools import setup, find_packages
from distutils.extension import Extension
import numpy as np
try:
from Cython.Distutils import build_ext
except ImportError:
USE_CYTHON = False
ext_modules = []
cmdclass = {}
if USE... | #/usr/bin/env python3
import ez_setup
ez_setup.use_setuptools()
USE_CYTHON = True
from setuptools import setup, find_packages
from distutils.extension import Extension
import numpy as np
try:
from Cython.Distutils import build_ext
except ImportError:
USE_CYTHON = False
ext_modules = []
cmdclass = {}
if USE... | mit | Python |
b9c1e1c6d1cafbe91cf8d344d3cfff346a93bb5b | Remove unneeded raise | notsorandomname/pytb | setup.py | setup.py |
from setuptools import setup
from setuptools.extension import Extension
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
packages = {
'pytb': 'py-modules/',
'pytb.scripts': 'py-modules/scripts'
}
setup(
... |
from setuptools import setup
from setuptools.extension import Extension
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
raise
packages = {
'pytb': 'py-modules/',
'pytb.scripts': 'py-modules/scripts'
}
s... | mit | Python |
5d0782b0444775d9d7876d73e8889b01573e883e | configure validate-checksum script to be installed via setup.py [#58717416] | bodleian/eulfedora,WSULib/eulfedora | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import eulfedora
LONG_DESCRIPTION = None
try:
# read the description if it's there
with open('README.rst') as desc_f:
LONG_DESCRIPTION = desc_f.read()
except:
pass
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Framewor... | #!/usr/bin/env python
from setuptools import setup, find_packages
import eulfedora
LONG_DESCRIPTION = None
try:
# read the description if it's there
with open('README.rst') as desc_f:
LONG_DESCRIPTION = desc_f.read()
except:
pass
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Framewor... | apache-2.0 | Python |
9f7e88b9cb765fd8a8064f9eaa7ad006bbcc991b | Make sure to package south.tests.non_managed in setup since those files are needed for the tests to pass | matthiask/south,matthiask/south | setup.py | setup.py | #!/usr/bin/python
# Use setuptools if we can
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
from south import __version__
setup(
name='South',
version=__version__,
description='South: Migrations for Django',
long_description='South is an intelligent... | #!/usr/bin/python
# Use setuptools if we can
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
from south import __version__
setup(
name='South',
version=__version__,
description='South: Migrations for Django',
long_description='South is an intelligent... | apache-2.0 | Python |
435a5111168283cbcf9ebbe4af9fc8350aea4128 | Add python dependencies to setup.py | serverscope/serverscope-benchmark,selectnull/serverscope-benchmark,serverscope/serverscope-benchmark,selectnull/serverscope-benchmark | setup.py | setup.py | import os
from setuptools import setup, find_packages
import serverscope_benchmark
# 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='serverscope_benchmark',
version=serverscope_benchmark.__version__,
author='ServerScope',
... | import os
from setuptools import setup, find_packages
import serverscope_benchmark
# 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='serverscope_benchmark',
version=serverscope_benchmark.__version__,
author='ServerScope',
... | mit | Python |
a1d5f20deae2ce0a08af36880b9e4dc3fbc63e1a | Bump version to 3.2m2 | aria-tosca/cloudify-rest-client,cloudify-cosmo/cloudify-rest-client,codilime/cloudify-rest-client | setup.py | setup.py | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
f16e47fcf6c8a00d331c3ee05248f4f10a35d83b | Update Python support in setup.py | learningequality/ricecooker,learningequality/ricecooker,learningequality/ricecooker,learningequality/ricecooker | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import ricecooker
readme = open('README.md').read()
with open('docs/history.rst') as history_file:
history = history_file.read()
requirements = [
"pytest>=3.0.2",
"requests>=2.11.1",
"le_... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import ricecooker
readme = open('README.md').read()
with open('docs/history.rst') as history_file:
history = history_file.read()
requirements = [
"pytest>=3.0.2",
"requests>=2.11.1",
"le_... | mit | Python |
10886680fb8a4c8bf84a4f4e43055a71f54148cb | Add Mac OS X support, remove Windows support | ratchetrobotics/ftc-setup-util,FTC-6806/ftc-setup-util | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
import platform
import subprocess
def has_admin():
if platform.system() == 'Windows':
try:
# only windows users with admin privileges can read the C:\windows\temp
temp = os.listdir(os.sep.join([os.environ.get('SystemRoot','C:\\windows'),'t... | #!/usr/bin/env python
import os
import sys
import platform
import subprocess
def has_admin():
if platform.system() == 'Windows':
try:
# only windows users with admin privileges can read the C:\windows\temp
temp = os.listdir(os.sep.join([os.environ.get('SystemRoot','C:\\windows'),'t... | mit | Python |
4c222746f3bcaa27439208b2f9bf6955cfe535bd | bump in version | deanmalmgren/trello-todoist | setup.py | setup.py | import glob
import os
from setuptools import setup
# get all of the scripts
this_dir = os.path.dirname(os.path.abspath(__file__))
scripts = glob.glob(os.path.join(this_dir, "bin", "*"))
# read in the description from README
with open("README.md") as stream:
long_description = stream.read()
github_url='https://gi... | import glob
import os
from setuptools import setup
# get all of the scripts
this_dir = os.path.dirname(os.path.abspath(__file__))
scripts = glob.glob(os.path.join(this_dir, "bin", "*"))
# read in the description from README
with open("README.md") as stream:
long_description = stream.read()
github_url='https://gi... | mit | Python |
a1e0716761bfd77fcc3bf697c08a8e2d9dd424c5 | Bump version to 0.26 | jonge-democraten/hemres,jonge-democraten/hemres,jonge-democraten/hemres | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='hemres',
version='0.26',
description='Newsletter module for Jonge Democraten websites',
packages=find_packages(),
url='http://github.com/jonge-democraten/hemres/',
author='Jonge Democraten',
include_package_data=True,
license='MIT... | from setuptools import setup, find_packages
setup(
name='hemres',
version='0.18',
description='Newsletter module for Jonge Democraten websites',
packages=find_packages(),
url='http://github.com/jonge-democraten/hemres/',
author='Jonge Democraten',
include_package_data=True,
license='MIT... | mit | Python |
fcf123fe02b2934d01423448dc986df01622624f | Bump core version number (#3864) | googleapis/python-language,googleapis/python-language | setup.py | setup.py | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
f16f8aa775b2cf3a7712268a2181a009c89f2fe6 | bump version | STUnitas/metabase-py | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = "1.2.2"
setup(
name="metabase",
version=__version__,
description='python wrapper for metabase api',
url="https://github.com/stunitas/metabase-py",
license="MIT License",
author="flrngel",
author_email="fl... | from setuptools import setup, find_packages
__version__ = "1.2.1"
setup(
name="metabase",
version=__version__,
description='python wrapper for metabase api',
url="https://github.com/stunitas/metabase-py",
license="MIT License",
author="flrngel",
author_email="fl... | mit | Python |
75b2b38d9447f565e3cab9af33ed630c13132709 | Remove unused import | myyk/honcho,nickstenning/honcho,nickstenning/honcho,xarisd/honcho,janusnic/honcho | setup.py | setup.py | import os
from setuptools import setup, find_packages
from honcho import __version__
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except:
long_description = None
setup(
name='honcho',
version=__version__,
packages=find_packages(exclude=['h... | import os
import sys
from setuptools import setup, find_packages
from honcho import __version__
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except:
long_description = None
setup(
name='honcho',
version=__version__,
packages=find_packages(... | mit | Python |
fcff8831552349eb1fd7ce2b82d347c752dccc06 | Update version number. | jvs/sourcer | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
def long_description():
try:
with open('README.rst') as f:
return f.read()
except:
return ''
setup(
name = 'sourcer',
version = '0.3.0',
author = 'John K. Von Seggern',
author_email = 'vonseg@protonmail.com',
... | #!/usr/bin/env python
from distutils.core import setup
def long_description():
try:
with open('README.rst') as f:
return f.read()
except:
return ''
setup(
name = 'sourcer',
version = '0.2.0',
author = 'John K. Von Seggern',
author_email = 'vonseg@protonmail.com',
... | mit | Python |
49ba9887dd449ddd5139aa1ed34ebce449c137a8 | Update download url | rphlo/py-retricon | setup.py | setup.py | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='retricon',
version='1.0.0',
packages=['retricon',],
li... | import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='retricon',
version='1.0.0',
packages=['retricon',],
li... | mit | Python |
b0e4ae073a8f3b8f24fc2b05e74ebce7faa3f189 | update version number for PyPi submit | skhg/pyleapcard,skhg/pyleapcard | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name='pyleapcard',
version='0.1.4',
description='Python Leap Card API',
long_description='See project page with usage examples at https://github.com/skhg/pyleapcard',
keywords='leap card public transport smart card api travel ireland',
... | #!/usr/bin/env python
from distutils.core import setup
setup(
name='pyleapcard',
version='0.1.3',
description='Python Leap Card API',
long_description='See project page with usage examples at https://github.com/skhg/pyleapcard',
keywords='leap card public transport smart card api travel ireland',
... | mit | Python |
fb34efac054c94544363982eac76c355aa4f1c13 | increment build | buildtimetrend/python-lib | setup.py | setup.py | #!/usr/bin/env python
# vim: set expandtab sw=4 ts=4:
'''
Setup file, specifying dependencies, package name and version,
and other meta data.
This file is part of buildtimetrend/python-lib
<https://github.com/buildtimetrend/python-lib>
'''
from setuptools import setup, find_packages
setup(
name="buildtimetrend",... | #!/usr/bin/env python
# vim: set expandtab sw=4 ts=4:
'''
Setup file, specifying dependencies, package name and version,
and other meta data.
This file is part of buildtimetrend/python-lib
<https://github.com/buildtimetrend/python-lib>
'''
from setuptools import setup, find_packages
setup(
name="buildtimetrend",... | agpl-3.0 | Python |
fa4da269023e2c423f8ea5877a19c316b52b0db2 | Add more information to setup script | luipugs/kamatis | setup.py | setup.py | from setuptools import (
find_packages,
setup,
)
import os
import re
with open(os.path.join('kamatis', '__init__.py'), 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
if not version:
raise RuntimeError('Cannot fi... | from setuptools import setup, find_packages
def main():
setup(
name='kamatis',
description='Pomodoro timer',
packages=find_packages('.'),
entry_points={
'console_scripts': [
'kamatis=kamatis.app:main',
],
},
)
if __n... | bsd-3-clause | Python |
fd87b211f41077aa63922d322e82806d21f568a7 | fix missing setup.py update to hutils name change | cometaj2/huckle | setup.py | setup.py | import os
import sys
import subprocess
from setuptools import setup, find_packages
from codecs import open
from os import path
from huckle import config
from huckle import hutils
if sys.argv[-1] == 'publish':
branch = subprocess.check_output('git rev-parse --abbrev-ref HEAD', shell=True).strip()
if branch != ... | import os
import sys
import subprocess
from setuptools import setup, find_packages
from codecs import open
from os import path
from huckle import config
from huckle import utils
if sys.argv[-1] == 'publish':
branch = subprocess.check_output('git rev-parse --abbrev-ref HEAD', shell=True).strip()
if branch != "... | mit | Python |
7460027317c88cc1586b5366b672e7095b3ae6c7 | Bump version | edx/edx-val | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
PACKAGES = [
'edxval',
'edxval.migrations',
'edxval.tests',
]
def is_requirement(line):
"""
Return True if the requirement line is a package requirement;
that is, it is not blank, a comment, or editable.
"""
# Remove whitespace at the... | #!/usr/bin/env python
from setuptools import setup
PACKAGES = [
'edxval',
'edxval.migrations',
'edxval.tests',
]
def is_requirement(line):
"""
Return True if the requirement line is a package requirement;
that is, it is not blank, a comment, or editable.
"""
# Remove whitespace at the... | agpl-3.0 | Python |
6df1eb9f210f98d4ff826f89f89309f48c4e8c5b | create version 3.1.0 | Duke-GCB/DukeDSClient,Duke-GCB/DukeDSClient | setup.py | setup.py | from setuptools import setup
setup(name='DukeDSClient',
version='3.1.0',
description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.',
url='https://github.com/Duke-GCB/DukeDSClient',
keywords='duke dds dukedataservice',
author='John Bradley',
... | from setuptools import setup
setup(name='DukeDSClient',
version='3.0.0',
description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.',
url='https://github.com/Duke-GCB/DukeDSClient',
keywords='duke dds dukedataservice',
author='John Bradley',
... | mit | Python |
1a23a9bf12288dba1f31accb8e93860a252429a0 | add testing.md to the distribution | joshspeagle/dynesty | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
dir_path = os.path.dirname(os.path.realpath(__file__))
init_string = open(os.path.join(dir_path, 'py', 'dynesty',
'__init__.... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
dir_path = os.path.dirname(os.path.realpath(__file__))
init_string = open(os.path.join(dir_path, 'py', 'dynesty',
'__init__.... | mit | Python |
cc2e6252dae3a35fbabe2fc4870d42063805940f | Remove target: from setup.py .rst documentation. Breaking TravisCI image on PyPI. | boydgreenfield/query,boydgreenfield/query | setup.py | setup.py | """
``query``
---------
``query`` is a simple module for quickly, interactively exploring a SQL database.
Together with IPython, it supports quick tab-completion of table and column
names, convenience methods for quickly looking at data (e.g., ``.head()``, ``.tail()``),
and the ability to get a rich interactive databa... | """
``query``
---------
``query`` is a simple module for quickly, interactively exploring a SQL database.
Together with IPython, it supports quick tab-completion of table and column
names, convenience methods for quickly looking at data (e.g., ``.head()``, ``.tail()``),
and the ability to get a rich interactive databa... | mit | Python |
863f1ddc33a3fb97060ab7153246c990e1227c05 | fix setup.py | gsathya/centinel-client,lianke123321/centinel,ben-jones/centinel,iclab/centinel,lianke123321/centinel,rpanah/centinel,iclab/centinel,rpanah/centinel,rpanah/centinel,gsathya/centinel-client,Ashish1805/centinel,lianke123321/centinel,iclab/centinel,JASONews/centinel | setup.py | setup.py | import os
from setuptools import setup, find_packages
DESCRIPTION = """\
Centinel is a tool used to detect network interference and internet censorship."""
setup(
name = "centinel",
version = "0.1.2",
author = "Sathyanarayanan Gunasekaran",
author_email = "gsathya@gatech.edu",
description = DESCRI... | import os
from setuptools import setup, find_packages
DESCRIPTION = """\
Centinel is a tool used to detect network interference and internet censorship."""
setup(
name = "centinel",
version = "0.1.2",
author = "Sathyanarayanan Gunasekaran",
author_email = "gsathya@gatech.edu",
description = DESCRI... | mit | Python |
374a6153b97b20e9f759a3a3f06d738a4b68ddac | Update license information in setup.py | ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website,ISIFoundation/influenzanet-website | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "epiwork-website",
version = "1.0",
url = 'http://www.epiwork.eu/',
license = 'AGPL',
description = 'EPIWork Database - Survey Website',
author = 'Fajran Iman Rusadi',
packages = find_packages('src'),
package_dir = {'': 'src'},
... | from setuptools import setup, find_packages
setup(
name = "epiwork-website",
version = "1.0",
url = 'http://www.epiwork.eu/',
license = 'BSD',
description = 'EPIWork Database - Survey Website',
author = 'Fajran Iman Rusadi',
packages = find_packages('src'),
package_dir = {'': 'src'},
... | agpl-3.0 | Python |
9c2de54cd8b87a7d247f7c7acab3d0e2b9cecd34 | Update repo URL for Jazzband ownership transfer | Pinkerton/django-ical | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-ical',
version='1.5',
description="iCal feeds for Django based on Django's syndication feed "
"framework.",
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.rst... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-ical',
version='1.5',
description="iCal feeds for Django based on Django's syndication feed "
"framework.",
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.rst... | mit | Python |
d02f20e613369c31f685fb3cf83630bea0af9dfa | Update link to readme | frewsxcv/python-geojson | setup.py | setup.py | import sys
from setuptools import setup
readme_text = open("README.rst", "rb").read()
version = open("VERSION.txt", "rb").read().strip()
deps = ["setuptools"]
if sys.version_info[:2] not in [(2, 6), (2, 7)]:
sys.stderr.write("Sorry, only Python 2.6 and Python 2.7 are supported "
"at this tim... | import sys
from setuptools import setup
readme_text = open("README.txt", "rb").read()
version = open("VERSION.txt", "rb").read().strip()
deps = ["setuptools"]
if sys.version_info[:2] not in [(2, 6), (2, 7)]:
sys.stderr.write("Sorry, only Python 2.6 and Python 2.7 are supported "
"at this tim... | bsd-3-clause | Python |
131215105f75ea87bf46a5b1dd15202c38770003 | Improve runtime dependency check | pstray/udiskie,pstray/udiskie,khardix/udiskie,coldfix/udiskie,coldfix/udiskie,mathstuf/udiskie | setup.py | setup.py | # encoding: utf-8
from setuptools import setup
# check availability of runtime dependencies
def check_any(*packages):
"""Issue a warning if none of the packages is available."""
errors = []
for package in packages:
try:
__import__(package)
return True
except ImportEr... | # encoding: utf-8
from setuptools import setup
import sys
# check availability of runtime dependencies
try:
import dbus
import gobject
import pynotify
except ImportError:
err = sys.exc_info()[1]
print("Missing runtime dependency: %s" % err)
# read long_description from README.rst
try:
f = open... | mit | Python |
00026559ed9f10bdb425a8db4340fb570a0e567c | Bump version | henriquebastos/googlegroupexporter,henriquebastos/googlegroupexporter | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
long_description = open('README.rst').read()
setup(name='googlegroupexporter',
version='1.0',
description='GoogleGroup Exporter - Unlock your mailing list',
long_description=readme(),
author... | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
long_description = open('README.rst').read()
setup(name='googlegroupexporter',
version='0.3',
description='GoogleGroup Exporter - Unlock your mailing list',
long_description=readme(),
author... | mit | Python |
2731c894668a2bc253e5c4c30bf039960f239e29 | Bump to v0.0.4 | incuna/django-user-management,incuna/django-user-management | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.0.4'
install_requires = (
'djangorestframework>=2.3.12,<3',
'incuna_mail>=0.1.1',
)
setup(
name='django-user-management',
packages=find_packages(),
include_package_data=True,
version=version,
description='',
long_description='... | from setuptools import setup, find_packages
version = '0.0.3'
install_requires = (
'djangorestframework>=2.3.12,<3',
'incuna_mail>=0.1.1',
)
setup(
name='django-user-management',
packages=find_packages(),
include_package_data=True,
version=version,
description='',
long_description='... | bsd-2-clause | Python |
498cb460cb6349b98e3fcc38270c9cdaf9b5ef53 | Bump to 0.3 | msikma/repov | setup.py | setup.py | from distutils.core import setup
setup(
name='repov',
packages=['repov'], # this must be the same as the name above
version='0.3',
description='Retrieves Git repo branch information synchronously',
author='Michiel Sikma',
author_email='michiel@sikma.org',
url='https://github.com/msikma/rep... | from distutils.core import setup
setup(
name='repov',
packages=['repov'], # this must be the same as the name above
version='0.2',
description='Retrieves Git repo branch information synchronously',
author='Michiel Sikma',
author_email='michiel@sikma.org',
url='https://github.com/msikma/rep... | mit | Python |
d4bd35a62e4b10034dbc334dccd8e1aec9b0a5e2 | fix version number | StoDevX/cs251-toolkit,StoDevX/cs251-toolkit,StoDevX/cs251-toolkit,StoDevX/cs251-toolkit | setup.py | setup.py | import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 5):
sys.exit("The toolkit requires Python 3.5 or greater.\nYou have {}".format(sys.version_info))
setup(
name='cs251tk',
version='2.3.2',
description='The CS251 (Software Design) Toolkit',
author='Hawken Rives',
a... | import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 5):
sys.exit("The toolkit requires Python 3.5 or greater.\nYou have {}".format(sys.version_info))
setup(
name='cs251tk',
version='2.3.0',
description='The CS251 (Software Design) Toolkit',
author='Hawken Rives',
a... | mit | Python |
d332a5bd257e614b189e47bfed82ca78684eadfb | Prepare openprocurement.auction 1.2.0.dev9. | openprocurement/openprocurement.auction,openprocurement/openprocurement.auction | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '1.2.0.dev9'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings ... | from setuptools import setup, find_packages
import os
version = '1.2.0.dev8'
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings ... | apache-2.0 | Python |
29dcf756105a88033808a7a507168798e95b78a1 | fix gmapsplaces --> gmaps_places | 20tab/twentytab-gmaps-places,20tab/twentytab-gmaps-places | setup.py | setup.py | from setuptools import setup, find_packages
import gmaps_places
setup(
name='twentytab-gmaps-places',
version=gmaps_places.__version__,
description='A django app on top of twentytab-gmaps and google maps api v3 to manage geolocation and markers with all the administrative level details',
author='20tab ... | from setuptools import setup, find_packages
import gmapsplaces
setup(
name='twentytab-gmaps-places',
version=gmapsplaces.__version__,
description='A django app on top of twentytab-gmaps and google maps api v3 to manage geolocation and markers with all the administrative level details',
author='20tab S.... | mit | Python |
9cb6e1edb32bc17abe256c0aed1c0c3b81462713 | Update setup.py | petebachant/Nortek-Python,petebachant/Nortek-Python | setup.py | setup.py | #!/usr/bin/env python
# coding=utf-8
from distutils.core import setup
setup(
name='Nortek',
version='0.0.1',
author='Pete Bachant',
author_email='petebachant@gmail.com',
packages=['nortek'],
scripts=[],
url='https://github.com/petebachant/Nortek-Python.git',
license='MIT',
descript... | #!/usr/bin/env python
# coding=utf-8
from distutils.core import setup
setup(
name='PdCommPy',
version='0.0.1',
author='Pete Bachant',
author_email='petebachant@gmail.com',
py_modules=['pdcommpy'],
scripts=[],
url='https://github.com/petebachant/PdCommPy.git',
license='GPL v2',
desc... | mit | Python |
281cd2061ccb7e4ddb1b5575c6612cbbb607f213 | include jinja template in released package (#340) | googleapis/releasetool,googleapis/releasetool | setup.py | setup.py | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
767f91d51730b709c65be918a38ef8d8b3b2cfb6 | Bump version number | sendgridlabs/loaderio-django | 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-loaderio',
version='0.2.0',
packages=['loaderio'],... | 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-loaderio',
version='0.1',
packages=['loaderio'],
... | mit | Python |
b09bf4e1c564091b10ac68430a552cb99f1b09d4 | Revert "setup.py: add install_requires for ``future``" | wroberts/pytimeparse | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
setup.py
(c) Will Roberts 14 April, 2014
distutils setup script for pytimeparse.
'''
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
with open('README.rst') as file:
LONG_DESCRIPTION = file.read()
# htt... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
setup.py
(c) Will Roberts 14 April, 2014
distutils setup script for pytimeparse.
'''
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
with open('README.rst') as file:
LONG_DESCRIPTION = file.read()
# htt... | mit | Python |
924823bef9ef104b75f56f20d23f5f17350a3965 | Use cythonize (build with `python setup.py build_ext --inplace`) | wmayner/pyemd,wmayner/pyemd | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
from Cython.Build import cythonize
# See http://stackoverflow.com/a/21621689/1085344
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
# See http://stackoverflow.com/a/21621689/1085344
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
# Pr... | mit | Python |
07069bf7a6d55885bb0c7403a8dac4f8c5da2b09 | bump version to 0.1.3 | dschick/udkm1Dsim,dschick/udkm1Dsim | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='udkm1Dsim',
version='0.1.3',
packages=find_packages(),
package_data={
'': ['*.txt', '*.dat', '*.nff'],
},
url='https://github.com/dschick/udkm1Dsim',
install_requires=['tqdm',
'numpy',
... | from setuptools import setup, find_packages
setup(
name='udkm1Dsim',
version='0.1.3.dev1',
packages=find_packages(),
package_data={
'': ['*.txt', '*.dat', '*.nff'],
},
url='https://github.com/dschick/udkm1Dsim',
install_requires=['tqdm',
'numpy',
... | mit | Python |
fc0c9458702b7d72fb383f6495bf02dee770963d | Update setup.py | vvojvoda/py-nginx | setup.py | setup.py | from setuptools import setup
from setuptools.command.test import test as TestCommand
import pynginx
import io
import sys
__author__ = 'vedran'
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_... | __author__ = 'vedran'
| mit | Python |
99437650423ca31552e7e647532b96e7bd340189 | Update version | ecmwf/cdsapi | setup.py | setup.py | #!/usr/bin/env python3
# Copyright 2018 European Centre for Medium-Range Weather Forecasts (ECMWF)
#
# 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/LICE... | #!/usr/bin/env python3
# Copyright 2018 European Centre for Medium-Range Weather Forecasts (ECMWF)
#
# 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/LICE... | apache-2.0 | Python |
5946dc6bae6581629835f2e4088ba2c647ae614d | bump to version 1.4 | benoitguigal/python-epson-printer | setup.py | setup.py | __author__ = 'benoit'
from setuptools import setup
setup(name="python_epson_printer",
version="1.4",
description="A library to control Epson thermal printers based on ESC/POS language",
url="https://github.com/benoitguigal/python-epson-printer",
author="benoitguigal",
author_email="benoi... | __author__ = 'benoit'
from setuptools import setup
setup(name="python_epson_printer",
version="1.3",
description="A library to control Epson thermal printers based on ESC/POS language",
url="https://github.com/benoitguigal/python-epson-printer",
author="benoitguigal",
author_email="benoi... | mit | Python |
6e6b0a530916840a6e5b4cb3b619eec9f7d19be4 | Modify setup.py. | pjdufour/petrarch,opcoder/zh_ptr,JingL1014/petrarch2,johnb30/petrarch,openeventdata/petrarch2,johnb30/petrarch2,Sayeedsalam/spec-petrarch2,openeventdata/petrarch,cnnorris/petrarch | setup.py | setup.py | from distutils.core import setup
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
setup(
name='petrarch',
install_requires=required,
entry_points={
'console_scripts': ['petrarch = petrarch.petrarch:main']},
version='0.01a',
author='Philip Schrodt, John Beieler'... | from distutils.core import setup
setup(
name='PETRARCH',
entry_points={
'console_scripts': ['petrarch = petrarch.petrarch:main']},
version='0.01a',
author='Philip Schrodt, John Beieler',
author_email='openeventdata@gmail.com',
packages=['PETRARCH'],
url='openeventdata.org',
lice... | mit | Python |
acd60f15ae2192e54b180776b62ee2ea9fce7d3f | exclude docs and tests from package (#82) | googleapis/python-analytics-data,googleapis/python-analytics-data | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright 2020 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law o... | # -*- coding: utf-8 -*-
# Copyright 2020 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law o... | apache-2.0 | Python |
47e76d1ef59d60c20c0384c56870691d5d9472f2 | fix changes that broke install | Conway/chicagotransit | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt')) as fi:
requirements = fi.read().splitl... | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
... | mit | Python |
8536c6c9e46c7f36f91aa6835b902401c7d51569 | Bump version | uwescience/raco,uwescience/raco,uwescience/raco,uwescience/raco,uwescience/raco | setup.py | setup.py | from setuptools import setup
### Add find_packages function, see
# https://wiki.python.org/moin/Distutils/Cookbook/AutoPackageDiscovery
import os
def is_package(path):
return (
os.path.isdir(path) and
os.path.isfile(os.path.join(path, '__init__.py'))
)
def find_packages(path=".", base="",... | from setuptools import setup
### Add find_packages function, see
# https://wiki.python.org/moin/Distutils/Cookbook/AutoPackageDiscovery
import os
def is_package(path):
return (
os.path.isdir(path) and
os.path.isfile(os.path.join(path, '__init__.py'))
)
def find_packages(path=".", base="",... | bsd-3-clause | Python |
0934c9664f1b27ed7d115b85b994d99a26ee83c6 | update version | Chatujme/ChatujmeGW | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# encoding=utf8
from distutils.core import setup
import py2exe
setup(
name = 'ChatujmeGW IRC Gateway',
version = '1.6',
description = 'IRC brana pro pristup k chatu Chatujme.cz',
author = 'LuRy',
author_email = 'lury@lury.cz',
maintainer='LuRy',
maintainer_... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# encoding=utf8
from distutils.core import setup
import py2exe
setup(
name = 'ChatujmeGW IRC Gateway',
version = '1.5',
description = 'IRC brana pro pristup k chatu Chatujme.cz',
author = 'LuRy',
author_email = 'lury@lury.cz',
maintainer='LuRy',
maintainer_... | mit | Python |
32a45ad105008a8a1582c7158060fa66709616d6 | Fix typo in setup.py | epochblue/nanogen,epochblue/nanogen | setup.py | setup.py | from setuptools import setup
from nanogen import __version__
entry_points = {
'console_scripts': ['nanogen = nanogen.nanogen:cli']
}
setup(name='nanogen',
version=__version__,
description='A very small static site generator',
author='Bill Israel',
author_email='bill.israel@gmail.com',
... | from setuptools import setup
from nanogen import __version__
entry_points = {
'console_scripts': ['nanogen = nanogen.nanogen:cli']
}
setup(name='nanogen',
version=__version__,
description='A very small static site generator',
author='Bill Israel',
author_email='bill.israel@gmail.com',
... | mit | Python |
c84faae71052cb07ae0ab60b2790122af51cb5d0 | Update setup.py - setting up new release | virtdevninja/pyvmomi-ce,borland667/pyvmomi,y12uc231/pyvmomi,hartsock/pyvmomi,davidmontgom/pyvmomi,serialdoom/pyvmomi,rhadman/pyvmomi,gdowding/pyvmomi,chenpiao/pyvmomi,Infinidat/pyvmomi,michaelrice/pyvmomi,alexkolar/pyvmomi,higebu/pyvmomi,vmware/pyvmomi,spicykaiju/pyvmomi,tianhao64/pyvmomi | setup.py | setup.py | # VMware vSphere Python SDK
# Copyright (c) 2009-2014 VMware, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# ... | # VMware vSphere Python SDK
# Copyright (c) 2009-2014 VMware, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# ... | apache-2.0 | Python |
c1a845b9f73154eb2446be02eb02e79660b9da50 | Make pytest-runner a conditional requirement (#136) | rm-hull/ssd1306 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
CONTRIB = open(os.path.join(os.path.dirname(__file__), "CONTRIBUTING.rst")).read()
CHANGES = open(os.path.join(os.path.dirname(__file__), "CHANGES... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
CONTRIB = open(os.path.join(os.path.dirname(__file__), "CONTRIBUTING.rst")).read()
CHANGES = open(os.path.join(os.path.dirname(__file__), "CHANGES.rst")).rea... | mit | Python |
ee58ebad95fde9eb7ef29a1d1a2ee33882429e63 | Bump version | rodorgas/django-rocketchat-auth,rodorgas/django-rocketchat-auth | setup.py | setup.py | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-rocketchat-auth'... | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-rocketchat-auth'... | mit | Python |
5268177e01a79b600b4a756d00643d7a909c1ed9 | Bump version to 0.4.1 | cloudenvy/cloudenvy | setup.py | setup.py | try:
from setuptools import setup
except:
from distutils.core import setup
def parse_requirements(requirements_filename='requirements.txt'):
requirements = []
with open(requirements_filename) as requirements_file:
for requirement in requirements_file:
requirements.append(requiremen... | try:
from setuptools import setup
except:
from distutils.core import setup
def parse_requirements(requirements_filename='requirements.txt'):
requirements = []
with open(requirements_filename) as requirements_file:
for requirement in requirements_file:
requirements.append(requiremen... | apache-2.0 | Python |
1d73075b8292b3d307f5820f3a83ec2387c3a26d | Use package installation instead of module (#39) | wookayin/gpustat | setup.py | setup.py | from setuptools import setup
import sys
import os
import re
IS_PY_2 = (sys.version_info[0] <= 2)
def read_readme():
with open('README.md') as f:
return f.read()
def read_version():
# importing gpustat causes an ImportError :-)
__PATH__ = os.path.abspath(os.path.dirname(__file__))
with open(o... | from setuptools import setup
import sys
import os
import re
IS_PY_2 = (sys.version_info[0] <= 2)
def read_readme():
with open('README.md') as f:
return f.read()
def read_version():
# importing gpustat causes an ImportError :-)
__PATH__ = os.path.abspath(os.path.dirname(__file__))
with open(o... | mit | Python |
b708de6133eb9e57c7bae77968c51de84fdabf70 | raise version for deprecation warning reporting in debug mode | TurboGears/gearbox | setup.py | setup.py | from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
version = "0.0.3"
setup(name='gearbox',
version=version,
description="Command line toolkit born as a... | from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
version = "0.0.2"
setup(name='gearbox',
version=version,
description="Command line toolkit born as a... | mit | Python |
84e7b6045ea1f315b941ee1a7863b6cc5d290c7f | install template files | Feverup/django-modelclone,simas/django-modelclone,Feverup/django-modelclone,simas/django-modelclone | setup.py | setup.py | from distutils.core import setup
from os.path import dirname, join
with open(join(dirname(__file__), 'README.md')) as f:
README = f.read()
setup(
name = "django-modelclone",
version = "0.1",
description = u"Django application that allows users to clone a model in Admin",
long_description = README,... | from distutils.core import setup
from os.path import dirname, join
with open(join(dirname(__file__), 'README.md')) as f:
README = f.read()
setup(
name = "django-modelclone",
version = "0.1",
description = u"Django application that allows users to clone a model in Admin",
long_description = README,... | mit | Python |
04b46d2197aea349b3fe655fb13c7e39149622de | send the video the user can see on the page | Psycojoker/voltairine,Psycojoker/voltairine,Psycojoker/voltairine | regular_users_interface/views.py | regular_users_interface/views.py | from django.shortcuts import render
from video.models import Video
def dashboard(request):
return render(request, 'regular_users_interface/dashboard.haml', {
Video.objects.filter(videosection__subsubsection__permission__user=request.user),
})
| from django.shortcuts import render
def dashboard(request):
return render(request, 'regular_users_interface/dashboard.haml', {})
| agpl-3.0 | Python |
776647b6b6ccb4c8cfcb26ec28a6a6970c257de2 | bump version | kevindkeogh/qlpy,kevindkeogh/qlibpy | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'qlpy',
version = '0.2',
description = 'QuantLib Python wrapper',
author = 'Kevin Keogh',
author_email = 'kevin[dot]d[dot]keogh[at]gmail[dot]com',
url = 'https://github.com/kevindkeogh/qlibpy',
license = 'MIT',
packages = find_pa... | from setuptools import setup, find_packages
setup(
name = 'qlibpy',
version = '0.1',
description = 'QuantLib Python wrapper',
author = 'Kevin Keogh',
author_email = 'kevin[dot]d[dot]keogh[at]gmail[dot]com',
url = 'https://github.com/kevindkeogh/qlibpy',
license = 'MIT',
packages = find_... | mit | Python |
1829b41909b223e4a0f4a88728700fa74be196f7 | Prepare push-hubsearch 0.17. | ucla/PushHubSearch | 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',
'pyramid_zodbconn',
'pyramid_tm',
'pyramid_debugtoolbar',
... | 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',
'pyramid_zodbconn',
'pyramid_tm',
'pyramid_debugtoolbar',
... | bsd-3-clause | Python |
4223e927fc6f8dda9bf2b1309e93ff88b3cbe139 | Add IPython to classifers. | lebedov/duster | setup.py | setup.py | #!/usr/bin/env python
import os
# Install setuptools if it isn't available:
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
from setuptools import setup
NAME = 'duster'
VERSION = '0.2.1'
AUTHOR ... | #!/usr/bin/env python
import os
# Install setuptools if it isn't available:
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
from setuptools import setup
NAME = 'duster'
VERSION = '0.2.1'
AUTHOR ... | bsd-3-clause | Python |
0262aa4a469fc349d6999d740ba202c06b67f356 | Update setup.py | cybertk/gclient,cybertk/gclient | setup.py | setup.py | from distutils.core import setup
setup(
name='gclient',
version='0.7',
author='Quanlong He',
author_email='kyan.ql.he@gmail.com',
scripts=['bin/gclient'],
packages=['depot_tools', 'depot_tools.third_party.colorama', 'depot_tools.third_party.repo'],
url='https://github.com/cybertk/gclient',
... | from distutils.core import setup
setup(
name='gclient',
version='0.7',
author='Quanlong He',
author_email='kyan.ql.he@gmail.com',
scripts=['bin/gclient'],
packages=['depot_tools', 'depot_tools.third_party.colorama', 'depot_tools.third_party.repo'],
url='https://github.com/cybertk/gclient',
... | bsd-3-clause | Python |
b4b03a55c36c8244c9520a3a04254c07fd86d213 | add new requirements | istb-mia/miapy | setup.py | setup.py | import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 5):
sys.exit("Requires Python 3.5 or higher")
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license_ = f.read()
REQUIRED_PACKAGES = [
'matplotlib >= 2.0.2',
'numpy >= 1.12.1',
'Simpl... | import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 5):
sys.exit("Requires Python 3.5 or higher")
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license_ = f.read()
REQUIRED_PACKAGES = [
'matplotlib >= 2.0.2',
'numpy >= 1.12.1',
'Simpl... | apache-2.0 | Python |
8935221854828fac58cf919e7559681a50750817 | bump version | SurveyMonkey/wukong | 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()
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
CHANGES = pypandoc.convert('CHANGES.md', 'rst')
except:
README = read('README.md')
CHANG... | import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
CHANGES = pypandoc.convert('CHANGES.md', 'rst')
except:
README = read('README.md')
CHANG... | mit | Python |
1f2bb472e08b83768339c0974d615da8619825db | Bump to v1.16.0 (#113) | singer-io/tap-mysql | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='tap-mysql',
version='1.16.0',
description='Singer.io tap for extracting data from MySQL',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mysql'],
... | #!/usr/bin/env python
from setuptools import setup
setup(name='tap-mysql',
version='1.15.1',
description='Singer.io tap for extracting data from MySQL',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mysql'],
... | agpl-3.0 | Python |
a33d244812a53c8c5ff974ce3225f4f540ad7e59 | Add Python package dependency on setuptools. (#352) | wrigri/compute-image-packages,wrigri/compute-image-packages,wrigri/compute-image-packages,illfelder/compute-image-packages,Sarsate/compute-image-packages,wrigri/compute-image-packages,GoogleCloudPlatform/compute-image-packages,zmarano/compute-image-packages,rjschwei/compute-image-packages,rjschwei/compute-image-package... | setup.py | setup.py | #!/usr/bin/python
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by appli... | #!/usr/bin/python
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by appli... | apache-2.0 | Python |
6f9bce3527affa4cb5cf7abbeeddaadb278e720e | Bump version. | jarpy/lambkin,jarpy/lambkin | setup.py | setup.py | from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
setup(
name='lambkin',
packages=['lambkin'],
version='0.1.0',
description='CLI tool for managing functions in AWS Lambda... | from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
setup(
name='lambkin',
packages=['lambkin'],
version='0.0.7',
description='CLI tool for managing functions in AWS Lambda... | apache-2.0 | Python |
76a9fcb4af72faa8770115eb51d12b2325ecd583 | remove YAML from deps list | fabregas/leela | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == '__main__':
setup(
name = "leela",
version = read('VERSION'),
author = "Fabregas",
author_email = "kksstt@gmail.co... | import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == '__main__':
setup(
name = "leela",
version = read('VERSION'),
author = "Fabregas",
author_email = "kksstt@gmail.co... | apache-2.0 | Python |
b3c58b80d63999e1eb805af8bbeca444b065492e | update version | theno/utlz | utlz/_version.py | utlz/_version.py | __version__ = "0.10.1",
| __version__ = "0.10.0",
| mit | Python |
80a7883dd809b0cb0df69eafa065e31c97fcff8f | Update version number. | lebedov/iorient | setup.py | setup.py | #!/usr/bin/env python
import os
# Install setuptools if it isn't available:
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
from setuptools import setup
NAME = 'iorient'
VERSION = '0.1.1'
AUTHOR... | #!/usr/bin/env python
import os
# Install setuptools if it isn't available:
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
from setuptools import setup
NAME = 'iorient'
VERSION = '0.1.0'
AUTHOR... | bsd-3-clause | Python |
dcece2b63221015d7f8def737013fbd9f7304b28 | Install trac_admin.py in prefix/bin | pkdevbox/trac,pkdevbox/trac,pkdevbox/trac,pkdevbox/trac | setup.py | setup.py | #!/usr/bin/env python
import os
from distutils.core import setup
import trac
VERSION = str(trac.__version__)
URL = trac.__url__
LICENSE = trac.__license__
setup(name="trac",
description="",
version=VERSION,
license=LICENSE,
url=URL,
packages=['trac'],
scripts=[os.path.join('script... | #!/usr/bin/env python
from distutils.core import setup
import trac
VERSION = str(trac.__version__)
URL = trac.__url__
LICENSE = trac.__license__
setup(name="trac",
description="",
version=VERSION,
license=LICENSE,
url=URL,
packages=['trac'])
| bsd-3-clause | Python |
098dc8301f5669df643f722047c6aba807bcd8f8 | bump version to 3.8.0 | TetraEtc/limbo,llimllib/limbo,serverdensity/sdbot,TetraEtc/limbo,palachu/sdbot,llimllib/limbo | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Thanks to Kenneth Reitz, I stole the template for this
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PYTHON3 = sys.version_info[0] > 2
required = ['requests>=2.5', 'websocket-client==0.32.0',
... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Thanks to Kenneth Reitz, I stole the template for this
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PYTHON3 = sys.version_info[0] > 2
required = ['requests>=2.5', 'websocket-client==0.32.0',
... | mit | Python |
04b55cd70fc154822065941dd16e917c6432e9c3 | Bump to version 0.2.9 | samarthmshah/flask-restful,ueg1990/flask-restful,frol/flask-restful,sergeyromanov/flask-restful,marrybird/flask-restful,justanr/flask-restful,liangmingjie/flask-restful,mackjoner/flask-restful,gonboy/flask-restful,santtu/flask-restful,flask-restful/flask-restful,Khan/flask-restful,ankravch/flask-restful,expobrain/flask... | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='Flask-RESTful',
version='0.2.9',
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.8',
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.