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
98a9a451a1388599565ba995dc3c527023a1635f
Bump to 0.2.1
mvantellingen/py-soap-wsse
setup.py
setup.py
from setuptools import find_packages, setup description = """ Simply library to sign and verify SOAP XML requests using the BinarySecurityToken specification. """.strip() tests_require = [ 'pytest>=2.6.0', 'pytest-cov>=1.7.0', 'pretend>=1.0.0', 'suds-jurko>=0.6', ] setup( name='soap_wsse', v...
from setuptools import find_packages, setup description = """ Simply library to sign and verify SOAP XML requests using the BinarySecurityToken specification. """.strip() tests_require = [ 'pytest>=2.6.0', 'pytest-cov>=1.7.0', 'pretend>=1.0.0', 'suds-jurko>=0.6', ] setup( name='soap_wsse', v...
mit
Python
98e9439ceedf40b41a3e98042086f545fe550e92
Remove mention of CSS4 in PyPI short description
facelessuser/soupsieve
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup Soup Sieve.""" from setuptools import setup, find_packages import os import imp def get_version(): """Get version and version_info without importing the entire module.""" path = os.path.join(os.path.dirname(__file__), 'soupsieve') fp, pathname, desc...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Setup Soup Sieve.""" from setuptools import setup, find_packages import os import imp def get_version(): """Get version and version_info without importing the entire module.""" path = os.path.join(os.path.dirname(__file__), 'soupsieve') fp, pathname, desc...
mit
Python
321a4e80816a57acd8f90451f59be6c5339ac0b6
Add more Python versions to setup.py
linusg/wsinfo
setup.py
setup.py
from setuptools import setup from wsinfo import __version__ with open("README.rst", "r") as f: long_description = f.read() setup(name="wsinfo", packages=["wsinfo"], version=__version__, description="Python package for simply retrieving information about a specific website.", long_descripti...
from setuptools import setup from wsinfo import __version__ with open("README.rst", "r") as f: long_description = f.read() setup(name="wsinfo", packages=["wsinfo"], version=__version__, description="Python package for simply retrieving information about a specific website.", long_descripti...
mit
Python
d6be3ba0af3e0e37806193d45c8c2a180142029d
Add netrngd and netrng-perftest to scripts in setup.py
infincia/NetRNG
setup.py
setup.py
#!/usr/bin/env python import sys import os from os.path import join, abspath, basename, dirname try: from setuptools import setup except ImportError: from distutils.core import setup py = sys.version_info if py < (2,7) and py < (3,0): raise NotImplementedError("NetRNG requires Python 2.7, Python 3.2+ su...
#!/usr/bin/env python import sys import os from os.path import join, abspath, basename, dirname try: from setuptools import setup except ImportError: from distutils.core import setup py = sys.version_info if py < (2,7) and py < (3,0): raise NotImplementedError("NetRNG requires Python 2.7, Python 3.2+ su...
mit
Python
a88bb124d24fdbb547ccd6b4012aba4a54be76e1
Remove invalid framework choice (#246)
pando85/django-registration,pando85/django-registration
setup.py
setup.py
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys from registration import get_version class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True de...
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys from registration import get_version class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True de...
bsd-3-clause
Python
66e875ba84b17da9945c04cf2f866de7b719bd70
update tsuru-hm
tsuru/rpaas,tsuru/rpaas,vfiebig/rpaas,vfiebig/rpaas
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2014 hm authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. import codecs from setuptools import setup, find_packages from rpaas import __version__ README = codecs.open('README.rst', encoding='utf-8')...
# -*- coding: utf-8 -*- # Copyright 2014 hm authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. import codecs from setuptools import setup, find_packages from rpaas import __version__ README = codecs.open('README.rst', encoding='utf-8')...
bsd-3-clause
Python
08ccc7d676a0cb0c69d1cbd5096ff5c77e19c4ab
Add tests package and specify platforms
svieira/Flask-HipPocket,svieira/Flask-HipPocket
setup.py
setup.py
from os import path from setuptools import setup from hip_pocket.constants import VERSION def load(file_name): here = path.dirname(path.abspath(__file__)) return open(path.join(here, file_name), "r").read() setup( name="HipPocket", description="A wrapper around Flask to ease the development of large...
from os import path from setuptools import setup from hip_pocket.constants import VERSION def load(file_name): here = path.dirname(path.abspath(__file__)) return open(path.join(here, file_name), "r").read() setup( name="HipPocket", description="A wrapper around Flask to ease the development of large...
mit
Python
78497a5ef492f18511c4a09b5ca62facafe9c302
Add fuel-download to installed scripts
capybaralet/fuel,glewis17/fuel,EderSantana/fuel,bouthilx/fuel,laurent-dinh/fuel,orhanf/fuel,mila-udem/fuel,rizar/fuel,codeaudit/fuel,udibr/fuel,glewis17/fuel,orhanf/fuel,ejls/fuel,capybaralet/fuel,dmitriy-serdyuk/fuel,markusnagel/fuel,ejls/fuel,dwf/fuel,janchorowski/fuel,laurent-dinh/fuel,dribnet/fuel,janchorowski/fuel...
setup.py
setup.py
"""Installation script.""" from os import path from setuptools import find_packages, setup HERE = path.abspath(path.dirname(__file__)) with open(path.join(HERE, 'README.rst')) as f: LONG_DESCRIPTION = f.read().strip() setup( name='fuel', version='0.1a1', # PEP 440 compliant description='Data pipelin...
"""Installation script.""" from os import path from setuptools import find_packages, setup HERE = path.abspath(path.dirname(__file__)) with open(path.join(HERE, 'README.rst')) as f: LONG_DESCRIPTION = f.read().strip() setup( name='fuel', version='0.1a1', # PEP 440 compliant description='Data pipelin...
mit
Python
6702cbc5704ccdb255a72282c8f9b88781b34be3
Update setup.py to develop version
theherk/figgypy
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import sys try: import pypandoc readme = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): with open('README.md') as f: readme = f.read() install_requires = [ 'boto3', 'future', 'gnupg>=2.0.2', 'se...
#!/usr/bin/env python from setuptools import setup, find_packages import sys try: import pypandoc readme = pypandoc.convert('README.md', 'rst') except(IOError, ImportError): with open('README.md') as f: readme = f.read() install_requires = [ 'boto3', 'future', 'gnupg>=2.0.2', 'se...
mit
Python
57856e0f83804f58c82826b4fda8a33ef2604113
update django version
yawd/yawd-elfinder,yawd/yawd-elfinder
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import elfinder setup( name='yawd-elfinder', url='http://yawd.eu/open-source-projects/yawd-elfinder/', version = elfinder.__version__, description='Elfinder-based file management solution for Django', long_description=open(...
#!/usr/bin/env python from setuptools import setup, find_packages import elfinder setup( name='yawd-elfinder', url='http://yawd.eu/open-source-projects/yawd-elfinder/', version = elfinder.__version__, description='Elfinder-based file management solution for Django', long_description=open(...
bsd-3-clause
Python
a222887e88da331ce5cea05396ccec442375a9b5
Remove import pytest in setup.py
mpkato/interleaving
setup.py
setup.py
# -*- coding:utf-8 -*- from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest ...
# -*- coding:utf-8 -*- from setuptools import setup from setuptools.command.test import test as TestCommand import pytest class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): im...
mit
Python
2c947583a0e3a691de2e0e9251d99e66437291f7
Use dash instead of underscore for requests-oauthlib requirement
tweepy/tweepy,svven/tweepy
setup.py
setup.py
#!/usr/bin/env python import re from setuptools import find_packages, setup VERSION_FILE = "tweepy/__init__.py" with open(VERSION_FILE) as version_file: match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.MULTILINE) if match: version = match.group(1) else: ...
#!/usr/bin/env python import re from setuptools import find_packages, setup VERSION_FILE = "tweepy/__init__.py" with open(VERSION_FILE) as version_file: match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.MULTILINE) if match: version = match.group(1) else: ...
mit
Python
44c8982400fd3927138a2ddb7c8ca98f1b1219f5
Fix another stupid setup bug
lyddonb/contour
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() packages = [ 'contour', ] requires = [] setup( name='contour', version="0...
#!/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() packages = [ 'contour', ] requires = [] setup( name='contour', version="0...
apache-2.0
Python
b7eba224be1a5c2a888ef1d768330dc21f8c42b6
add dependencies to install_requires; use setuptools.find_packages; use pytest-runner; add trove classifiers for PyPI
moyogo/fontMath,anthrotype/fontMath,typesupply/fontMath
setup.py
setup.py
#!/usr/bin/env python from __future__ import print_function from setuptools import setup, find_packages import sys needs_pytest = {'pytest', 'test'}.intersection(sys.argv) pytest_runner = ['pytest_runner'] if needs_pytest else [] needs_wheel = {'bdist_wheel'}.intersection(sys.argv) wheel = ['wheel'] if needs_wheel els...
#!/usr/bin/env python from __future__ import print_function from setuptools import setup try: import ufoLib except: print("*** Warning: fontMath requires ufoLib, see:") print(" github.com/unified-font-object/ufoLib") setup( name="fontMath", version="0.2", description="A set of objects for ...
mit
Python
ad3e4f3cc669683325427f4dc0e5baf076ef493d
Improve setup.py metadata
CodersOfTheNight/oshino
setup.py
setup.py
#!/usr/bin/python # -*- coding: UTF-8 -*- from setuptools import setup from pip.req import parse_requirements from oshino.version import get_version install_reqs = list(parse_requirements("requirements/release.txt", session={})) test_reqs = list(parse_requirements("requirements/test.txt", session={})) with open("REA...
#!/usr/bin/python # -*- coding: UTF-8 -*- from setuptools import setup from pip.req import parse_requirements from oshino.version import get_version install_reqs = list(parse_requirements("requirements/release.txt", session={})) test_reqs = list(parse_requirements("requirements/test.txt", session={})) with open("REA...
mit
Python
706705307bdc4cd8d30559a68f23180c00781713
Bump version
pferreir/PySecretHandshake
setup.py
setup.py
# Copyright (c) 2017 PySecretHandshake contributors (see AUTHORS for more details) # # 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 righ...
# Copyright (c) 2017 PySecretHandshake contributors (see AUTHORS for more details) # # 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 righ...
mit
Python
6201c80618c20d1cba64cb128013d82b76979cbb
Update version to 2.0.9 (#156)
edx-solutions/api-integration,edx-solutions/api-integration
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='api-integration', version='2.0.9', description='RESTful api integration for edX platform', long_description=open('README.rst').read(), author='edX', url='https://github.com/edx-solutions/api-integration.git', p...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='api-integration', version='2.0.8', description='RESTful api integration for edX platform', long_description=open('README.rst').read(), author='edX', url='https://github.com/edx-solutions/api-integration.git', p...
agpl-3.0
Python
389785092a14d641ca52c7012aa76b4066ac44b4
bump version
datamade/parserator
setup.py
setup.py
import sys try: from setuptools import setup except ImportError : raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools") reqs = [ 'future>=0.14.3', 'lxml>=3.7.3', 'python-crfsuite>=0.7', 'chard...
import sys try: from setuptools import setup except ImportError : raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools") reqs = [ 'future>=0.14.3', 'lxml>=3.7.3', 'python-crfsuite>=0.7', 'chard...
mit
Python
1c6125647735d345d094e4d94bd712d400a5b0fa
refactor setup.py
schwobaseggl/accessor
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from accessor import __version__ CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Framework :: Django', 'Environment :: Plugins', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Lan...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from accessor import __version__ CLASSIFIERS = [ 'Development Status :: 2 - Pre-Alpha', 'Framework :: Django', 'Environment :: Plugins', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Lan...
mit
Python
24218c4925be0b075d1c6944cc974a13973cab4c
fix readme issue for pip installs
contextio/Python-ContextIO
setup.py
setup.py
import os from setuptools import setup, find_packages requires=['rauth', 'six'] setup(name='contextio', version='1.5', 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 here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() requires=['rauth', 'six'] setup(name='contextio', version='1.4', description='Library for accessing the Context.IO API v2.0 in Python', long_descr...
apache-2.0
Python
4b89ff198c79abdce4db6b8f426564dcc11abc2a
Bump version (#245)
balloob/netdisco
setup.py
setup.py
"""Setup file for netdisco.""" import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as readme_file: long_description = readme_file.read() setup( name='netdisco', version='2.4.0', descriptio...
"""Setup file for netdisco.""" import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as readme_file: long_description = readme_file.read() setup( name='netdisco', version='2.3.0', descriptio...
mit
Python
09688a937f685ef866b1270ce8279e2cdb307f4e
update ConcurrentUtils dependency
PRIArobotics/HedgehogServer
setup.py
setup.py
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.absp...
"""A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.absp...
agpl-3.0
Python
3e45590d39d9107c340ef5d5eb31995ff988c111
Fix UnicodeDecodeError on Windows on installation
tatterdemalion/django-nece
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup with open('README.rst', 'rb') as f: ld = f.read().decode('utf8') long_description = ld.replace(ld[0:ld.find('nece?')], '') version = '0.7.5' description = "A content translation framework using Postgresql's jsonb" + \ " field in the background" url = 'htt...
# -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as f: ld = f.read() long_description = ld.replace(ld[0:ld.find('nece?')], '') version = '0.7.5' description = "A content translation framework using Postgresql's jsonb" + \ " field in the background" url = 'https://github.com/tatte...
bsd-3-clause
Python
2bcfaf3333b1bd80d525c41e2593784eeb73dbc8
Bump version
getsentry/responses,getsentry/responses
setup.py
setup.py
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys from setuptools import setup from setuptools.command.test import test as TestCommand setup_requires = [] if "test" in sys.argv: s...
#!/usr/bin/env python """ responses ========= A utility library for mocking out the `requests` Python library. :copyright: (c) 2015 David Cramer :license: Apache 2.0 """ import sys from setuptools import setup from setuptools.command.test import test as TestCommand setup_requires = [] if "test" in sys.argv: s...
apache-2.0
Python
2c435bf7dfe01af306ca981b8d418d5e66214de7
Bump version to v0.4.1
yunojuno/django-perimeter,yunojuno/django-perimeter
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-perimeter', version='0.4.2', packages=['perimeter'...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-perimeter', version='0.4.1', packages=['perimeter'...
mit
Python
4bb6876b089375e228320162b7955bcdfa824f41
Update the startup command to use the new version of the rug
openstack/akanda-rug,markmcclain/astara,dreamhost/akanda-rug,openstack/akanda-rug,stackforge/akanda-rug,stackforge/akanda-rug
setup.py
setup.py
from setuptools import setup, find_packages setup( name='akanda-rug', version='0.1.5', description='Akanda Router Update Generator manages tenant routers', author='DreamHost', author_email='dev-community@dreamhost.com', url='http://github.com/dreamhost/akanda-rug', license='BSD', instal...
from setuptools import setup, find_packages setup( name='akanda-rug', version='0.1.5', description='Akanda Router Update Generator manages tenant routers', author='DreamHost', author_email='dev-community@dreamhost.com', url='http://github.com/dreamhost/akanda-rug', license='BSD', instal...
apache-2.0
Python
b28fe8e05f9173dd36bb0004f10ddcc669317108
fix ^^
ondrejsika/deploy,ondrejsika/deploy
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "deploy", version = "1.0.0", url = 'http://ondrejsika.com/docs/deploy', download_url = 'https://github.com/sikaondrej/deploy', license = 'GNU LGPL v.3', description = "Easy deploy Python WSG...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name = "deploy", version = "1.0.0", url = 'http://ondrejsika.com/docs/deploy', download_url = 'https://github.com/sikaondrej/deploy', license = 'GNU LGPL v.3', description = "Easy deploy Python WSG...
mit
Python
f7647916ff3c0bfd3c10ddf1ef2ceebb666a53ce
Bump version to 0.0.2
yakky/giturlparse.py,FriendCode/giturlparse.py,yakky/giturlparse
setup.py
setup.py
#!/usr/bin/python try: from setuptools import setup, Extension has_setuptools = True except ImportError: from distutils.core import setup, Extension has_setuptools = False version_string = '0.0.2' setup_kwargs = {} # Requirements install_requires = [ # PyPi # Non PyPi ] dependency_links = ...
#!/usr/bin/python try: from setuptools import setup, Extension has_setuptools = True except ImportError: from distutils.core import setup, Extension has_setuptools = False version_string = '0.0.1' setup_kwargs = {} # Requirements install_requires = [ # PyPi # Non PyPi ] dependency_links = ...
apache-2.0
Python
c0d84dcf4fd83957097a5d905aced5a3865885ea
add py34
reinout/twine,pypa/twine,beni55/twine,jamesblunt/twine,sigmavirus24/twine,mhils/twine,warner/twine,dstufft/twine
setup.py
setup.py
# Copyright 2013 Donald Stufft # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
# Copyright 2013 Donald Stufft # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
apache-2.0
Python
c3b79a9ec9e38e7acd5944c57ea2e35f98f3451e
rename pypi package
ruleant/KeenClient-Python,keenlabs/KeenClient-Python,isotoma/KeenClient-Python
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='keen-client', version='0.1', description='Python Client for Keen.io', author='Keen Labs', author_email='team@keen.io', url='https://github.com/keenlabs/KeenClient-Python', packages=['keen'], )
#!/usr/bin/env python from distutils.core import setup setup(name='KeenClient', version='0.1', description='Python Client for Keen.io', author='Keen Labs', author_email='team@keen.io', url='https://github.com/keenlabs/KeenClient-Python', packages=['keen'], )
mit
Python
cf28326c5684633b15591c74312c38ea21033845
Fix another typo data_files glob expression
cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from glob import glob from setuptools import setup setup_args = dict( name = 'jupyterlmod', packages = ['jupyterlmod', 'lmod'], version = "1.7.4", description = "jupyterlmod: notebook server extension to interact with L...
#!/usr/bin/env python # coding: utf-8 from glob import glob from setuptools import setup setup_args = dict( name = 'jupyterlmod', packages = ['jupyterlmod', 'lmod'], version = "1.7.3", description = "jupyterlmod: notebook server extension to interact with L...
mit
Python
695d8f42a54a32cdcfd288f0fa7be959b1e93629
Fix setup.py to declare cas.py as a module, not a package
python-cas/python-cas
setup.py
setup.py
#!/usr/bin/env python from __future__ import absolute_import import codecs try: from setuptools import setup except ImportError: from distutils.core import setup with codecs.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( author='Ming Chen', author_email='mockey.chen@gmail.com...
#!/usr/bin/env python from __future__ import absolute_import import codecs try: from setuptools import setup except ImportError: from distutils.core import setup with codecs.open('README.rst', encoding='utf-8') as f: readme = f.read() setup( author='Ming Chen', author_email='mockey.chen@gmail.com...
mit
Python
6abf68e384e16d8f6de1a438e3af75872a40c0e2
Add the python-bugzilla requirement
rbrady/filch
setup.py
setup.py
# The MIT License (MIT) # # Copyright (c) 2016 Ryan Brady <ryan@ryanbrady.org> # # 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 #...
# The MIT License (MIT) # # Copyright (c) 2016 Ryan Brady <ryan@ryanbrady.org> # # 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
a4012c9d0492927e2f6bdd4868d22faeea16d422
Correct package requirement for websocket
kovacsbalu/pushbullet.py,Saturn/pushbullet.py,aerobit/pushbullet.py,randomchars/pushbullet.py
setup.py
setup.py
import os import sys from setuptools import setup with open("./pushbullet/__version__.py") as version_file: version = version_file.read().split("\"")[1] if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() def read(fname): try: with open(os.path.join(os.path.di...
import os import sys from setuptools import setup with open("./pushbullet/__version__.py") as version_file: version = version_file.read().split("\"")[1] if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() def read(fname): try: with open(os.path.join(os.path.di...
mit
Python
90e47db9c6ef3f35feddff32801c970e39e71f86
設定setup.py
i3thuan5/gi2_liau7_khoo3,i3thuan5/gi2_liau7_khoo3
setup.py
setup.py
from distutils.core import setup setup( name='gi2_liau7_khoo3', packages=[], version='0.1.0', author='薛丞宏', author_email='ihcaoe@gmail.com', url='https://xn--v0qr21b.xn--kpry57d/', keywords=[ 'Corpus', 'gí-liāu-khòo', '語料庫', 'gi2-liau7-khoo3', 'Taiwan', 'Taiwanese', ], ...
from distutils.core import setup setup( name='gi2_liau7_khoo3', packages=[], version='0.1.0', author='薛丞宏', author_email='ihcaoe@gmail.com', url='https://xn--v0qr21b.xn--kpry57d/', keywords=[ 'Corpus', 'gí-liāu-khòo', '語料庫', 'gi2-liau7-khoo3', 'Taiwan', 'Taiwanese', ], ...
mit
Python
456c8f566d890c5f2759ad5ed3ddf5ad409f70a4
Bump to v0.2.0
artefactual-labs/agentarchives
setup.py
setup.py
from setuptools import setup setup( name="agentarchives", description="Clients to retrieve, add, and modify records from archival management systems", author="Artefactual Systems", author_email="info@artefactual.com", license="AGPL 3", version="0.2.0", packages=["agentarchives", "agentarchi...
from setuptools import setup setup( name="agentarchives", description="Clients to retrieve, add, and modify records from archival management systems", author="Misty De Meo", author_email="mdemeo@artefactual.com", license="AGPL 3", version="0.1", packages=["agentarchives", "agentarchives.arc...
agpl-3.0
Python
2a59ab6f1b00a5978f5557397d7833a6f978dee7
Work around non-GCC compliant compiler nonsense.
chrishokamp/fuel,dmitriy-serdyuk/fuel,dribnet/fuel,orhanf/fuel,harmdevries89/fuel,glewis17/fuel,janchorowski/fuel,bouthilx/fuel,hantek/fuel,dmitriy-serdyuk/fuel,markusnagel/fuel,chrishokamp/fuel,bouthilx/fuel,glewis17/fuel,aalmah/fuel,janchorowski/fuel,codeaudit/fuel,orhanf/fuel,udibr/fuel,mila-udem/fuel,capybaralet/fu...
setup.py
setup.py
"""Installation script.""" from os import path import sys from setuptools import find_packages, setup from Cython.Build import cythonize from distutils.extension import Extension HERE = path.abspath(path.dirname(__file__)) with open(path.join(HERE, 'README.rst')) as f: LONG_DESCRIPTION = f.read().strip() # Visua...
"""Installation script.""" from os import path from setuptools import find_packages, setup from Cython.Build import cythonize from distutils.extension import Extension HERE = path.abspath(path.dirname(__file__)) with open(path.join(HERE, 'README.rst')) as f: LONG_DESCRIPTION = f.read().strip() setup( name='f...
mit
Python
8d65366a0e79b56cbfc7ecf5e6428b9bf06785b8
add six as requirement
MartijnBraam/python-isc-dhcp-leases
setup.py
setup.py
from distutils.core import setup, Command def discover_and_run_tests(): import os import sys import unittest # get setup.py directory setup_file = sys.modules['__main__'].__file__ setup_dir = os.path.abspath(os.path.dirname(setup_file)) # use the default shared TestLoader instance te...
from distutils.core import setup, Command def discover_and_run_tests(): import os import sys import unittest # get setup.py directory setup_file = sys.modules['__main__'].__file__ setup_dir = os.path.abspath(os.path.dirname(setup_file)) # use the default shared TestLoader instance te...
mit
Python
49ac4dc3e7506f35d2f3ad695afaf9c89f08720b
Install the tests and test utilities
glyph/txsni
setup.py
setup.py
import os from setuptools import setup base_dir = os.path.dirname(__file__) with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() setup( name="TxSNI", description="easy-to-use SNI endpoint for twisted", packages=[ "txsni", "txsni.test", "txsni.tes...
import os from setuptools import setup base_dir = os.path.dirname(__file__) with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() setup( name="TxSNI", description="easy-to-use SNI endpoint for twisted", packages=[ "txsni", "twisted.plugins", ], in...
mit
Python
84dba52500a8120acfc3726ab1e6d7e24334bef3
Fix links conversion in description
hickford/MechanicalSoup,hemberger/MechanicalSoup,MechanicalSoup/MechanicalSoup
setup.py
setup.py
from setuptools import setup # Always prefer setuptools over distutils from codecs import open # To use a consistent encoding from os import path import re def requirements_from_file(filename): """Parses a pip requirements file into a list.""" return [line.strip() for line in open(filename, 'r') ...
from setuptools import setup # Always prefer setuptools over distutils from codecs import open # To use a consistent encoding from os import path import re def requirements_from_file(filename): """Parses a pip requirements file into a list.""" return [line.strip() for line in open(filename, 'r') ...
mit
Python
e7b8e0dc5b20a29cba79ecc751d5958fde9e18ba
Remove reference to Python2
psychomario/PyPXE
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from sys import version_info, exit import pypxe deps = [] # require argparse on Python <2.7 if version_info[0] == 2 and version_info[1] < 7: deps.append('argparse') setup(name='PyPXE', version=pypxe.__version__, description='Pure Pyt...
#!/usr/bin/env python from setuptools import setup, find_packages from sys import version_info, exit import pypxe deps = [] # require argparse on Python <2.7 if version_info[0] == 2 and version_info[1] < 7: deps.append('argparse') setup(name='PyPXE', version=pypxe.__version__, description='Pure Pyt...
mit
Python
bbd32864cabce9ba5cb1051fa9d78d69c8feb5e5
Make it easy to toggle cython profiling
cropleyb/pentai,cropleyb/pentai,cropleyb/pentai
setup.py
setup.py
# # Kivy - Crossplatform NUI toolkit # http://kivy.org/ # from distutils.core import setup from os.path import sep from os import environ import sys platform = sys.platform kivy_ios_root = environ.get('KIVYIOSROOT', None) if kivy_ios_root is not None: platform = 'ios' # ------------------------------------------...
# # Kivy - Crossplatform NUI toolkit # http://kivy.org/ # from distutils.core import setup from os.path import sep from os import environ import sys platform = sys.platform kivy_ios_root = environ.get('KIVYIOSROOT', None) if kivy_ios_root is not None: platform = 'ios' # ------------------------------------------...
mit
Python
1056b5072954d75c963d170992cc21f8515143dc
Bump version number
erussell/django-redis-status
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-redis-status', version='1.0.4', description='A django application that displays the load and some other statistics about your memcached instances in the admin.', long_description=open('README.md').read(), author='Eric Russell', aut...
from setuptools import setup, find_packages setup( name='django-redis-status', version='1.0.3', description='A django application that displays the load and some other statistics about your memcached instances in the admin.', long_description=open('README.md').read(), author='Eric Russell', aut...
bsd-3-clause
Python
6d5f02c51592dafb96ffa19bcd9ef17f94017d0f
Bump psycopg2 version for manylinux builds
praekelt/seed-staged-based-messaging,praekelt/seed-stage-based-messaging,praekelt/seed-stage-based-messaging
setup.py
setup.py
import codecs import os import re from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # Stolen from txacme with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f: return f.read() def get_version(package): """ Return packag...
import codecs import os import re from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # Stolen from txacme with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f: return f.read() def get_version(package): """ Return packag...
bsd-3-clause
Python
bd99e751558eeeeb6ffe0aa8c6cbe417fe042a60
update setup.py with metadata
alfredodeza/pecan-notario
setup.py
setup.py
from setuptools import setup, find_packages import re module_file = open("pecan_notario/__init__.py").read() metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file)) setup( name='pecan-notario', version=metadata['version'], description=""" """, long_description=None, classifie...
from setuptools import setup, find_packages import re module_file = open("pecan_notario/__init__.py").read() metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file)) setup( name='pecan-notario', version=metadata['version'], description=""" """, long_description=None, classifie...
bsd-3-clause
Python
e0d1d8ae9dd8d620500ae1b392e63c094604569f
update version
weblyzard/weblyzard_api,weblyzard/weblyzard_api,weblyzard/weblyzard_api
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 from setuptools import setup, find_packages from setuptools.command import sdist setup( name='weblyzard_api', version='0.7.20190604-dev', description=' Web services for weblyzard', author='Albert Weichselbraun, Heinz-Peter Lang, Max Göbel and Philipp Kuntschik',...
#!/usr/bin/env python # encoding: utf-8 from setuptools import setup, find_packages from setuptools.command import sdist setup( name='weblyzard_api', version='0.7.20190529-dev', description=' Web services for weblyzard', author='Albert Weichselbraun, Heinz-Peter Lang, Max Göbel and Philipp Kuntschik',...
apache-2.0
Python
3c618094f45ecfa76e4a5189ab27023b30dadf05
update version number
klahnakoski/mo-dots
setup.py
setup.py
# encoding: utf-8 # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. # # Author: Kyle Lahnakoski (kyle@lahnakoski.com) # from distutils.util import convert_path import os...
# encoding: utf-8 # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. # # Author: Kyle Lahnakoski (kyle@lahnakoski.com) # from distutils.util import convert_path import os...
mpl-2.0
Python
a796c3ebcf8c0afae92805cab06067e48a4dadb6
Update setup.py
weijia/djangoautoconf,weijia/djangoautoconf
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- 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() readme = open('README.rst').read() history = open('HISTORY.rst...
#!/usr/bin/env python # -*- coding: utf-8 -*- 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() readme = open('README.rst').read() history = open('HISTORY.rst...
bsd-3-clause
Python
f5c1b478c78b984b2d5edb2d43afd2ac0df83ab0
add install requirements
glibin/tortik,glibin/tortik,glibin/tortik
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages, Command from setuptools.command.build_py import build_py from tortik import version def find_package_data(package, *directories): data_files = [] current_dir = os.path.abspath(os.curdir) package_dir = os.path.dirname(__import__(...
#!/usr/bin/env python import os from setuptools import setup, find_packages, Command from setuptools.command.build_py import build_py from tortik import version def find_package_data(package, *directories): data_files = [] current_dir = os.path.abspath(os.curdir) package_dir = os.path.dirname(__import__(...
mit
Python
c669058c6a12229505644d3498b480d15d4f53a9
Add SciPY dependency.
antoinearnoud/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france,adrienpacifico/openfisca-france,benjello/openfisca-france,benjello/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,SophieIPP/openfisca-france,sgmap/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute...
#! /usr/bin/env python # -*- coding: utf-8 -*- # OpenFisca -- A versatile microsimulation software # By: OpenFisca Team <contact@openfisca.fr> # # Copyright (C) 2011, 2012, 2013, 2014 OpenFisca Team # https://github.com/openfisca # # This file is part of OpenFisca. # # OpenFisca is free software; you can redistribute...
agpl-3.0
Python
737d749cf8d3ceac2cf198c3b490636e60e22695
Cut a 2.0.6 release
bcantoni/ccm,mike-tr-adamson/ccm,mikefero/ccm,mike-tr-adamson/ccm,pcmanus/ccm,thobbs/ccm,mikefero/ccm,pcmanus/ccm,thobbs/ccm,pcmanus/ccm,bcantoni/ccm,mike-tr-adamson/ccm,tolbertam/ccm,tolbertam/ccm
setup.py
setup.py
#!/usr/bin/env python from os.path import abspath, join, dirname from platform import system from shutil import copyfile try: from setuptools import setup except ImportError: from distutils.core import setup ccmscript = 'ccm' if system() == "Windows": copyfile('ccm', 'ccm.py') ccmscript = 'ccm.py' s...
#!/usr/bin/env python from os.path import abspath, join, dirname from platform import system from shutil import copyfile try: from setuptools import setup except ImportError: from distutils.core import setup ccmscript = 'ccm' if system() == "Windows": copyfile('ccm', 'ccm.py') ccmscript = 'ccm.py' s...
apache-2.0
Python
933f6ebebf81c2400bfa77c49f3d0f95de809218
update setup.py
ap--/python-seabreeze,ap--/python-seabreeze,ap--/python-seabreeze
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, Extension, find_packages import os import platform SEABREEZE_VERSION = "0.6.0" # Platform specific libraries and source files if platform.system() == "Windows": libs = ['winusb'] ignore_subdirs = {'linux', 'osx', 'posix'} elif platform.system() == "Darwin...
# -*- coding: utf-8 -*- import os.path import platform import sys from setuptools import setup, Extension, find_packages SEABREEZE_VERSION = "0.6.0" if "--without-cseabreeze" in sys.argv: sys.argv.remove("--without-cseabreeze") # this is a hack... # user requests to not install cython wrapper _extension...
mit
Python
ae4ff7cffa1273338fff56eb531f2a6f5989de41
Use `open` instead of `file` for compatibility
tiddlyweb/tiddlywebplugins.atom
setup.py
setup.py
import os from setuptools import setup, find_packages VERSION = '1.4.5' setup( namespace_packages = ['tiddlywebplugins'], name = 'tiddlywebplugins.atom', version = VERSION, description = 'A TiddlyWeb plugin that provides an Atom feed of tiddler collections.', long_description...
import os from setuptools import setup, find_packages VERSION = '1.4.5' setup( namespace_packages = ['tiddlywebplugins'], name = 'tiddlywebplugins.atom', version = VERSION, description = 'A TiddlyWeb plugin that provides an Atom feed of tiddler collections.', long_description...
bsd-3-clause
Python
1747979f58eb2e84f605ecc790e6e21ff57f43cb
bump version
louiejtaylor/pyViKO,louiejtaylor/pyViKO
setup.py
setup.py
from distutils.core import setup #with open("README.md", "r") as fh: # long_description = fh.read() setup(name='pyviko', version='1.1.0.5', description='Design knockout viruses in Python', author='LJ Taylor', author_email='l'+'taylor'+str(3+4)+'@'+'tu'+'lane.edu', url='https://github.com/louiejtaylor/pyViKO'...
from distutils.core import setup #with open("README.md", "r") as fh: # long_description = fh.read() setup(name='pyviko', version='1.1.0.4', description='Design knockout viruses in Python', author='LJ Taylor', author_email='l'+'taylor'+str(3+4)+'@'+'tu'+'lane.edu', url='https://github.com/louiejtaylor/pyViKO'...
mit
Python
1acbbaf4aa30ca02ab2451b452f1bd805fd020b2
Update required python to 3.6 as we need ordered dicts for the new currying to work.
dwt/fluent
setup.py
setup.py
#!/usr/bin/env python # encoding: utf8 from setuptools import setup import os here = os.path.dirname(os.path.abspath(__file__)) def readme(): "Falls back to just file().read() on any error, because the conversion to rst is only really relevant when uploading the package to pypi" from subprocess import Called...
#!/usr/bin/env python # encoding: utf8 from setuptools import setup import os here = os.path.dirname(os.path.abspath(__file__)) def readme(): "Falls back to just file().read() on any error, because the conversion to rst is only really relevant when uploading the package to pypi" from subprocess import Called...
isc
Python
8ea26ce7ba95787fb635f5254c4df1bdc6e7bba5
fix setup.py again (and move release to .post2)
mincrmatt12/pycommunicate,mincrmatt12/pycommunicate,mincrmatt12/pycommunicate
setup.py
setup.py
from setuptools import setup, find_packages def get_markdown(): with open('README.md') as f: return f.read() requires = '''click eventlet Flask Flask-SocketIO itsdangerous Jinja2 MarkupSafe python-engineio python-socketio six Werkzeug wheel'''.splitlines() setup( name='pycommunicate', version=...
from setuptools import setup, find_packages def get_markdown(): with open('README.md') as f: return f.read() requires = '''click eventlet Flask Flask-SocketIO itsdangerous Jinja2 MarkupSafe python-engineio python-socketio six Werkzeug wheel'''.splitlines() setup( name='pycommunicate', version=...
mit
Python
6a529cff8a056a22f1df4360ab7a56c5199bfb92
Add PODRECAST_CGI_BIN for CGI installation.
smblott-github/podrecast,smblott-github/podrecast,smblott-github/podrecast
setup.py
setup.py
#!/usr/bin/env python import sys, os, subprocess from distutils.core import setup from distutils.command.install import install as Install # #################################################################### # Custom installer... class Installer(Install): env = [ 'PODRECAST_CGI_BIN', 'CGI_BIN' ] cgi = [ '/us...
#!/usr/bin/env python import sys, os, subprocess from distutils.core import setup from distutils.command.install import install as Install # #################################################################### # Custom installer... class Installer(Install): cgi = [ '/usr/lib/cgi-bin', '~/public_html/cgi-bin' ] ...
mit
Python
cbe2d4ef5c91c022aeb233b38379b571b59a47da
Bump version to 0.40.1
opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2' ] tests_requires = [ 'factory_boy==2.4.1', 'mock==1.0.1', 'mock-django==0.6.6', 'six>=1.7.3', 'django-celery==3.1.16', ] install_requires = [ 'Celery>=3.1.15,<3.2', 'croniter>=0.3.4,<0...
#!/usr/bin/env python from setuptools import setup, find_packages dev_requires = [ 'Sphinx==1.2.2' ] tests_requires = [ 'factory_boy==2.4.1', 'mock==1.0.1', 'mock-django==0.6.6', 'six>=1.7.3', 'django-celery==3.1.16', ] install_requires = [ 'Celery>=3.1.15,<3.2', 'croniter>=0.3.4,<0...
mit
Python
da54f93ac20a1df52e006914931106117e31cd60
Fix syntax error with comma
JustinShenk/party-pi,JustinShenk/party-pi,JustinShenk/party-pi
setup.py
setup.py
from setuptools import setup, find_packages import re import sys VERSION = '0.1.6' # x.y.z[-dev#] REPOSITORY = 'https://github.com/JustinShenk/party-pi' PACKAGES = find_packages(where='partypi') README = '' with open('README.rst', 'r') as f: README = f.read() README = re.sub(r' _(.+): ([^(http)].+)', ...
from setuptools import setup, find_packages import re import sys VERSION = '0.1.6' # x.y.z[-dev#] REPOSITORY = 'https://github.com/JustinShenk/party-pi' PACKAGES = find_packages(where='partypi') README = '' with open('README.rst', 'r') as f: README = f.read() README = re.sub(r' _(.+): ([^(http)].+)', ...
mit
Python
8940e13062717dcd3490487cc0cc82cc16b7b5ca
add classifiers and long description to setup file
jetruby/python-goose,tanzaho/python-goose,cronycle/python-goose,jetruby/python-goose,cronycle/python-goose,tanzaho/python-goose,tanzaho/python-goose,jetruby/python-goose,cronycle/python-goose
setup.py
setup.py
# -*- coding: utf-8 -*- """\ This is a python port of "Goose" orignialy licensed to Gravity.com under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Python port was written by Xavier Grangier for Recrutae Gravity.co...
import os from setuptools import setup, find_packages from imp import load_source version = load_source("version", os.path.join("goose", "version.py")) setup(name='goose', version=version.__version__, description="Html Content / Article Extractor", long_description="", keywords='', author='Xavier ...
apache-2.0
Python
15dc1539bd343f8e72ca12daebd3cad4dd9d3c22
fix import error
jeffkinnison/shadho,jeffkinnison/shadho
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup from setuptools.command.install import install LONG_DESCRIPTION = "" with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f: LONG_DESCRIPTION = f.read() setup( name='shadho', version='0.2post1', description='Hyperparamete...
#!/usr/bin/env python from setuptools import setup from setuptools.command.install import install LONG_DESCRIPTION = "" with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f: LONG_DESCRIPTION = f.read() setup( name='shadho', version='0.2post1', description='Hyperparameter optimize...
mit
Python
4a0193a8ec7b70c4e26f7e27d56afdeff43994eb
increment version
transcriptic/runner
setup.py
setup.py
from setuptools import setup setup( name='transcriptic', version='1.4.0', py_modules=['transcriptic', 'ap2en'], install_requires=[ 'Click>=5.1', 'requests' ], entry_points=''' [console_scripts] transcriptic=transcriptic:cli ''', )
from setuptools import setup setup( name='transcriptic', version='1.3.14', py_modules=['transcriptic', 'ap2en'], install_requires=[ 'Click>=5.1', 'requests' ], entry_points=''' [console_scripts] transcriptic=transcriptic:cli ''', )
bsd-3-clause
Python
e4c06e2dec1db9445e74aebec5e32d91db7425ee
Bump version to 1.4.5
Stanford-Online/edx-ora2,EDUlib/edx-ora2,edx/edx-ora2,Edraak/edx-ora2,Stanford-Online/edx-ora2,Lektorium-LLC/edx-ora2,Edraak/edx-ora2,Lektorium-LLC/edx-ora2,Lektorium-LLC/edx-ora2,EDUlib/edx-ora2,Edraak/edx-ora2,miptliot/edx-ora2,edx/edx-ora2,miptliot/edx-ora2,edx/edx-ora2,Edraak/edx-ora2,Stanford-Online/edx-ora2,Lekto...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages def is_requirement(line): """ Return True if the requirement line is a package requirement; that is, it is not blank, a comment, or editable. """ # Remove whitespace at the start/end of the line line = line.strip() # Skip bl...
#!/usr/bin/env python from setuptools import setup, find_packages def is_requirement(line): """ Return True if the requirement line is a package requirement; that is, it is not blank, a comment, or editable. """ # Remove whitespace at the start/end of the line line = line.strip() # Skip bl...
agpl-3.0
Python
f26f49e04be01569869a66007568d17589ff66f1
Update download_url
ZeroCater/zc_common,ZeroCater/zc_common
setup.py
setup.py
import os from setuptools import setup def get_packages(package): """ Return root package and all sub-packages. """ return [dirpath for dirpath, dirnames, filenames in os.walk(package) if os.path.exists(os.path.join(dirpath, '__init__.py'))] setup( name='zc_common', ...
import os from setuptools import setup def get_packages(package): """ Return root package and all sub-packages. """ return [dirpath for dirpath, dirnames, filenames in os.walk(package) if os.path.exists(os.path.join(dirpath, '__init__.py'))] setup( name='zc_common', ...
mit
Python
00ce0146b7d3799673f63e909d76fde243415099
add missing static files
bepasty/bepasty-server,makefu/bepasty-server,makefu/bepasty-server,makefu/bepasty-server,bepasty/bepasty-server,bepasty/bepasty-server,bepasty/bepasty-server
setup.py
setup.py
#!/usr/bin/python from setuptools import setup, find_packages from bepasty import (project, version, license, description, author, author_email, maintainer, maintainer_email) readme_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.rst') with open...
#!/usr/bin/python from setuptools import setup, find_packages from bepasty import (project, version, license, description, author, author_email, maintainer, maintainer_email) readme_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.rst') with open...
bsd-2-clause
Python
6027c16ddd85339b9ceec39370a1e50df93f71e7
Update distutils setup script to install the new manual page
thaim/ansible,thaim/ansible
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='ansible', version='1.0', description='Minimal SSH command and control', author='Michael DeHaan', author_email='michael.dehaan@gmail.com', url='http://github.com/mpdehaan/ansible/', license='MIT', package_dir =...
#!/usr/bin/env python from distutils.core import setup setup(name='ansible', version='1.0', description='Minimal SSH command and control', author='Michael DeHaan', author_email='michael.dehaan@gmail.com', url='http://github.com/mpdehaan/ansible/', license='MIT', package_dir =...
mit
Python
d69c1428d43334746fe295f16baabd32310ceb49
Add keywords to setup.py
kronion/django-pipeline,jazzband/django-pipeline,cyberdelia/django-pipeline,cyberdelia/django-pipeline,kronion/django-pipeline,d9pouces/django-pipeline,jazzband/django-pipeline,d9pouces/django-pipeline,beedesk/django-pipeline,kronion/django-pipeline,beedesk/django-pipeline,jazzband/django-pipeline,cyberdelia/django-pip...
setup.py
setup.py
# -*- coding: utf-8 -*- import io from setuptools import setup, find_packages import sys install_requires = [] if (sys.version_info[0], sys.version_info[1]) < (3, 2): install_requires.append('futures>=2.1.3') setup( name='django-pipeline', version='1.6.12', description='Pipeline is an asset packaging...
# -*- coding: utf-8 -*- import io from setuptools import setup, find_packages import sys install_requires = [] if (sys.version_info[0], sys.version_info[1]) < (3, 2): install_requires.append('futures>=2.1.3') setup( name='django-pipeline', version='1.6.12', description='Pipeline is an asset packaging...
mit
Python
c02b42b10006c7a02256e5535420cf534cecc276
bump version
wasp/waspy
setup.py
setup.py
from setuptools import setup try: import pypandoc long_description = pypandoc.convert('readme.md', 'rst') except(IOError, ImportError): long_description = open('readme.md').read() setup( name='waspy', version='0.12.0', install_requires=[ 'h11==0.7.0', 'aioamqp==0.8.2', ...
from setuptools import setup try: import pypandoc long_description = pypandoc.convert('readme.md', 'rst') except(IOError, ImportError): long_description = open('readme.md').read() setup( name='waspy', version='0.11.0', install_requires=[ 'h11==0.7.0', 'aioamqp==0.8.2', ...
apache-2.0
Python
e5cbbf323ac1cc7e8825bb2d1e79a8c6d6beabb4
add kitchen as deploy dep.
oVirt/ovirt-engine-cli,oVirt/ovirt-engine-cli
setup.py
setup.py
import os import sys from distutils.command.build import build from setuptools import setup, Command version_info = { 'name': 'ovirt-shell', 'version': '3.1.0.7-SNAPSHOT', 'description': 'A command-line interface to oVirt Virtualization', 'author': 'Michael Pasternak', 'author_email': 'mpastern@...
import os import sys from distutils.command.build import build from setuptools import setup, Command version_info = { 'name': 'ovirt-shell', 'version': '3.1.0.7-SNAPSHOT', 'description': 'A command-line interface to oVirt Virtualization', 'author': 'Michael Pasternak', 'author_email': 'mpastern@...
apache-2.0
Python
b8babaa5b8afb32bf61e586f5e605679bdae78a7
update version
bird-house/birdhousebuilder.recipe.pywps
setup.py
setup.py
# -*- coding: utf-8 -*- """ This module contains the tool of birdhousebuilder.recipe.pywps """ from setuptools import find_packages from setuptools import setup name = 'birdhousebuilder.recipe.pywps' version = '0.8.0' description = 'A Buildout recipe to install and configure PyWPS Web Processing Service with conda.' ...
# -*- coding: utf-8 -*- """ This module contains the tool of birdhousebuilder.recipe.pywps """ from setuptools import find_packages from setuptools import setup name = 'birdhousebuilder.recipe.pywps' version = '0.6.0' description = 'A Buildout recipe to install and configure PyWPS Web Processing Service with conda.' ...
apache-2.0
Python
150c0c509068802394f87862b85a5501b3518967
Add note to IRPickleField that it currently doesnt support strings/bytes
kata198/indexedredis,kata198/indexedredis
IndexedRedis/fields/pickle.py
IndexedRedis/fields/pickle.py
# Copyright (c) 2014, 2015, 2016 Timothy Savannah under LGPL version 2.1. See LICENSE for more information. # # fields.pickle - Some types and objects related to pickled . Use this in place of IRField ( in FIELDS array ) to activate # vim:set ts=8 shiftwidth=8 softtabstop=8 noexpandtab : import sys from . import IR...
# Copyright (c) 2014, 2015, 2016 Timothy Savannah under LGPL version 2.1. See LICENSE for more information. # # fields.pickle - Some types and objects related to pickled . Use this in place of IRField ( in FIELDS array ) to activate # vim:set ts=8 shiftwidth=8 softtabstop=8 noexpandtab : import sys from . import IR...
lgpl-2.1
Python
6905e5941c334d56b40f25182b75c5d163aee773
Bump version to 0.1.9
chop-dbhi/schedule,mrhwick/schedule,dbader/schedule,dylwhich/schedule,seemethere/schedule,imiric/schedule,cfrco/schedule
setup.py
setup.py
import os import sys from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload -r PyPI') sys.exit() setup( name='schedule', packages=['schedule'], version='0.1.9', description='Job scheduling for humans.', long_description=(open('README.rst').re...
import os import sys from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload -r PyPI') sys.exit() setup( name='schedule', packages=['schedule'], version='0.1.8', description='Job scheduling for humans.', long_description=(open('README.rst').re...
mit
Python
726e6a1b6411e689db4163c2db16dfdee033bf9e
Increase version number.
PyBossa/pybossa-client
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pybossa-client', version='2.0.0', packages=find_packages(), install_requires=['requests>=0.13.0'], # metadata for upload to PyPI author='Open Knowledge Foundation Labs', # TODO: change author_email='teleyinex@gmail.com', descr...
from setuptools import setup, find_packages setup( name='pybossa-client', version='1.2.1', packages=find_packages(), install_requires=['requests>=0.13.0'], # metadata for upload to PyPI author='Open Knowledge Foundation Labs', # TODO: change author_email='teleyinex@gmail.com', descr...
mit
Python
add22bf63cf81ca816cf473d4554e27f6cde673b
fix version 0.1.3
go1dshtein/selectel-api
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='selectel-api', version='0.1.3', description='Simple selectel API', author='Kirill Goldshtein', author_email='goldshtein.kirill@gmail.com', url='https://github.com/go1dshtein/selectel-api', packages=['selectel'], i...
#!/usr/bin/env python from setuptools import setup setup(name='selectel-api', version='0.1.2', description='Simple selectel API', author='Kirill Goldshtein', author_email='goldshtein.kirill@gmail.com', url='https://github.com/go1dshtein/selectel-api', packages=['selectel'], i...
mit
Python
c76881af5d021fc374d3321d8ea0390cb8298979
Bump version to v1.0.6
sbussetti/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin,olivierdalang/django-nested-admin,sbussetti/django-nested-admin,olivierdalang/django-nested-admin
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='django-nested-admin', version="1.0.6", install_requires=[ 'six>=1.7.0', ], ...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='django-nested-admin', version="1.0.5", install_requires=[ 'six>=1.7.0', ], ...
bsd-2-clause
Python
ef33ce6739359b0324d8338e0d1d57296f083cb9
Add keywords and classifiers for PyPI.
tempbottle/pykafka,tempbottle/pykafka,benauthor/pykafka,appsoma/pykafka,sammerry/pykafka,fortime/pykafka,sontek/pykafka,aeroevan/pykafka,benauthor/pykafka,fortime/pykafka,jofusa/pykafka,sontek/pykafka,vortec/pykafka,thedrow/samsa,vortec/pykafka,wikimedia/operations-debs-python-pykafka,wikimedia/operations-debs-python-p...
setup.py
setup.py
#!/usr/bin/env python __license__ = """ Copyright 2015 Parse.ly, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable l...
#!/usr/bin/env python __license__ = """ Copyright 2015 Parse.ly, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable l...
apache-2.0
Python
058f760af4f2cfce69f3d9b97c139c7a79af20f9
Update setup.py
AntonKueltz/fastecdsa,AntonKueltz/fastecdsa,AntonKueltz/fastecdsa
setup.py
setup.py
from distutils.core import setup, Extension, Command class TestCommand(Command): user_options = [] description = "Run all tests" def initialize_options(self): pass def finalize_options(self): pass def run(self): from subprocess import call call(['python', '-m', '...
from distutils.core import setup, Extension, Command class TestCommand(Command): user_options = [] description = "Run all tests" def initialize_options(self): pass def finalize_options(self): pass def run(self): from subprocess import call call(['python', '-m', '...
unlicense
Python
3e33d281442763f19f066380facf3093e1bce714
Add long_description.
nabetama/slacky
setup.py
setup.py
""" Slacky ----- A Python package for Slack's JSON REST API(https://api.slack.com/). Slacky is Simple. ```````````` Save in a hello.py: .. code:: python from slacky import Slacky slacky = Slacky(token='<Your slack api token>') slacky.chat.post_message('#general', 'Hello World!!') ````````````````` A...
""" Slacky ----- A Python package for Slack's JSON REST API(https://api.slack.com/). Slacky is Simple. ```````````` Save in a hello.py: .. code:: python from slacky import Slacky slacky = Slacky(token='<Your slack api token>') slacky.chat.post_message('#general', 'Hello World!!') ````````````````` A...
mit
Python
2ab8aaccfe68d9c0ac27fd93ed52432e750435fd
Add GitHub repository URL to setup.py
ronnix/pyramid-mako-starters
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() setup( name='pyramid_mako_starters', version='0.1.1', a...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() setup( name='pyramid_mako_starters', version='0.1.1', a...
bsd-2-clause
Python
7874643d1f3033d18e6917d782291c5d8fb7a7f2
add markdown long description to module
seppemans/businesstimedelta
setup.py
setup.py
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name='businesstimedelta', version='1.0.1', description="Timedelta for business time. Supports exact amounts of time " + "(hours, seconds), custom schedules, holidays, and time zones.", ...
from setuptools import setup setup( name='businesstimedelta', version='1.0', description="Timedelta for business time. Supports exact amounts of time " + "(hours, seconds), custom schedules, holidays, and time zones.", classifiers=[ 'Development Status :: 5 - Production/Stable',...
mit
Python
1f6d9fc19db9fc62c22cc879cf1b76665ade3a5c
remove seaborn extra requirement
PermutaTriangle/Permuta
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="permuta", version="1.0.0", author="Permuta Triangle", author_email="henningu@ru.is", description="A comprehensive high ...
#!/usr/bin/env python import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="permuta", version="1.0.0", author="Permuta Triangle", author_email="henningu@ru.is", description="A comprehensive high ...
bsd-3-clause
Python
647916a821cb2677f70ac65719e464ecbd996b63
update description in setup.py
geggo/pyface,brett-patterson/pyface,pankajp/pyface,geggo/pyface
setup.py
setup.py
#!/usr/bin/env python # # Copyright (c) 2008-2011 by Enthought, Inc. # All rights reserved. """ PyQt/PySide backend for Traits and TraitsGUI (Pyface). The TraitsBackendQt project contains an implementation of TraitsGUI using PyQt or PySide. It provides Qt-based support for visualization and editing of Traits-based o...
#!/usr/bin/env python # # Copyright (c) 2008-2011 by Enthought, Inc. # All rights reserved. """ PyQt backend for Traits and TraitsGUI (Pyface). The TraitsBackendQt project contains an implementation of TraitsGUI using PyQt. It provides Qt-based support for visualization and editing of Traits-based objects. Prerequis...
bsd-3-clause
Python
8e99f8d70b553061d5f853470da03f028b69f35d
Make code work, hopefully.
rolando/crochet,wrmsr/crochet,itamarst/crochet
setup.py
setup.py
import os try: from setuptools import setup except ImportError: from distutils.core import setup def get_crochet_version(): """ Get crochet version from version module without importing more than necessary. """ this_dir_path = os.path.dirname(__file__) crochet_module_path = os.path.jo...
import os try: from setuptools import setup except ImportError: from distutils.core import setup def get_crochet_version(): """ Get crochet version from version module without importing more than necessary. """ this_dir_path = os.path.dirname(__file__) crochet_module_path = os.path.jo...
mit
Python
656a8905bde5c165485720a23a1256b54d271d36
Bump version.
jjacobson93/aiorpc
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup version = '0.1.1' install_requires = open('requirements.txt').read().strip().split() setup( name='aiorpc', description='A Python RPC library using RabbitMQ (aioamqp) and asyncio', version=version, url='https...
try: from setuptools import setup except ImportError: from distutils.core import setup version = '0.1.0' install_requires = open('requirements.txt').read().strip().split() setup( name='aiorpc', description='A Python RPC library using RabbitMQ (aioamqp) and asyncio', version=version, url='https...
mit
Python
8d0969679d9cb222bea5cd9efcdd345fc6fad633
change agent entry point
wywygmbh/cassandra_snapshotter,tamsky/cassandra_snapshotter,kikinteractive/cassandra_snapshotter,merlin83/cassandra_snapshotter,ajaysarda/cassandra_snapshotter
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from cassandra_snapshotter import __version__, __maintainer__, __email__ install_requires = [ 'argparse', 'fabric' ] setup( name='cassandra_snapshotter', version=__version__, author=__maintainer__, author_email=__email__, ...
#!/usr/bin/env python from setuptools import setup, find_packages from cassandra_snapshotter import __version__, __maintainer__, __email__ install_requires = [ 'argparse', 'fabric' ] setup( name='cassandra_snapshotter', version=__version__, author=__maintainer__, author_email=__email__, ...
bsd-3-clause
Python
88cc548975addac9c255101901c4bdd2a8d750bf
fix ordering
coco-project/backends
setup.py
setup.py
from setuptools import setup, find_packages setup( name="ipynbsrv-backends", description="Various ipynbsrv backend contract implementations.", version="0.0.1", packages=find_packages('src'), package_dir={'': 'src'}, namespace_packages=['ipynbsrv'], install_requires=[ 'docker-py==1.3...
from setuptools import setup, find_packages setup( name="ipynbsrv-backends", description="Various ipynbsrv backend contract implementations.", version="0.0.1", packages=find_packages('src'), package_dir={'': 'src'}, namespace_packages=['ipynbsrv'], install_requires=[ 'docker-py==1.3...
bsd-3-clause
Python
287f4ec17a86d508b30bf188600c832c8d444d98
Fix setup.py: read rst with absolute path
saitoha/canossa
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from canossa import __version__, __license__, __author__ import inspect, os filename = inspect.getfile(inspect.currentframe()) dirpath = os.path.abspath(os.path.dirname(inspect.getfile(inspect.currentframe()))) import canossa.line canossa.line.test...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from canossa import __version__, __license__, __author__ import canossa.line canossa.line.test() setup(name = 'canossa', version = __version__, description = 'Provides basic, transparent, off-scre...
mit
Python
35e2d4791be9470c4a48e5b84e885f7b759ebd3d
Correct the description and update the dev status to stable.
grimwm/py-dictobj,grimwm/py-dictobj
setup.py
setup.py
from setuptools import setup import os def read(filename): with open(filename) as fin: return fin.read() setup( name='dictobj', version='0.2.5', author='William Grim', author_email='william@grimapps.com', url='https://github.com/grimwm/py-dictobj', classifiers = [ 'Development Status :: 5 - Prod...
from setuptools import setup import os def read(filename): with open(filename) as fin: return fin.read() setup( name='dictobj', version='0.2.5', author='William Grim', author_email='william@grimapps.com', url='https://github.com/grimwm/py-dictobj', classifiers = [ 'Development Status :: 4 - Beta...
apache-2.0
Python
2add077e4c747c01c84c6e7515bec88db7db26df
Bump version
JeremyGrosser/tablesnap,JeremyGrosser/tablesnap,juiceblender/tablesnap,betable/tablesnap,tamsky/tablesnap,heroku/tablesnap,russss/tablesnap,juiceblender/tablesnap,ethanmiller/tablesnap,betable/tablesnap,russss/tablesnap
setup.py
setup.py
from setuptools import setup setup( name='tablesnap', version='0.6.4', author='Jeremy Grosser', author_email='jeremy@synack.me', scripts=[ 'tablesnap', 'tableslurp', 'tablechop' ], install_requires=[ x.strip() for x in open('requirements.txt').readlin...
from setuptools import setup setup( name='tablesnap', version='0.6.2', author='Jeremy Grosser', author_email='jeremy@synack.me', scripts=[ 'tablesnap', 'tableslurp', 'tablechop' ], install_requires=[ x.strip() for x in open('requirements.txt').readlin...
bsd-3-clause
Python
21f5f0f101377143620fe7246f37ea0eb45b7d4e
Add bin/imgoptimize to setup.py
yu-liang-kono/imgutil
setup.py
setup.py
#!/usr/bin/env python from os.path import exists from setuptools import setup, find_packages setup( name='imgutil', version='0.1.2', # Your name & email here author='yuliang', author_email='yu.liang@thekono.com', # If you had imgutil.tests, you would also include that in this list packages...
#!/usr/bin/env python from os.path import exists from setuptools import setup, find_packages setup( name='imgutil', version='0.1.2', # Your name & email here author='yuliang', author_email='yu.liang@thekono.com', # If you had imgutil.tests, you would also include that in this list packages...
mit
Python
95e10585c0314c9a5af9c5f85df590c9c0e99ace
Bump version: 3.3.0 → 4.0.0
davesque/django-rest-framework-simplejwt,davesque/django-rest-framework-simplejwt
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import ( setup, find_packages, ) extras_require = { 'test': [ 'cryptography', 'pytest-cov', 'pytest-django', 'pytest-xdist', 'pytest', 'tox', ], 'lint': [ 'flake8', 'pep8', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import ( setup, find_packages, ) extras_require = { 'test': [ 'cryptography', 'pytest-cov', 'pytest-django', 'pytest-xdist', 'pytest', 'tox', ], 'lint': [ 'flake8', 'pep8', ...
mit
Python
4310f93adc1c7554fd527e8309ae107dbbb2e490
Bump version to 2.0.0
Thor77/TeamspeakStats,Thor77/TeamspeakStats
setup.py
setup.py
from setuptools import setup setup( name='tsstats', version='2.0.0', author='Thor77', author_email='thor77@thor77.org', description='A simple Teamspeak stats-generator', long_description=open('README.rst').read(), keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats', url='https://...
from setuptools import setup setup( name='tsstats', version='1.5.1', author='Thor77', author_email='thor77@thor77.org', description='A simple Teamspeak stats-generator', long_description=open('README.rst').read(), keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats', url='https://...
mit
Python
6b9f6ee4d4f00e988fb0419eedb81eaa56e3bbe7
Set 0.1.1 as minimum version of loam
amorison/qjobs
setup.py
setup.py
from setuptools import setup with open('README.rst') as rdm: README = rdm.read() setup( name='qjobs', use_scm_version=True, description='Get a clean and flexible output from qstat', long_description=README, url='https://github.com/amorison/qjobs', author='Adrien Morison', author_ema...
from setuptools import setup with open('README.rst') as rdm: README = rdm.read() setup( name='qjobs', use_scm_version=True, description='Get a clean and flexible output from qstat', long_description=README, url='https://github.com/amorison/qjobs', author='Adrien Morison', author_ema...
mit
Python
a985fa3c84dac4c8cbc93c88dc4a38282ece63da
Update setup.py
brickgao/specchio
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup from specchio import __version__ tests_requirements = [ "mock >= 1.0.1, < 2.0.0", "testfixtures >= 4.1.2, < 5.0.0" ] setup( name="Specchio", version=__version__, url="https://github.com/brickgao/specchio", ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import find_packages, setup from specchio import __version__ tests_requirements = [ "mock >= 1.0.1, < 2.0.0", "testfixtures >= 4.1.2, < 5.0.0" ] setup( name="Specchio", version=__version__, url="https://github.com/brickgao/specchio", ...
mit
Python
ba64dca673e4863d24207d2b459b8bd6fdd13566
Add a new test for Thing.travel_to(..)
LogicalDash/LiSE,LogicalDash/LiSE
LiSE/LiSE/tests/test_thing.py
LiSE/LiSE/tests/test_thing.py
# This file is part of LiSE, a framework for life simulation games. # Copyright (c) Zachary Spector, public@zacharyspector.com # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either ver...
# This file is part of LiSE, a framework for life simulation games. # Copyright (c) Zachary Spector, public@zacharyspector.com # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either ver...
agpl-3.0
Python
c0cc722963476c3c2ffbd97862e273b3cbd1eb4e
add classifiers
shawnbot/py-organ
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import pkg_resources import sys version = open('VERSION', 'r').read().strip() requires = ['csv'] setup(name='organ', version=version, description='A tabular data organizer', classifiers=[ 'Development Status :: 3 - Alpha', '...
#!/usr/bin/env python from distutils.core import setup import pkg_resources import sys version = open('VERSION', 'r').read().strip() requires = ['csv'] setup(name='organ', version=version, description='A tabular data organizer', author='Shawn Allen', author_email='shawn@stamen.com', url...
bsd-3-clause
Python
e9310d2abe85fc39c41f407bc65277135f04854a
remove python 3.2 support
thefab/tornadis,thefab/tornadis
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # This file is part of tornadis library released under the MIT license. # See the LICENSE file for more information. from setuptools import setup, find_packages DESCRIPTION = "tornadis is an async minimal redis client for tornado " \ "ioloop designed for p...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # This file is part of tornadis library released under the MIT license. # See the LICENSE file for more information. from setuptools import setup, find_packages DESCRIPTION = "tornadis is an async minimal redis client for tornado " \ "ioloop designed for p...
mit
Python
da6e8293b3ccff2a90e48473dc1bdf08ce123e97
Bump version
puiterwijk/flask-oidc,SteelPangolin/flask-oidc
setup.py
setup.py
import os.path import io from setuptools import setup # This check is to make sure we checkout docs/_themes before running sdist if not os.path.exists("./docs/_themes/README"): print('Please make sure you have docs/_themes checked out while running setup.py!') if os.path.exists('.git'): print('You see...
import os.path import io from setuptools import setup # This check is to make sure we checkout docs/_themes before running sdist if not os.path.exists("./docs/_themes/README"): print('Please make sure you have docs/_themes checked out while running setup.py!') if os.path.exists('.git'): print('You see...
bsd-2-clause
Python
d7b192d31ef2b2329c68d3dbabef635f73e06115
Bump version to 0.4.2
martinkou/bson
setup.py
setup.py
#!/usr/bin/env python # vim: set fileencoding=utf8 shiftwidth=4 tabstop=4 textwidth=80 foldmethod=marker : # Copyright (c) 2010, Kou Man Tong. All rights reserved. # Copyright (c) 2015, Ayun Park. All rights reserved. # For licensing, see LICENSE file included in the package. from setuptools import setup setup( n...
#!/usr/bin/env python # vim: set fileencoding=utf8 shiftwidth=4 tabstop=4 textwidth=80 foldmethod=marker : # Copyright (c) 2010, Kou Man Tong. All rights reserved. # Copyright (c) 2015, Ayun Park. All rights reserved. # For licensing, see LICENSE file included in the package. from setuptools import setup setup( n...
bsd-3-clause
Python
ca89e94fed1208897cdb9838c2145db40e5ee244
update url
mediapredict/django_arbitrary_inline,mediapredict/django_arbitrary_inline
setup.py
setup.py
__doc__ = """ Django Admin compatible ModelInline that can be related to the primary model on fields other than a Primary Key. """ from setuptools import setup setup( name='django-arbitrary-inline', version='0.1.0', author='James Robert', author_email='james@mediapredict.com', description='Django ...
__doc__ = """ Django Admin compatible ModelInline that can be related to the primary model on fields other than a Primary Key. """ from setuptools import setup setup( name='django-arbitrary-inline', version='0.1.0', author='James Robert', author_email='james@mediapredict.com', description='Django ...
bsd-3-clause
Python