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 |
|---|---|---|---|---|---|---|---|---|
be8c0bf0000e10a8e33581dddd70ea5cec84ddeb | Check if runtime is Python2 | freaker2k7/chalice,awslabs/chalice | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import sys
with open('README.rst') as readme_file:
README = readme_file.read()
install_requires = [
'click==6.2',
'botocore>=1.4.8,<2.0.0',
'virtualenv>=15.0.0,<16.0.0',
'typing==3.5.2.2',
]
if sys.version_info < (3, 0):
raise... | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
README = readme_file.read()
install_requires = [
'click==6.2',
'botocore>=1.4.8,<2.0.0',
'virtualenv>=15.0.0,<16.0.0',
'typing==3.5.2.2',
]
setup(
name='chalice',
version='0.5.0',
... | apache-2.0 | Python |
6b9ef0d12826d1fdcbf81da17ae76a125d2ecaae | Bump version to 0.2.3 | polyaxon/polyaxon,polyaxon/polyaxon,polyaxon/polyaxon | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(sel... | #!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(sel... | apache-2.0 | Python |
b30ce86b57b764c7b736e3b688acc98c3cc08d5c | Increment version to 0.8.0 | ko-zu/psl | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
description = codecs.open('README.md', encoding='utf-8').read()
setup(name="publicsuffixlist",
version="0.8.0",
packages=["publicsuffixlist"],
package_data={
"publicsuffixlist": [
"publi... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
description = codecs.open('README.md', encoding='utf-8').read()
setup(name="publicsuffixlist",
version="0.7.14",
packages=["publicsuffixlist"],
package_data={
"publicsuffixlist": [
"publ... | mpl-2.0 | Python |
d308453a8339406e3919f98aed9380472c33eabb | add root_numpy.tests | rootpy/root_numpy,rootpy/root_numpy,ibab/root_numpy,rootpy/root_numpy,rootpy/root_numpy,ibab/root_numpy,ndawe/root_numpy,ndawe/root_numpy,scikit-hep/root_numpy,ndawe/root_numpy,scikit-hep/root_numpy,ndawe/root_numpy,ibab/root_numpy,scikit-hep/root_numpy,scikit-hep/root_numpy,ibab/root_numpy | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup, Extension
import distutils.util
import subprocess
import numpy as np
import os
from glob import glob
root_inc = ''
root_ldflags = []
try:
root_inc = subprocess.Popen(["root-config", "--incdir"],
stdout=subprocess.PIPE).communicate()[0].strip()
roo... | #!/usr/bin/env python
from distutils.core import setup, Extension
import distutils.util
import subprocess
import numpy as np
import os
from glob import glob
root_inc = ''
root_ldflags = []
try:
root_inc = subprocess.Popen(["root-config", "--incdir"],
stdout=subprocess.PIPE).communicate()[0].strip()
roo... | bsd-3-clause | Python |
f0fdb40ad8d1a4e6f7f9e30471a9c16a6c4361f2 | Remove cyclical dependency | crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute | setup.py | setup.py | from os.path import abspath, dirname, join
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]
def initialize_options(self):
TestCommand.initialize_options(self)
... | from os.path import abspath, dirname, join
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]
def initialize_options(self):
TestCommand.initialize_options(self)
... | mit | Python |
e74e1d9d4dbd50b37d17b4827332cb4256eb7245 | Change syutil dependency link to point at github. | matrix-org/synapse,illicitonion/synapse,matrix-org/synapse,howethomas/synapse,iot-factory/synapse,TribeMedia/synapse,rzr/synapse,matrix-org/synapse,TribeMedia/synapse,iot-factory/synapse,illicitonion/synapse,TribeMedia/synapse,matrix-org/synapse,rzr/synapse,rzr/synapse,howethomas/synapse,matrix-org/synapse,howethomas/s... | setup.py | setup.py | import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path... | import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path... | apache-2.0 | Python |
656f0d2da7b27ccb3f523c66b7f62a69e6e2691e | add extra_require for ced and nwb | INM-6/python-neo,samuelgarcia/python-neo,apdavison/python-neo,JuliaSprenger/python-neo,NeuralEnsemble/python-neo | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
long_description = open("README.rst").read()
install_requires = ['packaging',
'numpy>=1.18.5',
'quantities>=0.12.1']
extras_require = {
'igorproio': ['igor'],
'kwikio': ['scipy', 'klusta'],
... | #!/usr/bin/env python
from setuptools import setup, find_packages
import os
long_description = open("README.rst").read()
install_requires = ['packaging',
'numpy>=1.18.5',
'quantities>=0.12.1']
extras_require = {
'igorproio': ['igor'],
'kwikio': ['scipy', 'klusta'],
... | bsd-3-clause | Python |
b37c5db65355353630debda2f0ddb604994d345b | Add python implementation tag for pypi. | kinverarity1/pyexperiment,kinverarity1/pyexperiment,DeercoderResearch/pyexperiment,kinverarity1/pyexperiment,shaunstanislaus/pyexperiment,kinverarity1/pyexperiment,duerrp/pyexperiment,shaunstanislaus/pyexperiment,DeercoderResearch/pyexperiment,shaunstanislaus/pyexperiment,shaunstanislaus/pyexperiment,duerrp/pyexperimen... | setup.py | setup.py | """Setup for pyexperiment
"""
from __future__ import print_function
# from __future__ import unicode_literals
from __future__ import division
from __future__ import absolute_import
import os
from setuptools import setup
read_plain = lambda fname: open(
os.path.join(os.path.dirname(__file__), fname), 'r').read()
t... | """Setup for pyexperiment
"""
from __future__ import print_function
# from __future__ import unicode_literals
from __future__ import division
from __future__ import absolute_import
import os
from setuptools import setup
read_plain = lambda fname: open(
os.path.join(os.path.dirname(__file__), fname), 'r').read()
t... | mit | Python |
79ba247c70764cb31498637fed153f166f1096b7 | Increment version. | chriscannon/highlander | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
__version__ = '0.1.1'
setup(
name='highlander-one',
version=__version__,
author='Christopher T. Cannon',
author_email='christophertcannon@gmail.com',
description='A simple decorator to ensure that your '
'program is only running on... | #!/usr/bin/env python
from setuptools import setup
__version__ = '0.1.0'
setup(
name='highlander-one',
version=__version__,
author='Christopher T. Cannon',
author_email='christophertcannon@gmail.com',
description='A simple decorator to ensure that your '
'program is only running on... | mit | Python |
333067f1bed8af3bf6ef72fb9996b2d73c1649bd | include data files; fixed #17 | pine/opoona | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name = 'opoona',
version = '0.1.0',
description = 'Opoona, the thicket opener.',
license = 'MIT',
author = 'Pine, Mihyaeru',
author_email = 'pinemz@gmail.com, mihy... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name = 'opoona',
version = '0.1.0',
description = 'Opoona, the thicket opener.',
license = 'MIT',
author = 'Pine, Mihyaeru',
author_email = 'pinemz@gmail.com, mihy... | mit | Python |
ecdaedcec8e63facad0cb49fbdd91f9ae2b92d50 | add tqdm | shellphish/fuzzer,shellphish/fuzzer | setup.py | setup.py | import os
from distutils.core import setup
setup(
name='fuzzer', version='1.1', description="Python wrapper for multiarch AFL",
packages=['fuzzer', 'fuzzer.extensions'],
data_files = [ ("bin", (os.path.join("bin", "create_dict.py"),)) ],
scripts = [ 'shellphuzz' ],
install_requires=['angr', 'shellp... | import os
from distutils.core import setup
setup(
name='fuzzer', version='1.1', description="Python wrapper for multiarch AFL",
packages=['fuzzer', 'fuzzer.extensions'],
data_files = [ ("bin", (os.path.join("bin", "create_dict.py"),)) ],
scripts = [ 'shellphuzz' ],
install_requires=['angr', 'shellp... | bsd-2-clause | Python |
bc57c91682ddb10749185c1526eeae9e9b049471 | correct setup.py | tsterbak/kernel_eca | setup.py | setup.py | import io
import os
import re
from distutils.core import setup
def read(path, encoding='utf-8'):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
def version(path):
"""Obtain the packge version from a python file e.g. pkg/__init_... | import io
import os
import re
from distutils.core import setup
def read(path, encoding='utf-8'):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
def version(path):
"""Obtain the packge version from a python file e.g. pkg/__init_... | bsd-3-clause | Python |
2018d7275403d412b448f9ddb038dcf53323ed91 | Update numpy requirement from <1.21.0,>=1.11.0 to >=1.11.0,<1.22.0 | espdev/csaps | setup.py | setup.py | # -*- coding: utf-8 -*-
import pathlib
from setuptools import setup
ROOT_DIR = pathlib.Path(__file__).parent
def _get_version():
about = {}
ver_mod = ROOT_DIR / 'csaps' / '_version.py'
exec(ver_mod.read_text(), about)
return about['__version__']
def _get_long_description():
readme = ROOT_DIR ... | # -*- coding: utf-8 -*-
import pathlib
from setuptools import setup
ROOT_DIR = pathlib.Path(__file__).parent
def _get_version():
about = {}
ver_mod = ROOT_DIR / 'csaps' / '_version.py'
exec(ver_mod.read_text(), about)
return about['__version__']
def _get_long_description():
readme = ROOT_DIR ... | mit | Python |
ca98cc4a2367d847302d4f6ceff4d583e8ba2f0b | Update setup.py file | JKThanassi/xpdView,NSLS-II-XPD/xpdView | setup.py | setup.py | """
use 'python setup.py install' while in file folder in anaconda to install this package
"""
from setuptools import setup, find_packages
setup(
name='xpd_view',
version='0.vista',
packages=find_packages(),
description='Visualization Code for Beam line',
zip_safe=False,
url='https://github.co... | """
use 'python setup.py install' while in file folder in anaconda to install this package
"""
from setuptools import setup, find_packages
setup(
name='2016_summer_XPD',
version='0.0.2',
packages=find_packages(),
description='Experimental code for summer project',
zip_safe=False,
url='https://... | bsd-3-clause | Python |
c8a92a72eaff9a4c271d56cd48bfca3b7e5b31fa | use python3 | simbuerg/benchbuild,simbuerg/benchbuild | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='pprof',
version='0.9.8',
packages=find_packages(),
install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0",
"regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6",
... | #!/usr/bin/evn python2
from setuptools import setup, find_packages
setup(name='pprof',
version='0.9.8',
packages=find_packages(),
install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0",
"regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6",
... | mit | Python |
bcf556284d51f3bc3e4b8b4272fc2d270b882f61 | Increment Version number | fabianvf/scrapi,mehanig/scrapi,felliott/scrapi,ostwald/scrapi,CenterForOpenScience/scrapi,fabianvf/scrapi,erinspace/scrapi,felliott/scrapi,icereval/scrapi,CenterForOpenScience/scrapi,erinspace/scrapi,mehanig/scrapi,jeffreyliu3230/scrapi,alexgarciac/scrapi | setup.py | setup.py | from distutils.core import setup
setup(
name='scrAPI Utils',
version='0.4.5',
author='Chris Seto',
author_email='Chris@seto.xyz',
packages=['scrapi.linter'],
package_data={'scrapi.linter': ['../__init__.py']},
url='http://www.github.com/chrisseto/scrapi',
license='LICENSE.txt',
desc... | from distutils.core import setup
setup(
name='scrAPI Utils',
version='0.4.4',
author='Chris Seto',
author_email='Chris@seto.xyz',
packages=['scrapi.linter'],
package_data={'scrapi.linter': ['../__init__.py']},
url='http://www.github.com/chrisseto/scrapi',
license='LICENSE.txt',
desc... | apache-2.0 | Python |
700c5d282ffd62b7d66ffde1ed493db092d87aae | Update support for 3.6. | smarlowucf/wxcast | setup.py | setup.py | #!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# wxcast: A Python API and cli to collect weather information.
#
# Copyright (C) 2017 Sean Marlow
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, e... | #!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# wxcast: A Python API and cli to collect weather information.
#
# Copyright (C) 2017 Sean Marlow
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, e... | mit | Python |
3de79ecba9a9bbef39cf324cc5dc62f703767cc3 | Change author_email to my own email | hobarrera/django-afip,hobarrera/django-afip | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='django-afip',
version='0.8.0',
description='AFIP integration for django',
author='Hugo Osvaldo Barrera',
author_email='hugo@barrera.io',
url='https://gitlab.com/hobarrera/django-afip',
license='ISC',
packag... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='django-afip',
version='0.8.0',
description='AFIP integration for django',
author='Hugo Osvaldo Barrera',
author_email='hbarrera@z47.io',
url='https://gitlab.com/hobarrera/django-afip',
license='ISC',
packag... | isc | Python |
ab92ce1be3fa31884da9834803bc661c75402d67 | bump to 0.2.0 | juanpabloaj/pypptx | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
install_requires = read('requirements.txt').splitlines()
try:
long_description = open("README.rst").read()
... | # -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
install_requires = read('requirements.txt').splitlines()
try:
long_description = open("README.rst").read()
... | mit | Python |
5438848037167696dbe4bf9081506415de94795f | include package data | maykinmedia/django-timeline-logger,maykinmedia/django-timeline-logger | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-timeline-logger',
version='0.2',
description='Generic event logger for Django models.',
author='Maykin Media',
author_email='support@maykinmedia.nl',
url='https://github.com/maykinmedia/django-timeline-logge... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-timeline-logger',
version='0.2',
description='Generic event logger for Django models.',
author='Maykin Media',
author_email='support@maykinmedia.nl',
url='https://github.com/maykinmedia/django-timeline-logge... | mit | Python |
16ae133af1977f35e1bf85b1c6ce57614418356c | use latest setuptest | joao-bjsoftware/django-ckeditor,BlastPy/django-ckeditor,Govexec/django-ckeditor,MarcJoan/django-ckeditor,sergey-romanov/django-ckeditor,williamdev/django-ckeditor,BlastPy/django-ckeditor,Josephpaik/django-ckeditor,ZG-Tennis/django-ckeditor,makinacorpus/django-ckeditor,Xangis/django-ckeditor,Josephpaik/django-ckeditor,l... | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-ckeditor',
version='0.0.9',
description='Django admin CKEditor integration.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Shaun Sephton',
author_e... | from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(self):
from setuptest.runtests import runtests
return runtests(self)
test.run_tests = run_tests
setup(
name='django-ckeditor',
version='0.0.9',
description='Django admin CKEditor integration.',
... | bsd-3-clause | Python |
b5c42664c567f7aac714fe3f78dfeca2ab92d38e | Bump version to 1.0.3 | bertrandvidal/parse_this | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup
README_PATH = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(README_PATH, "r") as README_FILE:
README = README_FILE.read()
setup(
name="parse_this",
version="1.0.3",
description=("Makes it easy to create a command line inter... | #!/usr/bin/env python
import os
from setuptools import setup
README_PATH = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(README_PATH, "r") as README_FILE:
README = README_FILE.read()
setup(
name="parse_this",
version="1.0.2",
description=("Makes it easy to create a command line inter... | mit | Python |
9cc85936a0b64ff82c427d1fc35dfc7297838810 | use raw string for regex | red-hat-storage/rhcephcompose,red-hat-storage/rhcephcompose | setup.py | setup.py | import os
import re
import sys
import subprocess
from setuptools.command.test import test as TestCommand
from setuptools import setup, Command
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
LONG_DESCRIPTION = open(readme).read()
module_file = open('rhcephcompose/__init__.py').read()
metadata = dict(r... | import os
import re
import sys
import subprocess
from setuptools.command.test import test as TestCommand
from setuptools import setup, Command
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
LONG_DESCRIPTION = open(readme).read()
module_file = open('rhcephcompose/__init__.py').read()
metadata = dict(r... | mit | Python |
ef1cc78b1798f71e48ccd0793f40c6d181e72e74 | update download_url (fixes #18) | dbtsai/python-mimeparse | setup.py | setup.py | #!/usr/bin/env python
import os
import codecs
import mimeparse
from setuptools import setup
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(path, encoding='utf-8').read()
setup(
name="python-mimeparse",
py_modules=["mimeparse"],
version=mimeparse.__versi... | #!/usr/bin/env python
import os
import codecs
import mimeparse
from setuptools import setup
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(path, encoding='utf-8').read()
setup(
name="python-mimeparse",
py_modules=["mimeparse"],
version=mimeparse.__versi... | mit | Python |
d518fb597f55c698ad154f2885baf2022112381f | Bump lxml from 4.6.5 to 4.9.1 | ilevn/aiodictcc | setup.py | setup.py | import os
import sys
if sys.version_info[0:2] < (3, 5):
raise Exception("aiodictcc requires Python 3.5+")
from setuptools import setup
rootpath = os.path.abspath(os.path.dirname(__file__))
def extract_version(_module='aiodictcc'):
version = None
fname = os.path.join(rootpath, _module, '__init__.py')
... | import os
import sys
if sys.version_info[0:2] < (3, 5):
raise Exception("aiodictcc requires Python 3.5+")
from setuptools import setup
rootpath = os.path.abspath(os.path.dirname(__file__))
def extract_version(_module='aiodictcc'):
version = None
fname = os.path.join(rootpath, _module, '__init__.py')
... | mit | Python |
294327c5c56e9c93a5ff60975343eae10a454893 | Fix typo in setup.py | dcos/dcos-launch,dcos/dcos-launch | setup.py | setup.py | from setuptools import setup
setup(
name='dcos-launch',
version='0.1',
description='DC/OS cluster provisioning',
url='https://dcos.io',
author='Mesosphere, Inc.',
author_email='help@dcos.io',
license='apache2',
classifiers=[
'Development Status :: 3 - Alpha',
'License ::... | from setuptools import setup
setup(
name='dcos-launch',
version='0.1',
description='DC/OS cluster provisioning',
url='https://dcos.io',
author='Mesosphere, Inc.',
author_email='help@dcos.io',
license='apache2',
classifiers=[
'Development Status :: 3 - Alpha',
'License ::... | apache-2.0 | Python |
16e4e3155733ad8c90312414cc975315ad8566d3 | Remove minor python version in entry point. | jonathanslenders/ptpython | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
setup(
name='ptpython',
author='Jonathan Slenders',
version='0.36',
url='https://github.com/jonathan... | #!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
setup(
name='ptpython',
author='Jonathan Slenders',
version='0.36',
url='https://github.com/jonathan... | bsd-3-clause | Python |
f2f5fcedb27402e4567f9f8f5cc017f41fec5870 | fix included | leotrs/decu | setup.py | setup.py | """
decu
----
Decu is a Experimental Computation Utility.
"""
from setuptools import setup, find_packages
def get_requirements(suffix=''):
with open('requirements{}.txt'.format(suffix)) as file:
result = file.read().splitlines()
return result
setup(
name='decu',
version='0.0.1',
url='... | """
decu
----
Decu is a Experimental Computation Utility.
"""
from setuptools import setup, find_packages
def get_requirements(suffix=''):
with open('requirements{}.txt'.format(suffix)) as file:
result = file.read().splitlines()
return result
setup(
name='decu',
version='0.0.1',
url='... | mit | Python |
a92687bb0849b6bfe53e6062b2608b240b99dc4c | Exclude tests from package | morphis/home-assistant,philipbl/home-assistant,nugget/home-assistant,Teagan42/home-assistant,caiuspb/home-assistant,nevercast/home-assistant,leppa/home-assistant,tomduijf/home-assistant,dmeulen/home-assistant,molobrakos/home-assistant,aoakeson/home-assistant,LinuxChristian/home-assistant,Duoxilian/home-assistant,Freeki... | setup.py | setup.py | import os
import re
from setuptools import setup, find_packages
PACKAGE_NAME = 'homeassistant'
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp:
VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1)
DOWNLOAD_URL = \
'https://... | import os
import re
from setuptools import setup, find_packages
PACKAGE_NAME = 'homeassistant'
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp:
VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1)
DOWNLOAD_URL = \
'https://... | apache-2.0 | Python |
2a9f9f92ca7272ec6c71a0583c601fac8da85817 | Make setup.py executable | glowka/django-admin-tools,miurahr/django-admin-tools,eternalfame/django-admin-tools,glowka/django-admin-tools,django-admin-tools/django-admin-tools,django-admin-tools/django-admin-tools,miurahr/django-admin-tools,miurahr/django-admin-tools,eternalfame/django-admin-tools,miurahr/django-admin-tools,django-admin-tools/dja... | setup.py | setup.py | #!/usr/bin/env python
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.ch... | 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... | mit | Python |
a987092a00fc203a1b33eaabc378da68e5fec244 | update requirements in setup.py | cihai/cihaidata-unihan | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf8 - *-
"""cihaidata-unihan lives at <https://github.com/cihai/cihaidata-unihan>."""
import os
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.getcwd()) # we want to grab this:
from package_metadata import p
with open('requirements/base.txt') as f:
... | #!/usr/bin/env python
# -*- coding: utf8 - *-
"""cihaidata-unihan lives at <https://github.com/cihai/cihaidata-unihan>."""
import os
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.getcwd()) # we want to grab this:
from package_metadata import p
with open('requirements.pip') as f:
in... | mit | Python |
29a5b3e38a5c61889ef707069b23d2011aa8df48 | correct variable/function names | scienceopen/pymap3d,scienceopen/pymap3d,geospace-code/pymap3d,geospace-code/pymap3d | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2014-2018 Michael Hirsch, Ph.D.
#
# 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 an... | #!/usr/bin/env python
# Copyright (c) 2014-2018 Michael Hirsch, Ph.D.
#
# 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 an... | bsd-2-clause | Python |
e22b7fc6aae8f75183c701b021f64aee399b39f4 | Update to 0.1.1 | philipodonnell/paperbroker,philipodonnell/paperbroker,philipodonnell/paperbroker | setup.py | setup.py | from distutils.core import setup
setup(name='paperbroker',
version='0.1.1',
description='PaperBroker',
author='Philip ODonnell',
author_email='philip@postral.com',
url='https://github.com/philipodonnell/paperbroker',
packages=['paperbroker',
'paperbroker.adapters',
... | from distutils.core import setup
setup(name='paperbroker',
version='0.0.6',
description='PaperBroker',
author='Philip ODonnell',
author_email='philip@postral.com',
url='https://github.com/philipodonnell/paperbroker',
packages=['paperbroker',
'paperbroker.adapters',
... | mit | Python |
3e702678ee3f4761e929f95cb4d176ee185c52ea | Fix url in setup.py | ecometrica/django-dbarray | 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-dbarray",
version = "0.2",
packages = find_packages(),
description = "Django ORM field for Postgres array types.",
author = "Ecome... | 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-dbarray",
version = "0.2",
packages = find_packages(),
description = "Django ORM field for Postgres array types.",
author = "Ecome... | bsd-3-clause | Python |
9b52beb387c4b9f89dfbb61b388b7b95f0ebce9c | FIx dependency_links | rparini/cxroots,rparini/cxroots | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
packages = ['cxroots', 'cxroots.tests', 'cxroots.contours']
# get the version, this will assign __version__
exec(open('cxroots/version.py').read())
# read the README_pip.rst
try:
with open('README.rst') as file:
long_description = file.read()
except:
... | #!/usr/bin/env python
from setuptools import setup
packages = ['cxroots', 'cxroots.tests', 'cxroots.contours']
# get the version, this will assign __version__
exec(open('cxroots/version.py').read())
# read the README_pip.rst
try:
with open('README.rst') as file:
long_description = file.read()
except:
... | bsd-3-clause | Python |
eb11e20ef62b97e7968705ec4dda0f0e361e8e96 | Bump pytest from 6.1.2 to 6.2.1 | macbre/index-digest,macbre/index-digest | setup.py | setup.py | from setuptools import setup, find_packages
from indexdigest import VERSION
# @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py
with open("README.md", "r") as fh:
long_description = fh.read()
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name='indexd... | from setuptools import setup, find_packages
from indexdigest import VERSION
# @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py
with open("README.md", "r") as fh:
long_description = fh.read()
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name='indexd... | mit | Python |
09e6c915e668c0b41eca75e3105ebac6f8bfcf58 | Allow the package to be built without Sphinx being required. | glorpen/webassets,glorpen/webassets,0x1997/webassets,rs/webassets,aconrad/webassets,JDeuce/webassets,scorphus/webassets,florianjacob/webassets,heynemann/webassets,aconrad/webassets,wijerasa/webassets,john2x/webassets,aconrad/webassets,heynemann/webassets,0x1997/webassets,glorpen/webassets,john2x/webassets,wijerasa/weba... | setup.py | setup.py | import os
from distutils.core import setup
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
print "Sphinx not installed--needed to build documentation"
# default cmdclass to None to avoid
cmdclass = {}
import django_assets
def fi... | import os
from distutils.core import setup
from sphinx.setup_command import BuildDoc
import django_assets
def find_packages(root):
# so we don't depend on setuptools; from the Storm ORM setup.py
packages = []
for directory, subdirectories, files in os.walk(root):
if '__init__.py' in fi... | bsd-2-clause | Python |
6466b42066105ae0f6a6a0a0fc2cb5fb64dafa8b | Add support for running tests from setup.py | xrmx/uwsgiit-py | setup.py | setup.py | from setuptools import setup, find_packages
import os
import uwsgiit
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :... | from setuptools import setup, find_packages
import os
import uwsgiit
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :... | bsd-3-clause | Python |
c3db30dbd9827933371afff1a9d358223203316e | Update version | jsnjack/kazy,jsnjack/kazy | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
setup(
name="kazy",
version="0.1.2",
description="Highlights STDIN data",
license='MIT',
author="Yauhen Shulitski",
author_email="jsnjack@gmail.com",
url="https://github.com/jsnjack/kazy",
packages=["kazy"],
scripts=["bin/... | #!/usr/bin/env python
from distutils.core import setup
setup(
name="kazy",
version="0.1.1",
description="Highlights STDIN data",
license='MIT',
author="Yauhen Shulitski",
author_email="jsnjack@gmail.com",
url="https://github.com/jsnjack/kazy",
packages=["kazy"],
scripts=["bin/... | mit | Python |
0066ea3ad367ec31c49add91390a154ca6538e68 | Bump version. | novel/gg,novel/gg | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "gg",
version = "0.2.0",
author = "Roman Bogorodskiy",
author_email = "rbogorodskiy@griddynamics.com",
url="http://github.com/novel/gg/tree",
py_modules = ["GoGri... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "gg",
version = "0.1.2",
author = "Roman Bogorodskiy",
author_email = "rbogorodskiy@griddynamics.com",
url="http://github.com/novel/gg/tree",
py_modules = ["GoGri... | bsd-2-clause | Python |
c086fdb89ca35aea0bc9fa63bf82141cdbbe9e2e | Bump version | Motiejus/tictactoelib,Motiejus/tictactoelib | setup.py | setup.py | from os.path import join, dirname
from pip.req import parse_requirements
from setuptools import setup, find_packages
reqs_file = join(dirname(__file__), "requirements.txt")
install_reqs = list(parse_requirements(reqs_file))
setup(
name='tictactoelib',
version='0.0.5a1',
author="Motiejus Jakštys",
auth... | from os.path import join, dirname
from pip.req import parse_requirements
from setuptools import setup, find_packages
reqs_file = join(dirname(__file__), "requirements.txt")
install_reqs = list(parse_requirements(reqs_file))
setup(
name='tictactoelib',
version='0.0.4',
author="Motiejus Jakštys",
author... | apache-2.0 | Python |
797da1bd335c0d8237ff4ee4785fe7aca76f0b84 | Include cacert.pem as part of the package | hkjallbring/pusher-http-python,pusher/pusher-http-python | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pusher',
version='1.2.0',
description='A Python library to interract with the Pusher API',
url='https://github.com/pusher/pusher-http-python',
author='Pusher',
author_email='support@pusher.com',
classifiers=[
"License ... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pusher',
version='1.2.0',
description='A Python library to interract with the Pusher API',
url='https://github.com/pusher/pusher-http-python',
author='Pusher',
author_email='support@pusher.com',
classifiers=[
"License ... | mit | Python |
358e048d8b53ed18928ac16e7a3cbfdd4f2326dd | Bump version | dnarvaez/plog | setup.py | setup.py | from distutils.core import setup
setup(name="plog",
packages=["plog"],
version="0.6",
description="Logged process",
author="Daniel Narvaez",
author_email="dwnarvaez@gmail.com",
url="http://github.com/dnarvaez/plog",
classifiers=["License :: OSI Approved :: BSD License",
... | from distutils.core import setup
setup(name="plog",
packages=["plog"],
version="0.5",
description="Logged process",
author="Daniel Narvaez",
author_email="dwnarvaez@gmail.com",
url="http://github.com/dnarvaez/plog",
classifiers=["License :: OSI Approved :: BSD License",
... | apache-2.0 | Python |
b9f572706cf0a2e5620a2c56f5e47ac16b939bc1 | Update core dependency to google-cloud-core >= 0.23.0, < 0.24dev. (#3028) | googleapis/python-pubsub,googleapis/python-pubsub | 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 |
f18626a4b9ede670a9149c5ce822c85fcf3248e0 | bump version: binary subtypes, gridfs 1.0, safe insert operations | inspectlabs/mongo-python-driver,jameslittle/mongo-python-driver,pigate/mongo-python-driver,pigate/mongo-python-driver,jameslittle/mongo-python-driver,mongodb/mongo-python-driver,felixonmars/mongo-python-driver,WingGao/mongo-python-driver,ShaneHarvey/mongo-python-driver,bq-xiao/mongo-python-driver,aherlihy/mongo-python-... | setup.py | setup.py | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from distutils.core import Extension
f = open("README.rst")
try:
readme_content = f.read()
except:
readme_content = ""
finally:
f.close()
setup(
name="pymongo",
version="0.3.1pre",
descript... | #!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from distutils.core import Extension
f = open("README.rst")
try:
readme_content = f.read()
except:
readme_content = ""
finally:
f.close()
setup(
name="pymongo",
version="0.3pre",
descriptio... | apache-2.0 | Python |
c456520fe9e9219a8b38929464719fe6c4df76c9 | Bump version to 1.1 | cloudify-cosmo/cloudify-libcloud-provider | setup.py | setup.py | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
b69b33e1c49d568d1ddc3b27dcfea08dc93fac7a | Bump the version to publish a new egg (this version is South-enabled). | trey0/django-digest,dimagi/django-digest | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='django-digest',
version='1.3',
description=('An implementation of HTTP Digest Authentication for Django.'),
long_description=(
"""
django-digest supplies a middleware (HttpDigestMiddleware) that may installed to protect access
to all URLs... | #!/usr/bin/env python
from setuptools import setup
setup(
name='django-digest',
version='1.2',
description=('An implementation of HTTP Digest Authentication for Django.'),
long_description=(
"""
django-digest supplies a middleware (HttpDigestMiddleware) that may installed to protect access
to all URLs... | bsd-3-clause | Python |
86bd9eec0651507c91559acc88e5481ff8162ac4 | update setup.py to the correct version | natea/Miro-Community,pculture/mirocommunity,natea/Miro-Community,pculture/mirocommunity,pculture/mirocommunity,pculture/mirocommunity | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.9-pre'
setup(name="Miro Community",
version=version,
author='Participatory Culture Foundation',
license='AGPLv3',
entry_points="""
# -*- Entry points: -*-
[console_scripts]
localtv_update_feeds = localtv.feedimport:upda... | from setuptools import setup, find_packages
version = '0.0.1'
setup(name="Miro Community",
version=version,
author='Participatory Culture Foundation',
license='AGPLv3',
entry_points="""
# -*- Entry points: -*-
[console_scripts]
localtv_update_feeds = localtv.feedimport:update... | agpl-3.0 | Python |
8bc3f06aac3b15b6f081465be27a108086b1b802 | set version higher than last release | freevo/kaa-base,freevo/kaa-base | setup.py | setup.py | # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------------
# setup.py - Setup script for kaa.base
# -----------------------------------------------------------------------------
# $Id$
#
# -----------------------------------------------------------------------------
# C... | # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------------
# setup.py - Setup script for kaa.base
# -----------------------------------------------------------------------------
# $Id$
#
# -----------------------------------------------------------------------------
# C... | lgpl-2.1 | Python |
dd3de8eb9ae12ce859b071c635ff8c43cf7ab0ac | Fix syntax error in setup.py. | churchlab/reference_genome_maker | setup.py | setup.py | #!/usr/bin/env python
# NOTE: multiprocessing import required for issues with nose tests.
# See: http://bugs.python.org/issue15881#msg170215
import multiprocessing
from setuptools import setup
setup(
name='reference_genome_maker',
version='0.1',
author='Church Lab',
author_email='gleb@mit.edu',
m... | #!/usr/bin/env python
# NOTE: multiprocessing import required for issues with nose tests.
# See: http://bugs.python.org/issue15881#msg170215
import multiprocessing
from setuptools import setup
setup(
name='reference_genome_maker',
version='0.1',
author='Church Lab',
author_email='gleb@mit.edu',
m... | mit | Python |
236416217bac634a8ff792d5110ba2a7bc56fc08 | Remove Python 2.7 from setup.py | sde1000/python-xkbcommon | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='xkbcommon',
version='0.1',
description='Bindings for libxkbcommon using cffi',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Licen... | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='xkbcommon',
version='0.1',
description='Bindings for libxkbcommon using cffi',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Licen... | mit | Python |
5e356b2bf31eb6af8031770cc2d848b1fd24df94 | fix description | nicodv/kmodes | setup.py | setup.py | from setuptools import setup, find_packages
import kmodes
DESCRIPTION = kmodes.__doc__
VERSION = kmodes.__version__
setup(
name='kmodes',
packages=find_packages(exclude=[
'*.tests',
'*.tests.*',
]),
version=VERSION,
url='https://github.com/nicodv/kmodes',
author='Nico de Vos',... | from setuptools import setup, find_packages
import kmodes
"""
Python implementations of the k-modes and k-prototypes clustering algorithms,
for clustering categorical data
"""
DESCRIPTION = __doc__
VERSION = kmodes.__version__
setup(
name='kmodes',
packages=find_packages(exclude=[
'*.tests',
... | mit | Python |
cd4ced0a2e14785c9b5d0fe1b56548773db9630c | Add license and classifiers to setup.py | kipe/miplant | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='miplant',
version='0.0.1',
description='A library for reading cheap plant monitoring sensors manufactured by Xiaomi.',
author='Kimmo Huoman',
author_email='kipenroskapos... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='miplant',
version='0.0.1',
description='A library for reading cheap plant monitoring sensors manufactured by Xiaomi.',
author='Kimmo Huoman',
author_email='kipenroskapos... | mit | Python |
43a8a83014c2d77b37615f28e695fa861350d0bf | Add attrs and typing to deps | otovo/python-netsgiro | setup.py | setup.py | import re
from setuptools import find_packages, setup
with open('netsgiro/__init__.py') as fh:
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read()))
with open('README.rst') as fh:
long_description = fh.read()
setup(
name='netsgiro',
version=metadata['version'],
description='File ... | import re
from setuptools import find_packages, setup
with open('netsgiro/__init__.py') as fh:
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fh.read()))
with open('README.rst') as fh:
long_description = fh.read()
setup(
name='netsgiro',
version=metadata['version'],
description='File ... | apache-2.0 | Python |
5f3784c4d7f0715955488f09975d157a00133209 | Bump version to 0.7.0 | disqus/nydus | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'nose',
'unittest2',
'mock',
'redis',
'Django>=1.2,<1.4',
'psycopg2',
'thoonk',
]
dependency_links = [
'https://github.com/andyet/thoonk.py/tarball/master#egg=thoonk',
]
install_requires = [
]
setup... | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'nose',
'unittest2',
'mock',
'redis',
'Django>=1.2,<1.4',
'psycopg2',
'thoonk',
]
dependency_links = [
'https://github.com/andyet/thoonk.py/tarball/master#egg=thoonk',
]
install_requires = [
]
setup... | apache-2.0 | Python |
a2a8cbcf2cbcb0778059523ab9b01497c93c92de | Make sure we distribute backports. | Disassem/urllib3,urllib3/urllib3,urllib3/urllib3,haikuginger/urllib3,sigmavirus24/urllib3,Lukasa/urllib3,sigmavirus24/urllib3,Disassem/urllib3,haikuginger/urllib3,Lukasa/urllib3 | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
import re
import codecs
base_path = os.path.dirname(__file__)
# Get the version (borrowed from SQLAlchemy)
fp = open(os.path.join(base_path, 'urllib3', '__init__.py'))
VERSION = re.compile(r".*__version__ = '(.*?)'",
re.S).match(fp.re... | #!/usr/bin/env python
from setuptools import setup
import os
import re
import codecs
base_path = os.path.dirname(__file__)
# Get the version (borrowed from SQLAlchemy)
fp = open(os.path.join(base_path, 'urllib3', '__init__.py'))
VERSION = re.compile(r".*__version__ = '(.*?)'",
re.S).match(fp.re... | mit | Python |
1271f29eea3fc508d5995d7b10fa8176134d6f8f | Set standards for syntax | antoinearnoud/openfisca-france,sgmap/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '18.11.0',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: O... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '18.11.0',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: O... | agpl-3.0 | Python |
f2d29dc5bf44581dd1850b2be70fc5ae4b5fac35 | Use README as long_description for PyPI | DasIch/oore | setup.py | setup.py | # encoding: utf-8
"""
setup
~~~~~
:copyright: 2014 by Daniel Neuhäuser
:license: BSD, see LICENSE.rst for details
"""
from setuptools import setup
with open('README.rst', 'r') as readme:
long_description = readme.read()
setup(
name='oore',
description='Object-Oriented Regular Expression... | # encoding: utf-8
"""
setup
~~~~~
:copyright: 2014 by Daniel Neuhäuser
:license: BSD, see LICENSE.rst for details
"""
from setuptools import setup
setup(
name='oore',
description='Object-Oriented Regular Expressions',
version='0.1.1',
author='Daniel Neuhäuser',
author_email='ich@d... | bsd-3-clause | Python |
84448e46c676be716ac0094e6f9db98860b71708 | fix dependencies | ecsalina/gtrends | setup.py | setup.py | from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name="gtrends",
version = "0.2.0",
py_modules = ["gtrends", "_login"],
description = "Automated Google Trends downloader",
author = ... | from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name="gtrends",
version = "0.2.0",
py_modules = ["gtrends", "_login"],
description = "Automated Google Trends downloader",
author = ... | mit | Python |
3764fef58ba227f96395a806bbe85ad02f64cdb6 | Bump version | the-mace/teslajson,gglockner/teslajson | setup.py | setup.py | from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
setup(name='teslajson',
version='1.2.1',
description='',
url='https://github.com/gglockner/teslajson',
py_modules=['teslajson'],
author='Greg Glockner',
license='MI... | from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
setup(name='teslajson',
version='1.2.0',
description='',
url='https://github.com/gglockner/teslajson',
py_modules=['teslajson'],
author='Greg Glockner',
license='MI... | mit | Python |
9ab4ab7121ab3628c9190255d5912283ad70d75f | Update setup script for ``tddspry`` package. | playpauseandstop/tddspry,playpauseandstop/tddspry | setup.py | setup.py | #!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
kwargs = {}
else:
kwargs = {
'entry_points': """
[nose.plugins.0.10]
django = tddspry.noseplugins:DjangoPlugin
"""
}
readme = open(os.path.join(o... | #!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
kwargs = {}
else:
kwargs = {
'entry_points': """
[nose.plugins.0.10]
django = tddspry.noseplugins:DjangoPlugin
"""
}
readme = open(os.path.join(o... | bsd-3-clause | Python |
5e051032d46835438c3c328024571c40c3d85463 | bump version number | theilmbh/pyoperant,gentnerlab/pyoperant,opyrant/opyrant,opyrant/opyrant,theilmbh/pyoperant,MarvinT/pyoperant,theilmbh/pyoperant,gentnerlab/pyoperant,gentnerlab/pyoperant,gentnerlab/pyoperant,MarvinT/pyoperant,MarvinT/pyoperant,theilmbh/pyoperant | setup.py | setup.py | from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'pyoperant',
version = '0.1.2',
author = 'Justin Kiggins',
author_email = 'justin.kiggins@gmail.com',
description = 'hardware interface and controls for ... | from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'pyoperant',
version = '0.1.1',
author = 'Justin Kiggins',
author_email = 'justin.kiggins@gmail.com',
description = 'hardware interface and controls for ... | bsd-3-clause | Python |
a02b308cb01bd9d9cdd086fb8290db1768eaa02b | Add dateutil dependency | codebynumbers/ftpretty | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import os
__version__ = '0.1.5'
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(name='ftpretty',
version=__version__,
description='Pretty FTP... | #!/usr/bin/env python
from setuptools import setup
import os
__version__ = '0.1.5'
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(name='ftpretty',
version=__version__,
description='Pretty FTP... | mit | Python |
f7900636c66760f1fea577e533f00580ef8859e5 | Update to version 1.0.90 | blockcypher/blockcypher-python | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# read the contents of your README file
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') ... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# read the contents of your README file
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') ... | apache-2.0 | Python |
a4e5385d4dcca196189d7d00eb121ee2769a4985 | add requirement for inflector | ECESeniorDesign/lazy_record | setup.py | setup.py | from setuptools import setup
setup(
name='lazy_record',
packages=['lazy_record', 'lazy_record/base'],
version='0.4.0',
description='Generic Model Layer for Python Web Applications using Sqlite3',
author='Chase Conklin',
author_email='cconkli4@u.rochester.edu',
url='https://github.com/ECESeniorDesign/lazy_... | from distutils.core import setup
setup(
name='lazy_record',
packages=['lazy_record', 'lazy_record/base'],
version='0.4.0',
description='Generic Model Layer for Python Web Applications using Sqlite3',
author='Chase Conklin',
author_email='cconkli4@u.rochester.edu',
url='https://github.com/ECESeniorDesign/l... | mit | Python |
69125027e9ba2802c2e5643429e0bf4e22f6b824 | Add Python 3.6 classifier in setup.py | GabrielFortin/ansible-module-f5bigip,erjac77/ansible-module-f5bigip | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2016-2018, Eric Jacob <erjac77@gmail.com>
#
# 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/LICENS... | #!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2016-2018, Eric Jacob <erjac77@gmail.com>
#
# 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/LICENS... | apache-2.0 | Python |
c7d5edffb884dc9a3973f1e089f9395019188555 | Bump to 0.2.3 development version | nitipit/appkit | setup.py | setup.py | from distutils.core import setup
import os
data = list()
for d in os.walk('appkit/'):
if len(d[2]) > 0:
path_list = map(
lambda x: str.join('/', os.path.join(d[0], x).split('/')[1:]),
d[2]
)
data.extend(path_list)
setup(
name='AppKit',
version='0.2.3',
d... | from distutils.core import setup
import os
data = list()
for d in os.walk('appkit/'):
if len(d[2]) > 0:
path_list = map(
lambda x: str.join('/', os.path.join(d[0], x).split('/')[1:]),
d[2]
)
data.extend(path_list)
setup(
name='AppKit',
version='0.2.2',
d... | mit | Python |
5d529c5664f9c2b3d805145e03f1f38300178bca | Update version to 1.0.1 | pteichman/instatrace | setup.py | setup.py | #!/usr/bin/env python
# Require setuptools. See http://pypi.python.org/pypi/setuptools for
# installation instructions, or run the ez_setup script found at
# http://peak.telecommunity.com/dist/ez_setup.py
from setuptools import setup, find_packages
setup(
name = "instatrace",
version = "1.0.1",
author = "... | #!/usr/bin/env python
# Require setuptools. See http://pypi.python.org/pypi/setuptools for
# installation instructions, or run the ez_setup script found at
# http://peak.telecommunity.com/dist/ez_setup.py
from setuptools import setup, find_packages
setup(
name = "instatrace",
version = "1.0.0",
author = "... | mit | Python |
ebd89eec31050b4a548593c6dab74bd107bb45ed | update package info | napuzba/zagoload | setup.py | setup.py | # Copyright (C) 2014 Napuzba [kobi@napuzba.com]
# Licensed under MIT license [http://openreq.source.org/licenses/MIT]
from setuptools import setup
description = 'Download files(http,ftp). Supports: cachinhg, uniform access to remote and local files'
long_description = '''
=====
About
=====
zagoload module simplifies... | # Copyright (C) 2014 Napuzba [kobi@napuzba.com]
# Licensed under MIT license [http://openreq.source.org/licenses/MIT]
from setuptools import setup
description = 'Download files(http,ftp). Supports: cachinhg, uniform access to remote and local files'
long_description = '''
=====
About
=====
zagoload module simplifies... | mit | Python |
b930d650d86f959fa4f83354741df7ac2b477734 | Fix setup.py in Py3K | blink1073/oct2py,blink1073/oct2py | setup.py | setup.py | """Setup script for oct2py package.
"""
DISTNAME = 'oct2py'
DESCRIPTION = 'Python to GNU Octave bridge --> run m-files from python.'
LONG_DESCRIPTION = open('README.rst', 'rb').read().decode('utf-8')
MAINTAINER = 'Steven Silvester'
MAINTAINER_EMAIL = 'steven.silvester@ieee.org'
URL = 'http://github.com/blink1073... | """Setup script for oct2py package.
"""
DISTNAME = 'oct2py'
DESCRIPTION = 'Python to GNU Octave bridge --> run m-files from python.'
LONG_DESCRIPTION = open('README.rst', 'rb').read().decode('utf-8')
MAINTAINER = 'Steven Silvester'
MAINTAINER_EMAIL = 'steven.silvester@ieee.org'
URL = 'http://github.com/blink1073... | mit | Python |
e39073538d121d227e53535cba4ceffeebe577a2 | Fix a typo in setup.py | davidlarizap/key-mon,scottkirkwood/key-mon,raulcesar/key-mon,Alwnikrotikz/key-mon,KOT040188/key-mon,sanyaade-g2g-repos/key-mon,jorgeartware/key-mon,vhermecz/key-mon,israfilkara/key-mon,ifara/key-mon,critiqjo/key-mon,mattboll/key-mon,tectronics/key-mon,aditiapratama/key-mon,holtzermann17/key-mon,MichalPokorny/key-mon | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
# setup.py sdist --formats=gztar,zip upload
# setup.py bdist
NAME='key-mon'
VER='0.15'
setup(
name = NAME,
version = VER,
packages = ['keymon'],
package_dir = {
'keymon': 'src/keymon'},
package_data = {
'keymon': ['themes/apple/*'... | #!/usr/bin/env python
from distutils.core import setup
NAME='key-mon'
VER='0.15'
setup(
name = NAME,
version = VER,
packages = ['keymon'],
package_dir = {
'keymon': 'src/keymon'},
package_data = {
'keymon': ['themes/apple/*', 'themes/classic/*', '*.kbd'],
},
scripts=['src/key-m... | apache-2.0 | Python |
70815e2f4135bc6adddf5841aad71ba0ebac1834 | remove download link for munkres (author updated pypi entry) | google-code-export/beets,google-code-export/beets,google-code-export/beets | setup.py | setup.py | #!/usr/bin/env python
# This file is part of beets.
# Copyright 2010, Adrian Sampson.
#
# 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 th... | #!/usr/bin/env python
# This file is part of beets.
# Copyright 2010, Adrian Sampson.
#
# 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 th... | mit | Python |
6eb6b95390c95186db5cdd6950cc33ad0bc23ad4 | Fix setup.py | consbio/awsecret | setup.py | setup.py | from setuptools import setup
from awsecret import VERSION
setup(
name='awsecret',
description='Secure credential storage in S3.',
keywords='password,aws,s3,credentials,encryption',
version=VERSION,
packages=['awsecret'],
install_requires=['pycrypto', 'boto', 'click'],
url='https://github.co... | from setuptools import setup
from awsecret import VERSION
setup(
name='awsecret',
description='Secure credential storage in S3.',
keywords='password,aws,s3,credentials,encryption',
version=VERSION,
packages=['awsecret'],
requires=['pycrypto', 'boto', 'click'],
url='https://github.com/consbi... | bsd-3-clause | Python |
8b77cc10863dcb5dbcca46c719758db491056331 | Prepare for release 2.1.2 | icometrix/dicom2nifti,icometrix/dicom2nifti | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
version = '2.1.2'
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support for most 4D data (like DTI and fMRI)
"""
setup(
na... | from distutils.core import setup
from setuptools import find_packages
version = '2.1.1'
long_description = """
With this package you can convert dicom images to nifti files.
There is support for most anatomical CT and MR data.
For MR specifically there is support for most 4D data (like DTI and fMRI)
"""
setup(
na... | mit | Python |
2679b70d4037e1d1b33057bd4081ff5a9f437799 | Update required pymatgen version. | davidwaroquiers/custodian,specter119/custodian,materialsproject/custodian,materialsproject/custodian,specter119/custodian,xhqu1981/custodian,specter119/custodian,alberthxf/custodian,materialsproject/custodian | setup.py | setup.py | import os
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
with open("README.rst") as f:
long_desc = f.read()
ind = long_desc.find("\n")
long_desc = long_desc[ind + 1:]
setup(
name="custodian",
packages=find_packages(),
version="0.6.0",
... | import os
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
with open("README.rst") as f:
long_desc = f.read()
ind = long_desc.find("\n")
long_desc = long_desc[ind + 1:]
setup(
name="custodian",
packages=find_packages(),
version="0.6.0",
... | mit | Python |
e3f273509ada5632cc7110f62caebcdb982307da | Add @Alir3z4 as maintainer info | Alir3z4/python-sanitize | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "sanitize",
version = "0.33",
description = "Bringing sanitiy to world of messed-up data",
long_description=open('README.md').read(),
author = "Aaron Swartz",
author_email = "me@aaronsw.com",
maintainer='Alireza Savand',
maintainer_email... | from setuptools import setup, find_packages
setup(
name = "sanitize",
version = "0.33",
description = "Bringing sanitiy to world of messed-up data",
long_description=open('README.md').read(),
author = "Aaron Swartz",
author_email = "me@aaronsw.com",
url='http://www.aaronsw.com/2002/sanitize/',
... | bsd-2-clause | Python |
119ad3a22695651318e5b840e80b05792a950412 | create version 0.3.16 | Duke-GCB/DukeDSClient,Duke-GCB/DukeDSClient | setup.py | setup.py | from setuptools import setup
setup(name='DukeDSClient',
version='0.3.16',
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='0.3.15',
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 |
ef9603aad8ce7de72f1a21982946143ca26db3a1 | Use sphinx-astropy to get all dependencies | dpshelio/astropy-helpers,dpshelio/astropy-helpers,Cadair/astropy-helpers,Cadair/astropy-helpers,astropy/astropy-helpers,astropy/astropy-helpers | setup.py | setup.py | #!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import ah_bootstrap
import pkg_resources
from setuptools import setup
from astropy_helpers.setup_helpers import (register_commands, get_package_info,
add_exclude_packages)
from astropy_helpe... | #!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import ah_bootstrap
import pkg_resources
from setuptools import setup
from astropy_helpers.setup_helpers import (register_commands, get_package_info,
add_exclude_packages)
from astropy_helpe... | bsd-3-clause | Python |
6b8ea928776c698eb22bff890ed9077a2dd22de7 | Upgrade docker compose version | lstephen/construi | setup.py | setup.py | from setuptools import find_packages, setup
import codecs
import distutils
import os
import re
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version():
version_match = re.search(r"^__version... | from setuptools import find_packages, setup
import codecs
import distutils
import os
import re
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version():
version_match = re.search(r"^__version... | apache-2.0 | Python |
6f91ed77ab0cad143e232c5c9468d5b767d0289d | bump version number | mflaxman/bottlenose | setup.py | setup.py | from setuptools import setup, find_packages
import sys, os
version = '0.1.2'
install_requires = []
CURRENT_FOLDER = os.path.dirname(__file__)
def _py26OrGreater():
return sys.hexversion > 0x20600f0
if not _py26OrGreater():
install_requires.append("simplejson>=1.7.1")
setup(name='bottlenose',
version... | from setuptools import setup, find_packages
import sys, os
version = '0.1.1'
install_requires = []
CURRENT_FOLDER = os.path.dirname(__file__)
def _py26OrGreater():
return sys.hexversion > 0x20600f0
if not _py26OrGreater():
install_requires.append("simplejson>=1.7.1")
setup(name='bottlenose',
version... | mit | Python |
db8efc4110514bf7c70f12b925a322413fa00293 | use latest working version | uc-cdis/cdis-python-utils | setup.py | setup.py | from subprocess import check_output
from setuptools import setup, find_packages
def get_version():
# https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408
try:
tag = check_output(
["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"]
)
return tag... | from subprocess import check_output
from setuptools import setup, find_packages
def get_version():
# https://github.com/uc-cdis/dictionaryutils/pull/37#discussion_r257898408
try:
tag = check_output(
["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"]
)
return tag... | apache-2.0 | Python |
82e2c894720e0316d9799eb56374ee06858a8b0c | Fix version number | Clpsplug/thefuck,AntonChankin/thefuck,subajat1/thefuck,barneyElDinosaurio/thefuck,lawrencebenson/thefuck,ytjiang/thefuck,levythu/thefuck,SimenB/thefuck,BertieJim/thefuck,hxddh/thefuck,thinkerchan/thefuck,mlk/thefuck,nvbn/thefuck,MJerty/thefuck,thesoulkiller/thefuck,scorphus/thefuck,Aeron/thefuck,PLNech/thefuck,mcarton/... | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='thefuck',
version="1.20",
description="Magnificent app which corrects your previous console command",
author='Vladimir Iakovlev',
author_email='nvbn.rm@gmail.com',
url='https://github.com/nvbn/thefuck',
license='MIT',
pa... | from setuptools import setup, find_packages
setup(name='thefuck',
version=1.20,
description="Magnificent app which corrects your previous console command",
author='Vladimir Iakovlev',
author_email='nvbn.rm@gmail.com',
url='https://github.com/nvbn/thefuck',
license='MIT',
pack... | mit | Python |
a459baeffc5f363cc502447df751e6799e7cc83d | Comment out entry-point in setup.py | DOV-Vlaanderen/pydov | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('requirements.txt') as f:
requirements ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('requirements.txt') as f:
requirements ... | mit | Python |
82a694b29755b6e723a43e4b38a03e5b2f5e3f47 | Bump version number to 0.2.5 | oscaro/django-oscar-adyen,django-oscar/django-oscar-adyen | setup.py | setup.py | from setuptools import setup, find_packages
# dirty hack to allow running sdist in a vbox
# source: Leonardo.Z's answer on this StackOverflow thread:
# http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link
... | from setuptools import setup, find_packages
# dirty hack to allow running sdist in a vbox
# source: Leonardo.Z's answer on this StackOverflow thread:
# http://stackoverflow.com/questions/7719380/python-setup-py-sdist-error-operation-not-permitted
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link
... | bsd-3-clause | Python |
a7d7a31ea43deb69e469d23b138e737774cee795 | bump the remoto version required | SUSE/ceph-deploy-to-be-deleted,ghxandsky/ceph-deploy,branto1/ceph-deploy,rtulke/ceph-deploy,trhoden/ceph-deploy,ddiss/ceph-deploy,branto1/ceph-deploy,ceph/ceph-deploy,ddiss/ceph-deploy,jumpstarter-io/ceph-deploy,imzhulei/ceph-deploy,Vicente-Cheng/ceph-deploy,shenhequnying/ceph-deploy,isyippee/ceph-deploy,shenhequnying/... | setup.py | setup.py | from setuptools import setup, find_packages
import os
import sys
import ceph_deploy
from vendor import vendorize
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
f = open(path)
return f.read()
install_requires = []
pyversion = sys.version_info[:2]
if pyversion < (2, 7) or (3, 0) <= ... | from setuptools import setup, find_packages
import os
import sys
import ceph_deploy
from vendor import vendorize
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
f = open(path)
return f.read()
install_requires = []
pyversion = sys.version_info[:2]
if pyversion < (2, 7) or (3, 0) <= ... | mit | Python |
0b1bcf6305f808f3ed1b862a1673e774dce67879 | Add six as a requirement | amir-zeldes/DepEdit | setup.py | setup.py | from distutils.core import setup
setup(
name = 'depedit',
packages = ['depedit'],
version = '2.1.2',
description = 'A simple configurable tool for manipulating dependency trees',
author = 'Amir Zeldes',
author_email = 'amir.zeldes@georgetown.edu',
url = 'https://github.com/amir-zeldes/depedit',
instal... | from distutils.core import setup
setup(
name = 'depedit',
packages = ['depedit'],
version = '2.1.2',
description = 'A simple configurable tool for manipulating dependency trees',
author = 'Amir Zeldes',
author_email = 'amir.zeldes@georgetown.edu',
url = 'https://github.com/amir-zeldes/depedit',
licens... | apache-2.0 | Python |
0906cc5192b770c8e83c41000cddd9559c9955a4 | fix setup | nerocrux/wayterm,nerocrux/wayterm | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='wayterm',
version='0.0.1',
description='Weibo client for terminal',
author='peichao.yu',
author_email='nerocrux@gmail.com',
py_modules=['wayterm', ],
package_data={'': ['LICENSE'], },
url='http:... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='weiterm',
version='0.0.1',
description='Weibo client for terminal',
author='peichao.yu',
author_email='nerocrux@gmail.com',
py_modules=['weiterm', ],
package_data={'': ['LICENSE'], },
url='http:... | mit | Python |
9890ff35bda62ec53879f5b23c1c5bc9be7286d3 | Modify setup tools to use hg correctly. Related to #845 | grengojbo/satchmo,grengojbo/satchmo | setup.py | setup.py | #!/usr/bin/env python
# This will effectively place satchmo files but there needs to
# be extra work before this would work correctly
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os, os.path
import sys
DIRNAME = os.path.dirname(__file__)
APPDIR = os.path.join(DIRNAME, ... | #!/usr/bin/env python
# This will effectively place satchmo files but there needs to
# be extra work before this would work correctly
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os, os.path
import sys
DIRNAME = os.path.dirname(__file__)
APPDIR = os.path.join(DIRNAME, ... | bsd-3-clause | Python |
4e397ed0c6e29253c720479351aa9cf1179735dd | add asyncio to deps | and800/aioreloader | setup.py | setup.py | from setuptools import setup
setup(
name='aioreloader',
version='0.0.0',
description='Port of tornado reloader to asyncio',
url='https://github.com/and800/aioreloader',
author='Andriy Maletsky',
author_email='andriy.maletsky@gmail.com',
license='MIT',
py_modules=['aioreloader'],
ext... | from setuptools import setup
setup(
name='aioreloader',
version='0.0.0',
description='Port of tornado reloader to asyncio',
url='https://github.com/and800/aioreloader',
author='Andriy Maletsky',
author_email='andriy.maletsky@gmail.com',
license='MIT',
py_modules=['aioreloader'],
)
| mit | Python |
f0eb68c78adead20cc9ee0b1d395af078312984a | Update `setup.py` | j5int/warden | setup.py | setup.py | from setuptools import setup
import re
def get_version():
VERSIONFILE="warden/__init__.py"
initfile_lines = open(VERSIONFILE, "rt").readlines()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
for line in initfile_lines:
mo = re.search(VSRE, line, re.M)
if mo:
return mo.group(1)... | from setuptools import setup
import re
def get_version():
VERSIONFILE="warden/__init__.py"
initfile_lines = open(VERSIONFILE, "rt").readlines()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
for line in initfile_lines:
mo = re.search(VSRE, line, re.M)
if mo:
return mo.group(1)... | mit | Python |
bd93315654bb89c90865e1ec928c9f85f2810447 | Add new tags | monasysinfo/pyodbcOpenEdge | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 1 Dec 2013
@author: jyp
'''
from distutils.core import setup
setup(
name='pyodbcOpenEdge',
version='1.0',
description='A Django Backend for OpenEdge databases (Progress)',
long_description='''
This module allows the use of the OpenEdge (... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 1 Dec 2013
@author: jyp
'''
from distutils.core import setup
setup(
name='pyodbcOpenEdge',
version='1.0',
description='A Django Backend for OpenEdge databases (Progress)',
long_description='''
This module allows the use of the OpenEdge (... | mit | Python |
053767d393e0a171bacdcbc9af7ac6f1c65cde02 | bump version again | nlevitt/brozzler,internetarchive/brozzler,nlevitt/brozzler,internetarchive/brozzler,internetarchive/brozzler,internetarchive/brozzler,nlevitt/brozzler,nlevitt/brozzler,nlevitt/brozzler | setup.py | setup.py | #
# setup.py - brozzler setup script
#
# Copyright (C) 2014-2016 Internet Archive
#
# 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... | #
# setup.py - brozzler setup script
#
# Copyright (C) 2014-2016 Internet Archive
#
# 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 |
117747306da712875c066dc310b4d417a52a7a0f | bump tqdm dep to 4.13.0 | warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole,warner/magic-wormhole | setup.py | setup.py | from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass()
setup(name="magic-wormhole",
version=versioneer.get_version(),
description="Securely transfer data between computers",
author="Brian Warner",
author_email="warner-magic-wormhole@lothar.com",
license="MIT... | from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass()
setup(name="magic-wormhole",
version=versioneer.get_version(),
description="Securely transfer data between computers",
author="Brian Warner",
author_email="warner-magic-wormhole@lothar.com",
license="MIT... | mit | Python |
7a01c9722fb47a7feec64a5f6f59273b96851f07 | use python 3 explicitly in the entry point | gleb812/pch2csd | setup.py | setup.py | import os
from setuptools import setup
import pch2csd
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pch2csd',
version=pch2csd.__version__,
author='Gleb Rogozinsky, Mikhail Chesnokov, Eugene Cherny',
description='Convert Clavia Nord Modular G2 ... | import os
from setuptools import setup
import pch2csd
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pch2csd',
version=pch2csd.__version__,
author='Gleb Rogozinsky, Mikhail Chesnokov, Eugene Cherny',
description='Convert Clavia Nord Modular G2 ... | mit | Python |
3832887597e52f70149611497643127f1291be9f | prepare release | PRIArobotics/HedgehogUtils | setup.py | setup.py | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# 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.absp... | """A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# 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.absp... | agpl-3.0 | Python |
6b7149d5f0a42b44d330cdf2fa6840f4b4bc2e3f | Bump version | cloudify-cosmo/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 |
0601e711d5b259144ecbbce52c7d5424eb02a48a | Bump GAX dependency to 0.15.14. (#3752) | googleapis/python-videointelligence,googleapis/python-videointelligence | 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 |
fdffb432ffa14fe7f08483959b41c3e4b7e5e7c2 | Bump version | Motiejus/tictactoe,Motiejus/tictactoe | setup.py | setup.py | import os
import sys
from setuptools import setup, find_packages
REQS_FILE = open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
install_reqs = [r.strip() for r in REQS_FILE]
if sys.version_info < (3, 3):
install_reqs.append("mock==1.0.1")
setup(
name='tictactoe',
version='0.1.5',
auth... | import os
import sys
from setuptools import setup, find_packages
REQS_FILE = open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
install_reqs = [r.strip() for r in REQS_FILE]
if sys.version_info < (3, 3):
install_reqs.append("mock==1.0.1")
setup(
name='tictactoe',
version='0.1.4',
auth... | mit | Python |
97533b8a789cac7947ce4eb4ec5e2af20afcd3e7 | Update author email | gebn/chandl,gebn/chandl | setup.py | setup.py | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | # -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8'):
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The content... | mit | Python |
dbf3bf530272750856eac023f02977faf9196086 | Bump version | botify-labs/woopra-python-sdk,Woopra/woopra-python-sdk | setup.py | setup.py | from setuptools import setup
setup(
name='woopra',
version='0.2.0',
author='Antoine Chkaiban',
author_email='antoine@woopra.com',
url='https://github.com/Woopra/woopra-python-sdk',
packages=['woopra',],
license='LICENSE.txt',
description='Woopra Analytics Tracking API',
)
| from setuptools import setup
setup(
name='woopra',
version='0.1.0',
author='Antoine Chkaiban',
author_email='antoine@woopra.com',
url='https://github.com/Woopra/woopra-python-sdk',
packages=['woopra',],
license='LICENSE.txt',
description='Woopra Analytics Tracking API',
)
| mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.