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
976dd86b833c592d4ec656eb3d42f143bf9e6569
Change ostestr to stestr in comment in setup.py
coreycb/charms.openstack
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand version = "0.0.1.dev1" install_require = [ ] tests_require = [ 'tox >= 2.3.1', ] class Tox(TestCommand): user_options = [('tox-args=', 'a', "Arguments to pass to tox")] ...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand version = "0.0.1.dev1" install_require = [ ] tests_require = [ 'tox >= 2.3.1', ] class Tox(TestCommand): user_options = [('tox-args=', 'a', "Arguments to pass to tox")] ...
apache-2.0
Python
d9c3211def0141754fa05b64e06b99d3d1db0c75
Fix broken line in setip.py
joshua-stone/DerPyBooru
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from setuptools import find_packages import derpibooru setup( name = "DerPyBooru", description = "Python bindings for Derpibooru's API", url = "https://github.com/joshua-stone/DerPyBooru", version = "0.4", author = "Joshua Stone", license = "Simplified B...
#!/usr/bin/env python from setuptools import setup from setuptools import find_packages import derpibooru setup( name = "DerPyBooru", description = "Python bindings for Derpibooru's API" url = "https://github.com/joshua-stone/DerPyBooru", version = "0.4", author = "Joshua Stone", license = "Simplified BS...
bsd-2-clause
Python
cdaf47c96f72c833d107e393e1f2fe2383b69da9
bump version 0.7.3, thanks to @fsw_
luzfcb/django-versioning,luzfcb/django-versioning
setup.py
setup.py
#!/usr/bin/env python # # Copyright (c) 2011-2013 Ivan Zakrevsky # Licensed under the terms of the BSD License (see LICENSE.txt) import os.path from setuptools import setup, find_packages app_name = os.path.basename(os.path.dirname(os.path.abspath(__file__))) setup( name = app_name, version = '0.7.3', pa...
#!/usr/bin/env python # # Copyright (c) 2011-2013 Ivan Zakrevsky # Licensed under the terms of the BSD License (see LICENSE.txt) import os.path from setuptools import setup, find_packages app_name = os.path.basename(os.path.dirname(os.path.abspath(__file__))) setup( name = app_name, version = '0.7.2', pa...
bsd-3-clause
Python
bf3458c005f7c928acbfb429a7439118536415b8
Update requirements
kvesteri/sqlalchemy-json-api
setup.py
setup.py
""" SQLAlchemy-JSON-API ------------------- Fast SQLAlchemy query builder for returning JSON API responses """ from setuptools import setup, find_packages import os import re import sys HERE = os.path.dirname(os.path.abspath(__file__)) PY3 = sys.version_info[0] == 3 def get_version(): filename = os.path.join(HE...
""" SQLAlchemy-JSON-API ------------------- Fast SQLAlchemy query builder for returning JSON API responses """ from setuptools import setup, find_packages import os import re import sys HERE = os.path.dirname(os.path.abspath(__file__)) PY3 = sys.version_info[0] == 3 def get_version(): filename = os.path.join(HE...
bsd-3-clause
Python
ae1e58ace0dea5f195a3f46b8c74a548b97fb2d4
Bump indy-node 1.6.699
sovrin-foundation/sovrin,sovrin-foundation/sovrin,sovrin-foundation/sovrin
setup.py
setup.py
#!/usr/bin/env python import sys import os from setuptools import setup, find_packages, __version__ try: SETUP_DIRNAME = os.path.dirname(__file__) except NameError: # We're probably being frozen, and __file__ triggered this NameError # Work around this SETUP_DIRNAME = os.path.dirname(sys.argv[0]) i...
#!/usr/bin/env python import sys import os from setuptools import setup, find_packages, __version__ try: SETUP_DIRNAME = os.path.dirname(__file__) except NameError: # We're probably being frozen, and __file__ triggered this NameError # Work around this SETUP_DIRNAME = os.path.dirname(sys.argv[0]) i...
apache-2.0
Python
b09bda66f01cf5e2575fb6f404949e9f329850fa
Update metadata
desecho/django-tqdm,desecho/django-tqdm
setup.py
setup.py
import codecs from os.path import abspath, dirname, join from setuptools import find_packages, setup CURRENT_DIR = dirname(abspath(__file__)) def readme(): with codecs.open(join(CURRENT_DIR, "README.rst"), encoding="utf-8") as f: return f.read() def requirements(): with open(join(CURRENT_DIR, "req...
import codecs from os.path import abspath, dirname, join from setuptools import find_packages, setup CURRENT_DIR = dirname(abspath(__file__)) def readme(): with codecs.open(join(CURRENT_DIR, "README.rst"), encoding="utf-8") as f: return f.read() def requirements(): with open(join(CURRENT_DIR, "req...
mit
Python
ae4b42041c4c70e39305b2d30582a4a241b5c38b
update verstion to 0.12.5.dev0
daltonserey/tst,daltonserey/tst
setup.py
setup.py
from setuptools import setup, find_packages import codecs setup(name='tst', version="0.12.5.dev0", description='TST Student Testing', url='http://github.com/daltonserey/tst', author='Dalton Serey', author_email='daltonserey@gmail.com', license='MIT', packages=find_packages(), ...
from setuptools import setup, find_packages import codecs setup(name='tst', version="0.12.4.dev0", description='TST Student Testing', url='http://github.com/daltonserey/tst', author='Dalton Serey', author_email='daltonserey@gmail.com', license='MIT', packages=find_packages(), ...
agpl-3.0
Python
c7cff6eb94469a816411398dcadb23738a4fcdf7
fix for EC2 instance IAM role support
danilop/yas3fs,danilop/yas3fs
setup.py
setup.py
from setuptools import setup, find_packages import sys exec(open('yas3fs/_version.py').read()) requires = ['setuptools>=2.2', 'boto>=2.25.0', 'boto3>=1.6.12'] # Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all # include this as the replacement for optparse. if sys.version_info[:2] < (2, 7): ...
from setuptools import setup, find_packages import sys exec(open('yas3fs/_version.py').read()) requires = ['setuptools>=2.2', 'boto>=2.25.0'] # Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all # include this as the replacement for optparse. if sys.version_info[:2] < (2, 7): requires.appen...
mit
Python
ca8e4b2bfb2a4d16aa98c1c6e7252debc1f9bdb0
Bump asgiref requirement
andrewgodwin/channels,django/channels,andrewgodwin/django-channels
setup.py
setup.py
from setuptools import find_packages, setup from channels import __version__ setup( name='channels', version=__version__, url='http://github.com/django/channels', author='Django Software Foundation', author_email='foundation@djangoproject.com', description="Brings async, event-driven capabiliti...
from setuptools import find_packages, setup from channels import __version__ setup( name='channels', version=__version__, url='http://github.com/django/channels', author='Django Software Foundation', author_email='foundation@djangoproject.com', description="Brings async, event-driven capabiliti...
bsd-3-clause
Python
db48ff60bdb54efd9dbe577b14b0efda6f354fff
increment version to 1.5.1
srob650/pytvmaze
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '1.5.1', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', author_email = 'pytvmaze@gmail.com', license='MIT', cl...
from setuptools import setup, find_packages setup( name = 'pytvmaze', version = '1.5.0', description = 'Python interface to the TV Maze API (www.tvmaze.com)', url = 'https://github.com/srob650/pytvmaze', author = 'Spencer Roberts', author_email = 'pytvmaze@gmail.com', license='MIT', cl...
mit
Python
cb4ec72e745245affbf7ff29d6290ac0b0a9e74f
correct license
okfn-brasil/viralata,okfn-brasil/viralata,okfn-brasil/viralata,okfn-brasil/viralata
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name="viralata", version='0.1', description='Microservice for Authentication: Restlike & Social.', author='Andrés M. R. Martano', author_email='andres@inventati.org', url='https://gitlab.com/ok-br/viralata', packages...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name="viralata", version='0.1', description='Microservice for Authentication: Restlike & Social.', author='Andrés M. R. Martano', author_email='andres@inventati.org', url='https://gitlab.com/ok-br/viralata', packages...
agpl-3.0
Python
fc2975d0249cd5cdd405c133c06740fd98182f29
Update Trove classifiers
alexandermendes/Flask-Z3950,alexandermendes/Flask-Z3950
setup.py
setup.py
# -*- coding: utf8 -*- """ Flask-Z3950 ----------- A Flask plugin that provides Z39.50 integration. """ import os from setuptools import setup, find_packages try: readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() except: readme = "" requirements=[ "Flask>=0.10.1", "lxml>=3.5...
# -*- coding: utf8 -*- """ Flask-Z3950 ----------- A Flask plugin that provides Z39.50 integration. """ import os from setuptools import setup, find_packages try: readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() except: readme = "" requirements=[ "Flask>=0.10.1", "lxml>=3.5...
bsd-3-clause
Python
7e7b37ba27af878d7d96f290ce1ce20c057a71a4
Change author field to reflect new maintainer.
JshWright/django-annoying
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-annoying", version="0.7.9", packages=find_packages(), author="Stavros Korokithakis", author_email="stavros@korokithakis.net", description="This is a django application that tries to eliminate annoying things in the Django framework....
from setuptools import setup, find_packages setup( name="django-annoying", version="0.7.9", packages=find_packages(), author="Anderson", author_email="stavros@korokithakis.net", description="This is a django application that tries to eliminate annoying things in the Django framework.", long_...
bsd-3-clause
Python
4645c058f40d4e70808a89c82db88d0dacb220b2
bump version
hopshadoop/hops-util-py,hopshadoop/hops-util-py
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='hopsutil', version='0.8.4', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hi...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='hopsutil', version='0.8.3', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hi...
apache-2.0
Python
a6382857c8baac3c77f5461aa41bb8a075006ccb
bump version to 0.8.1
simbuerg/benchbuild,simbuerg/benchbuild
setup.py
setup.py
#!/usr/bin/evn python2 from setuptools import setup, find_packages setup(name='pprof', version='0.8.1', packages= find_packages(), author = "Andreas Simbuerger", author_email = "simbuerg@fim.uni-passau.de", description = "This is the experiment driver for the pprof study", license =...
#!/usr/bin/evn python2 from setuptools import setup, find_packages setup(name='pprof', version='0.8', packages= find_packages(), author = "Andreas Simbuerger", author_email = "simbuerg@fim.uni-passau.de", description = "This is the experiment driver for the pprof study", license = "...
mit
Python
3bee26eda36f03c770f9d2f4d229ed909b54d51d
update setup.py ==== update tarball version 0.1 to 0.1.1
Bloodevil/sony_camera_api,mungewell/sony_camera_api,Bloodevil/sony_camera_api
setup.py
setup.py
import os try: from setuptools import setup except ImportError: from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() version = '0.1.1' install_requires = [ ] setup(name='sony-camera-api', version = version, descript...
import os try: from setuptools import setup except ImportError: from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() version = '0.1.1' install_requires = [ ] setup(name='sony-camera-api', version = version, descript...
mit
Python
55d45fdeb36216ea178597d7fa347624a4339206
Read in requirements for setup.py from requirements.txt.
lgunsch/django-vmail
setup.py
setup.py
from os import join, dirname from distutils.core import setup VERSION = '0.2.1' README = open(join(dirname(__file__), 'README.rst')).read() REQUIREMENTS = open(join(dirname(__file__), 'requirements.txt')).readlines() setup( name='django-vmail', version=VERSION, description="Virtual mail administration dj...
import os from distutils.core import setup VERSION = '0.2.1' README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() required = [ 'Django >= 1.5.0', ] setup( name='django-vmail', version=VERSION, description="Virtual mail administration django app", author="Lewis Gunsch", ...
mit
Python
dde625bb12276aa1b0b0775a6535999fd4a1fd96
Use win32gui base for windows build. This will hide the console pop up.
codito/pomito
setup.py
setup.py
"""Setup script for pomito.""" import sys from setuptools import setup from cx_Freeze import setup, Executable from pre_build import build_qt, get_pyqt_install_root # Build qt related resources build_qt() # Setup cx_freeze packaging # pylint: disable=invalid-name base = None includefiles = None if ...
"""Setup script for pomito.""" import sys from setuptools import setup from cx_Freeze import setup, Executable from pre_build import build_qt, get_pyqt_install_root # Build qt related resources build_qt() # Setup cx_freeze packaging # pylint: disable=invalid-name base = None includefiles = None if ...
mit
Python
761087b77133d4aabdcf596aaaa9fdb28a3d1ae0
Add Python version workaround for ReadTheDocs
tdryer/hangups,das7pad/hangups,ddboline/hangups
setup.py
setup.py
from setuptools import setup import os import sys # TODO: Switch to ReadTheDocs YAML config to get a newer Python and fix #855 if sys.version_info < (3, 5, 3) and not os.getenv('READTHEDOCS'): # This is the minimum version which has support for `async def`/`await`/ # `async with` syntax. raise RuntimeErro...
from setuptools import setup import os import sys if sys.version_info < (3, 5, 3): # This is the minimum version which has support for `async def`/`await`/ # `async with` syntax. raise RuntimeError("hangups requires Python 3.5.3+") # Find __version__ without import that requires dependencies to be insta...
mit
Python
eaa8315e21b629729bddb56099031e62d61d754b
Bump py2neo version
andrefsp/neomodel,robinedwards/neomodel,bleib1dj/neomodel,bleib1dj/neomodel,cristigociu/neomodel_dh,wcooley/neomodel,robinedwards/neomodel,fpieper/neomodel,pombredanne/neomodel
setup.py
setup.py
from setuptools import setup, find_packages setup( name='neomodel', version='0.2.0', description='A high level wrapper around py2neo, providing a formal definition for your data model.', author='Robin Edwards', author_email='robin.ge@gmail.com', url='http://github.com/ro...
from setuptools import setup, find_packages setup( name='neomodel', version='0.2.0', description='A high level wrapper around py2neo, providing a formal definition for your data model.', author='Robin Edwards', author_email='robin.ge@gmail.com', url='http://github.com/ro...
mit
Python
10fe1c33e29d509778b4b65c00ec24a52f5d9854
Correct dependencies so it depends on toml.py
jparvela/handlebar
setup.py
setup.py
from setuptools import setup, find_packages setup( name="handlebar.py", version="0.1", author="José Pedro Arvela", author_email="jparvela@gmail.com", description="Debian build system with copy-on-write containers", license="MIT", packages=find_packages(), scripts=['handlebar'], requir...
from setuptools import setup, find_packages setup( name="handlebar.py", version="0.1", author="José Pedro Arvela", author_email="jparvela@gmail.com", description="Debian build system with copy-on-write containers", license="MIT", packages=find_packages(), scripts=['handlebar'], requir...
mit
Python
6fd5643dba69d49c5881de50875cf90204a8f808
fix for long description
hynekcer/django-salesforce,django-salesforce/django-salesforce,django-salesforce/django-salesforce,hynekcer/django-salesforce,django-salesforce/django-salesforce,hynekcer/django-salesforce
setup.py
setup.py
# django-salesforce # # by Phil Christensen # (c) 2012-2013 Freelancers Union (http://www.freelancersunion.org) # See LICENSE.md for details # import os import re # disables creation of .DS_Store files inside tarballs on Mac OS X os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true' os.environ['COPYFILE_DISABLE'] =...
# django-salesforce # # by Phil Christensen # (c) 2012-2013 Freelancers Union (http://www.freelancersunion.org) # See LICENSE.md for details # import os import re # disables creation of .DS_Store files inside tarballs on Mac OS X os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true' os.environ['COPYFILE_DISABLE'] =...
mit
Python
e41f6d18d3a275bc1834f300c7eac19cbf011352
Bump to 0.7.1
hydralabs/pyamf,hydralabs/pyamf,thijstriemstra/pyamf,thijstriemstra/pyamf
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) The PyAMF Project. # See LICENSE.txt for details. # import ordering is important import setupinfo from setuptools import setup, find_packages version = (0, 7, 1) name = "PyAMF" description = "AMF support for Python" long_description = setupinfo.read('README.rst') url = "http:/...
#!/usr/bin/env python # Copyright (c) The PyAMF Project. # See LICENSE.txt for details. # import ordering is important import setupinfo from setuptools import setup, find_packages version = (0, 7, 0) name = "PyAMF" description = "AMF support for Python" long_description = setupinfo.read('README.rst') url = "http:/...
mit
Python
b70cb05d20259a61bf1b4a0bf911bb4a171b1acb
Remove multipart dependency from setup.py
jespino/anillo,niwinz/anillo,niwinz/anillo,hirunatan/anillo,hirunatan/anillo,jespino/anillo
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "anillo", version = "0.1.0", description = "Ring/compojure like nanoframework build on top of werkzeug", long_description = "", keywords = "framework, web, ring, compojure", author = "Jesús ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "anillo", version = "0.1.0", description = "Ring/compojure like nanoframework build on top of werkzeug", long_description = "", keywords = "framework, web, ring, compojure", author = "Jesús ...
bsd-2-clause
Python
526a601afd827dc9b07dd1b3abc56dac1c5ccf07
Enable `python setup.py test`
HubSpot/sanetime
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages VERSION = '4.1.0' setup( name='sanetime', version=VERSION, author='prior', author_email='mprior@hubspot.com', packages=find_packages(), url='https://github.com/HubSpot/sanetime', download_url='https://github.com/HubSpot/sane...
#!/usr/bin/env python from setuptools import setup, find_packages VERSION = '4.1.0' setup( name='sanetime', version=VERSION, author='prior', author_email='mprior@hubspot.com', packages=find_packages(), url='https://github.com/HubSpot/sanetime', download_url='https://github.com/HubSpot/sane...
mit
Python
904dad30ab14d6d79c2013aead1a16382825cf6a
Add dependency on future
mattjj/pybasicbayes
setup.py
setup.py
from distutils.core import setup from Cython.Build import cythonize import numpy as np PYBASICBAYES_VERSION = "0.1.2" # NOTE: cython and moviepy are optional dependencies ext_modules = cythonize('pybasicbayes/**/*.pyx') setup(name='pybasicbayes', version=PYBASICBAYES_VERSION, description="Basic utilities...
from distutils.core import setup from Cython.Build import cythonize import numpy as np PYBASICBAYES_VERSION = "0.1.2" # NOTE: cython and moviepy are optional dependencies ext_modules = cythonize('pybasicbayes/**/*.pyx') setup(name='pybasicbayes', version=PYBASICBAYES_VERSION, description="Basic utilities...
mit
Python
33c5c84fa4a28238a12419c5d31026375d075a3a
Bump version for testing purposes
nkgilley/python-ecobee-api
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() license = """ MIT License Copyright (c) 2017 Nolan Gilley Permission is hereby granted,...
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() license = """ MIT License Copyright (c) 2017 Nolan Gilley Permission is hereby granted,...
mit
Python
276dc1744b1d321ad6d10d4db6aced8ea2f94b78
Package fix in setup.py
Def4l71diot/RPi.GPIO-def
setup.py
setup.py
from distutils.core import setup setup( name='RPi.GPIO-def', packages=['RPi.GPIO', 'RPi.GPIO.definitions', 'RPi.GPIO.definitions.PWM', 'RPi.GPIO.definitions.functions'], version='0.1-alpha', description='Definition library for RPi.GPIO(used for IntelliSense)', author='Lyubomir Rumenov', author_email='lubet...
from distutils.core import setup setup( name='RPi.GPIO-def', packages=['RPi.GPIO'], version='0.1-alpha', description='Definition library for RPi.GPIO(used for IntelliSense)', author='Lyubomir Rumenov', author_email='lubeto_9@mail.bg', url='https://github.com/Def4l71diot/RPi.GPIO-def', download_url='htt...
mit
Python
3a629388fb8c18ce6167149bfd3925f5425d9611
upgrade dependency
clld/clldutils
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages requires = [ 'six', 'python-dateutil', 'configparser>=3.5.0b2', 'tabulate>=0.7.7', ] if sys.version_info.major == 2: requires.append('pathlib2') def read(fname): with open(fname) as fp: return fp.read() ...
# -*- coding: utf-8 -*- import sys from setuptools import setup, find_packages requires = [ 'six', 'python-dateutil', 'configparser>=3.5.0b2', 'tabulate>=0.7.5', ] if sys.version_info.major == 2: requires.append('pathlib2') def read(fname): with open(fname) as fp: return fp.read() ...
apache-2.0
Python
e10611b4338deebb4642ce1d4cae78976642f80d
Update version number
fusionbox/django-backupdb
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages def readme(): with open('README.rst') as f: return f.read() version = '0.4.1' setup(name='django-backupdb', version=version, description='Management commands for backing up and restoring databases in Django.', long_de...
#!/usr/bin/env python from setuptools import setup, find_packages def readme(): with open('README.rst') as f: return f.read() setup(name='django-backupdb', version='0.4', description='Management commands for backing up and restoring databases in Django.', long_description=readme(), ...
bsd-2-clause
Python
69f5d7906301e312fb7327677b074463346e7ffb
Raise aiohttp requirements up to 0.15.2 version
aio-libs/aiocouchdb,ethanfrey/aiocouchdb
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014-2015 Alexander Shorin # All rights reserved. # # This software is licensed as described in the file LICENSE, which # you should have received as part of this distribution. # import imp import os import sys from os.path import join from setuptools import setup, find_packag...
# -*- coding: utf-8 -*- # # Copyright (C) 2014-2015 Alexander Shorin # All rights reserved. # # This software is licensed as described in the file LICENSE, which # you should have received as part of this distribution. # import imp import os import sys from os.path import join from setuptools import setup, find_packag...
bsd-2-clause
Python
b3406677b980656751af9a12ddf2d33ad884fbc1
Update classifiers in setup.py
ArturGaspar/scrapy,umrashrf/scrapy,Ryezhang/scrapy,kmike/scrapy,wujuguang/scrapy,scrapy/scrapy,rolando-contrib/scrapy,umrashrf/scrapy,ssteo/scrapy,elacuesta/scrapy,pawelmhm/scrapy,eLRuLL/scrapy,shaform/scrapy,rolando-contrib/scrapy,starrify/scrapy,eLRuLL/scrapy,Parlin-Galanodel/scrapy,taito/scrapy,foromer4/scrapy,scrap...
setup.py
setup.py
from os.path import dirname, join from setuptools import setup, find_packages with open(join(dirname(__file__), 'scrapy/VERSION'), 'rb') as f: version = f.read().decode('ascii').strip() setup( name='Scrapy', version=version, url='http://scrapy.org', description='A high-level Web Crawling and Web...
from os.path import dirname, join from setuptools import setup, find_packages with open(join(dirname(__file__), 'scrapy/VERSION'), 'rb') as f: version = f.read().decode('ascii').strip() setup( name='Scrapy', version=version, url='http://scrapy.org', description='A high-level Web Crawling and Web...
bsd-3-clause
Python
6be1b2396c5394f673660d34b703636c2f8fc5de
Bump verison of kafka-python to 1.3.2
zmap/ztag
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) setup( name='ztag', version='1.0.0', description='utility for transforming and annotating JSON scan data with additional metdata', license="Apache License, Version 2.0", long_description=open(os.path.join...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) setup( name='ztag', version='1.0.0', description='utility for transforming and annotating JSON scan data with additional metdata', license="Apache License, Version 2.0", long_description=open(os.path.join...
apache-2.0
Python
a9a73169b35145bcb7ab034542a6115279f8ba8e
bump minor version
AmitMY/pose-format,AmitMY/pose-format,AmitMY/pose-format
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md', 'r') as fh: long_description = fh.read() packages = [p for p in find_packages() if "third_party" not in p] print(packages) setup( name='pose_format', packages=packages, version='0.1.0', description='Library for view...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages with open('README.md', 'r') as fh: long_description = fh.read() packages = [p for p in find_packages() if "third_party" not in p] print(packages) setup( name='pose_format', packages=packages, version='0.0.15', description='Library for vie...
mit
Python
e96253ea17a83b31bf3d2e5a118c2180174d1105
Add python 3.8 classifier to setup.py [skip ci]
madmaze/pytesseract
setup.py
setup.py
import os from setuptools import setup README_PATH = 'README.rst' LONG_DESC = '' if os.path.exists(README_PATH): with open(README_PATH) as readme: LONG_DESC = readme.read() INSTALL_REQUIRES = ['Pillow'] PACKAGE_NAME = 'pytesseract' PACKAGE_DIR = 'src' setup( name=PACKAGE_NAME, version='0.3.3', ...
import os from setuptools import setup README_PATH = 'README.rst' LONG_DESC = '' if os.path.exists(README_PATH): with open(README_PATH) as readme: LONG_DESC = readme.read() INSTALL_REQUIRES = ['Pillow'] PACKAGE_NAME = 'pytesseract' PACKAGE_DIR = 'src' setup( name=PACKAGE_NAME, version='0.3.3', ...
apache-2.0
Python
4b8bc382d670fc24208d0725f1bb0f57b5712a57
Fix bare except.
thomasw/djproxy
setup.py
setup.py
from setuptools import setup, find_packages from djproxy import __version__, __author__ # Multiprocessing is needed to execute `python setup.py tests` without any # errors in some installations. try: import multiprocessing multiprocessing # resolve unused import pep8 violation by 'using' it except ImportErro...
from setuptools import setup, find_packages from djproxy import __version__, __author__ # Multiprocessing is needed to execute `python setup.py tests` without any # errors in some installations. try: import multiprocessing multiprocessing # resolve unused import pep8 violation by 'using' it except: pass ...
mit
Python
57bf4075303726544d34f46a8e0f6613a6575c77
bump to 0.4.3
bandoche/PyPinkSign
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup PROJECT = 'pypinksign' VERSION = '0.4.3' URL = 'http://github.com/bandoche/PyPinkSign' AUTHOR = 'Sangjun Jung' AUTHOR_EMAIL = 'spamcoffee+pypinksign@gmail.com' DESC = "Basic NPKI module." LONG_DESC = "See https://github.com/bandoche/PyPinkSig...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup PROJECT = 'pypinksign' VERSION = '0.4.2' URL = 'http://github.com/bandoche/PyPinkSign' AUTHOR = 'Sangjun Jung' AUTHOR_EMAIL = 'spamcoffee+pypinksign@gmail.com' DESC = "Basic NPKI module." LONG_DESC = "See https://github.com/bandoche/PyPinkSig...
mit
Python
58d44cc2577e7ac7767888471d58a2520275739e
update version number to 0.2.11
Duke-GCB/DukeDSClient,Duke-GCB/DukeDSClient
setup.py
setup.py
from setuptools import setup setup(name='DukeDSClient', version='0.2.11', 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.2.10', 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
2e18e3cd1a510dc9af3a4debc244006997baa1c9
Add PyPI description and such
gosquadron/squadron,gosquadron/squadron
setup.py
setup.py
from setuptools.command.test import test as TestCommand import sys import os class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): #import here, cause outside the eggs aren't load...
from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): #import here, cause outside the eggs aren't loaded ...
mit
Python
5b88e43376213388ac54fc4e68ffc9d205abc28d
rename readme
XertroV/opreturn-ninja,XertroV/opreturn-ninja,XertroV/opreturn-ninja
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.md')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() requires = [ 'pyramid', 'pyramid_chameleon', 'pyramid_de...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.txt')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() requires = [ 'pyramid', 'pyramid_chameleon', 'pyramid_d...
mit
Python
6d9910c5b32d14cf5bd6c2148e859c3662ab264c
bump couchforms version
SEL-Columbia/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,SEL-Columbia/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,puttarajubr/commcare-hq,dimagi/commcare-hq,puttarajubr/commcare-hq,puttarajubr/commcare-hq,pu...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='casexml', version='1.0.0', description='Dimagi CaseXML for Django', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', install_requires=[ 'celery==3.0.15', 'jsonobject-c...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='casexml', version='1.0.0', description='Dimagi CaseXML for Django', author='Dimagi', author_email='dev@dimagi.com', url='http://www.dimagi.com/', install_requires=[ 'celery==3.0.15', 'jsonobject-c...
bsd-3-clause
Python
c50cb0f6855b15a1f86f8ab224b311e9e697e4b6
Check Python version
sfischer13/python-arpa,sfischer13/python-arpa
setup.py
setup.py
#!/usr/bin/env python3 import sys try: from setuptools import setup except ImportError: from distutils.core import setup if not ((3, 4) <= sys.version_info < (4, 0)): print('ERROR: Python 3.4+ is required!') sys.exit(1) with open('README.md') as readme_file: readme = readme_file.read() with ope...
#!/usr/bin/env python3 try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.md') as readme_file: readme = readme_file.read() with open('HISTORY.md') as history_file: history = history_file.read() setup( author='Stefan Fischer', author_email...
mit
Python
0ab918fd52fe08611b4c93d1a81fb7f382b442ad
remove dateutil dependency
marcinn/springy
setup.py
setup.py
# -*- coding: utf-8 -*- import sys from os.path import join, dirname from setuptools import setup, find_packages install_requires = [ 'django>=1.7', 'elasticsearch-dsl>=0.0.9', ] tests_require = [] # use external unittest for 2.6 if sys.version_info[:2] == (2, 6): tests_require.append('unittest2') setu...
# -*- coding: utf-8 -*- import sys from os.path import join, dirname from setuptools import setup, find_packages install_requires = [ 'django>=1.7', 'elasticsearch-dsl>=0.0.9', 'python-dateutil', ] tests_require = [] # use external unittest for 2.6 if sys.version_info[:2] == (2, 6): tests_require.ap...
bsd-2-clause
Python
87c5ab52ce937d8c63bce0c47a914b1b433dea0a
remove setuptools requirement
motmot/pycamiface
setup.py
setup.py
from distutils.core import setup import os, sys import setupext package_data={} ext_modules = [] build_ctypes_based_wrappers = True include_shlibs_for_ctypes = False if sys.platform.startswith('linux'): include_shlibs_for_ctypes = False ctypes_backends = ['mega'] if build_ctypes_based_wrappers: if include_...
from setuptools import setup, find_packages from setuptools.dist import Distribution import os, sys import setupext package_data={} ext_modules = [] build_ctypes_based_wrappers = True include_shlibs_for_ctypes = False if sys.platform.startswith('linux'): include_shlibs_for_ctypes = False ctypes_backends = ['me...
bsd-3-clause
Python
6ded59b420552ae13af7120c0f60af407012cf28
update setup.py
ClimateImpactLab/DataFS
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'fs==0.5.4' ] test_requirements = [ 'pip==9.0.1', 'bumpversion=...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'fs==0.5.4' ] test_requirements = [ 'pip==9.0.1', 'bumpversion=...
mit
Python
2df443b730584a3a79220de36fea2fe68d114e7a
Fix setup.py
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 = '13.0.0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha", "License :: OS...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '13.0.0', version = '12.0.5', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "Development Status :: 2 - Pre-Alpha"...
agpl-3.0
Python
3cbf3e2652014cecac0c20ec1c47e20fdfb67305
Fix setup.py requirements.
Tehnix/cred-server
setup.py
setup.py
""" Setup file for the cred-server package. """ from setuptools import setup import sys # The package only works with python >=3.0 if sys.version_info < (3,): print("I'm only for 3, please upgrade") sys.exit(1) version = '0.2.8' setup( name='cred-server', version=version, author='Tehnix', aut...
""" Setup file for the cred-server package. """ from setuptools import setup import sys # The package only works with python >=3.0 if sys.version_info < (3,): print("I'm only for 3, please upgrade") sys.exit(1) version = '0.2.7' setup( name='cred-server', version=version, author='Tehnix', aut...
bsd-3-clause
Python
d08693e132457a318a76beba1843988b043fc0ca
add flake8 to dependencies
adaptive-learning/proso-apps,adaptive-learning/proso-apps,adaptive-learning/proso-apps
setup.py
setup.py
from setuptools import setup, find_packages import proso.release import os VERSION = proso.release.VERSION setup( name='proso-apps', version=VERSION, description='General library for applications in PROSO projects', author='Adaptive Learning Group', author_email='al@fi.muni.cz', namespace_pack...
from setuptools import setup, find_packages import proso.release import os VERSION = proso.release.VERSION setup( name='proso-apps', version=VERSION, description='General library for applications in PROSO projects', author='Adaptive Learning Group', author_email='al@fi.muni.cz', namespace_pack...
mit
Python
a2e19f79bbd791bb2c1f2399e43c113756033219
bump version
mapzen/mapbox-vector-tile,yohanboniface/mapbox-vector-tile
setup.py
setup.py
import io from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file # with codecs_open('README.md', encoding='utf-8') as f: # long_description = f.read() with io.open("README.rst") as readme_file: long_description = readme_file.read() ...
import io from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file # with codecs_open('README.md', encoding='utf-8') as f: # long_description = f.read() with io.open("README.rst") as readme_file: long_description = readme_file.read() ...
mit
Python
5480edbd93566f3b8f57f6b6c5e0f0a7abaeb0cc
Update setup.py to only require packages needed
mdmedley/cache_me_outside
setup.py
setup.py
from setuptools import setup from sys import version_info requirements = [] # If Python version is lower than 3.3 require backports.functools_lru_cache if version_info < (3, 2): requirements = ['backports.functools_lru_cache'] __version__ = '0.1' description = 'A package that wraps functools_lru_cache with a fu...
from setuptools import setup __version__ = '0.1' description = 'A package that wraps functools_lru_cache with a fun name' setup( name='cache_me_outside', version=__version__, description=description, long_description=description, author='Marcus Medley', author_email='mdmeds@gmail.com', l...
mit
Python
0c470222a131b3fe8b9a7483dd039c513b29e978
Add entry point for monitor runner
justincely/cos_monitoring
setup.py
setup.py
from setuptools import setup, find_packages setup( name='cosmo', version='1.0.1', description='Monitors for HST/COS', keywords=['astronomy'], classifiers=[ 'Programming Language :: Python :: 3', 'License :: BSD-3 :: Association of Universities for Research in Astronomy', 'Op...
from setuptools import setup, find_packages setup( name='cosmo', version='1.0.0', description='Monitors for HST/COS', keywords=['astronomy'], classifiers=[ 'Programming Language :: Python :: 3', 'License :: BSD-3 :: Association of Universities for Research in Astronomy', 'Op...
bsd-3-clause
Python
43e634620f2f7844285c0ae6ac2624ae71bd5a0a
Update version number
prelert/engine-python
setup.py
setup.py
#!/usr/bin/env python ############################################################################ # # # Copyright 2014-2016 Prelert Ltd # # ...
#!/usr/bin/env python ############################################################################ # # # Copyright 2014 Prelert Ltd # # ...
apache-2.0
Python
345773b4ab1025ce64318014ebdbe2ec52998482
Drop requirement for urllib3 - it is part of requests.
datagovuk/ckanext-archiver,DanePubliczneGovPl/ckanext-archiver,ckan/ckanext-archiver,datagovuk/ckanext-archiver,datagovuk/ckanext-archiver,ckan/ckanext-archiver,ckan/ckanext-archiver,DanePubliczneGovPl/ckanext-archiver,DanePubliczneGovPl/ckanext-archiver
setup.py
setup.py
from setuptools import setup, find_packages setup( name='ckanext-archiver', version='0.1', packages=find_packages(), install_requires=[ 'celery==2.4.2', 'kombu==2.1.3', 'kombu-sqlalchemy==1.1.0', 'SQLAlchemy>=0.6.6', 'requests==1.1.0', 'messytables>=0.1.4...
from setuptools import setup, find_packages setup( name='ckanext-archiver', version='0.1', packages=find_packages(), install_requires=[ 'celery==2.4.2', 'kombu==2.1.3', 'kombu-sqlalchemy==1.1.0', 'SQLAlchemy>=0.6.6', 'requests==1.1.0', 'messytables>=0.1.4...
mit
Python
fd6f3b4a6efc99137540595b1499ee13fbfe64e6
Add geoviews.data package to installation
ioam/geoviews
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup setup_args = {} install_requires = ['param>=1.5.1', 'numpy>=1.0', 'holoviews>=1.8.0', 'cartopy>=0.14.2'] extras_require={} # Notebook dependencies of IPython ...
#!/usr/bin/env python import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup setup_args = {} install_requires = ['param>=1.5.1', 'numpy>=1.0', 'holoviews>=1.8.0', 'cartopy>=0.14.2'] extras_require={} # Notebook dependencies of IPython ...
bsd-3-clause
Python
01564fb1e5727134d2ceb4b3ab79e013af1b4807
Revert "Add django-filter (and django) requirement to setup.py."
justanr/django-rest-framework,wangpanjun/django-rest-framework,gregmuellegger/django-rest-framework,zeldalink0515/django-rest-framework,elim/django-rest-framework,tigeraniya/django-rest-framework,agconti/django-rest-framework,nryoung/django-rest-framework,brandoncazander/django-rest-framework,tcroiset/django-rest-frame...
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import re import os import sys def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = open(os.path.join(package, '__init__.py')).read() return re.match("__version__ = ['...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup import re import os import sys def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = open(os.path.join(package, '__init__.py')).read() return re.match("__version__ = ['...
bsd-2-clause
Python
b262a66c025a58a3132ca6f9b199cc7414dfbc85
Add lib env.
douban/PyCharlockHolmes,douban/PyCharlockHolmes,douban/PyCharlockHolmes,douban/PyCharlockHolmes,douban/PyCharlockHolmes
setup.py
setup.py
from distutils.core import setup, Extension import os # Use environment variable ICUI18N to set your own icui18n configuration. icui18n_path = os.getenv("ICUI18N") if icui18n_path is None: if os.name == 'nt': program_files = os.getenv("ProgramFiles") icui18n_path = '%s\icui18n' % program_files ...
from distutils.core import setup, Extension import os # os.system('cd ./lib; ./build.sh') ch_exts = [ os.path.join('src', name) for name in os.listdir('src') if name.endswith('.c') ] # ch_module = Extension('charlockholmes', ch_exts, include_dirs=['./lib/magic/include'], library_dirs=['./lib/magic/lib'], lib...
bsd-3-clause
Python
deaba1b58b62bbf0b5abea959994758ff14342f6
Remove debug prints
moertle/pyaas,moertle/pyaas
setup.py
setup.py
#!/usr/bin/env python import os import zipfile from distutils.core import setup zf = zipfile.ZipFile(os.path.join('pyaas', 'skel.zip'), 'w') for base,directories,filenames in os.walk('skel'): for filename in filenames: path = os.path.join(base, filename) zf.write(path, path[5:]) zf.close() set...
#!/usr/bin/env python import os import zipfile from distutils.core import setup zf = zipfile.ZipFile(os.path.join('pyaas', 'skel.zip'), 'w') for base,directories,filenames in os.walk('skel'): for filename in filenames: path = os.path.join(base, filename) print path zf.write(path, path[5:...
mit
Python
a9dd877b86aff34d3d26028a5f0d9888a273692f
Bump up the version
lanius/tinyik
setup.py
setup.py
"""Tinyik is a simple and naive inverse kinematics solver.""" from setuptools import setup, find_packages from codecs import open with open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='tinyik', version='0.1.0', description='A tiny inverse kinematics solver', lo...
"""Tinyik is a simple and naive inverse kinematics solver.""" from setuptools import setup, find_packages from codecs import open with open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name='tinyik', version='0.0.1', description='A tiny inverse kinematics solver', lo...
mit
Python
2edc8d725d2ff9614ba08bbcc15f5e247ecfd2cb
Update setup.py
agramian/table-printer
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='table_printer', version='0.1.2', description='Python Table Printer', author='Abtin Gramian', author_email='abtin.gramian@gmail.com', url='https://github.com/agramian/table-printer', packages=['table_printer'], ...
#!/usr/bin/env python from distutils.core import setup setup(name='table_printer', version='0.1.2', description='Python Table Printer', long_description=open('README.md', 'r').read(), author='Abtin Gramian', author_email='abtin.gramian@gmail.com', url='https://github.com/agramian/t...
mit
Python
9e201b219091a338264c7e393db4ae4f0200db1d
Use portable shebang in setup.py.
theatlantic/django-south,theatlantic/django-south
setup.py
setup.py
#!/usr/bin/env python # Use setuptools if we can try: from setuptools.core import setup except ImportError: from distutils.core import setup from south import __version__ setup( name='South', version=__version__, description='South: Migrations for Django', long_description='South is an intelli...
#!/usr/bin/python # Use setuptools if we can try: from setuptools.core import setup except ImportError: from distutils.core import setup from south import __version__ setup( name='South', version=__version__, description='South: Migrations for Django', long_description='South is an intelligent...
apache-2.0
Python
0b6874b801c162d5f72c8ed04bde42c5b35a097a
Bump version
codilime/cloudify-system-tests,codilime/cloudify-system-tests,cloudify-cosmo/cloudify-system-tests,codilime/cloudify-system-tests,cloudify-cosmo/cloudify-system-tests
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
0237ef26f99eb3bd4cf4a00b2d04af8070a7fd3e
Update setup.py classifiers and version to prepare for the pypi/badges update
vintasoftware/django-templated-email,vintasoftware/django-templated-email
setup.py
setup.py
import os import sys from setuptools import setup, find_packages DESCRIPTION = "A Django oriented templated / transaction email abstraction" VERSION = '2.4.0' LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass requirements = [ 'django-render-block>=0.5', 'six>=1', ]...
import os import sys from setuptools import setup, find_packages DESCRIPTION = "A Django oriented templated / transaction email abstraction" VERSION = '2.3.0' LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass requirements = [ 'django-render-block>=0.5', 'six>=1', ]...
mit
Python
730c78b659995e64c02397281d7f977686ea081e
Fix python_requires syntax
oneklc/dimod,oneklc/dimod
setup.py
setup.py
from __future__ import absolute_import import sys import os from setuptools import setup # add __version__, __author__, __authoremail__, __description__ to this namespace _PY2 = sys.version_info.major == 2 my_loc = os.path.dirname(os.path.abspath(__file__)) os.chdir(my_loc) if _PY2: execfile(os.path.join(".", "d...
from __future__ import absolute_import import sys import os from setuptools import setup # add __version__, __author__, __authoremail__, __description__ to this namespace _PY2 = sys.version_info.major == 2 my_loc = os.path.dirname(os.path.abspath(__file__)) os.chdir(my_loc) if _PY2: execfile(os.path.join(".", "d...
apache-2.0
Python
00fa01de8632f6f518eeea9f2593d26eb0fabdcc
add pypy and python 3.6 to package classifiers
tony/tmuxp
setup.py
setup.py
"""tmuxp lives at <https://github.com/tony/tmuxp>.""" import sys from setuptools import setup from setuptools.command.test import test as TestCommand about = {} with open("tmuxp/__about__.py") as fp: exec(fp.read(), about) with open('requirements/base.txt') as f: install_reqs = [line for line in f.read().spl...
"""tmuxp lives at <https://github.com/tony/tmuxp>.""" import sys from setuptools import setup from setuptools.command.test import test as TestCommand about = {} with open("tmuxp/__about__.py") as fp: exec(fp.read(), about) with open('requirements/base.txt') as f: install_reqs = [line for line in f.read().spl...
bsd-3-clause
Python
26325a09238d34553729c3a0c11d22dbd1a880b7
Increment version number
materials-data-facility/forge
setup.py
setup.py
from setuptools import setup setup( name='mdf_forge', version='0.6.6', packages=['mdf_forge'], description='Materials Data Facility python package', long_description=("Forge is the Materials Data Facility Python package" " to interface and leverage the MDF Data Discovery servi...
from setuptools import setup setup( name='mdf_forge', version='0.6.5', packages=['mdf_forge'], description='Materials Data Facility python package', long_description=("Forge is the Materials Data Facility Python package" " to interface and leverage the MDF Data Discovery servi...
apache-2.0
Python
2ade9c525db7fc66008936a1b92e40510309e040
bump version
praekelt/django-moderator
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-moderator', version='0.1.4', description='Django Bayesian inference based comment moderation app.', long_description=open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Praekelt...
from setuptools import setup, find_packages setup( name='django-moderator', version='0.1.3', description='Django Bayesian inference based comment moderation app.', long_description=open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(), author='Praekelt...
bsd-3-clause
Python
cab632f24515cbf18010dd813597122ab6b60aea
edit setup.py
juknsh/django-dict-response
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup with open('README.rst') as f: long_description = f.read() setup( author='juknsh', author_email='juknsh@gmail.com', classifiers=[ 'Framework :: Django', 'Intended Audience :: Developers', 'Intende...
#!/usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup( author='juknsh', author_email='juknsh@gmail.com', classifiers=[ 'Framework :: Django', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Operating System...
mit
Python
5e33eb8d2dc2e786201370cd2387cee8ad4ad151
Bump version
nicholasbishop/pyglsl_parser,nicholasbishop/pyglsl_parser
setup.py
setup.py
#! /usr/bin/env python # pylint: disable=invalid-name,missing-docstring from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize extensions = [ Extension( name='pyglsl_parser.parser', sources=['pyglsl_parser/parser.pyx', 'glsl-par...
#! /usr/bin/env python # pylint: disable=invalid-name,missing-docstring from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize extensions = [ Extension( name='pyglsl_parser.parser', sources=['pyglsl_parser/parser.pyx', 'glsl-par...
mit
Python
e3be728696e6b0526623e2c983128c2f24f47f2f
Add lammps_interface as dependency to setup.py
kbsezginel/tee_mof,kbsezginel/tee_mof
setup.py
setup.py
from setuptools import setup, find_packages setup( name="thermof", version="0.1.2", description="Thermoelectrically entangled MOFs", author="Kutay B. Sezginel", author_email="kbs37@pitt.edu", install_requires=['pytest', 'pyyaml', 'matplotlib', ...
from setuptools import setup, find_packages with open('requirements.txt') as f: requirements = f.read().splitlines() setup( name="thermof", version="0.1", description="Thermoelectrically entangled MOFs", author="Kutay B. Sezginel", author_email="kbs37@pitt.edu", install_requires=requiremen...
mit
Python
659b87157cf6a92a9239412ced615817c372ae73
Revert changes to setup.py for data_dir
cournape/numscons,cournape/numscons,cournape/numscons
setup.py
setup.py
#!/usr/bin/env python import os import shutil from distutils.dir_util import copy_tree from distutils.core import setup from distutils.dist import Distribution as old_Distribution from distutils.command.install import install as old_install from distutils.command.install_data import install_data as old_install_data fr...
#!/usr/bin/env python import os import shutil from distutils.core import setup # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. if os.path.exists('MANIFEST'): os.remove('MANIFEST') # Main setup method import release as R setup(name ...
bsd-3-clause
Python
b6fe9b3c68cf47c8990bc07af8715f700467156b
fix httpretty version number (somehow got junky)
cameronbracken/ulmo,ocefpaf/ulmo,nathanhilbert/ulmo,nathanhilbert/ulmo,ocefpaf/ulmo,cameronbracken/ulmo
setup.py
setup.py
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): # import her...
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): # import her...
bsd-3-clause
Python
b5749613c3fd478a9e54dfda1145d6ac70a554e3
Bump version.
DistilledLtd/polly
setup.py
setup.py
from distutils.core import setup setup( name='polly', packages=['polly'], version='0.5.3', description='A library for parsing and validating rel-alternate-hreflang entries on a page.', author='Tom Anthony', author_email='tom.anthony@distilled.net', url='https://github.com/DistilledLtd/polly'...
from distutils.core import setup setup( name='polly', packages=['polly'], version='0.5.2', description='A library for parsing and validating rel-alternate-hreflang entries on a page.', author='Tom Anthony', author_email='tom.anthony@distilled.net', url='https://github.com/DistilledLtd/polly'...
apache-2.0
Python
0562cb1412e817a6759cc012e986941328712f39
Fix version
cupy/cupy,cupy/cupy,cupy/cupy,cupy/cupy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import cupy_setup_build setup_requires = [] install_requires = [ 'filelock', 'nose', 'numpy>=1.9.0', 'protobuf', 'six>=1.9.0', ] ext_modules = cupy_setup_build.get_ext_modules() setup( name='cupy', version='0.0.1', description='CuP...
#!/usr/bin/env python from setuptools import setup import cupy_setup_build setup_requires = [] install_requires = [ 'filelock', 'nose', 'numpy>=1.9.0', 'protobuf', 'six>=1.9.0', ] ext_modules = cupy_setup_build.get_ext_modules() setup( name='cupy', version='1.0.0', description=('Cu...
mit
Python
0b324258a4872d1038ca5ef3b10d7978b6c03a22
Set `zip_safe` to false so that we can install pygrow from source.
codedcolors/pygrow,grow/grow,codedcolors/pygrow,denmojo/pygrow,denmojo/pygrow,grow/grow,codedcolors/pygrow,grow/pygrow,denmojo/pygrow,grow/grow,grow/pygrow,grow/pygrow,denmojo/pygrow,grow/grow
setup.py
setup.py
from pip import req import pip from setuptools import find_packages from setuptools import setup _install_requirements = req.parse_requirements( 'requirements.txt', session=pip.download.PipSession()) setup( name='grow', version=open('grow/VERSION').read().strip(), description=( 'Develop eve...
from pip import req import pip from setuptools import find_packages from setuptools import setup _install_requirements = req.parse_requirements( 'requirements.txt', session=pip.download.PipSession()) setup( name='grow', version=open('grow/VERSION').read().strip(), description=( 'Develop eve...
mit
Python
be7bc1243b97c50135dc606ec8280992a6746e19
bump version to 0.0.8
stitchfix/splits
setup.py
setup.py
from distutils.core import setup setup( name='splits', version='0.0.8', author='Thomas Millar, Jeff Magnusson', author_email='millar.thomas@gmail.com, magnussj@gmail.com', license='MIT', description='A library for dealing with splittable files', packages = ['splits'], long_description='...
from distutils.core import setup setup( name='splits', version='0.0.7', author='Thomas Millar, Jeff Magnusson', author_email='millar.thomas@gmail.com, magnussj@gmail.com', license='MIT', description='A library for dealing with splittable files', packages = ['splits'], long_description='...
mit
Python
3aefa22167c5195237dec27edb075422c22202bd
Bump version for release.
ucla/PushHubCore
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
bsd-3-clause
Python
6846568a575e0c7e25d38b3461af8eaed84b7abb
tag release v0.5
ProgramFan/bentoo
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="bento", description="Benchmarking tools", version="0.5", packages=find_packages(), scripts=["scripts/generator.py", "scripts/runner.py", "scripts/collector.py", "scripts/analyser.py"], pa...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="bento", description="Benchmarking tools", version="0.1", packages=find_packages(), scripts=["scripts/generator.py", "scripts/runner.py", "scripts/collector.py", "scripts/analyser.py"], pa...
mit
Python
4268600af388599bae5bb34c0d873ce4a812c5d2
fix typo in url to github repo
pagepart/ucsv
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 # # Based on template from https://github.com/dabapps/django-reusable-app from __future__ import print_function from setuptools import setup import re import os import sys name = 'ucsv' package = 'ucsv' description = 'Unicode-aware replacement for Python-2.x CSV module' url ...
#!/usr/bin/env python # encoding: utf-8 # # Based on template from https://github.com/dabapps/django-reusable-app from __future__ import print_function from setuptools import setup import re import os import sys name = 'ucsv' package = 'ucsv' description = 'Unicode-aware replacement for Python-2.x CSV module' url ...
mit
Python
eebdc589164cf49aad43aadf178400d1e619980e
Update setup script
jleclanche/python-bna,Adys/python-bna
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os.path from distutils.core import setup README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() setup( name = "python-bna", py_modules = ["bna"], author = "Jerome Leclanche", author_email = "adys.wh@gmail.com", url = "http://github.com/Ad...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os.path from distutils.core import setup README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() setup( name = "python-bna", packages = ["bna"], author = "Jerome Leclanche", author_email = "adys.wh@gmail.com", url = "http://github.com/Adys...
mit
Python
54456e42e2c9d90095b34a30a16940584ebdb29c
Add python module memcache dependency
elsid/mosecom-air,elsid/mosecom-air,elsid/mosecom-air
setup.py
setup.py
#!/usr/bin/env python #coding: utf-8 from setuptools import setup, find_packages from os.path import join, dirname setup( name='mosecom_air', version='1.2', description='Web service dedicated to air pollution in Moscow.', long_description=open('README.md').read(), author='elsid', author_email=...
#!/usr/bin/env python #coding: utf-8 from setuptools import setup, find_packages from os.path import join, dirname setup( name='mosecom_air', version='1.2', description='Web service dedicated to air pollution in Moscow.', long_description=open('README.md').read(), author='elsid', author_email=...
mit
Python
b86cb5edfbe4655ff10f3e5cb74b36a9718257f1
remove setuptools dependency
motmot/libcamiface,motmot/libcamiface,motmot/libcamiface,motmot/libcamiface
setup.py
setup.py
from distutils.core import setup, Extension setup(name='_pynet', version='0.0.1', ext_modules=[Extension(name='_pynet', sources=['src/_pynetmodule.c'], )], )
from setuptools import setup, Extension setup(name='_pynet', version='0.0.1', ext_modules=[Extension(name='_pynet', sources=['src/_pynetmodule.c'], )], )
bsd-2-clause
Python
c8bd85837d12176f7b8f5172ef83533654b22719
Fix setup.py
fmoo/pyupp
setup.py
setup.py
from setuptools import setup version = '0.1' setup( name='pyupp', version=version, description="Read and write unity player preferences data.", long_description='', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved ...
from setuptools import setup version = '0.1' setup( name='pyupp', version=version, description="Read and write unity player preferences data.", long_description='', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved ...
apache-2.0
Python
40ad9573a8786a9efb74793c3578f1736a0737ea
install sample data files
jklynch/mr-fitty,jklynch/mr-fitty
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import os import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import relpath from os.path import splitext from setuptools import f...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import os import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import relpath from os.path import splitext from setuptools import f...
mit
Python
a4fdb2650b63613c00b1a6482c013845d5d97528
update entry point in setup.py
rtluckie/seria
setup.py
setup.py
#!/usr/bin/env python from __future__ import with_statement from setuptools import setup import sys 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.in...
#!/usr/bin/env python from __future__ import with_statement from setuptools import setup import sys 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.in...
mit
Python
64432a3d24d94f35f5446e57cb85404daee06aa6
Bump version to 0.4.0.
alburnum/alburnum-maas-client,blakerouse/python-libmaas
setup.py
setup.py
"""Setuptools installer for python-libmaas.""" from setuptools import ( find_packages, setup, ) setup( name='python-libmaas', author='MAAS Developers', author_email='maas-devel@lists.launchpad.net', url='https://github.com/maas/python-libmaas', version="0.4.0", classifiers=[ '...
"""Setuptools installer for python-libmaas.""" from setuptools import ( find_packages, setup, ) setup( name='python-libmaas', author='MAAS Developers', author_email='maas-devel@lists.launchpad.net', url='https://github.com/maas/python-libmaas', version="0.3.1", classifiers=[ '...
agpl-3.0
Python
47695494936a37b0c4b757ac7ba356c88665164a
Update Python version classifiers in setup metadata
nocarryr/python-dispatch
setup.py
setup.py
import sys from setuptools import setup, find_packages setup( name = "python-dispatch", version = "v0.1.2", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Lightweight Event Handling", url='https://github.com/nocarryr/python-dispatch', license='MIT', ...
import sys from setuptools import setup, find_packages setup( name = "python-dispatch", version = "v0.1.2", author = "Matthew Reid", author_email = "matt@nomadic-recording.com", description = "Lightweight Event Handling", url='https://github.com/nocarryr/python-dispatch', license='MIT', ...
mit
Python
04ec49a2af3cbb319481b76c00a09d032f2408c6
bump version
AltSchool/dynamic-rest,AltSchool/dynamic-rest
setup.py
setup.py
from setuptools import find_packages, setup NAME = 'dynamic-rest' DESCRIPTION = 'Adds Dynamic API support to Django REST Framework.' URL = 'http://github.com/AltSchool/dynamic-rest' VERSION = '1.6.2' SCRIPTS = ['manage.py'] setup( description=DESCRIPTION, include_package_data=True, dependency_links=open('...
from setuptools import find_packages, setup NAME = 'dynamic-rest' DESCRIPTION = 'Adds Dynamic API support to Django REST Framework.' URL = 'http://github.com/AltSchool/dynamic-rest' VERSION = '1.6.1' SCRIPTS = ['manage.py'] setup( description=DESCRIPTION, include_package_data=True, dependency_links=open('...
mit
Python
37b19ed5a025bedf5dc148e969533f0e58ef1287
Update mongo-orchestration and requests-aws-sign (#13)
mongodb-labs/elastic-doc-manager
setup.py
setup.py
try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup import sys test_suite = "tests" tests_require = ["mongo-orchestration>=0.6.7,<1.0", "requests>=2.5.1"] if sys.version_info[:2] == (2, 6): # Need unittest2 to run...
try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup import sys test_suite = "tests" tests_require = ["mongo-orchestration >= 0.2, < 0.4", "requests >= 2.5.1"] if sys.version_info[:2] == (2, 6): # Need unittest2 to...
apache-2.0
Python
229c5be9e0ad67c7cdea8c5404efff157d996372
Update to 2.9.0.0 and use equivalent version of redis-py
yossigo/mockredis,matejkloska/mockredis,locationlabs/mockredis,path/mockredis
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # Match releases to redis-py versions __version__ = '2.9.0.0' # Jenkins will replace __build__ with a unique value. __build__ = '' setup(name='mockredispy', version=__version__ + __build__, description='Mock for redis-py', url='http...
#!/usr/bin/env python from setuptools import setup, find_packages # Match releases to redis-py versions __version__ = '2.8.0.4' # Jenkins will replace __build__ with a unique value. __build__ = '' setup(name='mockredispy', version=__version__ + __build__, description='Mock for redis-py', url='http...
apache-2.0
Python
becebca7125d6737e3e4e723557f233b7f16feb5
bump version
SUNET/eduid-common
setup.py
setup.py
from setuptools import setup, find_packages version = '0.3.7' requires = [ 'six >= 1.11.0', 'setuptools >= 2.2', 'eduid-userdb >= 0.4.0b19', ] # Flavours webapp_requires = [ 'Flask>=0.12.2,<0.13', 'pysaml2 >= 4.6.1', # version sync with dashboard to avoid pip catastrophes 'redis >= 2.10.5',...
from setuptools import setup, find_packages version = '0.3.6' requires = [ 'six >= 1.11.0', 'setuptools >= 2.2', 'eduid-userdb >= 0.4.0b19', ] # Flavours webapp_requires = [ 'Flask>=0.12.2,<0.13', 'pysaml2 >= 4.6.1', # version sync with dashboard to avoid pip catastrophes 'redis >= 2.10.5',...
bsd-3-clause
Python
46bc00055f04b3ff688d3f091ff02ffa194afbe8
Cut 0.9.6
bitprophet/spec,simudream/spec,frol/spec
setup.py
setup.py
from setuptools import setup, find_packages setup( name='spec', version="0.9.6", description='Specification-style output for nose', author='Jeff Forcier', author_email='jeff@bitprophet.org', url='https://github.com/bitprophet/spec', license='MIT', packages=find_packages(), install_r...
from setuptools import setup, find_packages setup( name='spec', version="0.9.5", description='Specification-style output for nose', author='Jeff Forcier', author_email='jeff@bitprophet.org', url='https://github.com/bitprophet/spec', license='MIT', packages=find_packages(), install_r...
mit
Python
bc533463fffd4bbf18a4a9adbf0f5aa73a4f3344
Bump version number.
KayEss/django-pubsubpull,KayEss/django-pubsubpull,KayEss/django-pubsubpull
setup.py
setup.py
import os from setuptools import setup import sys def read(fname1, fname2): if os.path.exists(fname1): fname = fname1 else: fname = fname2 return open(os.path.join(os.path.dirname(__file__), fname)).read() extra = {} if sys.version_info >= (3,): extra['use_2to3'] = True setup( nam...
import os from setuptools import setup import sys def read(fname1, fname2): if os.path.exists(fname1): fname = fname1 else: fname = fname2 return open(os.path.join(os.path.dirname(__file__), fname)).read() extra = {} if sys.version_info >= (3,): extra['use_2to3'] = True setup( nam...
mit
Python
3fafa122d45f3e5577a8f72ff14e51feb915b402
update setup.py for PyPI
John-Lin/ryu,openvapour/ryu,shinpeimuraoka/ryu,Zouyiran/ryu,ntts-clo/mld-ryu,zangree/ryu,gopchandani/ryu,umkcdcrg01/ryu_openflow,alanquillin/ryu,pichuang/ryu,diogommartins/ryu,zyq001/ryu,darjus-amzn/ryu,ysywh/ryu,zangree/ryu,jazzmes/ryu,zangree/ryu,OpenState-SDN/ryu,TakeshiTseng/ryu,TakeshiTseng/ryu,zyq001/ryu,evanscot...
setup.py
setup.py
# Copyright (C) 2011 Nippon Telegraph and Telephone Corporation. # Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> # # 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://...
# Copyright (C) 2011 Nippon Telegraph and Telephone Corporation. # Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> # # 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://...
apache-2.0
Python
311c3ed90f97d795a4464546c96c7b2ca1dfd865
Update to dev3
joeirimpan/shop,joeirimpan/shop,joeirimpan/shop
setup.py
setup.py
from setuptools import setup, find_packages setup( name='Fulfil-Shop', version='0.1dev3', packages=find_packages(), license='BSD', include_package_data=True, zip_safe=False, long_description=open('README.rst').read(), install_requires=[ 'Flask', 'Flask-WTF', 'Fla...
from setuptools import setup, find_packages setup( name='Fulfil-Shop', version='0.1dev2', packages=find_packages(), license='BSD', include_package_data=True, zip_safe=False, long_description=open('README.rst').read(), install_requires=[ 'Flask', 'Flask-WTF', 'Fla...
bsd-3-clause
Python
9bcdc0e37a7f151df3df26fcac99849fe0f995c4
Remove tests_require in setup.py.
wayward710/django-oidc-provider,Sjord/django-oidc-provider,django-py/django-openid-provider,torreco/django-oidc-provider,torreco/django-oidc-provider,juanifioren/django-oidc-provider,bunnyinc/django-oidc-provider,ByteInternet/django-oidc-provider,ByteInternet/django-oidc-provider,wojtek-fliposports/django-oidc-provider...
setup.py
setup.py
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-oidc-provider', version='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-oidc-provider', version='0....
mit
Python
9b9ab30531dec61f65bbd9a89e920700ab1a46d8
update deps hdlConvertorAst>=0.6 pycocotb>=1.0 pyDigitalWaveTools>=1.0
Nic30/HWToolkit
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- from os import path from setuptools import setup, find_packages this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() setup(name="hwt", version="3.6", d...
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- from os import path from setuptools import setup, find_packages this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() setup(name="hwt", version="3.6", d...
mit
Python
b8151718973541cbcc43bf5d9603c03b419e41ab
Fix man page generation
systemd/mkosi,systemd/mkosi
setup.py
setup.py
#!/usr/bin/python3 # SPDX-License-Identifier: LGPL-2.1+ from setuptools import setup, Command class BuildManpage(Command): description = ('builds the manpage') user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): self.spawn(...
#!/usr/bin/python3 # SPDX-License-Identifier: LGPL-2.1+ from setuptools import setup, Command class BuildManpage(Command): description = ('builds the manpage') user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): self.spawn(...
lgpl-2.1
Python
a5073b1830e30b2d996d3b0ebfbb3931fe39a77a
bump version
tomotaka/day-nextprev
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='daynextprev', version='0.0.4', description='calculate next/prev day from y/m/d input', author='Tomotaka Ito', author_email='tomotaka.ito@gmail.com', url='https://github.com/tomotaka/day-nextprev', packages=find...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='daynextprev', version='0.0.3', description='calculate next/prev day from y/m/d input', author='Tomotaka Ito', author_email='tomotaka.ito@gmail.com', url='https://github.com/tomotaka/day-nextprev', packages=find...
mit
Python
b1bfbb6858111cb530a6d492edb9b810960beb3d
Update dependencies
mistalaba/djangocms-blog,vnavascues/djangocms-blog,sephii/djangocms-blog,motleytech/djangocms-blog,nephila/djangocms-blog,mistalaba/djangocms-blog,EnglishConnection/djangocms-blog,jedie/djangocms-blog,creimers/djangocms-blog,skirsdeda/djangocms-blog,ImaginaryLandscape/djangocms-blog,creimers/djangocms-blog,dapeng0802/d...
setup.py
setup.py
# -*- coding: utf-8 -*- #!/usr/bin/env python import os import sys import djangocms_blog try: from setuptools import setup except ImportError: from distutils.core import setup version = djangocms_blog.__version__ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') print("You pro...
# -*- coding: utf-8 -*- #!/usr/bin/env python import os import sys import djangocms_blog try: from setuptools import setup except ImportError: from distutils.core import setup version = djangocms_blog.__version__ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') print("You pro...
bsd-3-clause
Python
e16d89019ceb77998975429dea2d1c9c9f594f4b
Fix to work with python setup.py install
vimalloc/flask-jwt-extended
setup.py
setup.py
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='0.0.1', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
""" Flask-JWT-Extended ------------------- Flask-Login provides jwt endpoint protection for Flask. """ from setuptools import setup setup(name='Flask-JWT-Extended', version='0.0.1', url='https://github.com/vimalloc/flask-jwt-extended', license='MIT', author='Landon Gilbert-Bland', author_...
mit
Python