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
e72a726ba2fcbfe24fc6777a8905c1b7ed9c7dbf
test requirements
omtinez/rltools
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core 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 = [ ] test_...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core 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 = [ # TO...
mit
Python
04a31c02c8186505e6e211e76903e5f1b62b3f90
Change version number (v2.2 -> v2.2.1)
montag451/pytun,montag451/pytun
setup.py
setup.py
from distutils.core import setup, Extension setup(name='python-pytun', author='montag451', author_email='montag451 at laposte.net', maintainer='montag451', maintainer_email='montag451 at laposte.net', url='https://github.com/montag451/pytun', description='Linux TUN/TAP wrapper for P...
from distutils.core import setup, Extension setup(name='python-pytun', author='montag451', author_email='montag451 at laposte.net', maintainer='montag451', maintainer_email='montag451 at laposte.net', url='https://github.com/montag451/pytun', description='Linux TUN/TAP wrapper for P...
mit
Python
d5313af83b8dc95677be16c88072b652743505fd
Bump version.
pozytywnie/django-facebook-auth,pozytywnie/django-facebook-auth
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup def read(name): from os import path return open(path.join(path.dirname(__file__), name)).read() setup( name='django-facebook-auth', version='3.8.6', description="Authorisation app for Facebook API.", long_description=read("README.rst"), u...
#!/usr/bin/env python from setuptools import setup def read(name): from os import path return open(path.join(path.dirname(__file__), name)).read() setup( name='django-facebook-auth', version='3.8.5', description="Authorisation app for Facebook API.", long_description=read("README.rst"), u...
mit
Python
738af339a921a6ceca8c2243f06e026d0b0349c9
Change author info.
Jarn/jarn.viewdoc
setup.py
setup.py
from setuptools import setup, find_packages version = '1.5' setup(name='jarn.viewdoc', version=version, description='Preview Python package documentation', long_description=open('README.txt').read() + '\n' + open('CHANGES.txt').read(), classifiers=[ 'Developmen...
from setuptools import setup, find_packages version = '1.5' setup(name='jarn.viewdoc', version=version, description='Preview Python package documentation', long_description=open('README.txt').read() + '\n' + open('CHANGES.txt').read(), classifiers=[ 'Developmen...
bsd-2-clause
Python
18bc6f7bb71bc454ec69877058f647c9126334c4
Bump to version 0.17.0
nerevu/prometheus-api,nerevu/prometheus-api,nerevu/prometheus-api
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages with open('requirements.txt') as file: requirements = file.read().splitlines() config = { 'name': 'prometheus-api', 'description': 'RESTful API for prometheus, a global asset allocation tool', ...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages with open('requirements.txt') as file: requirements = file.read().splitlines() config = { 'name': 'prometheus-api', 'description': 'RESTful API for prometheus, a global asset allocation tool', ...
mit
Python
1d92fee8c7e848648e423d343e4731a986c786de
Bump version to 0.1.1 for pypi
roverdotcom/nexus,roverdotcom/nexus,disqus/nexus,roverdotcom/nexus,blueprinthealth/nexus,disqus/nexus,brilliant-org/nexus,Raekkeri/nexus,YPlan/nexus,graingert/nexus,brilliant-org/nexus,blueprinthealth/nexus,brilliant-org/nexus,graingert/nexus,YPlan/nexus,disqus/nexus,Raekkeri/nexus,blueprinthealth/nexus,graingert/nexus...
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages from setuptools.command.test import test except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test class mytest(test): ...
#!/usr/bin/env python try: from setuptools import setup, find_packages from setuptools.command.test import test except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test class mytest(test): ...
apache-2.0
Python
4b6808fd5f762dfa38663f72efa62383f5522ec0
Add "service" as a keyword to setup.py
fedora-infra/fedimg,fedora-infra/fedimg
setup.py
setup.py
#!/bin/env python # -*- coding: utf8 -*- from setuptools import setup setup( name='fedimg', version='0.1.0', description='Service to automatically upload built Fedora images' ' to internal and external cloud providers.', classifiers=[ "Programming Language :: Python :: 2", ...
#!/bin/env python # -*- coding: utf8 -*- from setuptools import setup setup( name='fedimg', version='0.1.0', description='Service to automatically upload built Fedora images' ' to internal and external cloud providers.', classifiers=[ "Programming Language :: Python :: 2", ...
agpl-3.0
Python
0f4ee2c4f1e503bfbc36630be0a4a905ec3777a2
Edit pip description.
alunegov/AtmelStudioToNinja
setup.py
setup.py
"""setup.py: setuptools control.""" from setuptools import setup PROJECT_NAME = 'asninja' setup( name=PROJECT_NAME, version="1.2", packages=[ PROJECT_NAME, PROJECT_NAME + '.toolchains' ], entry_points={ "console_scripts": ['{0} = {0}.{0}:main'.format(PROJECT_NAME)] }, ...
"""setup.py: setuptools control.""" from setuptools import setup PROJECT_NAME = 'asninja' setup( name=PROJECT_NAME, version="1.2", packages=[ PROJECT_NAME, PROJECT_NAME + '.toolchains' ], entry_points={ "console_scripts": ['{0} = {0}.{0}:main'.format(PROJECT_NAME)] }, ...
mit
Python
50d073bd7cf769686efc63e42cb75512952b25ed
Fix package description
ankostis/smmap,gitpython-developers/smmap
setup.py
setup.py
#!/usr/bin/env python import os import codecs try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import smmap if os.path.exists("README.md"): long_description = codecs.open('README.md...
#!/usr/bin/env python import os import codecs try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages import smmap if os.path.exists("README.md"): long_description = codecs.open('README.md...
bsd-3-clause
Python
2564af20cd7058fcb5618c9513e627449ae1a98b
Include the .config files under repobuddy/tests/configs.
Tuxdude/repobuddy,Tuxdude/repobuddy
setup.py
setup.py
# # Copyright (C) 2012 Ash (Tuxdude) <tuxdude.github@gmail.com> # # This file is part of repobuddy. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 3 of the # ...
# # Copyright (C) 2012 Ash (Tuxdude) <tuxdude.github@gmail.com> # # This file is part of repobuddy. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 3 of the # ...
apache-2.0
Python
6b04762430c470693bca9177b28deb75b9b2e974
Add package keywords
amateja/pytest-flask
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ pytest-flask ~~~~~~~~~~~~ A collection of py.test fixtures to test Flask applications. :copyright: (c) by Vital Kudzelka """ from setuptools import setup from setuptools import find_packages version = "0.3.0" def get_file(filename): """Returns ...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ pytest-flask ~~~~~~~~~~~~ A collection of py.test fixtures to test Flask applications. :copyright: (c) by Vital Kudzelka """ from setuptools import setup from setuptools import find_packages version = "0.3.0" def get_file(filename): """Returns ...
mit
Python
fc7f94c4e29560621fac248656294f32a198e6af
Remove trailing comma
vivangkumar/uberpy
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="uberpy", version="1.0", author="Vivan Kumar", author_email="vivangkumar@gmail.com", description="A pure python wrapper for the Uber API.", license="MIT"...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="uberpy", version="1.0", author="Vivan Kumar", author_email="vivangkumar@gmail.com", description="A pure python wrapper for the Uber API.", license="MIT"...
mit
Python
04ff7f221837c98093cd23eef6bca8461cc3405f
disable long description until can make it py3 compatible.
CumulusNetworks/NetworkDocopt
setup.py
setup.py
# pylint: disable=c0111 from _gitversion import get_version try: from setuptools import setup except ImportError: import ez_setup ez_setup.use_setuptools() from setuptools import setup import sys with open('README.rst') as f: readme_content = f.read().strip() def install_requires(): _install_r...
# pylint: disable=c0111 from _gitversion import get_version try: from setuptools import setup except ImportError: import ez_setup ez_setup.use_setuptools() from setuptools import setup import sys with open('README.rst') as f: readme_content = f.read().strip() def install_requires(): _install_r...
mit
Python
a610ff6ac5bb42030fc19ba18ba971cb8a3fb86c
bump to 0.1.0
csira/wallace,csira/wallace
setup.py
setup.py
from setuptools import find_packages, setup long_desc = '''\ Wallace is a wrapper for the Postgres, Redis, and Mongo database adapters. It focuses on connection utilities and table-level abstractions but offers a mini-ORM built around consistent attribute type declarations across backends. ''' if __name__ == '__mai...
from setuptools import find_packages, setup long_desc = '''\ Wallace is a wrapper for the Postgres, Redis, and Mongo database adapters. It focuses on connection utilities and table-level abstractions but offers a mini-ORM built around consistent attribute type declarations across backends. ''' if __name__ == '__mai...
bsd-3-clause
Python
535c9a80021e6924cabff60f35ac9d8d15d1e6cc
Fix email address
cocoatomo/pygments-dmdl
setup.py
setup.py
# -*- coding: utf-8 -*- """ Copyright 2016 cocoatomo Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
# -*- coding: utf-8 -*- """ Copyright 2016 cocoatomo Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
apache-2.0
Python
e0850937a787ce77a2aff1d3abd54ee0aa8e9e38
Bump version.
jarcoal/django-loginas,intellisense/django-loginas,topletal/django-loginas,topletal/django-loginas,stochastic-technologies/django-loginas,skorokithakis/django-loginas,stochastic-technologies/django-loginas,skorokithakis/django-loginas,jarcoal/django-loginas,intellisense/django-loginas
setup.py
setup.py
#!/usr/bin/env python import sys assert sys.version >= '2.5', "Requires Python v2.5 or above." from distutils.core import setup from setuptools import find_packages setup( name="django-loginas", version="0.1.1", author="Stochastic Technologies", author_email="info@stochastictechnologies.com", url=...
#!/usr/bin/env python import sys assert sys.version >= '2.5', "Requires Python v2.5 or above." from distutils.core import setup from setuptools import find_packages setup( name="django-loginas", version="0.1", author="Stochastic Technologies", author_email="info@stochastictechnologies.com", url="h...
bsd-3-clause
Python
167095e7731e4092b466623c28d4e5f1d8006118
Bump version to 2.0
wbolster/mysql-latin1-codec
setup.py
setup.py
import os from setuptools import setup def here(*paths): return os.path.join(os.path.dirname(__file__), *paths) setup( name='mysql-latin1-codec', description='Python string codec for MySQL\'s latin1 encoding', long_description=open(here('README.rst')).read(), version="2.0", py_modules=['mys...
import os from setuptools import setup def here(*paths): return os.path.join(os.path.dirname(__file__), *paths) setup( name='mysql-latin1-codec', description='Python string codec for MySQL\'s latin1 encoding', long_description=open(here('README.rst')).read(), version="1.0", py_modules=['mys...
bsd-3-clause
Python
5ca43f26c886c0d6e559180e587867d84ea634f4
Bump version to 0.2.0
wikilinks/sift,wikilinks/sift
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '0.2.0' __pkg_name__ = 'textsift' setup( name = __pkg_name__, version = __version__, description = 'Text modelling framework', author='Andrew Chisholm', packages = find_packages(), license = 'MIT', url = 'https://github.com/wikilink...
from setuptools import setup, find_packages __version__ = '0.1.0' __pkg_name__ = 'sift' setup( name = __pkg_name__, version = __version__, description = 'Text modelling framework', author='Andrew Chisholm', packages = find_packages(), license = 'MIT', url = 'https://github.com/wikilinks/si...
mit
Python
242924a8dbe1e227bd2d21cb744cc73670324d32
Bump version
taynaud/python-louvain
setup.py
setup.py
from setuptools import setup setup( name="python-louvain", version="0.7", author="Thomas Aynaud", author_email="taynaud@gmail.com", description="Louvain algorithm for community detection", license="BSD", url="https://github.com/taynaud/python-louvain", classifiers=[ "Programming...
from setuptools import setup setup( name="python-louvain", version="0.6", author="Thomas Aynaud", author_email="taynaud@gmail.com", description="Louvain algorithm for community detection", license="BSD", url="https://github.com/taynaud/python-louvain", classifiers=[ "Programming...
bsd-3-clause
Python
346eaa0db512fbbbb2357f08ec717fc0717ed7fd
update setup.py version number
rollbar/rollbar-agent,rollbar/rollbar-agent
setup.py
setup.py
import os.path from setuptools import Command, find_packages, setup HERE = os.path.abspath(os.path.dirname(__file__)) README_PATH = os.path.join(HERE, 'README.rst') try: README = open(README_PATH).read() except IOError: README = '' setup( name='rollbar-agent', data_files=[('', ['rollbar-agent', 'roll...
import os.path from setuptools import Command, find_packages, setup HERE = os.path.abspath(os.path.dirname(__file__)) README_PATH = os.path.join(HERE, 'README.rst') try: README = open(README_PATH).read() except IOError: README = '' setup( name='rollbar-agent', data_files=[('', ['rollbar-agent', 'roll...
mit
Python
d41e0d9aec0c68735b70596f67c31a1effdad999
update version
Evfro/polara
setup.py
setup.py
import os from setuptools import setup _packages = ["polara", "polara/recommender", "polara/evaluation", "polara/datasets", "polara/lib", "polara/tools", "polara/recommender/coldstart", "polara/recommender/hybrid", "polara/...
import os from setuptools import setup _packages = ["polara", "polara/recommender", "polara/evaluation", "polara/datasets", "polara/lib", "polara/tools", "polara/recommender/coldstart", "polara/recommender/hybrid", "polara/...
mit
Python
6ab083eede68946f4a87d24732cd82be09734d52
Update the long_description with README.rst
madmaze/pytesseract
setup.py
setup.py
import os from setuptools import setup longDesc = "" if os.path.exists("README.rst"): longDesc = open("README.rst").read().strip() setup( name = "pytesseract", version = "0.1.6", author = "Samuel Hoffstaetter", author_email="", maintainer = "Matthias Lee", maintainer_email = "pytesseract@mad...
import os from setuptools import setup longDesc = "" if os.path.exists("README.md"): longDesc = open("README.md").read().strip() setup( name = "pytesseract", version = "0.1.6", author = "Samuel Hoffstaetter", author_email="", maintainer = "Matthias Lee", maintainer_email = "pytesseract@madma...
apache-2.0
Python
1ba7e00ac7ef7f22aed22833940d3666d7584deb
Add generic Python 3 trove classifier
TangledWeb/tangled.sqlalchemy
setup.py
setup.py
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1a3.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', download_url='https://github.com/TangledWeb/tangled.sqlalchemy/tags', author='W...
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1a3.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', download_url='https://github.com/TangledWeb/tangled.sqlalchemy/tags', author='W...
mit
Python
260ae7806df9f10891b8e59bda9d5e551ea878db
change misaka url
qingfeng/mikoto
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup(name='mikoto', version='0.0.1', keywords=('markdown', 'Douban'), description='better Markdown Render', license='New BSD', url='https://github.com/qingfeng/mikoto', author='qingfeng', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup(name='mikoto', version='0.0.1', keywords=('markdown', 'Douban'), description='better Markdown Render', license='New BSD', url='https://github.com/qingfeng/mikoto', author='qingfeng', ...
bsd-3-clause
Python
b076cf29166e2c51577a8ca4015f005379cf9e31
Increment version.
chevah/pocket-lint,chevah/pocket-lint
setup.py
setup.py
from distutils.core import setup setup( name="pocketlint", description="Pocket-lint a composite linter and style checker.", version="0.5.13", maintainer="Curtis C. Hovey", maintainer_email="sinzui.is@verizon.net", url="https://launchpad.net/pocket-lint", packages=[ 'pocketlint', 'po...
from distutils.core import setup setup( name="pocketlint", description="Pocket-lint a composite linter and style checker.", version="0.5.12", maintainer="Curtis C. Hovey", maintainer_email="sinzui.is@verizon.net", url="https://launchpad.net/pocket-lint", packages=[ 'pocketlint', 'po...
mit
Python
99c4f1a9922b7ec388178fb7ce57626d18848090
bump version
markovianhq/bonspy
setup.py
setup.py
# -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='bonspy', version='1.2.3', description='Library that converts bidding trees to the AppNexus Bonsai language.', author='Alexander Volkmann, Georg Walther', author_emai...
# -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='bonspy', version='1.2.2', description='Library that converts bidding trees to the AppNexus Bonsai language.', author='Alexander Volkmann, Georg Walther', author_emai...
bsd-3-clause
Python
54c7f6323e4da87eb61b10490c6fc13a5516b936
Change version
blancltd/django-glitter,blancltd/django-glitter,developersociety/django-glitter,developersociety/django-glitter,developersociety/django-glitter,blancltd/django-glitter
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup install_requires = [ 'Django>=1.8,<1.9', 'django-mptt>=0.7,<0.8', 'django-mptt-admin>=0.3,<0.4', 'sorl-thumbnail>=12.2', ] setup( name='django-glitter', version='0.1.1', description='Glitter for Django', long_descripti...
#!/usr/bin/env python from setuptools import find_packages, setup install_requires = [ 'Django>=1.8,<1.9', 'django-mptt>=0.7,<0.8', 'django-mptt-admin>=0.3,<0.4', 'sorl-thumbnail>=12.2', ] setup( name='django-glitter', version='0.1', description='Glitter for Django', long_description...
bsd-3-clause
Python
75cb3c334de96a758a76bcf3902c14d862474454
Rename to knxip
usul27/pknx,usul27/pknx
setup.py
setup.py
from setuptools import setup setup(name='knxip', version='0.2', description='A native Python KNX/IPNet implementation', url='http://github.com/usul27/pknx', author='Daniel Matuschek', author_email='daniel@hifiberry.com', license='MIT', packages=['knxip'], zip_safe=False)...
from setuptools import setup setup(name='knxip', version='0.2', description='A native Python KNX/IPNet implementation', url='http://github.com/usul27/pknx', author='Daniel Matuschek', author_email='daniel@hifiberry.com', license='MIT', packages=['pknx'], zip_safe=False)
mit
Python
e205ce4d7f1105dff1e7fdb4e22df0d4aafd3dd1
bump version 0.2.2
EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi,EBI-Metagenomics/emgapi
setup.py
setup.py
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "0.2.2" install_requirements = [] with open(_requirements) as f: ...
import sys import os from setuptools import setup, find_packages _base = os.path.dirname(os.path.abspath(__file__)) _requirements = os.path.join(_base, 'requirements.txt') _requirements_test = os.path.join(_base, 'requirements-test.txt') version = "0.2.1" install_requirements = [] with open(_requirements) as f: ...
apache-2.0
Python
12d9c9ff1622ce698cc62679acec2b2a23e46127
support continue record from mic
peitaosu/Diplomatist
MicRecord/MicRecord.py
MicRecord/MicRecord.py
import wave import pyaudio def record_sounds(output_file="record.wav", time=0): _chunk = 1024 _format = pyaudio.paInt16 _channels = 2 _rate = 44100 audio = pyaudio.PyAudio() stream = audio.open(format=_format, channels=_channels, rate=_rate, ...
import wave, pyaudio def record_sounds(output_file="record.wav", time=0): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 2 RATE = 44100 if time is not 0: audio = pyaudio.PyAudio() stream = audio.open(format=FORMAT, channels=CHANNELS, ...
mit
Python
5a6038cd2ce76a94ac60963b2697fd3cdaeac7c4
adjust versions in setup.py
openego/ego.io,openego/ego.io
setup.py
setup.py
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='egoio', author='NEXT ENERGY, Reiner Lemoine Institut gGmbH, ZNES', author_email='', description='ego input/output repository', version='0.0.2', url='https://github.com/openego/ego.io', pa...
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='egoio', author='NEXT ENERGY, Reiner Lemoine Institut gGmbH, ZNES', author_email='', description='ego input/output repository', version='0.0.2', url='https://github.com/openego/ego.io', pa...
agpl-3.0
Python
9c688fa1c5825c35cfbdded44cc77f7d42a97ccb
use good english
suenkler/PostTLS,suenkler/PostTLS
setup.py
setup.py
import os from setuptools import find_packages, 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="posttls", version="1...
import os from setuptools import find_packages, 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="posttls", version="1...
agpl-3.0
Python
a84159df875f6a07300deb8f98224f92e0578445
Increment version number now that 0.1.5 release out.
open-forcefield-group/openforcefield,open-forcefield-group/openforcefield,openforcefield/openff-toolkit,open-forcefield-group/openforcefield,openforcefield/openff-toolkit
setup.py
setup.py
import os from os.path import relpath, join from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def find_package_data(data_root, package_root): files = [] for root, dirnames, filenames in os.walk(data_root): for fn in filenames: ...
import os from os.path import relpath, join from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def find_package_data(data_root, package_root): files = [] for root, dirnames, filenames in os.walk(data_root): for fn in filenames: ...
mit
Python
83f7da532f6d36a5629a45985e1bd7801bcea23d
Reformat setup.py with black
3YOURMIND/django-migration-linter
setup.py
setup.py
import ast import re from os import path from setuptools import setup, find_packages PROJECT_DIR = path.abspath(path.dirname(__file__)) def get_version(): constants = path.join(PROJECT_DIR, "django_migration_linter", "constants.py") _version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)") with ope...
import ast import re from os import path from setuptools import setup, find_packages PROJECT_DIR = path.abspath(path.dirname(__file__)) def get_version(): constants = path.join(PROJECT_DIR, "django_migration_linter", "constants.py") _version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)") with ope...
apache-2.0
Python
84dc430625bbc6549eb7a25cc72a8747dc31b079
bump to 0.4
opencivicdata/python-opencivicdata,opencivicdata/python-opencivicdata-django,rshorey/python-opencivicdata-django,opencivicdata/python-opencivicdata,rshorey/python-opencivicdata-django,influence-usa/python-opencivicdata-django,mileswwatkins/python-opencivicdata-django,opencivicdata/python-opencivicdata-django,opencivicd...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="opencivicdata", version='0.4.0', py_modules=['opencivicdata'], author="James Turk", author_email='jturk@sunlightfoundation.com', license="BSD", description="python opencivicdata library", long_descri...
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="opencivicdata", version='0.3.0', py_modules=['opencivicdata'], author="James Turk", author_email='jturk@sunlightfoundation.com', license="BSD", description="python opencivicdata library", long_descri...
bsd-3-clause
Python
06193197afd1cf153b32bb20c8013248c3c2a1c1
Add Python 3.7 to supported versions
pyparsing/pyparsing,pyparsing/pyparsing
setup.py
setup.py
#!/usr/bin/env python """Setup script for the pyparsing module distribution.""" # Setuptools depends on pyparsing (via packaging) as of version 34, so allow # installing without it to avoid bootstrap problems. try: from setuptools import setup except ImportError: from distutils.core import setup i...
#!/usr/bin/env python """Setup script for the pyparsing module distribution.""" # Setuptools depends on pyparsing (via packaging) as of version 34, so allow # installing without it to avoid bootstrap problems. try: from setuptools import setup except ImportError: from distutils.core import setup i...
mit
Python
63eb3fbe2370947e2e5e37d84d6c11a695313638
Increment to version 1.3.6.
getwarped/powershift
setup.py
setup.py
import sys import os from setuptools import setup def _template_files(): result = [] prefix = 'src/powershift/templates' for root, dirs, files in os.walk(prefix, topdown=False): for name in files: if name.endswith('.json'): if root == prefix: result....
import sys import os from setuptools import setup def _template_files(): result = [] prefix = 'src/powershift/templates' for root, dirs, files in os.walk(prefix, topdown=False): for name in files: if name.endswith('.json'): if root == prefix: result....
bsd-2-clause
Python
29aeb3764cb92521f7ef8ad0e0634468988e77cb
Add Trove classifiers and download URL to `setup.py`.
dag/genshi,dag/genshi,davidfraser/genshi,dag/genshi,davidfraser/genshi,davidfraser/genshi,dag/genshi,davidfraser/genshi
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2006 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://markup.edgewall.org/wiki/License. # # This...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2006 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://markup.edgewall.org/wiki/License. # # This...
bsd-3-clause
Python
b8f53a1d961d0e0c79ac7bdbd7108f00a6393bd8
Prepare release v2.1.1
chhsiao90/gviewer
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open import os here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name="gviewer", version="2.1.1", description="General Viewer", lon...
from setuptools import setup, find_packages from codecs import open import os here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name="gviewer", version="2.1.0", description="General Viewer", lon...
mit
Python
cdd6280d66f81f18262410d8116440a18615b5a7
Fix setup.py
sammymax/us-geo-helper
setup.py
setup.py
from setuptools import setup exec(open('us_geo_helper/version.py').read()) setup( name = 'us-geo-helper', packages = ['us_geo_helper'], version = __version__, description = 'Python wrapper for US Census Data', author = 'Philip Sun', author_email = 'traders@mit.edu', license = 'MIT', url ...
from setuptools import setup exec(open('us-geo-helper/version.py').read()) setup( name = 'us-geo-helper', packages = ['us_geo_helper'], version = __version__, description = 'Python wrapper for US Census Data', author = 'Philip Sun', author_email = 'traders@mit.edu', license = 'MIT', url ...
mit
Python
2e7ba9b6b5647c4fa451a9158015406a392b99f7
Bump version number.
ProjetPP/PPP-datamodel-Python,ProjetPP/PPP-datamodel-Python
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_datamodel', version='0.6.2', description='Data model for the Projet Pensées Profondes.', url='https://github.com/ProjetPP/PPP-datamodel-Python', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_datamodel', version='0.6.1', description='Data model for the Projet Pensées Profondes.', url='https://github.com/ProjetPP/PPP-datamodel-Python', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens...
agpl-3.0
Python
213781ac050a069b0d723d4c98ad6c66a806c53e
Fix tox integration (see Bitbucket PR 196)
nicolaiarocci/eve-swagger
setup.py
setup.py
#!/usr/bin/env python """ Setup for Swagger extension for Eve powered RESTful APIs """ from os.path import abspath, dirname, join from shlex import split from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand # noqa N812 def read_file(filename): """Read the contents o...
#!/usr/bin/env python """ Setup for Swagger extension for Eve powered RESTful APIs """ from os.path import abspath, dirname, join from shlex import split from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand # noqa N812 def read_file(filename): """Read the contents o...
bsd-3-clause
Python
89e647a697b300b409ffe971d86dc242f05cd1b7
Bump version to 0.10.0
dcramer/kleenex
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ ] setup( name='nose-kleenex', version='0.10.0', author='David Cramer', author_email='dcramer@gmail.com', description='A discovery plugin for Nose which relies on code coverage.', url='http://github.com/dcramer...
#!/usr/bin/env python from setuptools import setup, find_packages tests_require = [ ] setup( name='nose-kleenex', version='0.9.1', author='David Cramer', author_email='dcramer@gmail.com', description='A discovery plugin for Nose which relies on code coverage.', url='http://github.com/dcramer/...
apache-2.0
Python
5d6287fb5dd13f13ed6858322fbd34ed3230b170
Correct check for upload or register setup command
casebeer/factual
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import sys import subprocess required_modules = [ "simplejson", "httplib2", "unidecode", "oauth2" ] with open("README.md", "rb") as f: readme = f.read() try: # avoid ReST at all costs, but make sure we have it for PyPi proc = subprocess.Popen...
#!/usr/bin/env python from setuptools import setup, find_packages import sys import subprocess required_modules = [ "simplejson", "httplib2", "unidecode", "oauth2" ] with open("README.md", "rb") as f: readme = f.read() try: # avoid ReST at all costs, but make sure we have it for PyPi proc = subprocess.Popen...
bsd-2-clause
Python
ade1156fb4b7de09308fe8611d87ba3fc4067ab8
Create test mode for theming jumpstart.
newsapps/panda,PalmBeachPost/panda,ibrahimcesar/panda,ibrahimcesar/panda,PalmBeachPost/panda,datadesk/panda,ibrahimcesar/panda,pandaproject/panda,pandaproject/panda,newsapps/panda,PalmBeachPost/panda,datadesk/panda,datadesk/panda,PalmBeachPost/panda,newsapps/panda,NUKnightLab/panda,pandaproject/panda,pandaproject/panda...
jumpstart/application.py
jumpstart/application.py
#!/usr/bin/env python import os import subprocess import time from flask import Flask, render_template, request from pytz import common_timezones from daemon import Daemon # Configuration DEBUG = True TEST_MODE = False PANDA_PATH = '/opt/panda' LOCAL_SETTINGS_PATH = '%s/local_settings.py' % PANDA_PATH RESTART_SCRI...
#!/usr/bin/env python import os import subprocess import time from flask import Flask, render_template, request from pytz import common_timezones from daemon import Daemon # Configuration DEBUG = True PANDA_PATH = '/opt/panda' LOCAL_SETTINGS_PATH = '%s/local_settings.py' % PANDA_PATH # Setup app = Flask(__name__)...
mit
Python
c8653a0b0760f2aa6cf6f682f045eff26d3db5df
Change my email adress to @gmail.com
bjoernricks/python-quilt,vadmium/python-quilt
setup.py
setup.py
#!/usr/bin/env python # vim: fileencoding=utf-8 et sw=4 ts=4 tw=80: # python-quilt - A Python implementation of the quilt patch system # # Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser Genera...
#!/usr/bin/env python # vim: fileencoding=utf-8 et sw=4 ts=4 tw=80: # python-quilt - A Python implementation of the quilt patch system # # Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser Genera...
mit
Python
397ab77e15c59eff55771abaab2ca648d2dc9876
Bump version
ciudadanointeligente/ddah-promises
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup file_dir = os.path.abspath(os.path.dirname(__file__)) def read_file(filename): filepath = os.path.join(file_dir, filename) return open(filepath).read() # Allow setup.py to be run from any path os.chdir(os.path.normpath(os...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup file_dir = os.path.abspath(os.path.dirname(__file__)) def read_file(filename): filepath = os.path.join(file_dir, filename) return open(filepath).read() # Allow setup.py to be run from any path os.chdir(os.path.normpath(os...
bsd-3-clause
Python
12855d86e8f94783879b77a7d7adfe4ba4976a8e
Prepare v0.5.0 release
enovance/cauth,redhat-cip/cauth,enovance/cauth,enovance/cauth,redhat-cip/cauth,redhat-cip/cauth
setup.py
setup.py
#!/usr/bin/env python # # Copyright (C) 2014 eNovance SAS <licensing@enovance.com> # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
#!/usr/bin/env python # # Copyright (C) 2014 eNovance SAS <licensing@enovance.com> # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
apache-2.0
Python
5518e20feedf4f9cc90d4b7ac8971ac5008ff449
update version
contextio/Python-ContextIO
setup.py
setup.py
import os from setuptools import setup, find_packages requires=['rauth', 'six'] setup(name='contextio', version='1.8', description='Library for accessing the Context.IO API v2.0 in Python', author='Tony Blank, Jesse Dhillon', author_email='tony@context.io, jesse@deva0.net', url='http://context.io...
import os from setuptools import setup, find_packages requires=['rauth', 'six'] setup(name='contextio', version='1.7', description='Library for accessing the Context.IO API v2.0 in Python', author='Tony Blank, Jesse Dhillon', author_email='tony@context.io, jesse@deva0.net', url='http://context.io...
apache-2.0
Python
9a5ec77d48ef588629872130c729e9722518dc53
Update setup.py
hmrc/service-manager,hmrc/service-manager,hmrc/service-manager,hmrc/service-manager
setup.py
setup.py
from setuptools import setup setup(name='servicemanager', python_requires='>2.7.13', version='1.2.0', description='A python tool to manage developing and testing with lots of microservices', url='https://github.com/hmrc/service-manager', author='hmrc-web-operations', license='Apach...
from setuptools import setup setup(name='servicemanager', version='1.2.0', description='A python tool to manage developing and testing with lots of microservices', url='https://github.com/hmrc/service-manager', author='hmrc-web-operations', license='Apache Licence 2.0', packages=['...
apache-2.0
Python
a9d97814bd5880812e9202c547cadd6bf34227f5
Bump pydantic from 1.8.2 to 1.9.0
TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro
setup.py
setup.py
from setuptools import setup, find_packages DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics" LONG_DESCRIPTION = """ The piro software package enables prediction and planning of synthesis pathways and determination of pareto-optimal frontiers for synthesis of specifi...
from setuptools import setup, find_packages DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics" LONG_DESCRIPTION = """ The piro software package enables prediction and planning of synthesis pathways and determination of pareto-optimal frontiers for synthesis of specifi...
apache-2.0
Python
5cbc0d0f94b0ddd0c580d0447180e8688cb0e165
update dependencies
LuminosoInsight/wordfreq
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os classifiers = [ 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Window...
#!/usr/bin/env python from setuptools import setup import os classifiers = [ 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Window...
mit
Python
6c8bb0ed15bc3ad6cfe237fea94609e951015103
Update setup.py.
butorov/sentry-telegram
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup import sentry_telegram setup( name='sentry_telegram', version=sentry_telegram.__version__, packages=['sentry_telegram'], url='https://github.com/butorov/sentry-telegram', author='Viacheslav Butorov', author_email='butorovv@gma...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup import sentry_telegram setup( name='sentry_telegram', version=sentry_telegram.__version__, packages=['sentry_telegram'], url='https://github.com/butorov/sentry-telegram', author='Viacheslav Butorov', author_email='butorovv@gma...
mit
Python
ca75a1d815078f24f41dbaec91f6f863e047097e
Set zip_safe=False.
coleifer/peewee,coleifer/peewee,coleifer/peewee
setup.py
setup.py
import os import platform import sys import warnings from setuptools import setup from setuptools.extension import Extension f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) readme = f.read() f.close() setup_kwargs = {} ext_modules = [] try: from Cython.Build import cythonize except ImportError: ...
import os import platform import sys import warnings from setuptools import setup from setuptools.extension import Extension f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) readme = f.read() f.close() setup_kwargs = {} ext_modules = [] try: from Cython.Build import cythonize except ImportError: ...
mit
Python
676d0c61193a52cfdde2dad62db0744e6904a3de
Add json and md data.
materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet
setup.py
setup.py
from setuptools import setup from setuptools import find_packages from os.path import dirname, abspath, join this_dir = abspath(dirname(__file__)) with open(join(this_dir, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='megnet', version='0.2.0', decription='MatErials Gra...
from setuptools import setup from setuptools import find_packages from os.path import dirname, abspath, join this_dir = abspath(dirname(__file__)) with open(join(this_dir, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='megnet', version='0.2.0', decription='MatErials Gra...
bsd-3-clause
Python
d4a80e947a69c42adc1dc2917878c2a822b8426c
Update requirements in setup.py
patrickspencer/mathdeck,patrickspencer/mathdeck
setup.py
setup.py
# -*- coding: utf-8 -*- from codecs import open try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() with open('HISTORY.rst', 'r', 'utf-8') as f: history = f.read() with open('AUTHORS.rst', 'r', 'utf-8') a...
# -*- coding: utf-8 -*- from codecs import open try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() with open('HISTORY.rst', 'r', 'utf-8') as f: history = f.read() with open('AUTHORS.rst', 'r', 'utf-8') a...
apache-2.0
Python
e71094c40c7bab1328180af8fec38a485753a90d
update compatibility in setup.py
bamthomas/flac2mp3
setup.py
setup.py
import os import sys from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) py_version = sys.version_info[:2] if py_version < (3, 5): raise Exception("flac2mp3 requires Python >= 3.5.") with open(os.path.join(here, 'README.rst')) as readme: README = readme.read() NAME = 'flac2mp3' i...
import os import sys from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) py_version = sys.version_info[:2] if py_version < (3, 5): raise Exception("flac2mp3 requires Python >= 3.5.") with open(os.path.join(here, 'README.rst')) as readme: README = readme.read() NAME = 'flac2mp3' i...
mit
Python
c5b5b9175210174e665d32bda4c8bf621e5cf64d
Add django-registration as dependency
GauthamGoli/django-organizations,arteria/django-ar-organizations,aptivate/django-organizations,bennylope/django-organizations,DESHRAJ/django-organizations,st8st8/django-organizations,arteria/django-ar-organizations,bennylope/django-organizations,aptivate/django-organizations,st8st8/django-organizations,DESHRAJ/django-o...
setup.py
setup.py
from setuptools import setup, find_packages import os setup( author="Ben Lopatin", author_email="ben.lopatin@wellfireinteractive.com", name='django-group-accounts', version='0.1', description='Group accounts for Django.', long_description=open(os.path.join(os.path.dirname(__file__), 'R...
from setuptools import setup, find_packages import os setup( author="Ben Lopatin", author_email="ben.lopatin@wellfireinteractive.com", name='django-group-accounts', version='0.1a', description='Group accounts for Django.', long_description=open(os.path.join(os.path.dirname(__file__), '...
bsd-2-clause
Python
158c06f4cacea2e01848e8a5b6dbe8bb9c28543f
Fix package setup.
carlosfunk/djoser,akalipetis/djoser,mjuopperi/djoser,akalipetis/djoser,dokenzy/djoser,sunscrapers/djoser,liyocee/djoser,vandoornik/djoser,yiyocx/djoser,sunscrapers/djoser,unacast/djoser,barseghyanartur/djoser,fladi/djoser,avances123/djoser,apokinsocha/djoser,johnwalker/djoser,PingaxAnalytics/koob_auth,sunscrapers/djose...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='djoser', packages=['djoser'], install_requires=[ 'Django>=1.7', 'djangorestframework>=2.4.3', ], tests_require=[ 'djet>=0.0.9' ], include_package_data=True, zip_safe=False, )
#!/usr/bin/env python from setuptools import setup setup( name='djoser', packages=['djoser'], install_requires=[ 'Django>=1.7', 'djangorestframework>=2.4.3', ], tests_require=[ 'djet>=0.0.9' ], package_data={ 'templates': ['templates/*.html', 'templates/*.txt'...
mit
Python
0489a7d3eb8b29850aedf51d9397a66de85e7e9e
Update maintainer
LabKey/labkey-api-python
setup.py
setup.py
# # Copyright (c) 2015-2017 LabKey Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agre...
# # Copyright (c) 2015-2017 LabKey Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agre...
apache-2.0
Python
587ea4f32bb9c932278d282e362e8278b7d3e1bc
Bump version to 1.1
incuna/django-txtlocal
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-txtlocal', packages=find_packages(), include_package_data=True, install_requires=['requests>=1.2.3'], version='1.1', description='App for sending and receiving SMS messages via http://www.textlocal.com', long_description=open(...
from setuptools import setup, find_packages setup( name='django-txtlocal', packages=find_packages(), include_package_data=True, install_requires=['requests>=1.2.3'], version='1.0', description='App for sending and receiving SMS messages via http://www.textlocal.com', long_description=open(...
bsd-2-clause
Python
9639c3fef58948942e769abda23e2703a5fbbbf4
make jinja2 a runtime dep rather than a develop dep. (#397)
RedHatInsights/insights-core,RedHatInsights/insights-core
setup.py
setup.py
import os from setuptools import setup, find_packages __here__ = os.path.dirname(os.path.abspath(__file__)) package_info = dict((k, None) for k in ["RELEASE", "COMMIT", "VERSION", "NAME"]) for name in package_info: with open(os.path.join(__here__, "insights", name)) as f: package_info[name] = f.read().st...
import os from setuptools import setup, find_packages __here__ = os.path.dirname(os.path.abspath(__file__)) package_info = dict((k, None) for k in ["RELEASE", "COMMIT", "VERSION", "NAME"]) for name in package_info: with open(os.path.join(__here__, "insights", name)) as f: package_info[name] = f.read().st...
apache-2.0
Python
a6c3782d6c60f3660b7978d7311335e093c9a179
bump version to 0.1.7
stitchfix/splits
setup.py
setup.py
from setuptools import setup with open('README.md') as readme_file: readme = readme_file.read() setup( name='splits', version='0.1.7', author='Thomas Millar, Jeff Magnusson', author_email='millar.thomas@gmail.com, magnussj@gmail.com', license='MIT', description='A library for dealing with ...
from setuptools import setup with open('README.md') as readme_file: readme = readme_file.read() setup( name='splits', version='0.1.6', author='Thomas Millar, Jeff Magnusson', author_email='millar.thomas@gmail.com, magnussj@gmail.com', license='MIT', description='A library for dealing with ...
mit
Python
283f355ab3ad09ddcd016f9c019e1c5a1375ddd1
fix setup.py
theislab/scvelo
setup.py
setup.py
from setuptools import setup, find_packages from pathlib import Path import numpy as np import versioneer req_path = Path('requirements.txt') if not req_path.is_file(): req_path = Path('scvelo.egg-info') / req_path with req_path.open() as requirements: requires = [l.strip() for l in requirements] setup( n...
from setuptools import setup, find_packages from pathlib import Path import numpy as np import versioneer req_path = Path('requirements.txt') if not req_path.is_file(): req_path = Path('scvelo.egg-info') / req_path with req_path.open() as requirements: requires = [l.strip() for l in requirements] setup( n...
bsd-3-clause
Python
7eaf0dff72fff8aa66082998b226b3f02c4b43e1
Add a version number to the setup script (only to experiment with easy_install).
sugarmanz/ctypeslib
setup.py
setup.py
#!/usr/bin/env python """ctypes code generator """ import os, sys from distutils.core import setup, Command class test(Command): # Original version of this class posted # by Berthold Hoellmann to distutils-sig@python.org description = "run tests" user_options = [ ('tests=', 't', "comm...
#!/usr/bin/env python """ctypes code generator """ import os, sys from distutils.core import setup, Command class test(Command): # Original version of this class posted # by Berthold Hoellmann to distutils-sig@python.org description = "run tests" user_options = [ ('tests=', 't', "comm...
mit
Python
2db62ba9f60ede1fda1ab6536b8368c01938f0e5
Fix django-oauth2-provider dependency link
edx/edx-oauth2-provider,nttks/edx-oauth2-provider,edx/edx-oauth2-provider,nttks/edx-oauth2-provider
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='edx-oauth2-provider', version='0.2.0', description='Provide OAuth2 access to edX installations', author='edX', url='https://github.com/edx/edx-oauth2-provider', license='AGPL', classifiers=[ 'Development Status :: 3 - ...
#!/usr/bin/env python from setuptools import setup setup( name='edx-oauth2-provider', version='0.2.0', description='Provide OAuth2 access to edX installations', author='edX', url='https://github.com/edx/edx-oauth2-provider', license='AGPL', classifiers=[ 'Development Status :: 3 - ...
agpl-3.0
Python
2849a167d76a51681dd9621d5659179aaf951f45
drop pypi and add py38
kmike/psd-tools,kmike/psd-tools,psd-tools/psd-tools
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from distutils.extension import Extension import logging import os import sys try: from Cython.Build import cythonize extension = cythonize( [ Extension( 'psd_tools.compression._packbits', ['sr...
#!/usr/bin/env python from setuptools import setup, find_packages from distutils.extension import Extension import logging import os import sys try: from Cython.Build import cythonize extension = cythonize( [ Extension( 'psd_tools.compression._packbits', ['sr...
mit
Python
022ae8a30812916538faeab02385c7d80dc9e623
Add myself as maintainer
squallcs12/django-admin-bootstrapped,avara1986/django-admin-bootstrapped,xrmx/django-admin-bootstrapped,mynksngh/django-admin-bootstrapped,merlian/django-admin-bootstrapped,pombredanne/django-admin-bootstrapped,squallcs12/django-admin-bootstrapped,kevingu1003/django-admin-bootstrapped,andrewyager/django-admin-bootstrap...
setup.py
setup.py
from setuptools import setup, find_packages import os CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'P...
from setuptools import setup, find_packages import os CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'P...
apache-2.0
Python
ed333751b78ee63adee9317d1462b99e8d92fed1
Tag v0.9-dev for development
ProgramFan/bentoo
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="bentoo", description="Benchmarking tools", version="0.9-dev", packages=find_packages(), scripts=["scripts/generator.py", "scripts/runner.py", "scripts/collector.py", "scripts/analyser.py"], ...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages setup( name="bentoo", description="Benchmarking tools", version="0.8", packages=find_packages(), scripts=["scripts/generator.py", "scripts/runner.py", "scripts/collector.py", "scripts/analyser.py"], p...
mit
Python
d0d86c658d549c70d4f66241414e6f0a85d632ad
Add dep.
fusionapp/fusion-index
setup.py
setup.py
import re from setuptools import setup, find_packages versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M) with open("src/fusion_index/_version.py", "rt") as f: version = versionPattern.search(f.read()).group(1) setup( name='fusion-index', version=version, description='Lookup/searc...
import re from setuptools import setup, find_packages versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M) with open("src/fusion_index/_version.py", "rt") as f: version = versionPattern.search(f.read()).group(1) setup( name='fusion-index', version=version, description='Lookup/searc...
mit
Python
55acaf3f70eaf8e8baa59b57d85ce1202c01580f
Modify the version number.
sighingnow/parsec.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'parsec.py', version = '2.0.0', description = 'parser combinator.', long_description = 'A univeral Python parser combinator library inspirted by Parsec library of Haskell.', author = 'He Tao', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = 'parsec.py', version = '1.0.0', description = 'parser combinator.', long_description = 'A univeral Python parser combinator library inspirted by Parsec library of Haskell.', author = 'He Tao', ...
mit
Python
9041036f52458669215769775c0be4337e0f1352
Add clean command to setup.py
HazyResearch/metal,HazyResearch/metal
setup.py
setup.py
import os import re import setuptools class CleanCommand(setuptools.Command): """Custom clean command to tidy up the project root.""" user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): os.system("rm -vrf ./build ./dist ...
import os import re import setuptools directory = os.path.dirname(os.path.abspath(__file__)) # Extract version information path = os.path.join(directory, "metal", "__init__.py") with open(path) as read_file: text = read_file.read() pattern = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE) version...
apache-2.0
Python
92a9b98b0b17e6322ff4c81511c4186baac3dd2d
Add explicit argparse dependency for Python 2.6.
STIXProject/stix-validator,pombredanne/stix-validator
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2015 - The MITRE Corporation # For license information, see the LICENSE.txt file from os.path import abspath, dirname, join import sys from setuptools import setup, find_packages BASE_DIR = dirname(abspath(__file__)) VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py') def get_v...
#!/usr/bin/env python # Copyright (c) 2015 - The MITRE Corporation # For license information, see the LICENSE.txt file from os.path import abspath, dirname, join import sys from setuptools import setup, find_packages BASE_DIR = dirname(abspath(__file__)) VERSION_FILE = join(BASE_DIR, 'sdv', 'version.py') def get_v...
bsd-3-clause
Python
e7d8039e1c42062b1816cec7294135b25e103650
Fix up setup.py
jgeboski/mctl,jgeboski/mctl
setup.py
setup.py
#!/usr/bin/env python3 # Copyright 2012-2020 James Geboski <jgeboski@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights...
#!/usr/bin/env python3 # Copyright 2012-2020 James Geboski <jgeboski@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights...
mit
Python
7be23730a3712eadba620184f62f49c9064bb9a5
bump version to b13, no release yet
mwcraig/vpython-jupyter,BruceSherwood/vpython-jupyter,mwcraig/vpython-jupyter,BruceSherwood/vpython-jupyter,mwcraig/vpython-jupyter,sspickle/vpython-jupyter,BruceSherwood/vpython-jupyter,sspickle/vpython-jupyter,BruceSherwood/vpython-jupyter,mwcraig/vpython-jupyter
setup.py
setup.py
from __future__ import print_function try: from setuptools import setup # try first in case it's already there. except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup setup( name='vpython', packages=['vpython'], version='0.2.0b13', descri...
from __future__ import print_function try: from setuptools import setup # try first in case it's already there. except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup setup( name='vpython', packages=['vpython'], version='0.2.0b12', descri...
mit
Python
1b2bf239a8357f5de9fcfab2f9f6fe2fd9557db3
Make python3 compatible.
mujin/mujincontrollerclientpy
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (C) 2012-2014 MUJIN Inc from distutils.core import setup try: from mujincommon.setuptools import Distribution except ImportError: from distutils.dist import Distribution version = {} exec(open('python/mujincontrollerclient/version.py').read(), version) setup( distclass=...
# -*- coding: utf-8 -*- # Copyright (C) 2012-2014 MUJIN Inc from distutils.core import setup try: from mujincommon.setuptools import Distribution except ImportError: from distutils.dist import Distribution version = {} execfile('python/mujincontrollerclient/version.py', version) setup( distclass=Distribut...
apache-2.0
Python
8b0dc1ac533c566060020723252c7dfd5551fc8f
Update pytest-cov requirement from <2.11.0,>=2.8.1 to >=2.8.1,<2.12.0 (#612)
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.2", python_requires=">=3.6", author="Plumerai", author_email="opensource@plumerai.com", description="An Open Source Machine Learning Libra...
from setuptools import find_packages, setup def readme(): with open("README.md", "r") as f: return f.read() setup( name="larq", version="0.10.2", python_requires=">=3.6", author="Plumerai", author_email="opensource@plumerai.com", description="An Open Source Machine Learning Libra...
apache-2.0
Python
3249702ba601377dd21daab2131d851aeb90a6ff
update dependency of chilero to >=3.4.2
dmonroy/chilero.pg
setup.py
setup.py
import setuptools setup_params = dict( name='chilero_pg', use_scm_version=True, namespace_packages=['chilero'], packages=setuptools.find_packages(), include_package_data=True, url='https://github.com/dmonroy/chilero.pg', author='Darwin Monroy', author_email='contact@darwinmonroy.com', ...
import setuptools setup_params = dict( name='chilero_pg', use_scm_version=True, namespace_packages=['chilero'], packages=setuptools.find_packages(), include_package_data=True, url='https://github.com/dmonroy/chilero.pg', author='Darwin Monroy', author_email='contact@darwinmonroy.com', ...
mit
Python
87fd39eafd4a2d8310a9273136a95438b7c36f56
fix blessings requirement to allow 1.5, don't require <2
sebastinas/curtsies,thomasballinger/curtsies,spthaolt/curtsies
setup.py
setup.py
from setuptools import setup import ast import os def version(): """Return version string.""" with open(os.path.join('curtsies', '__init__.py')) as input_file: for line in input_file: if line.startswith('__version__'): return ast.parse(line).body[0].value.s setup(name='curt...
from setuptools import setup import ast import os def version(): """Return version string.""" with open(os.path.join('curtsies', '__init__.py')) as input_file: for line in input_file: if line.startswith('__version__'): return ast.parse(line).body[0].value.s setup(name='curt...
mit
Python
d825a89a1d4d19f9979504078f0091493f41677e
Bump version.
mihneadb/python-execution-trace,mihneadb/python-execution-trace,mihneadb/python-execution-trace
setup.py
setup.py
from setuptools import setup setup(name='execution-trace', version='1.0.1', description='Record the state of Python functions as they execute.', url='http://github.com/mihneadb/python-execution-trace', author='Mihnea Dobrescu-Balaur', author_email='mihnea@linux.com', license='MIT'...
from setuptools import setup setup(name='execution-trace', version='1.0.0', description='Record the state of Python functions as they execute.', url='http://github.com/mihneadb/python-execution-trace', author='Mihnea Dobrescu-Balaur', author_email='mihnea@linux.com', license='MIT'...
mit
Python
f1527402bc4ca40e638022d611920e855df1244e
use right url and name in setup
hharnisc/python-meteor,oliverhuangchao/python-meteor
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup with open('README.md') as f: readme = f.read() setup(name='python-meteor', version='0.1.0', description='An event driven meteor client', long_description=readme, license='MIT', author='Harrison Harnisch', author_email='hharnisc@gmail.com'...
#!/usr/bin/env python from setuptools import setup with open('README.md') as f: readme = f.read() setup(name='meteor-ddp', version='0.1.0', description='An event driven meteor client', long_description=readme, license='MIT', author='Harrison Harnisch', author_email='hharnisc@gmail.com', ...
mit
Python
65dcbf1894444208a0a18cf1993da8b5b7844044
Fix #14 -- pip not installing full package
seatgeek/businesstime
setup.py
setup.py
#!/usr/bin/env python """How to release a new version: https://packaging.python.org/en/latest/distributing.html#uploading-your-project-to-pypi""" from businesstime import __version__ from setuptools import find_packages, setup setup( name='businesstime', version=__version__, author='SeatGeek', autho...
#!/usr/bin/env python """How to release a new version: https://packaging.python.org/en/latest/distributing.html#uploading-your-project-to-pypi""" from businesstime import __version__ try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='businesstime', ve...
bsd-2-clause
Python
4c307de8e4efc3f43218d438c1465c3c60ab91b7
Bump version to 0.21.0
miLibris/flask-rest-jsonapi
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '0.21.0' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
from setuptools import setup, find_packages __version__ = '0.20.0' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
mit
Python
2399c500a43ed4b6eec7f79dce51166c98503721
update version
drgrib/dotmap
setup.py
setup.py
from setuptools import setup setup( version = '1.2.16', name = 'dotmap', packages = ['dotmap'], # this must be the same as the name above description = 'ordered, dynamically-expandable dot-access dictionary', author = 'Chris Redford', author_email = 'credford@gmail.com', url = 'https://github.com/drgrib/dotmap'...
from setuptools import setup setup( version = '1.2.15', name = 'dotmap', packages = ['dotmap'], # this must be the same as the name above description = 'ordered, dynamically-expandable dot-access dictionary', author = 'Chris Redford', author_email = 'credford@gmail.com', url = 'https://github.com/drgrib/dotmap'...
mit
Python
13de2353047e22390964497b536f4647f44ad89b
Bump version to 0.30.1
miLibris/flask-rest-jsonapi
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '0.30.1' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
from setuptools import setup, find_packages __version__ = '0.30.0' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
mit
Python
782733ef64fd16418a48f9bca1b288efcb26d057
Add a few more entrypoints for defaults.
klmitch/turnstile
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup def readreq(filename): result = [] with open(filename) as f: for req in f: req = req.partition('#')[0].strip() if not req: continue result.append(req) return result def readfile(fil...
#!/usr/bin/env python import os from setuptools import setup def readreq(filename): result = [] with open(filename) as f: for req in f: req = req.partition('#')[0].strip() if not req: continue result.append(req) return result def readfile(fil...
apache-2.0
Python
54b1c8bcfadae586e33cfff7813c8066ca50560d
update version number
Ichindar/dsts,Ichindar/dsts,Ichindar/dsts
setup.py
setup.py
#from distutils.core import setup from setuptools import setup, Extension from os.path import exists from subprocess import call sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'], sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp', '...
#from distutils.core import setup from setuptools import setup, Extension from os.path import exists from subprocess import call sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'], sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp', '...
bsd-3-clause
Python
ff8b2a2584a85d1df49667e87d4c894b644cc02a
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.7.3', 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.7.2', author='Robin Andersson', author_email='robin2@kth.se', description='A helper library for Hops that facilitates development by hi...
apache-2.0
Python
fb166c2afa110b758efbc8aeae9ff177050bfa0c
Add correct filename in OnionLauncher ui directory
neelchauhan/OnionLauncher
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import sys setup(name="OnionLauncher", version="0.0.1", description="Launcher for Tor", license = "BSD", author="Neel Chauhan", author_email="neel@neelc.org", url="https://www.github.com/neelchauhan/OnionLauncher/", packages=["OnionLauncher"], entry_points={'...
#!/usr/bin/env python from setuptools import setup import sys setup(name="OnionLauncher", version="0.0.1", description="Launcher for Tor", license = "BSD", author="Neel Chauhan", author_email="neel@neelc.org", url="https://www.github.com/neelchauhan/OnionLauncher/", packages=["OnionLauncher"], entry_points={'...
bsd-2-clause
Python
f3c72bae983dd5ed5ead47573120fb48f3bac521
Update pypi.python.org URL to pypi.org
spookylukey/django-debug-toolbar,django-debug-toolbar/django-debug-toolbar,django-debug-toolbar/django-debug-toolbar,tim-schilling/django-debug-toolbar,tim-schilling/django-debug-toolbar,tim-schilling/django-debug-toolbar,django-debug-toolbar/django-debug-toolbar,jazzband/django-debug-toolbar,jazzband/django-debug-tool...
setup.py
setup.py
#!/usr/bin/env python from io import open from setuptools import find_packages, setup setup( name='django-debug-toolbar', version='1.9.1', description='A configurable set of panels that display various debug ' 'information about the current request/response.', long_description=open('R...
#!/usr/bin/env python from io import open from setuptools import find_packages, setup setup( name='django-debug-toolbar', version='1.9.1', description='A configurable set of panels that display various debug ' 'information about the current request/response.', long_description=open('R...
bsd-3-clause
Python
6a0f3af96e331882e620c6d6bffe020979323f26
Create a PIP-installable package
wmgaca/logcandy
setup.py
setup.py
from distutils.core import setup setup( name='logcandy', version='0.1.0', author='Wojciech Gaca', author_email='wmgaca@gmail.com', packages=['logcandy'], scripts=[], url='http://github.com/wmgaca/logcandy', license='LICENSE', description='Python logging utils.', long_description...
from distutils.core import setup setup( name='logcandy', version='0.1.0', author='Wojciech Gaca', author_email='wmgaca@gmail.com', packages=['logcandy'], scripts=[], url='http://github.com/wmgaca/logcandy', license='LICENSE.txt', description='Python logging utils.', long_descrip...
mit
Python
a216f8ca01afa17e42079077c03e00313aea8fd0
Update github url on pypi
rjschwei/azure-sdk-for-python,aarsan/azure-sdk-for-python,ParallaxIT/azure-sdk-for-python,crwilcox/azure-sdk-for-python,Azure/azure-sdk-for-python,v-iam/azure-sdk-for-python,huguesv/azure-sdk-for-python,dominoFire/azure-sdk-for-python,oaastest/azure-sdk-for-python,bonethrown/azure-sdk-for-python,huguesv/azure-sdk-for-p...
setup.py
setup.py
#!/usr/bin/env python #------------------------------------------------------------------------- # Copyright (c) Microsoft. 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...
#!/usr/bin/env python #------------------------------------------------------------------------- # Copyright (c) Microsoft. 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...
mit
Python
a8f36f4cbab4f4740c632cc9f9831c9626f52220
Bump version to v0.5.1
yunojuno/django-onfido
setup.py
setup.py
# -*- coding: utf-8 -*- from os import path, chdir, pardir from setuptools import setup, find_packages README = open(path.join(path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path chdir(path.normpath(path.join(path.abspath(__file__), pardir))) setup( name="django-onfido", ve...
# -*- coding: utf-8 -*- from os import path, chdir, pardir from setuptools import setup, find_packages README = open(path.join(path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path chdir(path.normpath(path.join(path.abspath(__file__), pardir))) setup( name="django-onfido", ve...
mit
Python
3352920f7e92e2732eb2914313bdee6b5ab7f549
Fix bin scripts having python2 or python3 specific path.
mujin/mujincontrollerclientpy
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (C) 2012-2014 MUJIN Inc from distutils.core import setup try: from mujincommon.setuptools import Distribution except ImportError: from distutils.dist import Distribution version = {} exec(open('python/mujincontrollerclient/version.py').read(), version) setup( distclass=...
# -*- coding: utf-8 -*- # Copyright (C) 2012-2014 MUJIN Inc from distutils.core import setup try: from mujincommon.setuptools import Distribution except ImportError: from distutils.dist import Distribution version = {} exec(open('python/mujincontrollerclient/version.py').read(), version) setup( distclass=...
apache-2.0
Python
89901677819f219423e56fc1a19c2942c9d0bdeb
Increment version to 0.2.0.
larsyencken/anytop
setup.py
setup.py
#-*- coding: utf-8 -*- # # setup.py # anytop # # Created by Lars Yencken on 2011-10-09. # Copyright 2011 Lars Yencken. All rights reserved. # from distutils.core import setup setup( name='anytop', version='0.2.0', description='Streaming frequency distribution viewer.', long_description=open('READM...
#-*- coding: utf-8 -*- # # setup.py # anytop # # Created by Lars Yencken on 2011-10-09. # Copyright 2011 Lars Yencken. All rights reserved. # from distutils.core import setup setup( name='anytop', version='0.1.2', description='Streaming frequency distribution viewer.', long_description=open('READM...
isc
Python
8e94134c4b6d6509cd515508bb2229c647d6867b
Bump to version 1.0.0. This project will be using Semantic Versioning.
ColtonProvias/sqlalchemy-jsonapi,bladams/sqlalchemy-jsonapi,emilecaron/sqlalchemy-jsonapi,angelosarto/sqlalchemy-jsonapi
setup.py
setup.py
""" SQLAlchemy-JSONAPI ------------------ JSON API Mixin for SQLAlchemy that aims to meet the full JSON API spec as published at http://jsonapi.org/format. Full documentation is available at: https://github.com/coltonprovias/sqlalchemy-jsonapi """ from setuptools import setup setup(name='SQLAlchemy-JSONAPI', ...
""" SQLAlchemy-JSONAPI ------------------ JSON API Mixin for SQLAlchemy that aims to meet the full JSON API spec as published at http://jsonapi.org/format. Full documentation is available at: https://github.com/coltonprovias/sqlalchemy-jsonapi """ from setuptools import setup setup(name='SQLAlchemy-JSONAPI', ...
mit
Python
028afb2d0cecc90d198994fe8799764588c52dad
Set version = 1.2
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.1', description='Web service dedicated to air pollution in Moscow.', long_description=open('README.md').read(), author='elsid', author_email=...
mit
Python
d543286e998f76ebc915efb5366218d23faa195b
Bump sql-metadata from 1.5.0 to 1.7.0
macbre/index-digest,macbre/index-digest
setup.py
setup.py
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexd...
from setuptools import setup, find_packages from indexdigest import VERSION # @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py with open("README.md", "r") as fh: long_description = fh.read() # @see https://github.com/pypa/sampleproject/blob/master/setup.py setup( name='indexd...
mit
Python
ab5c466005f796c8c757e13ed0f3ed64dd5bfbae
bump version
elcorto/imagecluster
setup.py
setup.py
#!/usr/bin/env python3 # publish on pypi # --------------- # $ python3 setup.py sdist # $ twine upload dist/imagecluster-x.y.z.tar.gz import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fd: long_description ...
#!/usr/bin/env python3 # publish on pypi # --------------- # $ python3 setup.py sdist # $ twine upload dist/imagecluster-x.y.z.tar.gz import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fd: long_description ...
bsd-3-clause
Python
8f0635d41c5da5d844aa5219794134fe1d608896
Fix URL in setup.py
ulikoehler/cv_algorithms,ulikoehler/cv_algorithms
setup.py
setup.py
#!/usr/bin/env python import os import sys import io try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, Extension from setuptools import find_packages extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat...
#!/usr/bin/env python import os import sys import io try: import setuptools except ImportError: from distribute_setup import use_setuptools use_setuptools() from setuptools import setup, Extension from setuptools import find_packages extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat...
apache-2.0
Python