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
4b9a2dd6800a5ad4e1bfdfdc01492a7e8159567d
install requirements in setup.py
guillochon/MOSFiT,guillochon/FriendlyFit,guillochon/MOSFiT,villrv/MOSFiT,mnicholl/MOSFiT,villrv/MOSFiT,mnicholl/MOSFiT,bmockler/MOSFiT,mnicholl/MOSFiT,bmockler/MOSFiT,guillochon/MOSFiT
setup.py
setup.py
import os from setuptools import find_packages, setup with open('requirements.txt') as f: required = f.read().splitlines() dir_path = os.path.dirname(os.path.realpath(__file__)) exec(open(os.path.join(dir_path, 'mosfit', '__init__.py')).read()) setup( name='mosfit', packages=find_packages(), include...
import os from setuptools import find_packages, setup dir_path = os.path.dirname(os.path.realpath(__file__)) exec(open(os.path.join(dir_path, 'mosfit', '__init__.py')).read()) setup( name='mosfit', packages=find_packages(), include_package_data=True, version=__version__, # noqa description=('Pac...
mit
Python
a484d6e717e1ef63389f480a2aaa545c901164b1
Bump version
rhgrant10/Groupy
setup.py
setup.py
from distutils.core import setup setup( name = 'GroupyAPI', packages = ['groupy', 'groupy.object', 'groupy.api'], version = '0.5.7', install_requires = open('requirements.txt').read().splitlines(), description = 'The simple yet powerful wrapper for the GroupMe API', author = 'Robert Grant', ...
from distutils.core import setup setup( name = 'GroupyAPI', packages = ['groupy', 'groupy.object', 'groupy.api'], version = '0.5.6', install_requires = [ 'responses==0.2.2', 'requests==2.3.0', 'Pillow==2.5.3' ], description = 'The simple yet powerful wrapper for the Group...
apache-2.0
Python
ada8f1220b8157516de68497f4211f7494c58fa6
Set zip_safe to false (https://stackoverflow.com/q/28986708/2377454)
CristianCantoro/wikidump,CristianCantoro/wikidump
setup.py
setup.py
"""wikidump ~~~~~~~~ Extract features and stats from wikipedia XML dump files. """ from setuptools import setup, find_packages setup( name='wikidump', version='0.0.1', author='Alessio Bogon', author_email='alessi' 'o.bogon' '<a' 't>' 'gm' 'ail' '<d' 'ot>co' 'm', license='GPL3', descri...
"""wikidump ~~~~~~~~ Extract features and stats from wikipedia XML dump files. """ from setuptools import setup, find_packages setup( name='wikidump', version='0.0.1', author='Alessio Bogon', author_email='alessi' 'o.bogon' '<a' 't>' 'gm' 'ail' '<d' 'ot>co' 'm', license='GPL3', descri...
mit
Python
fe03b768d9e95e9567f34283105e3a5fc5833b0f
Update scipy requirement from <1.6.0,>=1.0.0 to >=1.0.0,<1.7.0
espdev/csaps
setup.py
setup.py
# -*- coding: utf-8 -*- import pathlib from setuptools import setup ROOT_DIR = pathlib.Path(__file__).parent def _get_version(): about = {} ver_mod = ROOT_DIR / 'csaps' / '_version.py' exec(ver_mod.read_text(), about) return about['__version__'] def _get_long_description(): readme = ROOT_DIR ...
# -*- coding: utf-8 -*- import pathlib from setuptools import setup ROOT_DIR = pathlib.Path(__file__).parent def _get_version(): about = {} ver_mod = ROOT_DIR / 'csaps' / '_version.py' exec(ver_mod.read_text(), about) return about['__version__'] def _get_long_description(): readme = ROOT_DIR ...
mit
Python
e020de77fa2496d2a670d691f8f2837373ef1075
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.5', 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.4', description="Authorisation app for Facebook API.", long_description=read("README.rst"), u...
mit
Python
751107deeb3e0a544d9000dec8845b5686587e92
Bump pytest to 4.1.1
nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,MozillaSecurity/funfuzz
setup.py
setup.py
# coding=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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import setup EXTRAS = { "test": [ "codec...
# coding=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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import setup EXTRAS = { "test": [ "codec...
mpl-2.0
Python
4fb9f522f8073d394c11f1c7203152521217c4ea
change version number to 0.3.0 added me as author
pystruct/pystruct,pystruct/pystruct
setup.py
setup.py
from setuptools import setup from setuptools.extension import Extension import numpy as np import os if os.path.exists('MANIFEST'): os.remove('MANIFEST') include_dirs = [np.get_include()] setup(name="pystruct", version="0.3.0", install_requires=["ad3"], packages=['pystruct', 'pystruct.learners...
from setuptools import setup from setuptools.extension import Extension import numpy as np import os if os.path.exists('MANIFEST'): os.remove('MANIFEST') include_dirs = [np.get_include()] setup(name="pystruct", version="0.2.5", install_requires=["ad3"], packages=['pystruct', 'pystruct.learners...
bsd-2-clause
Python
4ba828060b4fd34733ab8176a23edb9a8226832b
Clean up the old setup.py, bind to versions that still work with python 2, etc.
blaedd/logsnarf
setup.py
setup.py
from setuptools import setup import os import sys sys.path.insert(0, os.path.abspath('./src')) from logsnarf import __version__ setup( name='logsnarf', version=__version__, packages=['logsnarf', 'logsnarf.docs'], package_dir={'': 'src'}, url='https://github.com/blaedd/logsnarf', license='MIT'...
from setuptools import setup import os import sys sys.path.insert(0, os.path.abspath('./src')) from logsnarf import __version__ setup( name='logsnarf', version=__version__, packages=['logsnarf', 'logsnarf.docs'], package_dir={'': 'src'}, url='http://github.com/blaedd/logsnarf', license='MIT', ...
mit
Python
f52ed65998a8e4b1bac64755b7e2079193b90dc0
Remove useless import
petecummings/django-blog-zinnia,ZuluPro/django-blog-zinnia,Fantomas42/django-blog-zinnia,1844144/django-blog-zinnia,ghachey/django-blog-zinnia,bywbilly/django-blog-zinnia,marctc/django-blog-zinnia,aorzh/django-blog-zinnia,extertioner/django-blog-zinnia,Zopieux/django-blog-zinnia,ZuluPro/django-blog-zinnia,Fantomas42/dj...
setup.py
setup.py
"""Setup script of django-blog-zinnia""" from setuptools import setup from setuptools import find_packages import zinnia setup( name='django-blog-zinnia', version=zinnia.__version__, description='A clear and powerfull weblog application powered with Django', long_description='\n'.join([open('README.r...
"""Setup script of django-blog-zinnia""" import os from setuptools import setup from setuptools import find_packages import zinnia setup( name='django-blog-zinnia', version=zinnia.__version__, description='A clear and powerfull weblog application powered with Django', long_description='\n'.join([open...
bsd-3-clause
Python
6c164c6af16d7ddfec2cfadcbcf7f14a5b291672
Fix typo
jamesls/labmanager-shell
setup.py
setup.py
import os from setuptools import setup, find_packages setup( name='lmsh', version='0.1', description="Command line interface to Lab Manager SOAP API", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), license='BSD', auth...
import os from setuptools import setup, find_packages setup( name='lmsh', version='0.1', description="Command line interface to Lab Manager SOAP API", long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() license='BSD', autho...
bsd-3-clause
Python
3051440b220970d8faf719ff9620f6c2906b3b92
Update classifiers
xxyxyz/flat
setup.py
setup.py
from distutils.core import setup setup( name = 'Flat', description = 'Generative infrastructure for Python', version = '0.3', packages = ['flat'], author = 'Juraj Sukop', author_email = 'contact@xxyxyz.org', url = 'https://xxyxyz.org/flat', license = 'MIT', classifiers = [ '...
from distutils.core import setup setup( name = 'Flat', description = 'Generative infrastructure for Python', version = '0.3', packages = ['flat'], author = 'Juraj Sukop', author_email = 'contact@xxyxyz.org', url = 'https://xxyxyz.org/flat', license = 'MIT', classifiers = [ '...
mit
Python
4406bbd9816266a05b1c5be94e101b9a71a4e651
bump up version
rdidyk/falcon-swagger-ui,rdidyk/falcon-swagger-ui
setup.py
setup.py
import os from setuptools import setup CURRENT_VERSION = '1.2.2' def read_file(filename): """Open a file, read it and return its contents.""" path = os.path.join(os.path.dirname(__file__), filename) with open(path) as f: return f.read() setup( name='falcon-swagger-ui', version=CURRENT_V...
import os from setuptools import setup CURRENT_VERSION = '1.2.1' def read_file(filename): """Open a file, read it and return its contents.""" path = os.path.join(os.path.dirname(__file__), filename) with open(path) as f: return f.read() setup( name='falcon-swagger-ui', version=CURRENT_V...
mit
Python
7b3af0f45d822dc85103c36e6044902bcf09df90
add wheel
torpedoallen/family
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.2.2' setup(name='family', version=version, description="Easy to create your microservice based on multiple python frameworks.", long_description="""\ """, keywords='microservice falcon flask', author='torpedoallen', ...
from setuptools import setup, find_packages import sys, os version = '0.2.2' setup(name='family', version=version, description="Easy to create your microservice based on multiple python frameworks.", long_description="""\ """, keywords='microservice falcon flask', author='torpedoallen', ...
mit
Python
4dcb7016a004e5312c3e2ce679e9698354e3501b
Update version.
Stefan-Endres/shgo
setup.py
setup.py
from setuptools import setup, find_packages # Get the long description from the README file def readme(): with open('README.rst') as f: return f.read() setup(name='shgo', version='0.4', description='Simplicial homology global optimisation', url='https://github.com/stefan-endres/shgo', ...
from setuptools import setup, find_packages # Get the long description from the README file def readme(): with open('README.rst') as f: return f.read() setup(name='shgo', version='0.3.7', description='Simplicial homology global optimisation', url='https://github.com/stefan-endres/shgo', ...
mit
Python
d1ae8d091de82bd86394c0e990e54ce36360d5a3
remove docs stuff, only devs need it
NUKnightLab/tarbell,eads/tarbell,eyeseast/tarbell,tarbell-project/tarbell,NUKnightLab/tarbell,tarbell-project/tarbell,eyeseast/tarbell,NUKnightLab/tarbell,eads/tarbell
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages APP_NAME = 'tarbell' VERSION = '0.9b7' settings = dict() # Publish Helper. if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() settings.update( name=APP_NAME, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages APP_NAME = 'tarbell' VERSION = '0.9b7' settings = dict() # Publish Helper. if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() settings.update( name=APP_NAME, ...
bsd-3-clause
Python
9c7b004d57f4bda5b4e5be9622fedd82a7c3ba2c
Fix potential wrong import of not-backported configparser within py27 tests
okurz/openqa_review,okurz/openqa_review
setup.py
setup.py
import os from subprocess import check_output from setuptools import setup # ref: http://blogs.nopcode.org/brainstorm/2013/05/20/pragmatic-python-versioning-via-setuptools-and-git-tags/ # Fetch version from git tags, and write to version.py. # Also, when git is not available (PyPi package), use stored version.py. ver...
import os from subprocess import check_output from setuptools import setup # ref: http://blogs.nopcode.org/brainstorm/2013/05/20/pragmatic-python-versioning-via-setuptools-and-git-tags/ # Fetch version from git tags, and write to version.py. # Also, when git is not available (PyPi package), use stored version.py. ver...
mit
Python
2acfd78d42c5fa81668052ab4106bb6aa1b85f85
bump to 1.0.1
williballenthin/ida-settings
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='ida-settings', version="1.0.1", description="Fetch and set configuration values in IDA Pro IDAPython scripts", author='Willi Ballenthin', author_email='william.ballenthin@fireeye.com', url='https://github.com/williballenthin/...
#!/usr/bin/env python from setuptools import setup setup(name='ida-settings', version="1.0", description="Fetch and set configuration values in IDA Pro IDAPython scripts", author='Willi Ballenthin', author_email='william.ballenthin@fireeye.com', url='https://github.com/williballenthin/id...
apache-2.0
Python
a50551c4ae679e8571fc9cd75a667807416764cc
Add jsonfield to pip/setup.py requirements
zhangguiyu/djangocms-cascade,zhangguiyu/djangocms-cascade,aldryn/djangocms-cascade,coxm/djangocms-cascade,Julien-Blanc/djangocms-cascade,schacki/djangocms-cascade,datafyit/djangocms-cascade,Julien-Blanc/djangocms-cascade,Julien-Blanc/djangocms-cascade,schacki/djangocms-cascade,datafyit/djangocms-cascade,jtiki/djangocms...
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages from cmsplugin_cascade import __version__ CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OS...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages from cmsplugin_cascade import __version__ CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OS...
mit
Python
23cad5d1966afa81a901435a36787548233eddfe
Bump version
relique/django-bitbucket-trello
setup.py
setup.py
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='django-bitbucket-trello...
from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='django-bitbucket-trello...
mit
Python
6bcc839608cd150f66ada015b732aab2e20247e6
Increment version
PavloKapyshin/paka.cmark,PavloKapyshin/paka.cmark,PavloKapyshin/paka.cmark
setup.py
setup.py
import os import setuptools def _get_long_description(): path = os.path.join(os.path.dirname(__file__), "README.rst") with open(path, "rb") as file: contents = file.read() return contents.decode("utf-8") setuptools.setup( name="paka.cmark", description=( "Very lightweight CFFI-b...
import os import setuptools def _get_long_description(): path = os.path.join(os.path.dirname(__file__), "README.rst") with open(path, "rb") as file: contents = file.read() return contents.decode("utf-8") setuptools.setup( name="paka.cmark", description=( "Very lightweight CFFI-b...
bsd-3-clause
Python
e23ebfb6799c8d1c65ac5b3b0c35df1271382070
add numpy dependancy
pollen/pyrobus
setup.py
setup.py
#!/usr/bin/env python import imp from setuptools import setup, find_packages version = imp.load_source('pyluos.version', 'pyluos/version.py') setup(name='pyluos', version=version.version, packages=find_packages(), install_requires=['future', 'websocket-client', ...
#!/usr/bin/env python import imp from setuptools import setup, find_packages version = imp.load_source('pyluos.version', 'pyluos/version.py') setup(name='pyluos', version=version.version, packages=find_packages(), install_requires=['future', 'websocket-client', ...
mit
Python
a8f1ba2bd30f9f4a373c7b0ced589bd60121aa1f
bump to version 0.23
kennell/schiene
setup.py
setup.py
from setuptools import setup setup( name = 'schiene', packages = ['schiene'], version = '0.23', license = 'MIT', description = 'schiene is a Python library for interacting with Bahn.de', author = 'Kevin Kennell', author_email = 'kevin@kennell.de', install_requires=[ 'requests>=2.10.0', '...
from setuptools import setup setup( name = 'schiene', packages = ['schiene'], version = '0.22', license = 'MIT', description = 'schiene is a Python library for interacting with Bahn.de', author = 'Kevin Kennell', author_email = 'kevin@kennell.de', install_requires=[ 'requests>=2.10.0', '...
mit
Python
aa486a18cbe5180b7e262fa5f84e74b0d9a236df
move to latest version of lxml and python2.6
Mortar/mortar
setup.py
setup.py
# Copyright (c) 2008 Simplistix Ltd # See license.txt for license details. import os from setuptools import setup, find_packages name = 'mortar' package_dir = os.path.join(os.path.dirname(__file__),name) setup( name=name, version=file(os.path.join(package_dir,'version.txt')).read().strip(), author='Chris...
# Copyright (c) 2008 Simplistix Ltd # See license.txt for license details. import os from setuptools import setup, find_packages name = 'mortar' package_dir = os.path.join(os.path.dirname(__file__),name) setup( name=name, version=file(os.path.join(package_dir,'version.txt')).read().strip(), author='Chris...
mit
Python
197a0647cb8817784605598a848f339e835ea437
bump up version to 0.14
twonds/punjab,twonds/punjab,twonds/punjab
setup.py
setup.py
from distutils.core import setup setup(name='punjab', version='0.14', description='Punjab, a twisted HTTP server with interfaces to XMPP.', author='Christopher Zorn', author_email='tofu@thetofu.com', url='http://code.stanziq.com/punjab', packages=['punjab','punjab.xmpp', 'twisted.p...
from distutils.core import setup setup(name='punjab', version='0.13', description='Punjab, a twisted HTTP server with interfaces to XMPP.', author='Christopher Zorn', author_email='tofu@thetofu.com', url='http://code.stanziq.com/punjab', packages=['punjab','punjab.xmpp', 'twisted.p...
mit
Python
0c2d815f29a7887dfed7b2f66412385a8881df44
bump version to 1.1.0
banteg/telegram
setup.py
setup.py
from setuptools import setup setup( name='tgb', version='1.1.0', description='A minimal Telegram API wrappper', url='https://github.com/banteg/telegram', py_modules=['telegram'], install_requires=['requests'], )
from setuptools import setup setup( name='tgb', version='1.0.3', description='A minimal Telegram API wrappper', url='https://github.com/banteg/telegram', py_modules=['telegram'], install_requires=['requests'], )
mit
Python
26fd3e05f29fe6ae2a4e2db620982aeaf3c3f9bc
Use tox for testing. Add setup.py.
Prindle19/google-maps-services-python,mansigoel/google-maps-services-python,quevedin/google-maps-services-python,Scronker/google-maps-services-python,cmontezano/google-maps-services-python,stephenmcd/google-maps-services-python,DataReply/google-maps-services-python,edwardsamuel/google-maps-services-python,codeAshu/goog...
setup.py
setup.py
import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <= (2, 4): error = 'Requires Python Version 2.5 or above... exiting.' print >> sys.stderr, error sys.exit(1) requirements = [ 'requests', ] setup(name='googlemaps', version='0...
import sys try: from setuptools import setup except ImportError: from distutils.core import setup if sys.version_info <= (2, 4): error = 'Requires Python Version 2.5 or above... exiting.' print >> sys.stderr, error sys.exit(1) requirements = [ 'requests', ] setup(name='googlemaps', version='0...
apache-2.0
Python
a188456b688a96b3be0d6ac7894932d64acebc41
add decorator to dependencies
s0undt3ch/pytest-tornado,eugeniy/pytest-tornado
setup.py
setup.py
from setuptools import setup, find_packages setup( name='pytest-tornado', version='0.3.0', packages=find_packages(), install_requires=['pytest', 'tornado', 'decorator'], entry_points={ 'pytest11': ['tornado = pytest_tornado.plugin'], }, )
from setuptools import setup, find_packages setup( name='pytest-tornado', version='0.2.0', packages=find_packages(), install_requires=['pytest', 'tornado'], entry_points={ 'pytest11': ['tornado = pytest_tornado.plugin'], }, )
apache-2.0
Python
a0b2df8c75a41336fc399adae77a8b2958ab23cd
update version
Bloodevil/sony_camera_api,mungewell/sony_camera_api,Bloodevil/sony_camera_api
setup.py
setup.py
import os try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) try: README = open(os.path.join(here, 'README.md')).read() except: README = 'https://github.com/Bloodevil/sony_camera_api/blo...
import os try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) try: README = open(os.path.join(here, 'README.md')).read() except: README = 'https://github.com/Bloodevil/sony_camera_api/blo...
mit
Python
d803647eeb1644985f1788d232a72587ff156bb4
Add Pykka as a dependency
mopidy/mopidy-scrobbler,mthssdrbrg/mopidy-scrobbler
setup.py
setup.py
from __future__ import unicode_literals import re from setuptools import setup def get_version(filename): content = open(filename).read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content)) return metadata['version'] setup( name='Mopidy-Scrobbler', version=get_version('mopidy_scrob...
from __future__ import unicode_literals import re from setuptools import setup def get_version(filename): content = open(filename).read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content)) return metadata['version'] setup( name='Mopidy-Scrobbler', version=get_version('mopidy_scrob...
apache-2.0
Python
8ac0b414c06252e8ff0e04de6da1650ebc9ff911
Update outdated name
victorlin/bugbuzz-python,victorlin/bugbuzz-python
setup.py
setup.py
from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages # noqa: E402 version = '0.0.0' try: from bugbuzz import __version__ version = __version__ except ImportError: pass tests_require = [ 'mock', 'pytest', 'pytest-cov', 'pytest-xdist', 'pyte...
from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages # noqa: E402 version = '0.0.0' try: from bugbuzz import __version__ version = __version__ except ImportError: pass tests_require = [ 'mock', 'pytest', 'pytest-cov', 'pytest-xdist', 'pyte...
mit
Python
bdbcc52ae5f7eb44d0106ab8ce28e8540c68f1d1
Bump version to 0.2.8
ConsenSys/ethjsonrpc
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ethjsonrpc', version='0.2.8', description='Ethereum JSON-RPC client', long_description=open('README.rst').read(), author='ConsenSys', author_email=['info@consensys.net'], url='https:/...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ethjsonrpc', version='0.2.7', description='Ethereum JSON-RPC client', long_description=open('README.rst').read(), author='ConsenSys', author_email=['info@consensys.net'], url='https:/...
unlicense
Python
186db67f9f3ebcf72c676ca8e970356c8c166027
update to 2.5.1
hycis/TensorGraph,hycis/TensorGraph
setup.py
setup.py
from distutils.core import setup from setuptools import find_packages version = '2.5.1' setup( name='tensorgraph', version=version, author='Wu Zhen Zhou', author_email='hyciswu@gmail.com', install_requires=['numpy>=1.7.1', 'six>=1.9.0', 'scikit-learn>=0.1...
from distutils.core import setup from setuptools import find_packages version = '2.5.0' setup( name='tensorgraph', version=version, author='Wu Zhen Zhou', author_email='hyciswu@gmail.com', install_requires=['numpy>=1.7.1', 'six>=1.9.0', 'scikit-learn>=0.1...
apache-2.0
Python
2b531071f76715d98d15583d604a7541de1acaf9
update doc/README to doc/MANUAL.
fls-bioinformatics-core/RnaChipIntegrator
setup.py
setup.py
"""Description Setup script to install RnaChipIntegrator: analyses of ChIP-Seq and RNA-Seq data Copyright (C) University of Manchester 2011-12 Peter Briggs, Leo Zeef & Ian Donaldson This code is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0 (see the file LICENSE ...
"""Description Setup script to install RnaChipIntegrator: analyses of ChIP-Seq and RNA-Seq data Copyright (C) University of Manchester 2011-12 Peter Briggs, Leo Zeef & Ian Donaldson This code is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0 (see the file LICENSE ...
artistic-2.0
Python
8b33ad302ba00c08dfb306dee7b6bb3e6073761a
Fix error in setup.py
magarcia/pycture-tube
setup.py
setup.py
#!/usr/bin/env python import os import sys kw = {} if sys.version < '3': kw = {"install_requires": ["PIL"]} try: from setuptools import setup except ImportError: from distutils.core import setup HERE = os.path.dirname(__file__) setup( name = "pycture-tube", version = '0.0.1', description = "...
#!/usr/bin/env python import os import sys if sys.version < '3': kw = {"install_requires": ["PIL"]} try: from setuptools import setup except ImportError: from distutils.core import setup HERE = os.path.dirname(__file__) setup( name = "pycture-tube", version = '0.0.1', description = "pycture-...
mit
Python
5c3b1c6a4cfab83a98f285dba4503aee0817c6b4
update dependency
kidig/django-mailjet
setup.py
setup.py
from setuptools import setup version = '0.2.0' DESCRIPTION = "A Django email backend for Mailjet" LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Framework :: Django', 'Framework :: Django :: 1.9', 'Int...
from setuptools import setup version = '0.2.0' DESCRIPTION = "A Django email backend for Mailjet" LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read() except: pass CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Framework :: Django', 'Framework :: Django :: 1.9', 'Int...
mit
Python
1efe37b9d2edd7b505d9f4361cde662c4d095946
Add "script" and "packages" into setup.py to enable `pip install -e` for development
vladsaveliev/bcbio-nextgen,vladsaveliev/bcbio-nextgen,vladsaveliev/bcbio-nextgen
setup.py
setup.py
#!/usr/bin/env python """Setup file and install script for NextGen sequencing analysis scripts""" import os import subprocess import setuptools VERSION = '1.2.3' # add bcbio version number and git commit hash of the current revision to version.py try: git_run = subprocess.run(['git', 'rev-parse', '--short', 'H...
#!/usr/bin/env python """Setup file and install script for NextGen sequencing analysis scripts""" import os import subprocess import setuptools VERSION = '1.2.3' # add bcbio version number and git commit hash of the current revision to version.py try: git_run = subprocess.run(['git', 'rev-parse', '--short', 'H...
mit
Python
9e26e712ea821df1ea966b5a6e0f78d75512e8d0
Fix compile with linux.
cuteio/scanner,cuteio/scanner
setup.py
setup.py
# -*- coding: utf-8 -*- """Setup file for pygit2.""" from distutils.core import setup, Extension from subprocess import Popen, PIPE import os import sys import shutil NAME = 'scanner' VERSION = '0.01' cwd = os.path.dirname(os.path.realpath(__file__)) libonig_dir = os.path.join(cwd, 'vendor') libonig_include = os.pat...
# -*- coding: utf-8 -*- """Setup file for pygit2.""" from distutils.core import setup, Extension from subprocess import Popen, PIPE import os import sys import shutil NAME = 'scanner' VERSION = '0.01' cwd = os.path.dirname(os.path.realpath(__file__)) libonig_dir = os.path.join(cwd, 'vendor') libonig_include = os.pat...
mit
Python
a1a7fbbe8b3f8ffd0c819b8dac0b8ada54fddb5b
Fix problem with version information being doubled.
trankmichael/scipy,vigna/scipy,bkendzior/scipy,fredrikw/scipy,trankmichael/scipy,aeklant/scipy,larsmans/scipy,Srisai85/scipy,mortonjt/scipy,zxsted/scipy,josephcslater/scipy,sauliusl/scipy,tylerjereddy/scipy,juliantaylor/scipy,arokem/scipy,woodscn/scipy,jjhelmus/scipy,zaxliu/scipy,pnedunuri/scipy,giorgiop/scipy,ortylp/s...
setup.py
setup.py
#!/usr/bin/env python import os import sys # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. if os.path.exists('MANIFEST'): os.remove('MANIFEST') os.environ['NO_SCIPY_IMPORT']='SciPy/setup.py' def configuration(parent_package='',top_path=No...
#!/usr/bin/env python import os import sys # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. if os.path.exists('MANIFEST'): os.remove('MANIFEST') os.environ['NO_SCIPY_IMPORT']='SciPy/setup.py' def configuration(parent_package='',top_path=No...
bsd-3-clause
Python
0629b92a54048c946780dcceb55e2029b274ed1a
revise StockHoldRecord model
charliezon/stock,charliezon/stock,charliezon/stock,charliezon/stock
www/models.py
www/models.py
import time, uuid from orm import Model, StringField, BooleanField, FloatField, IntegerField def next_id(): return '%015d%s000' % (int(time.time() * 1000), uuid.uuid4().hex) class User(Model): __table__ = 'users' id = StringField(primary_key=True, default=next_id, ddl='varchar(50)') email = StringFi...
import time, uuid from orm import Model, StringField, BooleanField, FloatField, IntegerField def next_id(): return '%015d%s000' % (int(time.time() * 1000), uuid.uuid4().hex) class User(Model): __table__ = 'users' id = StringField(primary_key=True, default=next_id, ddl='varchar(50)') email = StringFi...
mit
Python
3ad73d6cefc1d511882b7731ed44f2469c589195
increment build
amiryal/XKCD-password-generator,amiryal/XKCD-password-generator
setup.py
setup.py
from setuptools import setup setup( name='xkcdpass', version='1.4.4', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator', description='Generate secure multiword passwords/passphrases, inspired by XKCD', long_description=o...
from setuptools import setup setup( name='xkcdpass', version='1.4.3', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator', description='Generate secure multiword passwords/passphrases, inspired by XKCD', long_description=o...
bsd-3-clause
Python
6b3dad900a8c8610716f160c536a02fbef6edc6b
Bump release (bugfix)
davb5/bsw,davb5/bsw,davb5/bsw
bsw/__init__.py
bsw/__init__.py
__version__ = "1.0.4"
__version__ = "1.0.3"
mit
Python
733df59bee0b95854849b159620e6fa2bfb8ea8e
set version to 1.0.0
fja05680/pinkfish
setup.py
setup.py
from setuptools import setup setup( name='pinkfish', version='1.0.0', description='A backtester and spreadsheet library for security analysis.', author='Farrell Aultman', author_email='fja0568@gmail.com', url='http://github.com/fja0568/pinkfish', packages=['pinkfish'], include_package_d...
from setuptools import setup setup( name='pinkfish', version='0.12.0', description='A backtester and spreadsheet library for security analysis.', author='Farrell Aultman', author_email='fja0568@gmail.com', url='http://github.com/fja0568/pinkfish', packages=['pinkfish'], include_package_...
mit
Python
b3d9696d02855ba7a3243b4dc10e931f22a587b8
Raise exception when we fail to grab a redis lock.
dropbox/changes,dropbox/changes,dropbox/changes,dropbox/changes
changes/utils/locking.py
changes/utils/locking.py
from flask import current_app from functools import wraps from hashlib import md5 from changes.ext.redis import UnableToGetLock from changes.config import redis def lock(func): @wraps(func) def wrapped(**kwargs): key = '{0}:{1}:{2}'.format( func.__module__, func.__name__, ...
from flask import current_app from functools import wraps from hashlib import md5 from changes.ext.redis import UnableToGetLock from changes.config import redis def lock(func): @wraps(func) def wrapped(**kwargs): key = '{0}:{1}:{2}'.format( func.__module__, func.__name__, ...
apache-2.0
Python
efa158d71bd22f43341c9de39d7a845bf867022c
bump version for dev
carljm/django-adminfiles,carljm/django-adminfiles,carljm/django-adminfiles
setup.py
setup.py
from setuptools import setup, find_packages import subprocess import os.path try: # don't get confused if our sdist is unzipped in a subdir of some # other hg repo if os.path.isdir('.hg'): p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'], stdout=subprocess...
from setuptools import setup, find_packages import subprocess import os.path try: # don't get confused if our sdist is unzipped in a subdir of some # other hg repo if os.path.isdir('.hg'): p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'], stdout=subprocess...
bsd-3-clause
Python
9a0a835144f23302b553e48b8c0e30a7f21e9205
update package description
djedproject/djed.static,djedproject/djed.static
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() install_requires = [ 'bowerstatic', 'pyramid', ] test...
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() install_requires = [ 'bowerstatic', 'pyramid', ] test...
isc
Python
b88b825a6d270aed09787315296e125854e37a0f
Bump version (new API)
ZeitOnline/zeit.content.video
setup.py
setup.py
from setuptools import setup, find_packages setup( name='zeit.content.video', version='2.6.0.dev0', author='gocept, Zeit Online', author_email='zon-backend@zeit.de', url='http://www.zeit.de/', description="vivi Content-Type Video, Playlist", packages=find_packages('src'), package_dir={...
from setuptools import setup, find_packages setup( name='zeit.content.video', version='2.5.4.dev0', author='gocept, Zeit Online', author_email='zon-backend@zeit.de', url='http://www.zeit.de/', description="vivi Content-Type Video, Playlist", packages=find_packages('src'), package_dir={...
bsd-3-clause
Python
9953118c56b72ba935026cfdca1dbf3dbac23eba
Bump to version 0.5.0
kellerza/pysma
setup.py
setup.py
#!/usr/bin/env python """pysma library setup.""" from pathlib import Path from setuptools import setup VERSION = "0.5.0" URL = "https://github.com/kellerza/pysma" setup( name="pysma", version=VERSION, description="Library to interface an SMA Solar WebConnect module", long_description=Path("README.md"...
#!/usr/bin/env python """pysma library setup.""" from pathlib import Path from setuptools import setup VERSION = "0.4.3" URL = "https://github.com/kellerza/pysma" setup( name="pysma", version=VERSION, description="Library to interface an SMA Solar WebConnect module", long_description=Path("README.md"...
mit
Python
0586926b58792c3c638acf4985adad1ff1aaa25b
Add python_requires to help pip
litl/backoff
setup.py
setup.py
# coding:utf-8 import backoff from distutils import core classifiers = ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Programming Language :: Python', 'License :: OSI Approved :: MIT License', 'Natural Language :: Engli...
# coding:utf-8 import backoff from distutils import core classifiers = ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Programming Language :: Python', 'License :: OSI Approved :: MIT License', 'Natural Language :: Engli...
mit
Python
50d345ae4cb7b92d61a6aec55ed618d723928521
bump thor requirement
mnot/redbot,mnot/redbot,mnot/redbot
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup setup(name='redbot', version='1.0', description='Resource Expert Droid', author='Mark Nottingham', author_email='mnot@mnot.net', url='https://redbot.org/project/', packages=['redbot', 'redbot.message', ...
#!/usr/bin/env python from distutils.core import setup setup(name='redbot', version='1.0', description='Resource Expert Droid', author='Mark Nottingham', author_email='mnot@mnot.net', url='https://redbot.org/project/', packages=['redbot', 'redbot.message', ...
mit
Python
01e3f3c1dad1b61a6f879dda4344b904689b8a8d
Fix syntax
sgmap/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,benjello/openfisca-france,SophieIPP/openfisca-france,antoinearnoud/openfisca-france,adrienpacifico/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,antoinearnoud/openfisca-france
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- """ -- a versatile microsimulation free software""" from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '0.5.4.dev0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "De...
#! /usr/bin/env python # -*- coding: utf-8 -*- """ -- a versatile microsimulation free software""" from setuptools import setup, find_packages setup( name = 'OpenFisca-France', version = '0.5.4.dev0', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ "De...
agpl-3.0
Python
f3bbb2389041da0211f0650578c34cde64a54369
switch to astropy with version 2
msimet/Stile,msimet/Stile
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from io import open # read the contents of the README file with open('README.md', encoding="utf-8") as f: long_description = f.read() setup(name='Stile', version='0.1', description='Stile: Systematics Tests in Lensing pipeline', autho...
#!/usr/bin/env python from setuptools import setup from io import open # read the contents of the README file with open('README.md', encoding="utf-8") as f: long_description = f.read() setup(name='Stile', version='0.1', description='Stile: Systematics Tests in Lensing pipeline', autho...
bsd-3-clause
Python
703e04ae15e5c5800be88b90fc8b04f54ab9cc99
Update version in setup.py to 5.0.0-RC
openbaton/openbaton-cli,openbaton/openbaton-cli
setup.py
setup.py
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="openbaton-cli", version="5.0.0-RC", author="Open Baton", author_email="dev@openbaton.org", description="The Open Baton CLI", license="Ap...
import os from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="openbaton-cli", version="4.0.0", author="Open Baton", author_email="dev@openbaton.org", description="The Open Baton CLI", license="Apach...
apache-2.0
Python
ba76ad947f22605eb667c25d5be442cc174e7036
update setup
lukeolson/donut
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup source_dir = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(source_dir, 'donut.py')) as f: for line in f: if line.startswith('__version__'): version = line.split('=')[-1].strip() long_description = open(os.path....
#!/usr/bin/env python import os from setuptools import setup source_dir = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(source_dir, 'donut.py')) as f: for line in f: if line.startswith('__version__'): version = line.split('=')[-1] long_description = open(os.path.join(sou...
mit
Python
81a05223a93b9b1c2a9ab776211c58985b81d41e
fix setup
renkse/django-nav-menu
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-nav-menu', version='0.1.1', packages=['menu'], ...
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-nav-menu', version='0.1', packages=['menu'], i...
bsd-2-clause
Python
cc9ba69786d295b13ec1ffe3be0258e0cbae2604
Configure admin site
holycattle/pysqueak-api,holycattle/pysqueak-api
api/admin.py
api/admin.py
from django.contrib import admin from .models import Question, Choice, Answer @admin.register(Question) class QuestionAdmin(admin.ModelAdmin): list_display = ( # put all other fields you want to be shown in listing 'version', 'title', 'created_on', 'updated_on', ) @admin.register(Choice) clas...
from django.contrib import admin # Register your models here.
mit
Python
8ad35c1d21b2afa260138f51561d21753cb2346c
Add missing package to setup.py.
tuvistavie/python-i18n
setup.py
setup.py
from setuptools import setup setup( name='python-i18n', version='0.1.3', description='Translation library for Python', long_description=open('README.md').read(), author='Daniel Perez', author_email='tuvistavie@gmail', url='https://github.com/tuvistavie/python-i18n', download_url='https:...
from setuptools import setup setup( name='python-i18n', version='0.1.2', description='Translation library for Python', long_description=open('README.md').read(), author='Daniel Perez', author_email='tuvistavie@gmail', url='https://github.com/tuvistavie/python-i18n', download_url='https:...
mit
Python
77e3e891828d2dec8335f2923d123316e7859bab
Remove unnecessary import
pytest-dev/pytest-mock
setup.py
setup.py
from setuptools import find_packages from setuptools import setup setup( name="pytest-mock", entry_points={"pytest11": ["pytest_mock = pytest_mock"]}, packages=find_packages(where="src"), package_dir={"": "src"}, platforms="any", package_data={ "pytest_mock": ["py.typed"], }, py...
from io import open from setuptools import find_packages from setuptools import setup setup( name="pytest-mock", entry_points={"pytest11": ["pytest_mock = pytest_mock"]}, packages=find_packages(where="src"), package_dir={"": "src"}, platforms="any", package_data={ "pytest_mock": ["py.t...
mit
Python
a67eb216146eceac62eb586e72da0e471bc4ee94
install with 'pip install -e .'
ClonedOne/pandalog_investigator
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pandaloginvestigator', version='0.1', author='Giorgio Severi', description='Panda logs analysis tool', url='https://ClonedOne@bitbucket.org/ClonedOne/seminar.git', install_requires=['numpy', 'scipy', 'cement', 'matpl...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='pandaloginvestigator', version='0.1', author='Giorgio Severi', description='Pandalogs analysis tool', url='https://ClonedOne@bitbucket.org/ClonedOne/seminar.git', install_requires=['numpy', 'scipy', 'cement', 'matpl...
mit
Python
8b095120375f02993f4afdf4cae99592a397b32e
Fix PEP8 violations
loadimpact/loadimpact-sdk-python
setup.py
setup.py
# coding=utf-8 """ Copyright 2013 Load Impact 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 writ...
# coding=utf-8 """ Copyright 2013 Load Impact 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 writ...
apache-2.0
Python
37e126bbe66e1655299cd7f99b14c43369f5a731
Add databridge entry
Tuoris/openprocurement.bridge.contracting
setup.py
setup.py
from setuptools import setup, find_packages import os version = '0.0.1' requires = [ 'setuptools', 'PyYAML', 'gevent', 'redis', 'LazyDB', 'ExtendedJournalHandler', 'openprocurement_client>=1.0b2' ] entry_points = { 'console_scripts': [ 'contracting_data_bridge = openprocuremen...
from setuptools import setup, find_packages import os version = '0.0.1' requires = [ 'setuptools', 'PyYAML', 'gevent', 'redis', 'LazyDB', 'ExtendedJournalHandler', 'openprocurement_client>=1.0b2' ] entry_points = { 'console_scripts': [ 'contracting_data_bridge = openprocuremen...
apache-2.0
Python
a210e16f783225f30abfd2153fec53c2c064eec7
Bump the version
moggers87/lmtpd
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'A LMTP server class', 'long_description': 'A LMTP counterpart to smtpd in the Python standard library', 'author': 'Matt Molyneaux', 'url': 'https://github.com/moggers87/lmtpd', ...
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'A LMTP server class', 'long_description': 'A LMTP counterpart to smtpd in the Python standard library', 'author': 'Matt Molyneaux', 'url': 'https://github.com/moggers87/lmtpd', ...
mit
Python
a0c13a9acfa608a6a43a7ddaf3506b1b5f7ae39e
Add Python 3.5 and 3.6 to setup.py
noahmorrison/chevron,noahmorrison/chevron
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc readme = pypandoc.convert('README.md', 'rest') except (ImportError, RuntimeError): print('\n\n!!!\npypandoc not loaded\n!!!\n') readme = '' setup(name='chevron', ...
#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup try: import pypandoc readme = pypandoc.convert('README.md', 'rest') except (ImportError, RuntimeError): print('\n\n!!!\npypandoc not loaded\n!!!\n') readme = '' setup(name='chevron', ...
mit
Python
567e57fce213c5df15fc9a852d6c848b66020256
bump version
mintar/ros-infrastructure-rosdistro
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='rosdistro', version='0.0.16', packages=['rosdistro'], package_dir = {'rosdistro':'src/rosdistro'}, scripts = ['scripts/rosdistro_generate_cache', 'scripts/rosdistro'], install_requires=['empy', 'PyYAML', 'argparse',...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name='rosdistro', version='0.0.15', packages=['rosdistro'], package_dir = {'rosdistro':'src/rosdistro'}, scripts = ['scripts/rosdistro_generate_cache', 'scripts/rosdistro'], install_requires=['empy', 'PyYAML', 'argparse',...
bsd-3-clause
Python
ccea08b2b815a4bbf349a089928410f33aae637b
Bump version
fpoli/python-astexport
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) version = "0.2.0" description = "Python command line application to export Python AST as Json." with open(path.join(here, "README.rst"), encoding="utf-8") as f...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) version = "0.1.2" description = "Python command line application to export Python AST as Json." with open(path.join(here, "README.rst"), encoding="utf-8") as f...
mit
Python
eb98f2cb593e175afa1e3dd0980c13f5e42a0b02
Bump version
GGabriele/napalm-panos
setup.py
setup.py
"""setup.py file.""" import uuid from setuptools import setup, find_packages from pip.req import parse_requirements __author__ = 'Gabriele Gerbino <gabriele@networktocode.com>' install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1()) reqs = [str(ir.req) for ir in install_reqs] setup( name="n...
"""setup.py file.""" import uuid from setuptools import setup, find_packages from pip.req import parse_requirements __author__ = 'Gabriele Gerbino <gabriele@networktocode.com>' install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1()) reqs = [str(ir.req) for ir in install_reqs] setup( name="n...
apache-2.0
Python
6df33178483fb26ee7c7c7f599efd0014c3d49b2
Update setup.py
ltron/tangle
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup tests_require = ['pytest'] long_description = """ Tangle is a library for building directed data flow graphs. """ setup(name="Tangle", description="Tangle - Dataflow graph", long_description=long_description, ...
try: from setuptools import setup except ImportError: from distutils.core import setup #tests_require = ['pytest', 'Sphinx'] long_description = """ Tangle is a library for building directed data flow graphs. """ setup(name="Tangle", description="Tangle - Dataflow graph", long_description=long_de...
mit
Python
536db61b140698383e54b4917d1a10372ec8878e
bump version
datamade/rlr
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- try: from setuptools import setup, Extension except ImportError : raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools") setup( name='rlr', url='https://githu...
#!/usr/bin/python # -*- coding: utf-8 -*- try: from setuptools import setup, Extension except ImportError : raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools") setup( name='rlr', url='https://githu...
bsd-3-clause
Python
3d277dc29a1bd91433b37b03baa52df7ee287019
Set Tag.name to unique=True
hackerspace-ntnu/website,hackerspace-ntnu/website,hackerspace-ntnu/website
inventory/models.py
inventory/models.py
from django.contrib.auth.admin import User from django.db import models from django.utils import timezone from sorl.thumbnail import ImageField from datetime import timedelta class Tag(models.Model): name = models.CharField(max_length=100, unique=True) visible = models.BooleanField(default=True) # TODO ...
from django.contrib.auth.admin import User from django.db import models from django.utils import timezone from sorl.thumbnail import ImageField from datetime import timedelta class Tag(models.Model): name = models.CharField(max_length=100) visible = models.BooleanField(default=True) # TODO lag restricti...
mit
Python
1a5ed4922386b2220b739a7edc21028f02fe6039
Bump version.
furious-luke/django-address,furious-luke/django-address,furious-luke/django-address
setup.py
setup.py
import os, sys from setuptools import setup, find_packages version = '0.1.5' if sys.argv[-1] == 'tag': print("Tagging the version on github:") os.system("git tag -a %s -m 'version %s'" % (version, version)) os.system("git push --tags") sys.exit() setup( name='django-address', version=version,...
import os, sys from setuptools import setup, find_packages version = '0.1.4' if sys.argv[-1] == 'tag': print("Tagging the version on github:") os.system("git tag -a %s -m 'version %s'" % (version, version)) os.system("git push --tags") sys.exit() setup( name='django-address', version=version,...
bsd-3-clause
Python
98cc8e22e85a3b97e13297fd938ebfd3bc6264d6
update setup.py for rename
moreati/kajiki,ollyc/kajiki,ollyc/kajiki,moreati/kajiki,moreati/kajiki,ollyc/kajiki
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='Kajiki', version=version, description="Really fast well-formed xml templates", long_description="""Are you tired of the slow performance of Genshi? But you still long for the assurance that your output is we...
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='FastPt', version=version, description="Really fast well-formed xml templates", long_description="""Are you tired of the slow performance of Genshi? But you still long for the assurance that your output is we...
mit
Python
0f058c1db9fe045febb0ec82586ec911a9768e83
Bump version.
grokcode/django-email-analytics
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'name': 'django-email-analytics', 'version': '0.2', 'author': 'Jess Johnson', 'author_email': 'jess@grokcode.com', 'packages': ['emailanalytics'], 'scripts': [], 'url': 'https://github....
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'name': 'django-email-analytics', 'version': '0.1', 'author': 'Jess Johnson', 'author_email': 'jess@grokcode.com', 'packages': ['emailanalytics'], 'scripts': [], 'url': 'https://github....
mit
Python
73882e9559a5398f33c357af2504e3956cd35394
bump version number
claudio-walser/gitcd,claudio-walser/gitcd
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup setup( name='gitcd', version='1.3.3', description='Tool for continous delivery using git', author='Claudio Walser', author_email='claudio.walser@srf.ch', url='https://github.com/claudio-walser/gitcd', packages=[ '.', 'gitc...
#!/usr/bin/env python3 from setuptools import setup setup( name='gitcd', version='1.3.2', description='Tool for continous delivery using git', author='Claudio Walser', author_email='claudio.walser@srf.ch', url='https://github.com/claudio-walser/gitcd', packages=[ '.', 'gitc...
apache-2.0
Python
dbd75cf4b905091810c303cf6929a67cc4d7d9eb
Correct details in setup.py
bfirsh/pspec
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='pspec', version='0.0.1', description='Python testing for humans.', author='Ben Firshman', author_email='ben@firshman.co.uk', url='http://github.com/bfirsh/pspec', packages = [ 'pspec' ], ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='pspec', version='0.0.1', description='', author='Ben Firshman', author_email='ben@firshman.co.uk', url='http://www.ep.io/', packages = [ 'pspec' ], package_data = {}, include_package...
bsd-3-clause
Python
62c9bdcd8b1132ec383d45844b441e714551fad0
Update release script
julianghionoiu/tdl-client-python,julianghionoiu/tdl-client-python
setup.py
setup.py
import string from setuptools import setup from distutils.version import StrictVersion from previous_version import PREVIOUS_VERSION import subprocess import os # ~~~~~~ Compute version # Add increment to Version class def increment(self): parts = list(self.version) parts[-1] += 1 string_repr = string.joi...
import string from setuptools import setup from distutils.version import StrictVersion from previous_version import PREVIOUS_VERSION import subprocess import os # ~~~~~~ Compute version # Add increment to Version class def increment(self): parts = list(self.version) parts[-1] += 1 string_repr = string.joi...
apache-2.0
Python
a981b05ea578941f5bc0a48cd95894dad4b54ad4
read requirements.txt apply Black code formatter
jklynch/mr-fitty,jklynch/mr-fitty
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import re from glob import glob from os import path from os.path import basename from os.path import dirname from os.path import join from os.path import splitext from setuptools import find_packages from ...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from __future__ import absolute_import, print_function import io import re from glob import glob from os.path import basename from os.path import dirname from os.path import join from os.path import splitext from setuptools import find_packages from setuptools import se...
mit
Python
b8035554219e3a431f747fdf3f61c5ef2df3fa5b
Improve setup.py
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, 2017 Björn Ricks <bjoern.ricks@gmail.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser Gener...
#!/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, 2017 Björn Ricks <bjoern.ricks@gmail.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser Gener...
mit
Python
3582affc4f7dc9f05a060eedd962d436856099d0
Add Beam dependency to setup.py
pangeo-data/rechunker
setup.py
setup.py
import os import versioneer from setuptools import find_packages, setup here = os.path.dirname(__file__) with open(os.path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() install_requires = [ "dask[array]", "zarr", ] doc_requires = [ "sphinx", "sphinxcontrib-srclinks"...
import os import versioneer from setuptools import find_packages, setup here = os.path.dirname(__file__) with open(os.path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() install_requires = [ "dask[array]", "zarr", ] doc_requires = [ "sphinx", "sphinxcontrib-srclinks"...
mit
Python
84ee881429785a44d5aed253b07cc48fe1b6032a
Move mock from requirements_dev.txt to setup.py
AntoineCezar/timeoutcontext
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', '') requirements = [ ] if sys.version_info < (3, 2): ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', '') requirements = [ ] if sys.version_info < (3, 2): ...
bsd-2-clause
Python
8d26da00549b4802fc315eeeb62c5df88a647a7c
bump version
IlyaSukhanov/flask-oasschema
setup.py
setup.py
""" Flask-OASchema ---------- A Flask extension for validating JSON requests against OAS type jsonschema """ from setuptools import setup setup( name='Flask-OASSchema', version='0.9.7', url='https://github.com/IlyaSukhanov/flask-oasschema', license='MIT', author='Ilya Sukhanov', author_email...
""" Flask-OASchema ---------- A Flask extension for validating JSON requests against OAS type jsonschema """ from setuptools import setup setup( name='Flask-OASSchema', version='0.9.6', url='https://github.com/IlyaSukhanov/flask-oasschema', license='MIT', author='Ilya Sukhanov', author_email...
mit
Python
41c35fd5c400789b17e630cf38bbf72fb0a18ca6
Bump version to 0.2.1
DavidMStraub/inspiretools
setup.py
setup.py
from setuptools import setup setup(name='inspiretools', version='0.2.1', url='https://github.com/DavidMStraub/inspire-tools', author='David M. Straub', packages=['inspiretools'], install_requires=[ "beautifulsoup4" ], entry_points={ 'console_scripts': [ ...
from setuptools import setup setup(name='inspiretools', version='0.2', url='https://github.com/DavidMStraub/inspire-tools', author='David M. Straub', packages=['inspiretools'], install_requires=[ "beautifulsoup4" ], entry_points={ 'console_scripts': [ ...
mit
Python
3f4c6b812b902b21cbf5a7890ec445be69500e2e
版本号升为 3.0.0b1
breezechen/eurasia,breezechen/eurasia
setup.py
setup.py
import sys, os.path if sys.version_info < (2, 5): print >> sys.stderr, 'error: python 2.5 or higher is required, you are using %s' %'.'.join( str(i) for i in sys.version_info) sys.exit(1) def main(): import ez_setup ez_setup.use_setuptools() from setuptools import setup args = dict( name = 'eurasia', ver...
import sys, os.path if sys.version_info < (2, 5): print >> sys.stderr, 'error: python 2.5 or higher is required, you are using %s' %'.'.join( str(i) for i in sys.version_info) sys.exit(1) def main(): import ez_setup ez_setup.use_setuptools() from setuptools import setup args = dict( name = 'eurasia', ver...
bsd-3-clause
Python
e3fdd76152de864dd5fb6b9212f1cec79a4370ca
Bump up setup.py
ResidentMario/missingno
setup.py
setup.py
from setuptools import setup setup( name = 'missingno', packages = ['missingno'], # this must be the same as the name above install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'], py_modules=['missingno'], version = '0.2.0', description = 'Missing data visualization module for Python.', author = 'Al...
from setuptools import setup setup( name = 'missingno', packages = ['missingno'], # this must be the same as the name above install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'], py_modules=['missingno'], version = '0.1.4', description = 'Missing data visualization module for Python.', author = 'Al...
mit
Python
24700d7d19e347e558df3891f5c3a1b83c68ac7f
update setup.py
bird-house/birdhousebuilder.recipe.celery
setup.py
setup.py
# -*- coding: utf-8 -*- """ This module contains the tool of birdhousebuilder.recipe.celery """ from setuptools import find_packages from setuptools import setup name = 'birdhousebuilder.recipe.celery' version = '0.2.0' description = 'A Buildout recipe to install and configure Celery for Birdhouse.' long_description ...
# -*- coding: utf-8 -*- """ This module contains the tool of birdhousebuilder.recipe.celery """ from setuptools import find_packages from setuptools import setup version = '0.2.0' description = 'A Buildout recipe to install and configure Celery for Birdhouse.' long_description = ( open('README.rst').read() + '\n' ...
bsd-3-clause
Python
4853d771ca91280f1baaa7a6c10fec182c7d0cc2
Bump version
reclosedev/lathermail,reclosedev/lathermail,reclosedev/lathermail
setup.py
setup.py
import os from setuptools import setup, find_packages install_requires = [ "Flask==0.10.1", "Flask-RESTful==0.2.12", "Flask-PyMongo==0.3.0", "pymongo==2.7.1", "python-dateutil==2.2", "SQLAlchemy==1.0.9", "Flask-SQLAlchemy==2.1", ] def read(fname): return open(os.path.join(os.path.dirn...
import os from setuptools import setup, find_packages install_requires = [ "Flask==0.10.1", "Flask-RESTful==0.2.12", "Flask-PyMongo==0.3.0", "pymongo==2.7.1", "python-dateutil==2.2", "SQLAlchemy==1.0.9", "Flask-SQLAlchemy==2.1", ] def read(fname): return open(os.path.join(os.path.dirn...
mit
Python
dd6115f05faf41e6fd8f570afd8b693d8d4238d6
Bump version to 1.3.1m1
cloudify-cosmo/cloudify-puppet-plugin,cloudify-cosmo/cloudify-puppet-plugin
setup.py
setup.py
######### # Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
######### # Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
apache-2.0
Python
a2ecadbf2a2feca6d10bdd5729115824aa94cc36
Package version bumped
adamziel/python_translate,adamziel/python_translate
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name="python-translate", version="1.0.12", author="Adam Zieliński", author_email="adam@sf2.guru", packages=find_packages(), include_package_data=True, url="https://github.com/adamziel/python_translate", license=...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name="python-translate", version="1.0.11", author="Adam Zieliński", author_email="adam@sf2.guru", packages=find_packages(), include_package_data=True, url="https://github.com/adamziel/python_translate", license=...
mit
Python
2630dc75f53137c1a379ab1c8ec7556ac7f41037
Update setup.py to include 'funcsigs', 'pbr' dependencies of mock
kuasha/cosmos
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='cosmos', version='0.01.079.00', packages=['cosmos', 'cosmos.common', 'cosmos.admin', 'cosmos.admin.samples', 'cosmos.datamonitor', 'cosmos.dataservice', 'cosmos.rbac', 'cosmos.schema', ...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='cosmos', version='0.01.079.00', packages=['cosmos', 'cosmos.common', 'cosmos.admin', 'cosmos.admin.samples', 'cosmos.datamonitor', 'cosmos.dataservice', 'cosmos.rbac', 'cosmos.schema', ...
mit
Python
87eeadfb22db64fdf526adb53740e67da345655e
Bump to 0.10.1
AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash,AmadeusITGroup/GraphDash
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Packaging """ from __future__ import with_statement import sys from setuptools import setup, find_packages with open('README.rst') as f: LONG_DESCRIPTION = f.read() with open('LICENSE') as f: LICENSE = f.read() INSTALL_REQUIRES = [ 'argparse', 'PyYA...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Packaging """ from __future__ import with_statement import sys from setuptools import setup, find_packages with open('README.rst') as f: LONG_DESCRIPTION = f.read() with open('LICENSE') as f: LICENSE = f.read() INSTALL_REQUIRES = [ 'argparse', 'PyYA...
apache-2.0
Python
d21140094920073e57b229583e9a7783dd4f2de5
fix conflict from 5f9a5f77
planetlabs/planet-client-python,planetlabs/planet-client-python,lossyrob/planet-client-python
setup.py
setup.py
from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() with open('planet/__init__.py') as f: for line in f: if line.find("__version__") >= 0...
from codecs import open as codecs_open from setuptools import setup, find_packages # Get the long description from the relevant file with codecs_open('README.md', encoding='utf-8') as f: long_description = f.read() with open('planet/__init__.py') as f: for line in f: if line.find("__version__") >= 0...
apache-2.0
Python
3c3e82923fbbbb482037425dcd288228c96d45ee
Improve meta data, add FIXME, remove commented code
sknorr/suse-doc-style-checker,sknorr/suse-doc-style-checker,sknorr/suse-doc-style-checker
setup.py
setup.py
#!/usr/bin/python3 from __future__ import print_function import sys import os import re # FIXME: this information should come from the script itself... __programname__ = "SUSE Documentation Style Checker" __version__ = "0.1.0pre" __author__ = "Stefan Knorr" __license__ = "MIT" __description__ = "checks a given DocBoo...
#!/usr/bin/python3 from __future__ import print_function import sys import os import re #sys.path.append("source") # import sdsc __version__="0.0.99" __description__="" __author__="" __license__="MIT" try: from distutils.core import setup except ImportError: print("No distutils module found.", file=sys.stde...
lgpl-2.1
Python
66b0b380a8fdb8801d57e72cb4468e8a3e69de85
bump version (again) to make sure license is in both source and dist
whitews/FlowIO
setup.py
setup.py
from setuptools import setup setup( name='FlowIO', version='0.9.5', packages=['flowio'], package_data={'': []}, description='Flow Cytometry Standard I/O', author="Scott White", author_email="whitews@gmail.com", license='BSD', url="https://github.com/whitews/flowio", requires=[],...
from setuptools import setup setup( name='FlowIO', version='0.9.4', packages=['flowio'], package_data={'': []}, description='Flow Cytometry Standard I/O', author="Scott White", license='BSD', url="https://github.com/whitews/flowio", requires=[], )
bsd-3-clause
Python
ee66d446747465b12685b9d7746d2097c5c0cdff
upgrade to version
Shinichi-Nakagawa/pitchpx
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages __author__ = 'Shinichi Nakagawa' def read_file(filename): basepath = os.path.dirname(os.path.dirname(__file__)) filepath = os.path.join(basepath, filename) if os.path.exists(filepath): return open...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup, find_packages __author__ = 'Shinichi Nakagawa' def read_file(filename): basepath = os.path.dirname(os.path.dirname(__file__)) filepath = os.path.join(basepath, filename) if os.path.exists(filepath): return open...
mit
Python
cdfe3d1647ae04fa8d31a74727377d553f3c4987
bump version to 0.0.10 (#35)
googleapis/protoc-java-resource-names-plugin,googleapis/protoc-java-resource-names-plugin
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2015, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyrig...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2015, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyrig...
bsd-3-clause
Python
1a310e9eac558d0420fb01ef6b852aae6f9bd7d5
Clean setup
oscar6echo/ezhc,oscar6echo/ezhc,oscar6echo/ezhc
setup.py
setup.py
# necessary to push to PyPI # cf. http://peterdowns.com/posts/first-time-with-pypi.html # cf. https://tom-christie.github.io/articles/pypi/ # cf. https://pythonhosted.org/setuptools/setuptools.html # commands: # one liner # python setup.py sdist upload -r pypi # 2 steps # python setup.py sdist # twine upload dist/* ...
# necessary to push to PyPI # cf. http://peterdowns.com/posts/first-time-with-pypi.html # cf. https://tom-christie.github.io/articles/pypi/ # cf. https://pythonhosted.org/setuptools/setuptools.html # commands: # python setup.py sdist upload -r testpypi # python setup.py sdist upload -r pypi from setuptools import se...
mit
Python
6d3839d1938fb523e559bf44e541c990f8d314b9
Upgrade version to 0.2.1
snapbill/snapbill-pyapi
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Languag...
#!/usr/bin/env python from setuptools import setup, find_packages CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Languag...
mit
Python
c78138e28e9165701f514b0ad8ceb69fafb6dfb5
change version
efirvida/python-gearbox,mjfwest/python-gearbox
setup.py
setup.py
from setuptools import setup, find_packages version = '0.1.2.a' setup( name='python-gearbox', version=version, author='Eduardo M. Firvida Donestevez', packages=find_packages(), include_package_data=True, author_email='efirvida@gmail.com', description='Python library for gear transmission d...
from setuptools import setup, find_packages version = '0.1.2' setup( name='python-gearbox', version=version, author='Eduardo M. Firvida Donestevez', packages=find_packages(), include_package_data=True, author_email='efirvida@gmail.com', description='Python library for gear transmission des...
mit
Python
0577f4cf1162a09505c3a4076df9e486535f84ed
update pipy info
aaalgo/picpac,aaalgo/picpac,aaalgo/picpac,aaalgo/picpac,aaalgo/picpac,aaalgo/picpac
setup.py
setup.py
from distutils.core import setup, Extension picpac = Extension('_picpac', language = 'c++', extra_compile_args = ['-O3', '-std=c++1y'], include_dirs = ['/usr/local/include', 'json11'], libraries = ['opencv_highgui', 'opencv_core', 'boost_filesystem', 'boost_system', 'boost_python', 'gl...
from distutils.core import setup, Extension picpac = Extension('_picpac', language = 'c++', extra_compile_args = ['-O3', '-std=c++1y'], include_dirs = ['/usr/local/include', 'json11'], libraries = ['opencv_highgui', 'opencv_core', 'boost_filesystem', 'boost_system', 'boost_python', 'gl...
bsd-2-clause
Python
905bc827987318ed983d96f37bc6c23e0627305f
Update github URL
physonymus/cmdhelper
setup.py
setup.py
from setuptools import setup def read(fname): """Return contents of file with name fname.""" with open(fname, 'r') as f: return f.read() setup( name = 'cmdhelper', version = '0.2.0', description = 'Python utility for writing command line scripts with consistent look and feel.', long_de...
from setuptools import setup def read(fname): """Return contents of file with name fname.""" with open(fname, 'r') as f: return f.read() setup( name = 'cmdhelper', version = '0.2.0', description = 'Python utility for writing command line scripts with consistent look and feel.', long_de...
mit
Python
689ac6d104f9b009bd745ac3e3fe9c5087ec02e9
Install new manpage
toddgaunt/imgfetch
setup.py
setup.py
#! /usr/bin/env python3 from distutils.core import setup setup( description = 'File downloader for danbooru', author = 'Todd Gaunt', url = 'https://www.github.com/toddgaunt/imgfetch', download_url = 'https://www.github.com/toddgaunt/imgfetch', author_email = 'toddgaunt@protonmail.ch', version =...
#! /usr/bin/env python3 from distutils.core import setup setup( description = 'File downloader for danbooru', author = 'Todd Gaunt', url = 'https://www.github.com/toddgaunt/imgfetch', download_url = 'https://www.github.com/toddgaunt/imgfetch', author_email = 'toddgaunt@protonmail.ch', version =...
isc
Python
3f4bd28c8db35076be3a4bc445cc66f51a9f8936
move `pytest` requirement to `tests_require`
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.20190701-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.20190701-dev', description=' Web services for weblyzard', author='Albert Weichselbraun, Heinz-Peter Lang, Max Göbel and Philipp Kuntschik',...
apache-2.0
Python