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
594263d6e40469b02e45a8d23525fdac94bd88db
Set zip_safe to false
saltstack/pytest-logging
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import, with_statement import os import sys import codecs from setuptools import setup # Change to source's directory prior to running any command try: SETUP_DIRNAME = os.path.dirname(__file__) except NameError: # We're most likely ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import, with_statement import os import sys import codecs from setuptools import setup # Change to source's directory prior to running any command try: SETUP_DIRNAME = os.path.dirname(__file__) except NameError: # We're most likely ...
apache-2.0
Python
1a538dd3f80996af4a2845f3e246b2ca37591801
rename package in setup.py
keeganmccallum/sql4pandas
setup.py
setup.py
from distutils.core import setup setup(name='pdsql', version='0.0.1', packages=['pdsql', 'sqlparse_mod'] )
from distutils.core import setup setup(name='PDSQL', version='0.0.1', packages=['pdsql', 'sqlparse_mod'] )
bsd-3-clause
Python
f5e8914fab1d6403f3c1a24e302e888d9f722fed
Fix version number
mozaiques/zombase,ouihelp/yesaide
setup.py
setup.py
from setuptools import setup setup( name='mozbase', version='0.2.1', packages=['mozbase'], test_suite='tests', install_requires=['SQLAlchemy', 'voluptuous'], author='Bastien GANDOUET', author_email="bastien@mozaiqu.es" )
from setuptools import setup setup( name='mozbase', version='0.2.0', packages=['mozbase'], test_suite='tests', install_requires=['SQLAlchemy', 'voluptuous'], author='Bastien GANDOUET', author_email="bastien@mozaiqu.es" )
mit
Python
09de1d2975659381894d4297413800f252cb3158
Tidy up setup.py
wintersandroid/tvrenamr,ghickman/tvrenamr
setup.py
setup.py
import multiprocessing # noqa # stop tests breaking tox from setuptools import setup import tvrenamr requires = ['pyyaml', 'requests'] setup_requires = ('minimock', 'mock', 'nose', 'pyyaml') setup( name=tvrenamr.__title__, version=tvrenamr.__version__, description='Rename tv show files using online dat...
import multiprocessing # stop tests breaking tox from setuptools import setup import tvrenamr requires = ('pyyaml', 'requests') packages = ('tvrenamr',) setup_requires = ('minimock', 'mock', 'nose', 'pyyaml') setup( name = tvrenamr.__title__, version = tvrenamr.__version__, description = 'Rename tv sh...
mit
Python
a5e639d9d46ad899a36603b40ae5584d53c2dddd
Bump version
csinchok/csv-validator
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( author='Chris Sinchok', author_email='chris@sinchok.com', name='csv-validator', version='0.2.2', url='https://github.com/csinchok/csv-validator', packages=['csv_validator'], test_suite='tests', )
#!/usr/bin/env python from setuptools import setup setup( author='Chris Sinchok', author_email='chris@sinchok.com', name='csv-validator', version='0.2.1', url='https://github.com/csinchok/csv-validator', packages=['csv_validator'], test_suite='tests', )
mit
Python
ce435bfadb05ae5acbaf7200a59c5fca2079688f
update our pypi description
earies/exabgp,lochiiconnectivity/exabgp,benagricola/exabgp,earies/exabgp,chrisy/exabgp,dneiter/exabgp,fugitifduck/exabgp,lochiiconnectivity/exabgp,blablacar/exabgp,blablacar/exabgp,fugitifduck/exabgp,PowerDNS/exabgp,benagricola/exabgp,chrisy/exabgp,benagricola/exabgp,blablacar/exabgp,lochiiconnectivity/exabgp,fugitifdu...
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ setup.py Created by Thomas Mangin on 2011-01-24. Copyright (c) 2009-2012 Exa Networks. All rights reserved. """ import os import sys import glob from distutils.core import setup from distutils.util import get_platform try: f = open('lib/exabgp/version.py','r') version = ...
#!/usr/bin/env python # encoding: utf-8 """ setup.py Created by Thomas Mangin on 2011-01-24. Copyright (c) 2009-2012 Exa Networks. All rights reserved. """ import os import sys import glob from distutils.core import setup from distutils.util import get_platform try: f = open('lib/exabgp/version.py','r') version = ...
bsd-3-clause
Python
8331695c1aaa8a32cc128fe921b860c60b2e59d5
bump to version 0.1.8
enricobacis/wos
setup.py
setup.py
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version='0.1....
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version='0.1....
mit
Python
98607a5d0113c9f66d889a35e468adec91a72427
Add 3.7 to setup.py classifiers
boto/s3transfer
setup.py
setup.py
#!/usr/bin/env python import os import re import sys from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore>=1.3.0,<2.0.0', ] if sys.version_info[0] == 2: # concurrent.futures is only in python3, ...
#!/usr/bin/env python import os import re import sys from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore>=1.3.0,<2.0.0', ] if sys.version_info[0] == 2: # concurrent.futures is only in python3, ...
apache-2.0
Python
16e2d0180cc48c2d3be238ebe17797d8c0acbf62
Fix typo for cli entrypoint
brandoshmando/devour
setup.py
setup.py
from setuptools import setup setup( name='devour', version='0.4', url='', author='http://github.com/brandoshmando', author_email='brancraft@gmail.com', license='MIT', packages=['devour',], install_requires=[ 'pykafka', 'kazoo' ], include_package_data=True, te...
from setuptools import setup setup( name='devour', version='0.4', url='', author='http://github.com/brandoshmando', author_email='brancraft@gmail.com', license='MIT', packages=['devour',], install_requires=[ 'pykafka', 'kazoo' ], include_package_data=True, te...
mit
Python
be7e7001559da2d695f6307f01da4ffa9bbf384e
Change quote sourced file.
ammongit/scripts,ammongit/scripts,ammongit/scripts,ammongit/scripts
random-quote.py
random-quote.py
#!/usr/bin/python3 import os import random import re import sys import time DAILY_QUOTE_FILE_NAME_REGEX = re.compile(r"daily.quotes?\.py", re.IGNORECASE) def aggregate_quotes(files): quotes = {} for fn in files: try: with open(fn, 'r') as fh: quotes[fn] = fh.read().split(...
#!/usr/bin/env python from __future__ import print_function, with_statement import glob import os import random import re import sys import time DAILY_QUOTE_FILE_NAME_REGEX = re.compile(r"daily.quotes?\.py", re.IGNORECASE) def aggregate_quotes(files): quotes = {} for fn in files: try: wit...
mit
Python
cde38bf2395cd28b4de6e841388e14707491392a
update wizard builder version
project-callisto/callisto-core,project-callisto/callisto-core,SexualHealthInnovations/callisto-core,SexualHealthInnovations/callisto-core
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import sys from callisto_core import __version__ as version from setuptools import setup, find_packages if sys.argv[-1] == 'publish': try: import wheel print("Wheel version: ", wheel.__version__) except ImportError: pri...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import sys from callisto_core import __version__ as version from setuptools import setup, find_packages if sys.argv[-1] == 'publish': try: import wheel print("Wheel version: ", wheel.__version__) except ImportError: pri...
agpl-3.0
Python
c9bd0d709abcff3aa2f8bc5ea7318258d3cc423e
update reqs
clld/dictionaria,clld/dictionaria
setup.py
setup.py
from setuptools import setup, find_packages requires = [ 'webasstes>=0.11.1' 'clld>=3.2.2', 'clldmpg>=2.3.3', 'clld-glottologfamily-plugin>=2.0.0', 'clldutils>=1.9.0', 'transliterate', 'pyconcepticon>=1.1.0', ] tests_require = [ 'WebTest >= 1.3.1', # py3 compat 'mock', ] setup( ...
from setuptools import setup, find_packages requires = [ 'clld>=3.2.2', 'clldmpg>=2.3.3', 'clld-glottologfamily-plugin>=2.0.0', 'clldutils>=1.9.0', 'transliterate', 'pyconcepticon>=1.1.0', ] tests_require = [ 'WebTest >= 1.3.1', # py3 compat 'mock', ] setup( name='dictionaria', ...
apache-2.0
Python
807356a9272be22586c3305849fff2a80f9b5a25
Fix platforms in setup.py
avalentino/hashsum
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import re import sys from setuptools import setup def get_version(): filename = os.path.join(os.path.dirname(__file__), 'hashsum.py') with open(filename) as fd: data = fd.read() mobj = re.search( '^VERSION\s*=\s*(?P<quote>[\'"])(?P<...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import re import sys from setuptools import setup def get_version(): filename = os.path.join(os.path.dirname(__file__), 'hashsum.py') with open(filename) as fd: data = fd.read() mobj = re.search( '^VERSION\s*=\s*(?P<quote>[\'"])(?P<...
bsd-3-clause
Python
ed1324a72f6e346b79d763ce994756d3d8e56a1d
Bump version 0.2.4
kenjhim/django-accounting,kenjhim/django-accounting,kenjhim/django-accounting,dulaccc/django-accounting,dulaccc/django-accounting,dulaccc/django-accounting,kenjhim/django-accounting,dulaccc/django-accounting
accounting/__init__.py
accounting/__init__.py
import os # Use 'final' as the 4th element to indicate # a full release VERSION = (0, 2, 4) def get_short_version(): return '%s.%s' % (VERSION[0], VERSION[1]) def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1]) # Append 3rd digit if > 0 if VERSION[2]: version = '%s.%s' % (versi...
import os # Use 'final' as the 4th element to indicate # a full release VERSION = (0, 2, 3) def get_short_version(): return '%s.%s' % (VERSION[0], VERSION[1]) def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1]) # Append 3rd digit if > 0 if VERSION[2]: version = '%s.%s' % (versi...
mit
Python
31a47cb82e66d1623dcac7e8ae3bb58ac1447c37
package migration script for v4 to v5
dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi,dreibh/planetlab-lxc-plcapi
setup.py
setup.py
#!/usr/bin/python # # Setup script for PLCAPI # # Mark Huang <mlhuang@cs.princeton.edu> # Copyright (C) 2006 The Trustees of Princeton University # # $Id$ # from distutils.core import setup from glob import glob setup(py_modules = ['ModPython'], packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Acces...
#!/usr/bin/python # # Setup script for PLCAPI # # Mark Huang <mlhuang@cs.princeton.edu> # Copyright (C) 2006 The Trustees of Princeton University # # $Id$ # from distutils.core import setup from glob import glob setup(py_modules = ['ModPython'], packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Acces...
bsd-3-clause
Python
e6527702d82d00bfcd2c3d9ab8cda333c4537a91
Use the way as described in the pypi tutorial for the readme
fabaff/mqtt-randompub
setup.py
setup.py
# This file is part of mqtt-randompub # # Copyright (c) 2013 Fabian Affolter <fabian at affolter-engineering.ch> # Released under the MIT license. See LICENSE file for details. # from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() if __name__ == '__main...
# This file is part of mqtt-randompub # # Copyright (c) 2013 Fabian Affolter <fabian at affolter-engineering.ch> # Released under the MIT license. See LICENSE file for details. # from setuptools import setup if __name__ == '__main__': setup( name = 'mqtt-randompub', version="0.1", descripti...
mit
Python
6850d3dae4e3c187721cd8fde6fae6817588d591
add validator. this is still a temporary solution, because i need to rewrite it as AccountAdapter
arturtamborski/wypok,arturtamborski/wypok,arturtamborski/wypok,arturtamborski/wypok
accounts/validators.py
accounts/validators.py
from django.core import validators from django.core.exceptions import ValidationError from django.utils.encoding import force_text from django.utils.deconstruct import deconstructible import re @deconstructible class AccountNameValidator: message = 'This value must start with a letter and must be at least 4 chara...
from django.core import validators import re class AccountNameValidator(validators.RegexValidator): regex = r'^[a-zA-Z][a-zA-Z0-9-_]{3,19}' message = 'Enter a valid username. This value must start with a letter and must be at least 4 characters long, but not longer than 20 characters.' flags = re.ASCII...
mit
Python
d852a309009132efd4423a81f51cbaa468fefb17
Upgrade setup with classifiers
michal-stuglik/django-blastplus,michal-stuglik/django-blastplus,michal-stuglik/django-blastplus
setup.py
setup.py
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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-blastplus', version='2.0.0'...
import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-blastplus', version='2.0.0...
mit
Python
681e720c71bc115aeb374122b2bd317b7bb01b71
fix message
foundertherapy/django-users-plus,foundertherapy/django-users-plus
accounts/validators.py
accounts/validators.py
from django.core.exceptions import ValidationError from django.utils.translation import ugettext as _ import re class ComplexPasswordValidator(object): def validate(self, password, user=None): regex = '(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]' if not re.match(regex, passwor...
from django.core.exceptions import ValidationError from django.utils.translation import ugettext as _ import re class ComplexPasswordValidator(object): def validate(self, password, user=None): regex = '(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]' if not re.match(regex, passwor...
mit
Python
f301702c8d00e110b4d1ba0de66615d7bb35a3e4
Declare dependencies
ZeitOnline/zeit.content.image,cutoffthetop/zeit.content.image,ZeitOnline/zeit.content.image,cutoffthetop/zeit.content.image
setup.py
setup.py
from setuptools import setup, find_packages setup( name='zeit.content.image', version='2.0.0.dev0', author='gocept', author_email='mail@gocept.com', url='https://svn.gocept.com/repos/gocept-int/zeit.cms', description="ZEIT Image", packages=find_packages('src'), package_dir={'': 'src'}, ...
from setuptools import setup, find_packages setup( name='zeit.content.image', version='2.0.0.dev0', author='gocept', author_email='mail@gocept.com', url='https://svn.gocept.com/repos/gocept-int/zeit.cms', description="ZEIT Image", packages=find_packages('src'), package_dir={'': 'src'}, ...
bsd-3-clause
Python
6069c26213ed602b2848d4104fb1dc05f01a50c6
Bump version
carlthome/python-audio-effects
setup.py
setup.py
# coding=utf-8 """Install config.""" from setuptools import setup, find_packages setup( name='pysndfx', version='0.1.2', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', ...
# coding=utf-8 """Install config.""" from setuptools import setup, find_packages setup( name='pysndfx', version='0.1.1', description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.', url='https://github.com/carlthome/python-audio-effects', author='Carl Thomé', ...
mit
Python
da56e89708824390720d338d5b3b6d0f2375bf19
Fix capitalisaiton of iRODS
JIC-CSB/jicirodsmanager,JIC-CSB/jicirodsmanager
setup.py
setup.py
from setuptools import setup url = "" version = "0.1.0" readme = open('README.rst').read() dsc = "Python tools to manage users/groups/quotas/namespaces in an iRODS zone", setup(name="jicirodsmanager", packages=["jicirodsmanager"], version=version, description=dsc, long_description=readme, ...
from setuptools import setup url = "" version = "0.1.0" readme = open('README.rst').read() dsc = "Python tools to manage users/groups/quotas/namespaces in an irods zone", setup(name="jicirodsmanager", packages=["jicirodsmanager"], version=version, description=dsc, long_description=readme, ...
mit
Python
4177b1cb9e306f4bc24acbbd5a361b5a287b801a
Allow pinned dependencies
yloiseau/Watson,TailorDev/Watson,TailorDev/Watson
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup file for the Watson distribution.""" from os.path import join from setuptools import setup with open('README.rst') as f: readme = f.read() # read package meta-data from version.py pkg = {} mod = join('watson', 'version.py') exec(compile(open(mod).read(), mo...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup file for the Watson distribution.""" from os.path import join from setuptools import setup with open('README.rst') as f: readme = f.read() # read package meta-data from version.py pkg = {} mod = join('watson', 'version.py') exec(compile(open(mod).read(), mo...
mit
Python
0fa4ca98bf7bcafc25ebb4d12fb69d56142a0119
Fix requirements
hanjae/upstream,Storj/upstream
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # The MIT License (MIT) # # Copyright (c) 2014 Paul Durivage for Storj Labs # # 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 restrictio...
#!/usr/bin/env python # -*- coding: utf-8 -*- # The MIT License (MIT) # # Copyright (c) 2014 Paul Durivage for Storj Labs # # 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 restrictio...
mit
Python
5b01bc38108d89caab22cf3b6a5138d6a844f4a5
bump version for release 0.6.5
zeroSteiner/boltons,neuropil/boltons,suranap/boltons,doublereedkurt/boltons,markrwilliams/boltons,kevinastone/boltons
setup.py
setup.py
"""Functionality that should be in the standard library. Like builtins, but Boltons. Otherwise known as, "everyone's util.py," but cleaned up and tested. Contains over 150 BSD-licensed utility types and functions that can be used as a package or independently. `Extensively documented on Read the Docs <http://boltons....
"""Functionality that should be in the standard library. Like builtins, but Boltons. Otherwise known as, "everyone's util.py," but cleaned up and tested. Contains over 125 BSD-licensed utility types and functions that can be used as a package or independently. `Extensively documented on Read the Docs <http://boltons....
bsd-3-clause
Python
c92fe387725ee16ba7d452454fea65aacfe429b4
Enable Python 3 compatibility using 2to3.
kszys/num2words,savoirfairelinux/num2words
setup.py
setup.py
from setuptools import setup, find_packages CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development ::...
from setuptools import setup, find_packages CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Programming Language :: Python :: 2.7', 'Topic :: Software Development ::...
lgpl-2.1
Python
8fed7f136912fecf8dfb223807b818f37ee306e8
Remove enum and add absl-py.
google/empirical_calibration
setup.py
setup.py
# Copyright 2019 The Empirical Calibration Authors. # # 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 o...
# Copyright 2019 The Empirical Calibration Authors. # # 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 o...
apache-2.0
Python
73ae2dbd9b6ab036e7856809d4513bf7200a1eb1
reduce scipy version
fmfn/BayesianOptimization
setup.py
setup.py
from setuptools import setup, find_packages setup( name='bayesian-optimization', version="1.3.0", url='https://github.com/fmfn/BayesianOptimization', packages=find_packages(), author='Fernando Nogueira', author_email="fmfnogueira@gmail.com", description='Bayesian Optimization package', ...
from setuptools import setup, find_packages setup( name='bayesian-optimization', version="1.3.0", url='https://github.com/fmfn/BayesianOptimization', packages=find_packages(), author='Fernando Nogueira', author_email="fmfnogueira@gmail.com", description='Bayesian Optimization package', ...
mit
Python
2f077037d496c1229f295cc7113f0af1db7c852d
fix wrong license metadata, we use AGPLv3+
ecreall/daceui,ecreall/daceui,ecreall/daceui,ecreall/daceui
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.rst')) as f: CHANGES = f.read() requires = [ 'ecreall_dace', 'ecreall_pontus', 'pyramid...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.rst')) as f: CHANGES = f.read() requires = [ 'ecreall_dace', 'ecreall_pontus', 'pyramid...
agpl-3.0
Python
a1cf1b4ab6f2658ada4826b14943ad50fd0bd3d1
Bump version.
fanstatic/js.spin,fanstatic/js.spin
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup version = '1.3.0' def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() long_description = (read('README.txt') + '\n' + read('js', 'spin...
# -*- coding: utf-8 -*- import os from setuptools import find_packages from setuptools import setup version = '1.3.0dev' def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() long_description = (read('README.txt') + '\n' + read('js', 's...
bsd-3-clause
Python
e177fc18d972a071ce5473cbd77c47ddd1d91352
update version
drgrib/dotmap
setup.py
setup.py
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( version = '1.3.28', name='dotmap', packages=['dotmap'], # this must be the same as the name above description='ordered, dynamically-expandable dot-access dictionary', author='Chris Redford', a...
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( version = '1.3.27', name='dotmap', packages=['dotmap'], # this must be the same as the name above description='ordered, dynamically-expandable dot-access dictionary', author='Chris Redford', ...
mit
Python
f0323aa8586cd4525114f276874392598b812a6c
update setup.py to install cmdline script
daler/trackhub,daler/trackhub
setup.py
setup.py
import os import sys from setuptools import setup version_py = os.path.join(os.path.dirname(__file__), 'trackhub', 'version.py') version = open(version_py).read().strip().split('=')[-1].replace('"','') long_description = """ Create and manage UCSC track hubs from Python """ setup( name="trackhub", version=ve...
import os import sys from setuptools import setup version_py = os.path.join(os.path.dirname(__file__), 'trackhub', 'version.py') version = open(version_py).read().strip().split('=')[-1].replace('"','') long_description = """ Create and manage UCSC track hubs from Python """ setup( name="trackhub", version=ve...
mit
Python
7fb2155a7884bbebe3b29c1580b37354309c0d1e
Use install_requires to install the requirements.
arokem/pyAFQ,yeatmanlab/pyAFQ,arokem/pyAFQ,yeatmanlab/pyAFQ
setup.py
setup.py
from setuptools import find_packages import os try: from setuptools import setup except ImportError: from distutils.core import setup # Get version and release info, which is all stored in AFQ/version.py ver_file = os.path.join('AFQ', 'version.py') with open(ver_file) as f: exec(f.read()) REQUIRES = [] ...
from setuptools import find_packages import os try: from setuptools import setup except ImportError: from distutils.core import setup # Get version and release info, which is all stored in AFQ/version.py ver_file = os.path.join('AFQ', 'version.py') with open(ver_file) as f: exec(f.read()) REQUIRES = [] ...
bsd-2-clause
Python
fa907083ba9e2323224964b9cb2b2a5a99ccc97a
Fix install on Py3.x with non-UTF8 locale
danmichaelo/mwtemplates
setup.py
setup.py
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup from setuptools.command.test import test as TestCommand except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) class PyTest(TestCo...
#!/usr/bin/env python # encoding=utf-8 from __future__ import print_function import os import sys try: from setuptools import setup from setuptools.command.test import test as TestCommand except ImportError: print("This package requires 'setuptools' to be installed.") sys.exit(1) class PyTest(TestCo...
mit
Python
d7f9c5193ea1f602ce8c20376f22fd19eebc0a3c
install new cdl files from cobalt.
powellb/seapy
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function import os import sys from setuptools import find_packages, setup from numpy.distutils.core import setup from numpy.distutils.misc_util import Configuration # Only way to get --noopt defaulted into the build environment # since f2...
# -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function import os import sys from setuptools import find_packages, setup from numpy.distutils.core import setup from numpy.distutils.misc_util import Configuration # Only way to get --noopt defaulted into the build environment # since f2...
mit
Python
ff04845622fbc24b26f12a83fb60679840b240b9
Remove unused sys module
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", author = "Aaron Swartz", author_email = "me@aaronsw.com", url='http://www.aaronsw.com/2002/sanitize/', license=open('LICENCE').read(), classifiers...
import sys from setuptools import setup, find_packages setup( name = "sanitize", version = "0.33", description = "bringing sanitiy to world of messed-up data", author = "Aaron Swartz", author_email = "me@aaronsw.com", url='http://www.aaronsw.com/2002/sanitize/', license=open('LICENCE').read(), ...
bsd-2-clause
Python
e525e255cf57d98c2537ad536e80fad69bfa5ca6
bump version
orvice/mu-py-sdk,orvice/mu-py-sdk
setup.py
setup.py
from setuptools import setup install_requires = [ "requests >= 2.5.0", "requests-toolbelt >= 0.5.1", "setuptools >= 0.7.0", ] setup( name="musdk", version="0.0.4", license='MIT', description="ss-panel mu api sdk for python", author='orvice', author_email='orvice@orx.me', url=...
from setuptools import setup install_requires = [ "requests >= 2.5.0", "requests-toolbelt >= 0.5.1", "setuptools >= 0.7.0", ] setup( name="musdk", version="0.0.3", license='MIT', description="ss-panel mu api sdk for python", author='orvice', author_email='orvice@orx.me', url=...
mit
Python
56331a3b575d5d0e335752d7b9f530265b227114
Update to 0.0.3
nehz/graphql,nehz/graphql,nehz/graphql
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup from Cython.Distutils.extension import Extension include_dirs = ['lib', 'lib/libgraphqlparser', 'lib/gen', 'lib/gen/cython'] sources = [ 'lib/libgraphqlparser/JsonVisitor.cpp', 'lib/libgraphqlparser/parser.tab.cpp', 'lib/libgraphqlparser/lexer.cpp', ...
# -*- coding: utf-8 -*- from setuptools import setup from Cython.Distutils.extension import Extension include_dirs = ['lib', 'lib/libgraphqlparser', 'lib/gen', 'lib/gen/cython'] sources = [ 'lib/libgraphqlparser/JsonVisitor.cpp', 'lib/libgraphqlparser/parser.tab.cpp', 'lib/libgraphqlparser/lexer.cpp', ...
mit
Python
351bb9c9c79d14deadc49256df9d788b0a461e71
Enable overriding max py2neo version w/env
wcooley/python-gryaml
setup.py
setup.py
#!/usr/bin/env python """Setuptools setup.""" import os from setuptools import setup, find_packages with open('README.rst') as fp: readme = fp.read() with open('HISTORY.rst') as fp: history = fp.read().replace('.. :changelog:', '') # Enable setting version higher for testing PY2NEO_MAX_VERSION = os.environ....
#!/usr/bin/env python """Setuptools setup.""" from setuptools import setup, find_packages with open('README.rst') as fp: readme = fp.read() with open('HISTORY.rst') as fp: history = fp.read().replace('.. :changelog:', '') install_requires = [ 'boltons', 'py2neo<3', 'py2neo_compat~=1.0.0pre0', ...
mit
Python
0e37702391992d92102ff36431e40fd00f878cdc
clean up setup.py a little bit
ulmo-dev/ulmo-common
setup.py
setup.py
""" PyHIS ------- PyHIS is a python library for querying CUAHSI*-HIS** web services. * CUAHSI is the Consortium of Universities for the Advancement of Hydrologic Science, Inc. ** HIS stands for Hydrologic Information System """ from setuptools import Command, setup, find_packages setup( name='pyhis', ve...
""" PyHIS ------- PyHIS is a python library for querying CUAHSI*-HIS** web services. * CUAHSI is the Consortium of Universities for the Advancement of Hydrologic Science, Inc. ** HIS stands for Hydrologic Information System """ from setuptools import Command, setup, find_packages setup( name='pyhis', ve...
bsd-3-clause
Python
511cd0faabde7ae90af8875bc17305933c95a313
Bump version
CRS-support/ftw
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='ftw', version='1.2.0', description='Framework for Testing WAFs', author='Chaim Sanders, Zack Allen', author_email='zma4580@gmail.com, chaim.sanders@gmail.com', url='https://www.github.com/crs-support/ftw', download_url=...
#!/usr/bin/env python from setuptools import setup setup(name='ftw', version='1.1.7', description='Framework for Testing WAFs', author='Chaim Sanders, Zack Allen', author_email='zma4580@gmail.com, chaim.sanders@gmail.com', url='https://www.github.com/crs-support/ftw', download_url=...
apache-2.0
Python
6357ae0714400aafb5dd19acd33799c8563efa65
Simplify version-string loading in setup.py
gadventures/django-gapi-hooked
setup.py
setup.py
import sys from setuptools import setup _version_file = 'hooked/version.py' with open(_version_file) as vf: exec(vf.read()) setup( name='django-gapi-hooked', version=__version__, author='G Adventures', author_email='software@gadventures.com', description='A tiny library to add a G Adventures...
import sys from setuptools import setup _version_file = 'hooked/version.py' if sys.version_info.major < 3: execfile(_version_file) else: with open(_version_file) as vf: exec(vf.read()) setup( name='django-gapi-hooked', version=__version__, author='G Adventures', author_email='softwar...
mit
Python
42057e7353d169734aa1c64754b4803fa3607e9c
Bump tensorflow from 1.14.0 to 2.4.0
smousavi05/EQTransformer
setup.py
setup.py
from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() setup( name="EQTransformer", author="S. Mostafa Mousavi", version="0.1.59", author_email="smousavi05@gmail.com", description="A python package for making and using attentive deep-learnin...
from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() setup( name="EQTransformer", author="S. Mostafa Mousavi", version="0.1.59", author_email="smousavi05@gmail.com", description="A python package for making and using attentive deep-learnin...
mit
Python
5c95e2f0f888c6e4fc10803f487a34ba35baf764
update repository requirements
lexotero/python-redsys
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup PACKAGES = ['redsys', ] setup( name='redsys', description='Creates and encrypt the form parameter for RedSys Payment', author='Alejandro Otero Ortiz de Cosca', author_email='otero.alx@gmail.com', url='http://aotero.es', ...
#!/usr/bin/env python from distutils.core import setup PACKAGES = ['redsys', ] setup( name='redsys', description='Creates and encrypt the form parameter for RedSys Payment', author='Alejandro Otero Ortiz de Cosca', author_email='otero.alx@gmail.com', url='http://aotero.es', ...
mit
Python
37140a1e713a6ff63553ac92dd3edd7ca893ca8a
Change version
moonrabbit/flask-jsonrpc,moonrabbit/flask-jsonrpc,ikrauchanka/flask-jsonrpc,moonrabbit/flask-jsonrpc,ikrauchanka/flask-jsonrpc,ikrauchanka/flask-jsonrpc
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2012, Cenobit Technologies, Inc. http://cenobit.es/ # All rights reserved. """ Flask-JSONRPC ----------- Adds JSONRPC support to Flask. Links ````` * `documentation <http://packages.python.org/Flask-JSONRPC>`_ * `development version <http://github.com/cen...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2012, Cenobit Technologies, Inc. http://cenobit.es/ # All rights reserved. """ Flask-JSONRPC ----------- Adds JSONRPC support to Flask. Links ````` * `documentation <http://packages.python.org/Flask-JSONRPC>`_ * `development version <http://github.com/cen...
bsd-3-clause
Python
bf23be710dad4ad63ca32a175f15d8859af3b188
Increase version number
keitaroinc/ckanext-datarequests,okfn/ckanext-datarequests,okfn/ckanext-datarequests,okfn/ckanext-datarequests,conwetlab/ckanext-datarequests,conwetlab/ckanext-datarequests,keitaroinc/ckanext-datarequests,okfn/ckanext-datarequests,conwetlab/ckanext-datarequests,conwetlab/ckanext-datarequests,keitaroinc/ckanext-datareque...
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (c) 2015 CoNWeT Lab., Universidad Politécnica de Madrid # This file is part of CKAN Data Requests Extension. # CKAN Data Requests Extension is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License as published by # the F...
# -*- coding: utf-8 -*- # Copyright (c) 2015 CoNWeT Lab., Universidad Politécnica de Madrid # This file is part of CKAN Data Requests Extension. # CKAN Data Requests Extension is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License as published by # the F...
agpl-3.0
Python
79c32e19746613519b6582cb13935d7e63a97ab7
bump version for new release (python3 compatability)
janinko/pnc-cli,janinko/pnc-cli,thauser/pnc-cli,thauser/pnc-cli,jianajavier/pnc-cli,thauser/pnc-cli,project-ncl/pnc-cli,jianajavier/pnc-cli,jianajavier/pnc-cli,project-ncl/pnc-cli,janinko/pnc-cli,project-ncl/pnc-cli
setup.py
setup.py
from setuptools import setup from setuptools import find_packages import os README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() setup( name='pnc-cli', packages=find_packages(exclude=['test*']), version='0.0.6', description='CLI wrapper for PNC REST calls', author = 'Tom Hauser...
from setuptools import setup from setuptools import find_packages import os README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() setup( name='pnc-cli', packages=find_packages(exclude=['test*']), version='0.0.5', description='CLI wrapper for PNC REST calls', author = 'Tom Hauser...
apache-2.0
Python
28914f20f09689e06edb73ebab6716190b6d1aff
Bump version
gmr/progrock
setup.py
setup.py
import setuptools import sys tests_require = ['nose', 'mock'] if sys.version_info < (2, 7, 0): tests_require.append('unittest2') desc = ('A multi-progressbar implementation to complement ' 'multiprocessing.Process') setuptools.setup(name='progrock', version='0.2.0', desc...
import setuptools import sys tests_require = ['nose', 'mock'] if sys.version_info < (2, 7, 0): tests_require.append('unittest2') desc = ('A multi-progressbar implementation to complement ' 'multiprocessing.Process') setuptools.setup(name='progrock', version='0.1.1', desc...
bsd-3-clause
Python
850420b5797c28e39a74b2e9775d42db8be0608e
use new `qiime.plugins` group name
qiime2/q2-diversity,qiime2/q2-diversity,qiime2/q2-diversity,jakereps/q2-diversity,jakereps/q2-diversity,maxvonhippel/q2-diversity,maxvonhippel/q2-diversity,jakereps/q2-diversity,maxvonhippel/q2-diversity,qiime2/q2-diversity
setup.py
setup.py
# ---------------------------------------------------------------------------- # Copyright (c) 2016--, QIIME development team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # -----------------------------------------------------...
# ---------------------------------------------------------------------------- # Copyright (c) 2016--, QIIME development team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # -----------------------------------------------------...
bsd-3-clause
Python
82b24bde5a681a0630056c2649ebece7c5b35686
Declare importlib requirement on Python 2.6
sim0629/irc
setup.py
setup.py
import sys import setuptools def read_long_description(): with open('README') as f: data = f.read() return data importlib_req = ['importlib'] if sys.version_info < (2,7) else [] setup_params = dict( name="irc", description="IRC (Internet Relay Chat) protocol client library for P...
import setuptools def read_long_description(): with open('README') as f: data = f.read() return data setup_params = dict( name="irc", description="IRC (Internet Relay Chat) protocol client library for Python", long_description=read_long_description(), use_hg_version=True, ...
lgpl-2.1
Python
9dec23d75ab5032914b984d310acb11c56f5810d
update setup.py to use distribute/setuptools
printerpam/d-note,printerpam/d-note,atoponce/d-note,herlo/d-note,atoponce/d-note,printerpam/d-note,herlo/d-note,atoponce/d-note
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os import glob DCONFIG = os.path.dirname(os.path.realpath(__file__)) + "/dnote/dconfig.py" if not os.path.exists(DCONFIG): with open(DCONFIG, 'w') as f: f.write('aes_salt = "%s"\n' % os.urandom(16).encode('hex')) f.write('mac_salt = "%s"\...
#!/usr/bin/env python from distutils.core import setup import os import glob DCONFIG = os.path.dirname(os.path.realpath(__file__)) + "/dnote/dconfig.py" if not os.path.exists(DCONFIG): with open(DCONFIG, 'w') as f: f.write('aes_salt = "%s"\n' % os.urandom(16).encode('hex')) f.write('mac_salt = "...
agpl-3.0
Python
591fa34b4f8698c7901c24e41db5f0b0a57fc0b5
fix email address format in setup.py
vsergeev/u-msgpack-python
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='u-msgpack-python', version='2.1', description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.', author='vsergeev', author_email='v@sergeev.io', ur...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='u-msgpack-python', version='2.1', description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.', author='vsergeev', author_email='v at sergeev.io', ...
mit
Python
e9ac75d7f3f023bb0116446a2d358faa36fa90e2
Upgrade django-local-settings 1.0a12 => 1.0a13
PSU-OIT-ARC/django-arcutils,wylee/django-arcutils,PSU-OIT-ARC/django-arcutils,wylee/django-arcutils
setup.py
setup.py
import sys from setuptools import find_packages, setup VERSION = '2.0.dev0' install_requires = [ 'django-local-settings>=1.0a13', 'stashward', ] if sys.version_info[:2] < (3, 4): install_requires.append('enum34') setup( name='django-arcutils', version=VERSION, url='https://github.com/PSU...
import sys from setuptools import find_packages, setup VERSION = '2.0.dev0' install_requires = [ 'django-local-settings>=1.0a12', 'stashward', ] if sys.version_info[:2] < (3, 4): install_requires.append('enum34') setup( name='django-arcutils', version=VERSION, url='https://github.com/PSU...
mit
Python
1ffad3b83838df6fab7055a7ad520f93176bd059
Add desktop shortcut
rtfoley/scorepy,rtfoley/scorepy,rtfoley/scorepy
setup.py
setup.py
import sys, os from cx_Freeze import setup, Executable # Temp solution to TCL problem, change directories if needed os.environ['TCL_LIBRARY'] = "C:\\Python27\\tcl\\tcl8.5" os.environ['TK_LIBRARY'] = "C:\\Python27\\tcl\\tk8.5" # Dependencies are automatically detected, but it might need fine tuning. build_exe_options ...
import sys, os from cx_Freeze import setup, Executable os.environ['TCL_LIBRARY'] = "C:\\Python27\\tcl\\tcl8.5" os.environ['TK_LIBRARY'] = "C:\\Python27\\tcl\\tk8.5" # Dependencies are automatically detected, but it might need fine tuning. build_exe_options = { "packages": [ "os", "jinja2.ext", ...
mit
Python
67a293add2c7d3d4ceac2e6f06729dcdc17a67cf
Bump package version
maximecb/gym-minigrid
setup.py
setup.py
from setuptools import setup setup( name='gym_minigrid', version='1.0.0', keywords='memory, environment, agent, rl, openaigym, openai-gym, gym', url='https://github.com/maximecb/gym-minigrid', description='Minimalistic gridworld package for OpenAI Gym', packages=['gym_minigrid', 'gym_minigrid.e...
from setuptools import setup setup( name='gym_minigrid', version='0.0.6', keywords='memory, environment, agent, rl, openaigym, openai-gym, gym', url='https://github.com/maximecb/gym-minigrid', description='Minimalistic gridworld package for OpenAI Gym', packages=['gym_minigrid', 'gym_minigrid.e...
apache-2.0
Python
c14d104080b28c1abb20258c2cf83547842e3b17
Bump pytype from 2020.6.26 to 2020.7.14 (#531)
larq/larq
setup.py
setup.py
from setuptools import find_packages, setup def readme(): with open("README.md", "r") as f: return f.read() setup( name="larq", version="0.10.0", python_requires=">=3.6", author="Plumerai", author_email="lukas@plumerai.co.uk", description="An Open Source Machine Learning Library ...
from setuptools import find_packages, setup def readme(): with open("README.md", "r") as f: return f.read() setup( name="larq", version="0.10.0", python_requires=">=3.6", author="Plumerai", author_email="lukas@plumerai.co.uk", description="An Open Source Machine Learning Library ...
apache-2.0
Python
964cd221b681097cefca3237d6bf9f992a27b31e
update dictionary
NCI-GDC/gdcdatamodel,NCI-GDC/gdcdatamodel
setup.py
setup.py
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'avro==1.7.7', 'graphviz==0.4.2', 'addict==0.2.7', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dat...
from setuptools import setup, find_packages setup( name='gdcdatamodel', packages=find_packages(), install_requires=[ 'avro==1.7.7', 'graphviz==0.4.2', 'addict==0.2.7', 'jsonschema==2.5.1', 'psqlgraph', 'gdcdictionary', 'cdisutils', 'python-dat...
apache-2.0
Python
03ef50f2b62c50abfd81cf44e70392b71c1e8321
mark setup.py executable
chrwen-omicron/pypcapfile,kisom/pypcapfile,douglaskastle/pypcapfile
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='pypcapfile', version='0.2', description='libpcap savefile utilities', long_description='Pure Python package for reading and parsing libpcap ' + 'savefiles.', author='Kyle Isom', author_email='coder@...
#!/usr/bin/env python from distutils.core import setup setup(name='pypcapfile', version='0.1', description='libpcap savefile utilities', long_description='Pure Python package for reading and parsing libpcap ' + 'savefiles.', author='Kyle Isom', author_email='coder@...
isc
Python
195b4f23eb10bc56e3bf6a49e48a1c99099268ef
Fix package building error
MahjongRepository/mahjong
setup.py
setup.py
import setuptools from distutils.core import setup with open('README.rst', 'r') as f: readme = f.read() with open('CHANGELOG.rst', 'r') as f: changelog = f.read() setup( name='mahjong', packages=[ 'mahjong', 'mahjong.hand_calculating', 'mahjong.hand_calculating.yaku_list', ...
from distutils.core import setup with open('README.rst', 'r') as f: readme = f.read() with open('CHANGELOG.rst', 'r') as f: changelog = f.read() setup( name='mahjong', packages=[ 'mahjong', 'mahjong.hand_calculating', 'mahjong.hand_calculating.yaku_list', 'mahjong.han...
mit
Python
a844c85efcc87d255d1191a627de8f735268c3f6
use find_package() from setuptools instead of custom one
eofs/aws
setup.py
setup.py
import os import re from setuptools import setup, find_packages name = 'aws' package = 'aws' description = 'Utility to manage your Amazon Web Services and run Fabric against filtered set of EC2 instances.' url = 'https://github.com/eofs/aws' author = 'Tomi Pajunen' author_email = 'tomi@madlab.fi' def get_version(pac...
import os import re from setuptools import setup name = 'aws' package = 'aws' description = 'Utility to manage your Amazon Web Services and run Fabric against filtered set of EC2 instances.' url = 'https://github.com/eofs/aws' author = 'Tomi Pajunen' author_email = 'tomi@madlab.fi' def get_version(package): """...
bsd-2-clause
Python
3fac9f41d9c6687c56e66df0124ea45207b8e87e
Update long description :)
magdkudama/django-js-routing,magdkudama/django-js-routing
setup.py
setup.py
import os from setuptools import setup readme_content = open( os.path.join( os.path.dirname(os.path.abspath(__file__)), 'README.md' ) ).read() setup( name='django-js-routing', version='1.0.2', url='https://github.com/magdkudama/django-js-routing', author='Magd Kudama', author_ema...
from setuptools import setup setup( name='django-js-routing', version='1.0.1', url='https://github.com/magdkudama/django-js-routing', author='Magd Kudama', author_email='magdkudama@gmail.com', license='MIT', keywords=['django', 'routing', 'js'], packages=['django_js_routing'], inclu...
mit
Python
0cbe472d21c90c27c99070899da59ae87494701c
fix bug & nits
kashewnuts/dotfiles,kashewnuts/dotfiles
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import os.path import sys BASE_DIR = os.path.dirname(os.path.abspath(__file__)) DOT_FILES_DIR = os.path.join(BASE, 'files') DOT_FILES = [ '.ansible.cfg', '.bash_profile', '.bashrc', '.git-completion.bash', '.git-prompt.sh', '.gitconfig', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import os.path import sys DOT_FILES = [ '.ansible.cfg', '.bash_profile', '.bashrc', '.git-completion.bash', '.git-prompt.sh', '.gitconfig', '.gitconfig.unix', '.gitignore', '.hgrc', '.inputrc', '.ptconfig.toml', '....
mit
Python
917a53d346486fce6a887555f5f2d876b1dffb21
Bump flake8 from 3.7.8 to 3.7.9
sloria/sphinx-issues
setup.py
setup.py
# -*- coding: utf-8 -*- import re from setuptools import setup INSTALL_REQUIRES = ["sphinx"] EXTRAS_REQUIRE = { "tests": ["pytest", 'mock; python_version < "3.0"'], "lint": [ "flake8==3.7.9", 'flake8-bugbear==19.8.0; python_version >= "3.5"', "pre-commit~=1.18", ], } EXTRAS_REQUIRE[...
# -*- coding: utf-8 -*- import re from setuptools import setup INSTALL_REQUIRES = ["sphinx"] EXTRAS_REQUIRE = { "tests": ["pytest", 'mock; python_version < "3.0"'], "lint": [ "flake8==3.7.8", 'flake8-bugbear==19.8.0; python_version >= "3.5"', "pre-commit~=1.18", ], } EXTRAS_REQUIRE[...
mit
Python
183faa8967cd605ee0d0db8fa967e10dbe3b14c8
add repo URL, fix author and remove email
herqles-io/hq-lib
setup.py
setup.py
from setuptools import setup, find_packages setup( name='hq-lib', version='1.0.0', url='https://github.com/herqles-io/hq-lib', include_package_data=True, license='MIT', author='CoverMyMeds', description='Herqles Library', package_dir={'': 'src'}, packages=find_packages('src'), i...
from setuptools import setup, find_packages setup( name='hq-lib', version='1.0.0', url='', include_package_data=True, license='MIT', author='Ryan Belgrave', author_email='rbelgrave@covermymeds.com', description='Herqles Library', package_dir={'': 'src'}, packages=find_packages('...
mit
Python
fdd2e7b201aa51a82e8e742969f065f031b6d35c
add entry_points
ericdill/bluesky,ericdill/bluesky
setup.py
setup.py
import glob import versioneer import setuptools with open('requirements.txt') as f: requirements = f.read().split() setuptools.setup( name='bluesky', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author='danielballan', author_email=None, license="BSD (3-clause)", ...
import glob import versioneer import setuptools with open('requirements.txt') as f: requirements = f.read().split() setuptools.setup( name='bluesky', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), author='danielballan', author_email=None, license="BSD (3-clause)", ...
bsd-3-clause
Python
0d004ad85dcae34906fc06b7f4789276514b50e6
Update setup.py for 1.0 release
pipitone/qbatch,gdevenyi/qbatch
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup # pypi doesn't like markdown # https://github.com/pypa/packaging-problems/issues/46 try: import pypandoc description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): description = '' setup( name='qbatch', version='1.0', d...
#!/usr/bin/env python from setuptools import setup # pypi doesn't like markdown # https://github.com/pypa/packaging-problems/issues/46 try: import pypandoc description = pypandoc.convert('README.md', 'rst') except (IOError, ImportError): description = '' setup( name='qbatch', version='1.0rc2', ...
unlicense
Python
9b28288501cce096430c5e4852991d9862be287d
Bump version
jurismarches/chopper
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup VERSION = '0.1.2' setup( name='tree_extractor', version=VERSION, description="Lib to extract html elements by preserving ancestors and cleaning CSS", author=u'Jurismarchés', author_email='contact@jurismarches.com', url='https://github.com/j...
# -*- coding: utf-8 -*- from setuptools import setup VERSION = '0.1.1' setup( name='tree_extractor', version=VERSION, description="Lib to extract html elements by preserving ancestors and cleaning CSS", author=u'Jurismarchés', author_email='contact@jurismarches.com', url='https://github.com/j...
mit
Python
25e9878c20ae841f9b7b94e5ae5ace5e01879c23
add dependencies to setup.py
mwielgoszewski/doorman,mwielgoszewski/doorman,mwielgoszewski/doorman,mwielgoszewski/doorman
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='doorman', description='an osquery fleet manager', url='https://github.com/mwielgoszewski/doorman', version='0.3', packages=find_packages( exclude=[ 'tests*', ] ), include_package_da...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='doorman', description='an osquery fleet manager', url='https://github.com/mwielgoszewski/doorman', version='0.3', packages=find_packages( exclude=[ 'tests*', ] ), include_package_da...
mit
Python
d5be8ee00a49b909eaf72fe8b748160245c72c14
Use __about__ module for a few more fields
clxcommunications/sdk-xms-python
setup.py
setup.py
# This setup is based on the recommendations from the # https://packaging.python.org/ documentation. from setuptools import setup, find_packages from codecs import open from os import path def read(fname): here = path.abspath(path.dirname(__file__)) return open(path.join(here, fname), encoding = 'utf-8').read...
# This setup is based on the recommendations from the # https://packaging.python.org/ documentation. from setuptools import setup, find_packages from codecs import open from os import path def read(fname): here = path.abspath(path.dirname(__file__)) return open(path.join(here, fname), encoding = 'utf-8').read...
apache-2.0
Python
2f191dfd6ee800be628308d2993e1b1819545f8a
Add example console_script
ddsc/ddsc-incron
setup.py
setup.py
from setuptools import setup version = '0.1dev' long_description = '\n\n'.join([ open('README.rst').read(), open('CREDITS.rst').read(), open('CHANGES.rst').read(), ]) install_requires = [ 'celery', 'setuptools', ], tests_require = [ 'coverage', 'nose', ] setup(name='ddsc-inc...
from setuptools import setup version = '0.1dev' long_description = '\n\n'.join([ open('README.rst').read(), open('CREDITS.rst').read(), open('CHANGES.rst').read(), ]) install_requires = [ 'celery', 'setuptools', ], tests_require = [ 'nose', 'coverage', ] setup(name='ddsc-inc...
mit
Python
b9ccd3fff0de7ac7cd1a6a260bc713f54d518785
Increment version to 1.0.6.
getwarped/powershift-cluster,getwarped/powershift-cluster
setup.py
setup.py
import sys import os from setuptools import setup long_description = open('README.rst').read() classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Pytho...
import sys import os from setuptools import setup long_description = open('README.rst').read() classifiers = [ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Pytho...
bsd-2-clause
Python
12f45ef90edbf053dea905b81d8181ccd70482c4
update version and url
pmuller/ipkg
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='ipkg', version='0.8.0', description='Simple package management', author='Philippe Muller', url='http://ipkg.org', packages=find_packages(), install_requires=('requests>=2.0.0',), entry_points=""" [...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='ipkg', version='0.7.0', description='Simple package management', author='Philippe Muller', url='http://ipkg.io', packages=find_packages(), install_requires=('requests>=2.0.0',), entry_points=""" [c...
mit
Python
96b60a3f830e8d7e9c3bf2794ee74dc7ace446c5
bump version
motmot/imops,motmot/imops
setup.py
setup.py
import sys, os from setuptools import setup, Extension, find_packages from Cython.Build import cythonize from os import path from io import open import numpy # read the contents of README.md this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:...
import sys, os from setuptools import setup, Extension, find_packages from Cython.Build import cythonize from os import path from io import open import numpy # read the contents of README.md this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:...
bsd-3-clause
Python
c1dbc215698dd2c49fee0b59d11b88a601e4b35b
Change version to 1.0.2.
jneves/awsfabrictasks,espenak/awsfabrictasks,espenak/awsfabrictasks,jneves/awsfabrictasks
setup.py
setup.py
from setuptools import setup, find_packages setup(name = 'awsfabrictasks', description = 'Fabric tasks for Amazon Web Services with some extra utilities for Ubuntu.', version = '1.0.2', license = 'BSD', url = 'https://github.com/espenak/awsfabrictasks', author = 'Espen Angell Kristiansen...
from setuptools import setup, find_packages setup(name = 'awsfabrictasks', description = 'Fabric tasks for Amazon Web Services with some extra utilities for Ubuntu.', version = '1.0.1', license = 'BSD', url = 'https://github.com/espenak/awsfabrictasks', author = 'Espen Angell Kristiansen...
bsd-3-clause
Python
724ceba7ef0d4154b635e58b6d92fa99742fada9
Fix the setup.py
jeremi/django-registration
setup.py
setup.py
from distutils.core import setup setup(name='registration', version='0.1', description='User-registration application for Django', author='James Bennett', author_email='james@b-list.org', url='http://code.google.com/p/django-registration/', packages=['registration'], package_d...
from distutils.core import setup setup(name='registration', version='0.1', description='User-registration application for Django', author='James Bennett', author_email='james@b-list.org', url='http://code.google.com/p/django-registration/', packages=['registration'], classifie...
bsd-3-clause
Python
51557e53c82602d61c9653b63eea8dffa5a7357f
add "test" sub-command
red-hat-storage/rhcephcompose,red-hat-storage/rhcephcompose
setup.py
setup.py
import os import re import sys import subprocess readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file)) version = metadata['version'] from set...
import os import re import subprocess readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file)) version = metadata['version'] from setuptools imp...
mit
Python
40248096ade63bf9ad7b5d6c900b0112e7c55791
Add documentation to constructor test.
isaacarvestad/four-in-a-row
test_board_pytest.py
test_board_pytest.py
from board import Board """ Tests that board matrix is correct size and that columns and rows are the correct values when initially constructed. """ def test_constructor(): board = Board(0,0) assert board.boardMatrix.size == 0 assert board.columns == 0 assert board.rows == 0 board = Board(5,5) ...
from board import Board def test_constructor(): board = Board(0,0) assert board.boardMatrix.size == 0 assert board.columns == 0 assert board.rows == 0 board = Board(5,5) assert board.boardMatrix.size == 25 assert board.columns == 5 assert board.rows == 5 """ Tests that one can add pie...
mit
Python
983bdcc48c8feef5e65280e02a83a1f3721bce70
Change version number to 1.4
pemontto/engine-python,prelert/engine-python
setup.py
setup.py
#!/usr/bin/env python ############################################################################ # # # Copyright 2014 Prelert Ltd # # ...
#!/usr/bin/env python ############################################################################ # # # Copyright 2014 Prelert Ltd # # ...
apache-2.0
Python
9e09b426325f723823222d9f31e2ad5d8ffc50ae
Change logging level.
marrow/WebCore,marrow/WebCore
web/core/view.py
web/core/view.py
# encoding: utf-8 """The WebCore view registry. WebCore uses a registry of callables to transform values returned by controllers for use as a response. This translation process is used to support the built-in types (see the `base` extension) and can be extended by your own application to support additional types. Th...
# encoding: utf-8 """The WebCore view registry. WebCore uses a registry of callables to transform values returned by controllers for use as a response. This translation process is used to support the built-in types (see the `base` extension) and can be extended by your own application to support additional types. Th...
mit
Python
792aca51771e209198d4e1c7a7443b73004cfeb0
Bump celery from 4.4.0 to 4.4.1
glidernet/ogn-python,glidernet/ogn-python,glidernet/ogn-python,Meisterschueler/ogn-python,Meisterschueler/ogn-python,glidernet/ogn-python,Meisterschueler/ogn-python,Meisterschueler/ogn-python
setup.py
setup.py
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='ogn-python', versio...
#!/usr/bin/env python3 from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='ogn-python', versio...
agpl-3.0
Python
1a1a9b941bbf1e4c89a361a6e45b2dcf67799922
update to newer upstream releases
ployground/bsdploy,ployground/bsdploy
setup.py
setup.py
from setuptools import setup import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() version = "0.1alpha1" setup( version=version, description="A tool to provision, configure and maintain FreeBSD jails", name="bsdploy", author='Tom Lazar', ...
from setuptools import setup import os here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() version = "0.1alpha1" setup( version=version, description="A tool to provision, configure and maintain FreeBSD jails", name="bsdploy", author='Tom Lazar', ...
bsd-3-clause
Python
64cdb81a7e68ca62844dbd05b00106f683e6a1da
Update version number
coded-by-hand/mass,coded-by-hand/mass
setup.py
setup.py
#!/usr/bin/env python #pandoc -f rst -t markdown README.mkd -o README import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='mass', version='0.1.2', description='Merge and Simplify Scripts: an automated tool for managin...
#!/usr/bin/env python #pandoc -f rst -t markdown README.mkd -o README import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='mass', version='0.1.1', description='Merge and Simplify Scripts: an automated tool for managin...
bsd-2-clause
Python
330f4a6829f39684b7a37961f6f2ee5f692c536d
Add Python 3 to supported languages
dirn/Flask-Simon,dirn/Flask-Simon
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os import sys if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() setup( name='Flask-Simon', version='0.3.0', description='Simple MongoDB Models for Flask', long_description=open('README.rst').read(), ...
#!/usr/bin/env python from setuptools import setup import os import sys if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() setup( name='Flask-Simon', version='0.3.0', description='Simple MongoDB Models for Flask', long_description=open('README.rst').read(), ...
bsd-3-clause
Python
87fb59ba1e15c09f1c651627dcc2b947f07b3522
Add link to GitHub
iffy/ppo
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup( name='ppo', version='0.1.0', description='Parses Pentesting tools output', author='Matt Haggard', author_email='haggardii@gmail.com', url='https://github.com/iffy/ppo', packages=[ 'ppo', 'ppo.test', ], scripts=[ ...
#!/usr/bin/env python from distutils.core import setup setup( name='ppo', version='0.1.0', description='Parses Pentesting tools output', author='Matt Haggard', author_email='haggardii@gmail.com', url='', packages=[ 'ppo', 'ppo.test', ], scripts=[ 'scripts/ppo', ...
apache-2.0
Python
ad4d8366ced601cbe9482b0f22f65c247910e928
add README.rst as a description via setup.py
gopythongo/aptly-api-client
setup.py
setup.py
#!/usr/bin/python # -* encoding: utf-8 *- # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. import os import re from setuptools import setup, find_packages _package_roo...
#!/usr/bin/python # -* encoding: utf-8 *- # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. import re from setuptools import setup, find_packages _package_root = "." _r...
bsd-3-clause
Python
f8dc00f487ba0a9335bf052a4b53c2aff98020cc
Bump version
bureaucratic-labs/yargy
setup.py
setup.py
# coding: utf-8 from __future__ import unicode_literals from sys import version_info from setuptools import setup, find_packages REQUIREMENTS = [ 'pymorphy2==0.8', 'backports.functools-lru-cache==1.3', ] setup( name='yargy', version='0.12.0', description='Tiny rule-based facts extraction package...
# coding: utf-8 from __future__ import unicode_literals from sys import version_info from setuptools import setup, find_packages REQUIREMENTS = [ 'pymorphy2==0.8', 'backports.functools-lru-cache==1.3', ] setup( name='yargy', version='0.11.0', description='Tiny rule-based facts extraction package...
mit
Python
c4b534d8ad634efc2ff5e2200c7f1417294ced25
Update setup a bit
ethan-nelson/osm_diff_tool
setup.py
setup.py
from setuptools import setup setup( name='osm_diff_tool', version='1.0.4', description='Tool for retrieving OpenStreetMap planet diffs' + ' and extracting data.', url='http://github.com/ethan-nelson/osm_diff_tool', author='Ethan Nelson', author_email='git@ethan-nelson.com', ...
from setuptools import setup setup( name = 'osm_diff_tool', version = '1.0.3', description = 'Tool for use with OpenStreetMap planet diffs.', url = 'http://github.com/ethan-nelson/osm_diff_tool', author = 'Ethan Nelson', author_email = 'ethan-nelson@users.noreply.github.com', packages = ['o...
mit
Python
8175fb26877b46021ce137e687f8d69a6a2bb0db
Update author info
yunojuno/django-s3-upload,yunojuno/django-s3-upload,yunojuno/django-s3-upload
setup.py
setup.py
import os from setuptools import setup f = open(os.path.join(os.path.dirname(__file__), 'README.md')) readme = f.read() f.close() setup( name='django-s3-upload', version='0.4.10', description=('Add direct uploads to S3 functionality with a progress bar' ' to file input fields.'), long...
import os from setuptools import setup f = open(os.path.join(os.path.dirname(__file__), 'README.md')) readme = f.read() f.close() setup( name='django-s3-upload', version='0.4.10', description=('Add direct uploads to S3 functionality with a progress bar' ' to file input fields.'), long...
mit
Python
66581c78e4abf9ff94b954ba0500e6f93fda1d35
Add installation requirements for developers
wind-python/windpowerlib
setup.py
setup.py
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.1.2dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oe...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name='windpowerlib', version='0.1.2dev', description='Creating time series of wind power plants.', url='http://github.com/wind-python/windpowerlib', author='oe...
mit
Python
c39a076f6e76062c2598ca865bc169e209d5fcd8
Fix package
pinax/pinax-lms-activities,pinax/pinax-lms-activities
setup.py
setup.py
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Developers", author_email="developers@pinaxproject.c...
import codecs from os import path from setuptools import find_packages, setup def read(*parts): filename = path.join(path.dirname(__file__), *parts) with codecs.open(filename, encoding="utf-8") as fp: return fp.read() setup( author="Pinax Developers", author_email="developers@pinaxproject.c...
mit
Python
aaa9e4bfe156eb2444bd5d9c02575cabe5f0d974
add missing networkx dependency
pyannote/pyannote-algorithms
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 CNRS (Hervé BREDIN - http://herve.niderb.fr) # 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 re...
#!/usr/bin/env python # encoding: utf-8 # The MIT License (MIT) # Copyright (c) 2014 CNRS (Hervé BREDIN - http://herve.niderb.fr) # 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 re...
mit
Python
b5c1c3843cb5be27aab4868cd4435634ed32643f
make the project up to date
adaptive-learning/proso-apps,adaptive-learning/proso-apps,adaptive-learning/proso-apps
setup.py
setup.py
from setuptools import setup import os import proso.release DIR = os.path.dirname(os.path.abspath(__file__)) VERSION = proso.release.VERSION def parse_requirements(filename): """ load requirements from a pip requirements file """ lineiter = (line.strip() for line in open(filename)) return [ line ...
from pip.req import parse_requirements from setuptools import setup import os import proso.release DIR = os.path.dirname(os.path.abspath(__file__)) VERSION = proso.release.VERSION setup( name='proso-apps', version=VERSION, description='General library for applications in PROSO projects', author='Adapt...
mit
Python
631252881f86de741585cfcaa8971a2be76ccb69
Fix url in setup.
warkanum/WiringPi_DHT_Sensor_PyMod,warkanum/WiringPi_DHT_Sensor_PyMod,warkanum/WiringPi_DHT_Sensor_PyMod
setup.py
setup.py
from distutils.core import setup, Extension import platform def platform_correct(plat=platform.platform()): if plat.lower().find('armv6l') > -1: print("Platform: Rasberry Pi\n") return True if plat.lower().find('raspberry_pi') > -1: print("Platform: Rasberry Pi\n") return True ...
from distutils.core import setup, Extension import platform def platform_correct(plat=platform.platform()): if plat.lower().find('armv6l') > -1: print("Platform: Rasberry Pi\n") return True if plat.lower().find('raspberry_pi') > -1: print("Platform: Rasberry Pi\n") return True ...
mit
Python
8fa0169497a4c1474474d7f52192eba2cd332f11
fix deps
otoolep/stormkafkamon,grue/stormkafkamon,vivekrao1985/stormkafkamon,ianawilson/stormkafkamon
setup.py
setup.py
#!/usr/bin/env python import setuptools install_requires = [ 'PrettyTable==0.7.2', 'kazoo==1.00', 'simplejson', 'argparse', 'kafka-python' ] setuptools.setup( name = 'stormkafkamon', version = '0.1.0', license = 'Apache', description = '''Monitor offsets of a storm kafka spout.'''...
#!/usr/bin/env python import setuptools install_requires = [ 'PrettyTable==0.7.2', 'kazoo==1.00', 'simplejson', 'kafka-python' ] setuptools.setup( name = 'stormkafkamon', version = '0.1.0', license = 'Apache', description = '''Monitor offsets of a storm kafka spout.''', author = '...
apache-2.0
Python
8a9a6c05bb496a73fe53e1e9f0059525d16adfd0
make dependency be on latest
cloudify-cosmo/cloudify-dsl-parser-cli,cloudify-cosmo/cloudify-dsl-parser-cli
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
44cfa1f846a7964ca0c76bf257e3431b10c5a98d
Update requirements.
wavexx/gtabview,scls19fr/gtabview
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # long description with latest release notes readme = open('README.rst').read() long_description = readme #news = open('NEWS.rst').read() #long_description = (readme + "\n\nLatest release notes\n====================\n" # + '\n'.join(n...
#!/usr/bin/env python from setuptools import setup, find_packages # long description with latest release notes readme = open('README.rst').read() long_description = readme #news = open('NEWS.rst').read() #long_description = (readme + "\n\nLatest release notes\n====================\n" # + '\n'.join(n...
mit
Python
444d5fe41ad2d961620ae95bf6dea3749a4bf681
Add some Trove classifiers
haavardp/templateman,haavardp/templateman
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open("README") as readme_file: readme_data = readme_file.read() setup( name="templateman", use_scm_version=True, description="Create new files from templates interactively.", long_description=readme_data, author="...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open("README") as readme_file: readme_data = readme_file.read() setup( name="templateman", use_scm_version=True, description="Create new files from templates interactively.", long_description=readme_data, author="...
isc
Python
6eb64ef51e7fe77fc1b7aeba87b39934327d6516
update requests to 1.2.0
eHealthAfrica/rapidsms,catalpainternational/rapidsms,eHealthAfrica/rapidsms,ehealthafrica-ci/rapidsms,lsgunth/rapidsms,lsgunth/rapidsms,catalpainternational/rapidsms,peterayeni/rapidsms,lsgunth/rapidsms,ehealthafrica-ci/rapidsms,eHealthAfrica/rapidsms,catalpainternational/rapidsms,caktus/rapidsms,caktus/rapidsms,caktus...
setup.py
setup.py
#!/usr/bin/env python # vim: ai ts=4 sts=4 et sw=4 import os from setuptools import setup, find_packages def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() exc...
#!/usr/bin/env python # vim: ai ts=4 sts=4 et sw=4 import os from setuptools import setup, find_packages def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() exc...
bsd-3-clause
Python
71b189fca15b597940b3dc486faef9925aafa1b3
Update setup.py for to require typing_extensions
OrganicIrradiation/scholarly
setup.py
setup.py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name='scholarly', version='1.0.3', author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva', author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca', description='Simple ...
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name='scholarly', version='1.0.3', author='Steven A. Cholewiak, Panos Ipeirotis, Victor Silva', author_email='steven@cholewiak.com, panos@stern.nyu.edu, vsilva@ualberta.ca', description='Simple ...
unlicense
Python
dbcb7fd37c8b651dfa51909d15d0429edc84385e
Bump version number to 0.2.0
koreth/pycoolmasternet
setup.py
setup.py
#!/usr/bin/env python3 from codecs import open from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="...
#!/usr/bin/env python3 from codecs import open from os import path from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="...
mit
Python