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
8ddd163ea603bba302d600ceb1ff7ee53fe6bbc0
update version
drgrib/dotmap
setup.py
setup.py
from setuptools import setup setup( version = '1.2.6', name = 'dotmap', packages = ['dotmap'], # this must be the same as the name above description = 'ordered, dynamically-expandable dot-access dictionary', author = 'Chris Redford', author_email = 'credford@gmail.com', url = 'https://github.com/drgrib/dotmap',...
from setuptools import setup setup( version = '1.2.5', name = 'dotmap', packages = ['dotmap'], # this must be the same as the name above description = 'ordered, dynamically-expandable dot-access dictionary', author = 'Chris Redford', author_email = 'credford@gmail.com', url = 'https://github.com/drgrib/dotmap',...
mit
Python
7912e3138eed89b39c574b16bc5c7d9c47b1c25e
Use -std=c++14 flag when available on clang and gcc
pikepdf/pikepdf,pikepdf/pikepdf,pikepdf/pikepdf
setup.py
setup.py
from setuptools import setup, Extension from setuptools.command.build_ext import build_ext import os, sys ext_modules = [ Extension( 'pbtest', ['py/main.cpp'], include_dirs=['include'], language='c++', ), ] def has_flag(compiler, flagname): """Return a boolean indicating wh...
from setuptools import setup, Extension from setuptools.command.build_ext import build_ext import sys ext_modules = [ Extension( 'pbtest', ['py/main.cpp'], include_dirs=['include'], language='c++', ), ] class BuildExt(build_ext): """A custom build extension for adding comp...
mpl-2.0
Python
5ed65dbf5541fafbe2dca389a1fdda1c01c229d8
Update stratisd-client-dbus requirement to 0.07
stratis-storage/stratis-cli,stratis-storage/stratis-cli
setup.py
setup.py
import os import sys import setuptools if sys.version_info[0] < 3: from codecs import open def local_file(name): return os.path.relpath(os.path.join(os.path.dirname(__file__), name)) README = local_file("README.rst") with open(local_file("src/stratis_cli/_version.py")) as o: exec(o.read()) setuptool...
import os import sys import setuptools if sys.version_info[0] < 3: from codecs import open def local_file(name): return os.path.relpath(os.path.join(os.path.dirname(__file__), name)) README = local_file("README.rst") with open(local_file("src/stratis_cli/_version.py")) as o: exec(o.read()) setuptool...
apache-2.0
Python
19918fe888e3865f496d1ec5c43ea0910302045f
bump release for compatibility with py25.
jeremi/couchdbkit,jeremi/couchdbkit
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2008-2009 Benoit Chesneau <benoitc@e-engura.com> # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2008-2009 Benoit Chesneau <benoitc@e-engura.com> # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all...
isc
Python
a52c455b8d48d00217479c175a19f44c03a10bd4
replace enum-compat with enum34 for python 2.7
DiamondLightSource/ispyb-api,DiamondLightSource/ispyb-api
setup.py
setup.py
from __future__ import absolute_import, division, print_function from setuptools import find_packages, setup import sys INSTALL_REQUIRES = ['mysql-connector<2.2.3'] if sys.version_info.major == 2: INSTALL_REQUIRES.append('enum34') setup( name="ispyb", version="5.2.0", description="Python package to ...
from __future__ import absolute_import, division, print_function from setuptools import find_packages, setup setup( name="ispyb", version="5.2.0", description="Python package to access ISPyB database", long_description="This package provides a python interface to ISPyB. It can access the ISPyB databas...
apache-2.0
Python
0f5506fe8bcb899e64cc7c1cf881edc3d3aaead8
use full path and os.path to version.py in setup.py (#97)
googleapis/python-datastore,googleapis/python-datastore
setup.py
setup.py
# Copyright 2018 Google LLC # # 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, s...
# Copyright 2018 Google LLC # # 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, s...
apache-2.0
Python
2af6dd1897bfa542765a632635603094f4d76f0c
Bump dateutil dependency
samueldg/clippings
setup.py
setup.py
import sys from setuptools import setup from clippings import __version__ requirements = [ 'python-dateutil==2.7.5', ] if sys.version_info[0] == 2: requirements.append('mock==2.0.0') setup( name='clippings', version=__version__, description='Amazon Kindle clippings parser', long_descripti...
import sys from setuptools import setup from clippings import __version__ requirements = [ 'python-dateutil==2.6.0', ] if sys.version_info[0] == 2: requirements.append('mock==2.0.0') setup( name='clippings', version=__version__, description='Amazon Kindle clippings parser', long_descripti...
mit
Python
04229ec331c0259a07f5d22a636b65aac60407f8
Add Trove classifiers for 2.x and 3.x
six8/logging-levels
setup.py
setup.py
from distutils.core import setup def main(): setup( name = 'logging_levels', packages=['logging_levels'], package_dir = {'logging_levels':'logging_levels'}, version = open('VERSION.txt').read().strip(), author='Mike Thornton', author_email='six8@devdetails.com', ...
from distutils.core import setup def main(): setup( name = 'logging_levels', packages=['logging_levels'], package_dir = {'logging_levels':'logging_levels'}, version = open('VERSION.txt').read().strip(), author='Mike Thornton', author_email='six8@devdetails.com', ...
mit
Python
958ca241b18cfa71f6a097f0d12f9db15802dd4d
update version
drgrib/dotmap
setup.py
setup.py
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( version = '1.2.39', name='dotmap', packages=['dotmap'], # this must be the same as the name above description='ordered, dynamically-expandable dot-access dictionary', author='Chris Redford', a...
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( version = '1.2.38', name='dotmap', packages=['dotmap'], # this must be the same as the name above description='ordered, dynamically-expandable dot-access dictionary', author='Chris Redford', a...
mit
Python
073517e8a8e1f74621a62da528a112f121158faf
Update version
dmsul/econtools
setup.py
setup.py
from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() dependencies = [ 'numpy>=1.9.2', 'pandas>=0.16.0', ] setup(name='econtools', version='0.1.0', description='Econometrics and other tools', long_description=readme(), # u...
from setuptools import setup, find_packages def readme(): with open('README.md') as f: return f.read() dependencies = [ 'numpy>=1.9.2', 'pandas>=0.16.0', ] setup(name='econtools', version='0.0.1', description='Econometrics and other tools', long_description=readme(), # u...
bsd-3-clause
Python
c356ca109f853618a79d8e8c32811eb9adce1f00
Fix setup issue (use version string instead of tuple)
gst/amqpy,veegee/amqpy
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages import amqpy import sys import codecs NAME = 'amqpy' DESCRIPTION = 'AMQP 0.9.1 client library for Python >= 3.2.0' if sys.version_info < (3, 2): raise Exception('amqpy requires Python 3.2 or higher') classifiers = [ 'Development Status :: 3...
#!/usr/bin/env python3 from setuptools import setup, find_packages import amqpy import sys import codecs NAME = 'amqpy' DESCRIPTION = 'AMQP 0.9.1 client library for Python >= 3.2.0' if sys.version_info < (3, 2): raise Exception('amqpy requires Python 3.2 or higher') classifiers = [ 'Development Status :: 3...
mit
Python
4102f998d6a3d146f3162315b341dd8f4c999e7c
Bump package version to 0.6.3
instana/python-sensor,instana/python-sensor
setup.py
setup.py
from setuptools import setup, find_packages setup(name='instana', version='0.6.3', download_url='https://github.com/instana/python-sensor', url='https://www.instana.com/', license='MIT', author='Instana Inc.', author_email='peter.lombardo@instana.com', description='Metrics sen...
from setuptools import setup, find_packages setup(name='instana', version='0.6.2', download_url='https://github.com/instana/python-sensor', url='https://www.instana.com/', license='MIT', author='Instana Inc.', author_email='peter.lombardo@instana.com', description='Metrics sen...
mit
Python
205b4071beb1bdc982114a6894b088e6a9394dae
Remove upper version limit for geoalchemy2
openego/eTraGo
setup.py
setup.py
import os from setuptools import find_packages, setup __copyright__ = ( "Flensburg University of Applied Sciences, " "Europa-Universität Flensburg, " "Centre for Sustainable Energy Systems, " "DLR-Institute for Networked Energy Systems" ) __license__ = "GNU Affero General Public License Version 3 (AGP...
import os from setuptools import find_packages, setup __copyright__ = ( "Flensburg University of Applied Sciences, " "Europa-Universität Flensburg, " "Centre for Sustainable Energy Systems, " "DLR-Institute for Networked Energy Systems" ) __license__ = "GNU Affero General Public License Version 3 (AGP...
agpl-3.0
Python
810f0b4758a730a42f4f81234fa7abf4717102d4
Update to 0.0.6 in setup.py
4dn-dcic/pairix,4dn-dcic/pairix,4dn-dcic/pairix,4dn-dcic/pairix,4dn-dcic/pairix
setup.py
setup.py
#!/usr/bin/env python # Written by Soo Lee and Carl Vitzthum # This code is based on the following open-source projects: # pytabix (https://github.com/slowkow/pytabix) # pysam (https://github.com/pysam-developers) # The Github repo for this project is: # https://github.com/4dn-dcic/pairix # IMPORTANT: use Python 2.7 or...
#!/usr/bin/env python # Written by Soo Lee and Carl Vitzthum # This code is based on the following open-source projects: # pytabix (https://github.com/slowkow/pytabix) # pysam (https://github.com/pysam-developers) # The Github repo for this project is: # https://github.com/4dn-dcic/pairix # IMPORTANT: use Python 2.7 or...
mit
Python
2073e1f18955da2b51d740d028500f211c4160de
bump version to 0.9.1
DasAllFolks/hgvs,counsyl/hgvs,DasAllFolks/hgvs,vipints/hgvs,vipints/hgvs
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup from pip.req import parse_requirements import sys description = ("This library provides a simple to use Python API for parsing, " "formatting, and normalizing variant names specified in the " "standard recommended by the Human Genome Var...
#!/usr/bin/env python from setuptools import setup from pip.req import parse_requirements import sys description = ("This library provides a simple to use Python API for parsing, " "formatting, and normalizing variant names specified in the " "standard recommended by the Human Genome Var...
mit
Python
7016394627ac89fe08c5abccdb39b37a40cf2040
Add some Trove classifiers
koordinates/python-client,koordinates/python-client
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup import re from codecs import open version = '' with open('koordinates/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup import re import os from codecs import open version = '' with open('koordinates/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', ...
bsd-3-clause
Python
0522b0921f249c81d055c3ea6cf058ef16f04a50
Update to v0.5.2
apdavison/hbp-validation-client,apdavison/hbp-validation-client,apdavison/hbp-validation-client,apdavison/hbp-validation-client
setup.py
setup.py
import os from setuptools import setup def package_files(base_dir, directory): pwd = os.getcwd() os.chdir(base_dir) paths = [] for (path, directories, filenames) in os.walk(directory): for filename in filenames: paths.append(os.path.join(path, filename)) os.chdir(pwd) return...
import os from setuptools import setup def package_files(base_dir, directory): pwd = os.getcwd() os.chdir(base_dir) paths = [] for (path, directories, filenames) in os.walk(directory): for filename in filenames: paths.append(os.path.join(path, filename)) os.chdir(pwd) return...
bsd-3-clause
Python
ef65251fb9348b8539f5f12818e1e2f7b8ac2635
Update `description`.
ContinuumIO/anaconda-verify,mandeep/conda-verify
setup.py
setup.py
# (c) 2016 Continuum Analytics, Inc. / http://continuum.io # All Rights Reserved import re from os.path import join from distutils.core import setup # read version from anaconda_verify/__init__.py pat = re.compile(r'__version__\s*=\s*(\S+)', re.M) data = open(join('anaconda_verify', '__init__.py')).read() version = ...
# (c) 2016 Continuum Analytics, Inc. / http://continuum.io # All Rights Reserved import re from os.path import join from distutils.core import setup # read version from anaconda_verify/__init__.py pat = re.compile(r'__version__\s*=\s*(\S+)', re.M) data = open(join('anaconda_verify', '__init__.py')).read() version = ...
bsd-3-clause
Python
0b407f03eb32c5345d7196c613b26c9bbb59ab05
Fix PKG-INFO.
pearu/sympycore,pearu/sympycore
setup.py
setup.py
CLASSIFIERS = """\ Development Status :: 3 - Alpha Intended Audience :: Science/Research License :: OSI Approved Programming Language :: Python Topic :: Scientific/Engineering Topic :: Software Development Operating System :: Microsoft :: Windows Operating System :: POSIX Operating System :: Unix Operating System :: M...
CLASSIFIERS = """\ Development Status :: 3 - Alpha Intended Audience :: Science/Research License :: OSI Approved Programming Language :: Python Topic :: Scientific/Engineering Topic :: Software Development Operating System :: Microsoft :: Windows Operating System :: POSIX Operating System :: Unix Operating System :: M...
bsd-3-clause
Python
ba962ab90ec4404a5ae905e47206a1de15fa2a97
remove tkinter from setup.py
cdemulde/wwdata,cdemulde/wwdata,cdemulde/wwdata
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pandas', 'numpy', 'date...
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'pandas', 'numpy', 'date...
agpl-3.0
Python
f17dd9e6ca76d1f31dec32932beacecb8d8034d0
Bump version to 0.7.0
eyalr/unicode_mayo
setup.py
setup.py
import os import sys from setuptools import find_packages, setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() VERSION = '0.7.0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print "You should also consider tagg...
import os import sys from setuptools import find_packages, setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() VERSION = '0.6.5' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print "You should also consider tagg...
mit
Python
1aec5f78387c27b06d2d3f3f8cc76b09cf66c12a
Add pypower to requirements
openego/eDisGo,openego/eDisGo
setup.py
setup.py
from setuptools import find_packages, setup from setuptools.command.install import install import os BASEPATH = '.eDisGo' def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() class InstallSetup(install): def run(self): self.create_edisgo_path() install.run(self)...
from setuptools import find_packages, setup from setuptools.command.install import install import os BASEPATH = '.eDisGo' def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() class InstallSetup(install): def run(self): self.create_edisgo_path() install.run(self)...
agpl-3.0
Python
5d1c3050f531c7a0bd9b84ecef71a81901c58930
Remove 2to3 related from setup.py
ulule/django-linguist
setup.py
setup.py
# -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages version = __import__('linguist').__version__ root = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(root, 'README.rst')) as f: README = f.read() setup( name='django-linguist', version=version, ...
# -*- coding: utf-8 -*- import os import sys from setuptools import setup, find_packages version = __import__('linguist').__version__ root = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(root, 'README.rst')) as f: README = f.read() setup( name='django-linguist', version=version, ...
mit
Python
3aff9253426552135a83f49adf9a5e2e480b995b
Fix setup again
whatisjasongoldstein/scruffy-cropper,whatisjasongoldstein/scruffy-cropper,whatisjasongoldstein/scruffy-cropper
setup.py
setup.py
from distutils.core import setup setup( name='Scruffy Cropper', version="0.2.2", author='Jason Goldstein', author_email='jason@betheshoe.com', url='https://bitbucket.org/whatisjasongoldstein/django-cropper', packages=['cropper', 'cropper.migrations', ], package_data={ 'cropper': ['templates...
from distutils.core import setup setup( name='Scruffy Cropper', version="0.2.1", author='Jason Goldstein', author_email='jason@betheshoe.com', url='https://bitbucket.org/whatisjasongoldstein/django-cropper', packages=['cropper', 'cropper.migrations', ], description='Generic cropping utility...
mit
Python
3ca00db8d7f177da1d6f19c8b634de7c3aa110d1
Update package name in setup.py
danielatdattrixdotcom/pyapitest
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='pyapitest', version...
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='pyapitest', version...
isc
Python
2ad68d80102c409d1c48a797d5ebf6d73bffc003
fix packaging bug that made 'import uwsgi' not work after 'pip install uwsgi-stub'
dakra/uwsgi-stub
setup.py
setup.py
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: README = f.read() with open(path.join(here, 'CHANGES.txt'), encoding='utf-8') as f: CHANGES = f.read() setup( name='uwsgi-s...
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: README = f.read() with open(path.join(here, 'CHANGES.txt'), encoding='utf-8') as f: CHANGES = f.read() setup( name='uwsgi-s...
isc
Python
38db4d448e4b07b305abc53a0eca6768fa400c81
update setup
Ryan-Amaral/PyTPG
setup.py
setup.py
from setuptools import setup setup( name='PyTPG', version='0.96', packages=['tpg', 'tpg.configuration'], install_requires=['numba','numpy', 'unittest-xml-reporting'], license='MIT', description='Python implementation of Tangled Program Graphs.', long_description=open('README.md').read(), ...
from setuptools import setup setup( name='PyTPG', version='0.95', packages=['tpg', 'tpg.configuration'], install_requires=['numba','numpy', 'unittest-xml-reporting'], license='MIT', description='Python implementation of Tangled Program Graphs.', long_description=open('README.md').read(), ...
mit
Python
fdf68c774244c86d061bb095fdbddb943c4c653d
Make version compliant with pip
LumenResearch/heatmappy
setup.py
setup.py
from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() setup( name = 'heatmappy', packages = ['heatmappy'], version = '0.1.0', description = 'Draw image heatmaps in python', author = 'Lumen Research', author_email = 'development@lumen-research.com', url = ...
from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() setup( name = 'heatmappy', packages = ['heatmappy'], version = '0.1', description = 'Draw image heatmaps in python', author = 'Lumen Research', author_email = 'development@lumen-research.com', url = 'h...
mit
Python
b9fc61380a22860fea2a656d993b5522de773d56
update version
fillest/sapyens,fillest/sapyens,fillest/sapyens
setup.py
setup.py
import setuptools requires = [ ] setuptools.setup( name = 'sapyens', version = '0.1.5', description = 'SQLAlchemy & Pyramid enhancements', long_description = 'SQLAlchemy & Pyramid enhancements', author = 'Philipp Saveliev', author_email = 'fsfeel@gmail.com', url = 'https://github.com/fillest/sapyens', packa...
import setuptools requires = [ ] setuptools.setup( name = 'sapyens', version = '0.1.3', description = 'SQLAlchemy & Pyramid enhancements', long_description = 'SQLAlchemy & Pyramid enhancements', author = 'Philipp Saveliev', author_email = 'fsfeel@gmail.com', url = 'https://github.com/fillest/sapyens', packa...
apache-2.0
Python
447beba3ab1907c68514cb9a79f99fbf5568e9bf
Bump pandas from 1.1.3 to 1.1.4
bugra/l1
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==1.1.4', 'cvxopt==1.2.5.pos...
#!/usr/bin/env python from setuptools import setup setup(name='l1', version='0.1', description='L1', author='Bugra Akyildiz', author_email='vbugra@gmail.com', url='bugra.github.io', packages=['l1'], install_requires=['pandas==1.1.3', 'cvxopt==1.2.5.pos...
apache-2.0
Python
ed343c437ef44c92d5425609d3d6600a34949e45
Bump version to 3.1.12
BrendanBerkley/django-report-builder,altanawealth/django-report-builder,AbhiAgarwal/django-report-builder,altanawealth/django-report-builder,BrendanBerkley/django-report-builder,AbhiAgarwal/django-report-builder,BrendanBerkley/django-report-builder,altanawealth/django-report-builder,AbhiAgarwal/django-report-builder
setup.py
setup.py
from setuptools import setup, find_packages setup( name="django-report-builder", version="3.1.12", author="David Burke", author_email="david@burkesoftware.com", description=("Query and Report builder for Django ORM"), license="BSD", keywords="django report", url="https://github.com/burk...
from setuptools import setup, find_packages setup( name="django-report-builder", version="3.1.11", author="David Burke", author_email="david@burkesoftware.com", description=("Query and Report builder for Django ORM"), license="BSD", keywords="django report", url="https://github.com/burk...
bsd-3-clause
Python
9f04290870f5e213a4d86e22e21627fc567c9eec
add long discriptions
yakiang/Baidubaike
setup.py
setup.py
#-*-coding:utf-8-*- from distutils.core import setup dependencies = [ "beautifulsoup4", "requests" ] setup( name = 'baidubaike', packages = ['baidubaike'], version = '1.2.2', description = 'A wrapper of Baidu Baike', author = 'yakiang', author_email = 'strak47@gmail.com', url = '...
from distutils.core import setup dependencies = [ "beautifulsoup4", "requests" ] setup( name = 'baidubaike', packages = ['baidubaike'], version = '1.2.1', description = 'A wrapper of Baidu Baike', author = 'yakiang', author_email = 'strak47@gmail.com', url = 'https://github.com/y...
mit
Python
b5d2029390a390ba7801fe5957c5479cf7904620
update package_data
YetAnotherNerd/whatlastgenre
setup.py
setup.py
#!/usr/bin/env python # whatlastgenre # Improves genre metadata of audio files # based on tags from various music sites. # # Copyright (c) 2012-2015 YetAnotherNerd # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation # files (the "Software"), ...
#!/usr/bin/env python # whatlastgenre # Improves genre metadata of audio files # based on tags from various music sites. # # Copyright (c) 2012-2015 YetAnotherNerd # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation # files (the "Software"), ...
mit
Python
3c8099a8fd577f825462ff4b23e47700af26f3d1
Update meta-info, first public package exposed
Nefry/taurus,arthurlogilab/taurus,greyfenrir/taurus,Blazemeter/taurus,Blazemeter/taurus,Blazemeter/taurus,Nefry/taurus,Nefry/taurus,arthurlogilab/taurus,Blazemeter/taurus,greyfenrir/taurus,greyfenrir/taurus,arthurlogilab/taurus,itaymendel/taurus,Nefry/taurus,itaymendel/taurus,arthurlogilab/taurus,greyfenrir/taurus,Blaz...
setup.py
setup.py
import os import shutil import sys from setuptools import setup from setuptools.command.install import install import bzt class InstallWithHook(install, object): """ Command adding post-install hook to setup """ def run(self): """ Do the command's job! """ install.run...
import os import shutil import sys from setuptools import setup from setuptools.command.install import install import bzt class InstallWithHook(install, object): """ Command adding post-install hook to setup """ def run(self): """ Do the command's job! """ install.run...
apache-2.0
Python
806cc3f4cfab85964cd08a1a24eb696e6f884a46
bump version.
jonhadfield/python-hosts
setup.py
setup.py
#!/usr/bin/env python import os import sys from setuptools import setup from setuptools.command.test import test as testcommand version = "0.1.88" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') os.system('python setup.py bdist_wheel upload') sys.exit() if sys.argv[-1] == 'tag': ...
#!/usr/bin/env python import os import sys from setuptools import setup from setuptools.command.test import test as testcommand version = "0.1.87" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') os.system('python setup.py bdist_wheel upload') sys.exit() if sys.argv[-1] == 'tag': ...
mit
Python
16890b7c1f2b3cb30ad538feca7cb05b1baf1acd
prepare to publishing on pypi
sergeyglazyrindev/asceticcmdrunner
setup.py
setup.py
import sys from setuptools import setup # dirty hack, always use wheel sys.argv.append('bdist_wheel') def readme(): with open('README.rst') as f: return f.read() setup( name='acmdrunner', version='0.3', description='Ascetic command runner. The most ease way' ' to power your python app wi...
import sys from setuptools import setup # dirty hack, always use wheel sys.argv.append('bdist_wheel') def readme(): with open('README.rst') as f: return f.read() setup( name='acmdrunner', version='0.3', description='Ascetic command runner. The most ease way' ' to power your python app wi...
mit
Python
e4f39263ec701261cacbbd02a323e70028eaeacc
Add 3.7 to setuplpy classifiers
boto/boto3
setup.py
setup.py
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import re from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore>=1.10.68,<1.11.0', 'jmespath>=0.7.1,<1.0.0', 's3tra...
#!/usr/bin/env python """ distutils/setuptools install script. """ import os import re from setuptools import setup, find_packages ROOT = os.path.dirname(__file__) VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') requires = [ 'botocore>=1.10.68,<1.11.0', 'jmespath>=0.7.1,<1.0.0', 's3tra...
apache-2.0
Python
0b2e0d11917fb6320f746ea30cc5b7c11f34a421
Bump version
markstory/lint-review,markstory/lint-review,markstory/lint-review
setup.py
setup.py
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.23.2" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the ...
from setuptools import setup, find_packages PACKAGE_NAME = "lintreview" VERSION = "1.23.1" requirements = open('./requirements.txt', 'r') setup( name=PACKAGE_NAME, version=VERSION, description="Lint Review, an automated code review tool that " "integrates with github. Integrates with the ...
mit
Python
76f06d5b056e4c3e6f7ad961067a65a420dd45ea
fix binary name
shoshber/fmriprep,chrisfilo/fmriprep,shoshber/fmriprep,poldracklab/fmriprep,oesteban/preprocessing-workflow,poldracklab/preprocessing-workflow,oesteban/fmriprep,oesteban/fmriprep,oesteban/fmriprep,poldracklab/fmriprep,poldracklab/preprocessing-workflow,poldracklab/fmriprep,oesteban/preprocessing-workflow
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: oesteban # @Date: 2015-11-19 16:44:27 # @Last Modified by: oesteban # @Last Modified time: 2016-03-10 13:32:41 """ fmriprep setup script """ import os import sys __version__ = '0.0.1' def main(): """ Install entry-point """ from glob import glob ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: oesteban # @Date: 2015-11-19 16:44:27 # @Last Modified by: oesteban # @Last Modified time: 2016-03-10 12:45:51 """ fmriprep setup script """ import os import sys __version__ = '0.0.1' def main(): """ Install entry-point """ from glob import glob ...
bsd-3-clause
Python
671bd8775740a8750c5d983b78a7ed3bd815d55b
Bump 0.2.0
msgflo/msgflo-python
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='msgflo', version='0....
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='msgflo', version='0....
mit
Python
eb831efb08d6fc278dcfa885d616077741880129
Add python 3.6, remove python 3.3
zostera/django-bootstrap4,zostera/django-bootstrap4
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import bootstrap4 try: from setuptools import setup except ImportError: from distutils.core import setup version = bootstrap4.__version__ if sys.argv[-1] == 'publish': os.system('cd docs && make html') os.system('python setup.py sdi...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import bootstrap4 try: from setuptools import setup except ImportError: from distutils.core import setup version = bootstrap4.__version__ if sys.argv[-1] == 'publish': os.system('cd docs && make html') os.system('python setup.py sdi...
bsd-3-clause
Python
7b74e32d47ca4c0ade1b51894aeff66a381c0c9b
Fix setup.py yet again.
shakefu/pyconfig
setup.py
setup.py
import multiprocessing, logging # Fix atexit bug import os from setuptools import setup, find_packages def README(): try: return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() except: pass setup( name='pyconfig', version='1.1.1', descri...
import multiprocessing, logging # Fix atexit bug import os from setuptools import setup, find_packages def README(): try: return open(os.path.join(os.path.dirname(__file__), 'README')).read() except: pass setup( name='pyconfig', version='1.1.1', descriptio...
mit
Python
de982b46254446b243e891fadbf25ef91d94385d
Add test requirements
znerol/spreadflow-core,spreadflow/spreadflow-core
setup.py
setup.py
from setuptools import setup tests_require = [ 'coveralls', 'mock', 'testtools' ] setup( name='SpreadFlowCore', version='0.0.1', description='Metadata extraction and processing engine', author='Lorenz Schori', author_email='lo@znerol.ch', url='https://github.com/znerol/spreadflow-c...
from setuptools import setup setup( name='SpreadFlowCore', version='0.0.1', description='Metadata extraction and processing engine', author='Lorenz Schori', author_email='lo@znerol.ch', url='https://github.com/znerol/spreadflow-core', packages=[ 'spreadflow_core', 'spreadflo...
mit
Python
5751d0e35dbe2a11a700f74a0daf1bea25f12c99
Bump version to 1.0
jgorset/django-shortcuts
setup.py
setup.py
from distutils.core import setup setup( name = 'django-shortcuts', version = '1.0', description = "You spend way too much time typing 'python manage.py'", author = "Johannes Gorset", author_email = "jgorset@gmail.com", url = "http://github.com/jgorset/django-shortcuts", scripts = ['scripts/django'] )
from distutils.core import setup setup( name = 'django-shortcuts', version = '0.2.1', description = "You spend way too much time typing 'python manage.py'", author = "Johannes Gorset", author_email = "jgorset@gmail.com", url = "http://github.com/jgorset/django-shortcuts", scripts = ['scripts/django'] )
mit
Python
bb5429d0448c555e9b6cab22e7b74dc38b59f20c
Bump version for release.
ucla/PushHubCore
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'pyramid_zodbconn', 'pyramid_tm', 'pyramid_debugtoolbar', ...
bsd-3-clause
Python
49905493cb0dd88a1ccec05c07981caf26bda1ac
add missing commas
pudo/dataset,saimn/dataset
setup.py
setup.py
import sys from setuptools import setup, find_packages py26_dependency = [] if sys.version_info[:2] <= (2, 6): py26_dependency = ["argparse >= 1.1", "ordereddict >= 1.1"] setup( name='dataset', version='0.7.1', description="Toolkit for Python-based data processing.", long_description="", clas...
import sys from setuptools import setup, find_packages py26_dependency = [] if sys.version_info[:2] <= (2, 6): py26_dependency = ["argparse >= 1.1", "ordereddict >= 1.1"] setup( name='dataset', version='0.7.1', description="Toolkit for Python-based data processing.", long_description="", clas...
mit
Python
7f8451b1fe155e1071b83b0ca8e74f9c688335de
increment version number
learningequality/kolibri-exercise-perseus-plugin,learningequality/kolibri-exercise-perseus-plugin
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals import logging import sys from setuptools import setup def read_file(fname): """ Read file and decode in py2k """ if sys.version_info < (3,): return open(fname).read().decod...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals import logging import sys from setuptools import setup def read_file(fname): """ Read file and decode in py2k """ if sys.version_info < (3,): return open(fname).read().decod...
mit
Python
57f29d0fbaefb25211b32810c990381c4dc3de71
include template files in installing
kevenli/scrapydd,kevenli/scrapydd,kevenli/scrapydd,kevenli/scrapydd
setup.py
setup.py
from setuptools import setup, find_packages import os import scrapydd version = scrapydd.__version__ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name = 'scrapydd', version = version, author ='kevenli', author_email ='pbleester@gma...
from setuptools import setup, find_packages import os import scrapydd version = scrapydd.__version__ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name = 'scrapydd', version = version, author ='kevenli', author_email ='pbleester@gma...
apache-2.0
Python
4f5d93c041df8ed29e490a4d5fa861ccaf3d896c
Fix version number in setup.py.
FelixLoether/flask-split-js,FelixLoether/flask-split-js
setup.py
setup.py
from setuptools import setup, Command import subprocess class Test(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): err1 = subprocess.call(['py.test', 'tests/python']) err2 = subprocess.call(['node_modules...
from setuptools import setup, Command import subprocess class Test(Command): user_options = [] def initialize_options(self): pass def finalize_options(self): pass def run(self): err1 = subprocess.call(['py.test', 'tests/python']) err2 = subprocess.call(['node_modules...
mit
Python
91ffe7e7920b1357c82d0e4aca7c903ab91b20aa
Bump flake8 from 3.7.4 to 3.7.5
sloria/sphinx-issues
setup.py
setup.py
# -*- coding: utf-8 -*- import re from setuptools import setup INSTALL_REQUIRES = ["sphinx"] EXTRAS_REQUIRE = { "tests": ["pytest", 'mock; python_version < "3.0"'], "lint": [ "flake8==3.7.5", 'flake8-bugbear==18.8.0; python_version >= "3.5"', "pre-commit==1.14.2", ], } EXTRAS_REQUIR...
# -*- coding: utf-8 -*- import re from setuptools import setup INSTALL_REQUIRES = ["sphinx"] EXTRAS_REQUIRE = { "tests": ["pytest", 'mock; python_version < "3.0"'], "lint": [ "flake8==3.7.4", 'flake8-bugbear==18.8.0; python_version >= "3.5"', "pre-commit==1.14.2", ], } EXTRAS_REQUIR...
mit
Python
4e7dc5a7e2f84a02f7d4c34ed630902cd31e40e4
Change NAME => name
tanghaibao/goatools,tanghaibao/goatools
setup.py
setup.py
#!/usr/bin/env python # -*- coding: UTF-8 -*- """Setup for PyPI usage.""" import os.path as op from glob import glob from setuptools import setup from setup_helper import SetupHelper NAME = "goatools" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: ...
#!/usr/bin/env python # -*- coding: UTF-8 -*- """Setup for PyPI usage.""" import os.path as op from glob import glob from setuptools import setup from setup_helper import SetupHelper NAME = "goatools" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: ...
bsd-2-clause
Python
bc8a17a583b1afba75421a8e47af20084c054c3b
change name to ggthrift in setup.py for pypi
wmttom/gunicorn_thrift
setup.py
setup.py
# -*- coding: utf-8 - import os from setuptools import setup, find_packages, Command import sys from gunicorn_thrift import __version__ setup( name = 'ggthrift', version = __version__, description = 'python thrift server plugin for gunicorn.', author = 'wmttom', author_email = 'wmttom@gmail.com'...
# -*- coding: utf-8 - import os from setuptools import setup, find_packages, Command import sys from gunicorn_thrift import __version__ setup( name = 'gunicorn_thrift', version = __version__, description = 'python thrift server plugin for gunicorn.', author = 'wmttom', author_email = 'wmttom@gma...
mit
Python
f416f77a3975c81440fe8b09a719b7f2e7978a13
Fix packages attribute in setup
clxcommunications/sdk-xms-python
setup.py
setup.py
# This setup is based on the recommendations from the # https://packaging.python.org/ documentation. from setuptools import setup, find_packages from codecs import open from os import path def read(fname): here = path.abspath(path.dirname(__file__)) return open(path.join(here, fname), encoding = 'utf-8').read...
# This setup is based on the recommendations from the # https://packaging.python.org/ documentation. from setuptools import setup, find_packages from codecs import open from os import path def read(fname): here = path.abspath(path.dirname(__file__)) return open(path.join(here, fname), encoding = 'utf-8').read...
apache-2.0
Python
73b943ea154c7c09c490fe55c3cae1c002904ff0
update description
JeremyCCHsu/Python-Wrapper-for-World-Vocoder
setup.py
setup.py
""" PyWorld is a Python wrapper for WORLD vocoder. WORLD is free software for high-quality speech analysis, manipulation and synthesis. It can estimate Fundamental frequency (F0), aperiodicity and spectral envelope and also generate the speech like input speech with only estimated parameters. """ from __futu...
from __future__ import with_statement, print_function, absolute_import from setuptools import setup, find_packages, Extension from distutils.version import LooseVersion # import numpy as np import os from glob import glob from os.path import join from setuptools.command.build_ext import build_ext as _build...
mit
Python
1214f2afc814ac331c3d876c4c7c3d6ac0ae9650
update setup file
ambitioninc/django-query-builder,wesokes/django-query-builder
setup.py
setup.py
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'querybuilder/ver...
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215) import multiprocessing assert multiprocessing import re from setuptools import setup, find_packages def get_version(): """ Extracts the version number from the version.py file. """ VERSION_FILE = 'querybuilder/ver...
mit
Python
3f722b18676c7cb7f22b7b4e8743291c3fc5b664
bump version
wong2/pick
setup.py
setup.py
#-*-coding:utf-8-*- import os from setuptools import setup def fread(fname): filepath = os.path.join(os.path.dirname(__file__), fname) with open(filepath, 'r') as fp: return fp.read() setup( name='pick', version='0.4.0', description='pick an option in the terminal with a simple GUI', ...
#-*-coding:utf-8-*- import os from setuptools import setup def fread(fname): filepath = os.path.join(os.path.dirname(__file__), fname) with open(filepath, 'r') as fp: return fp.read() setup( name='pick', version='0.3.1', description='pick an option in the terminal with a simple GUI', ...
mit
Python
2733e0d6d0c39352702d85d73aefaf4f4ce48bdd
fix syntax error in setup script
ClemsonSoCUnix/django-anyvcs,ClemsonSoCUnix/django-anyvcs
setup.py
setup.py
# Copyright (c) 2014, Clemson University # 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 copyright notice, this # list of conditions an...
# Copyright (c) 2014, Clemson University # 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 copyright notice, this # list of conditions an...
bsd-3-clause
Python
93f0e2bc10f0977b8efc5540863b539ffdc30155
Fix typo in setup.py
ZedThree/fort_depend.py,ZedThree/fort_depend.py
setup.py
setup.py
from setuptools import setup setup(name='fortdepend', version='0.1.0', description='Automatically generate Fortran dependencies', author='Peter Hill', author_email='peter@fusionplasma.co.uk', url='https://github.com/ZedThree/fort_depend.py/', download_url='https://github.com/ZedThre...
from setuptools import setup setup(name='fortdepend', version='0.1.0', description='Automatically generate Fortran dependencies', author='Peter Hill', author_email='peter@fusionplasma.co.uk', url='https://github.com/ZedThree/fort_depend.py/', download_url='https://github.com/ZedThre...
mit
Python
38df12fc563110677e1fcbc52448beb52f76a6f1
Bump to 0.5.16
exoscale/python-logstash-formatter
setup.py
setup.py
import codecs from setuptools import setup, find_packages from os import path def read(*parts): return codecs.open(path.join(path.dirname(__file__), *parts), encoding="utf-8").read() setup(name='logstash_formatter', version='0.5.16', description='JSON formatter meant for logstas...
import codecs from setuptools import setup, find_packages from os import path def read(*parts): return codecs.open(path.join(path.dirname(__file__), *parts), encoding="utf-8").read() setup(name='logstash_formatter', version='0.5.15', description='JSON formatter meant for logstas...
mit
Python
508b712acfa9bc47ee1efea00721edee8b9745dc
Tidy up setup.py
pwithnall/dbus-deviation,pwithnall/dbus-deviation,pwithnall/dbus-deviation
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 """ Parse D-Bus introspection XML and process it in various ways """ from setuptools import setup, find_packages import os __version__ = '0.1.0' README = open('README').read() NEWS = open('NEWS').read() setup( name='dbus-deviation', ve...
#!/usr/bin/python # -*- coding: utf-8 -*- # vim: ai ts=4 sts=4 et sw=4 from setuptools import setup, find_packages setup( name='dbus-deviation', version='0.1.0', packages=find_packages(exclude=['*.tests']), include_package_data=True, exclude_package_data={'': ['.gitignore']}, zip_safe=True, ...
lgpl-2.1
Python
450b2922a28ed8eb76fad58d2cfa8f77ad92f1fa
update version
georgefs/pyclip-copycat
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup import platform def build_params(): params = { 'name':'pyclip', 'version':'0.2', 'description':'easily interact with clipboard from Python', 'author':'Zhehao Mao', 'author_email':'zhehao.mao@gmail.com', 'url':'https://gith...
#!/usr/bin/env python from distutils.core import setup import platform def build_params(): params = { 'name':'pyclip', 'version':'0.1', 'description':'easily interact with clipboard from Python', 'author':'Zhehao Mao', 'author_email':'zhehao.mao@gmail.com', 'url':'https://gith...
mit
Python
70d8dc52c8574fb371bb0df2c05c60cf5e5f6211
Update setup.py
ageitgey/face_recognition
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'face_recognition_models>=0.3.0', 'Click>=6.0', 'dlib>=19.7', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'face_recognition_models>=0.3.0', 'Click>=6.0', 'dlib>=19.7', ...
mit
Python
f341fc12a3b17e6e72ce57bdbd10a401428510f2
Update setup.py
praekelt/django-recaptcha,praekelt/django-recaptcha
setup.py
setup.py
from setuptools import setup, find_packages long_desc = open('README.rst', 'rb').read().decode('utf-8') + '\n\n' + \ open('AUTHORS.rst', 'rb').read().decode('utf-8') + '\n\n' + \ open('CHANGELOG.rst', 'rb').read().decode('utf-8') setup( name='django-recaptcha', version='1.5.0', de...
from setuptools import setup, find_packages long_desc = open('README.rst', 'rb').read().decode('utf-8') + '\n\n' + \ open('AUTHORS.rst', 'rb').read().decode('utf-8') + '\n\n' + \ open('CHANGELOG.rst', 'rb').read().decode('utf-8') setup( name='django-recaptcha', version='1.5.0', des...
bsd-3-clause
Python
380c14f231cfbee4d51efcfe2b60f1939b842b20
Update version number
openego/eDisGo,openego/eDisGo
setup.py
setup.py
from setuptools import find_packages, setup from setuptools.command.install import install import os BASEPATH = '.eDisGo' class InstallSetup(install): def run(self): self.create_edisgo_path() install.run(self) @staticmethod def create_edisgo_path(): edisgo_path = os.path.join(os....
from setuptools import find_packages, setup from setuptools.command.install import install import os BASEPATH = '.eDisGo' class InstallSetup(install): def run(self): self.create_edisgo_path() install.run(self) @staticmethod def create_edisgo_path(): edisgo_path = os.path.join(os....
agpl-3.0
Python
4b6739c935f5fdba8d9b647b4164a220df3b9fac
bump version number
brettchien/PyBLEWrapper
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="PyBLE", version="0.2.2", # description="Python Bluetooth Smart(BLE) manager wrapper for OSX, Linux and Windows 8", description="Python Bluetooth Smart(BLE) manager wrapper for OSX", author="Brett Chien", author_e...
#!/usr/bin/env python from setuptools import setup, find_packages setup(name="PyBLE", version="0.2.1", # description="Python Bluetooth Smart(BLE) manager wrapper for OSX, Linux and Windows 8", description="Python Bluetooth Smart(BLE) manager wrapper for OSX", author="Brett Chien", author_e...
mit
Python
18aa50fdcce24d90d1bc40c15d01b21b230029cf
drop misaka for hoedown
Battleroid/bark
setup.py
setup.py
from setuptools import setup, find_packages setup( name='bark-ssg', version='1.3', url='https://github.com/battleroid/bark', description='Single file static site generator.', license='MIT License', keywords='bark static site generator jinja blog python markdown', ...
from setuptools import setup, find_packages setup( name='bark-ssg', version='1.2', url='https://github.com/battleroid/bark', description='Single file static site generator.', license='MIT License', keywords='bark static site generator jinja blog python markdown', ...
mit
Python
3b00ea0f12619d21db11e72dc8bab0b292cbc8a4
update version for dev
wq/django-rest-pandas,wq/django-rest-pandas,wq/django-rest-pandas,wq/django-rest-pandas
setup.py
setup.py
import subprocess from setuptools import setup, find_packages LONG_DESCRIPTION = """ Serves up pandas dataframes via the Django REST Framework for client-side (i.e. d3.js) visualizations """ def parse_markdown_readme(): """ Convert README.md to RST via pandoc, and load into memory (fallback to LONG_DESCR...
import subprocess from setuptools import setup, find_packages LONG_DESCRIPTION = """ Serves up pandas dataframes via the Django REST Framework for client-side (i.e. d3.js) visualizations """ def parse_markdown_readme(): """ Convert README.md to RST via pandoc, and load into memory (fallback to LONG_DESCR...
mit
Python
efc95b80e30f0f343579c8b40e358822c9986c87
bump to 0.1.0
dschep/django-xor-formfields,dschep/django-xor-formfields
setup.py
setup.py
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='django-xor-formfields', version=...
from setuptools import setup from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='django-xor-formfields', version=...
mit
Python
c681b423dfbad1a7ef2f1a85f98f3ea278424f56
Update long description and url
lauft/timew-report
setup.py
setup.py
from setuptools import setup config = { 'name': 'timew-report', 'version': '0.0.0', 'description': 'An interface for TimeWarrior report data', 'long_description': '\n' + open('README.md').read(), 'url': 'https://github.com/lauft/timew-report.git', 'author': 'Thomas Lauf', 'author_email': 'T...
from setuptools import setup config = { 'name': 'timew-report', 'version': '0.0.0', 'description': 'An interface for TimeWarrior report data', 'author': 'Thomas Lauf', 'author_email': 'Thomas.Lauf@tngtech.com', 'license': 'MIT License', 'classifiers': [ 'Development Status :: 3 - Al...
mit
Python
7f3e7d63fef52580f6add4f1638a2b521453aa96
Bump version
pulkitag/mujoco140-py,pulkitag/mujoco140-py,pulkitag/mujoco140-py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='mujoco-py', version='0.5.5', description='Python wrapper for Mojoco', author='OpenAI', packages=['mujoco_py'], install_requires=[ 'PyOpenGL>=3.1.0', 'numpy>=1.10.4', 'six', ], tests_requires=[ ...
#!/usr/bin/env python from setuptools import setup setup( name='mujoco-py', version='0.5.4', description='Python wrapper for Mojoco', author='OpenAI', packages=['mujoco_py'], install_requires=[ 'PyOpenGL>=3.1.0', 'numpy>=1.10.4', 'six', ], tests_requires=[ ...
mit
Python
aa2913ed3ccec2813af36d1718c63a960149f672
fix bug, modify authors of repo in setup.py
openego/ego.io,openego/ego.io
setup.py
setup.py
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='egoio', author='NEXT ENERGY, Reiner Lemoine Institut gGmbH, ZNES', author_email='', description='ego input/output repository', version='0.0.2', url='https://github.com/openego/ego.io', pa...
#! /usr/bin/env python # coding: utf-8 from setuptools import find_packages, setup setup(name='ego.io', author='openego development group', author_email='oemof@rl-institut.de', description='ego input/output repository', version='0.0.1rc7', url='https://github.com/openego/ego.io', p...
agpl-3.0
Python
5360fb494f91af5ef8bc8a3d1ae6f0925a178da1
Add classifiers to setup.py
fophillips/python-github-webhook
setup.py
setup.py
from setuptools import setup setup(name="github-webhook", version="1.0", description="Very simple, but powerful, microframework for writing Github webhooks in Python", url="https://github.com/bloomberg/python-github-webhook", author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", ...
from setuptools import setup setup(name="github-webhook", version="1.0", description="Very simple, but powerful, microframework for writing Github webhooks in Python", url="https://github.com/bloomberg/python-github-webhook", author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", ...
apache-2.0
Python
64967383c75b0c31c43dfeae329847b25322d41a
update package requirements
dabapps/django-db-queue
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function from setuptools import setup import re import os import sys name = 'django-db-queue' package = 'django_dbq' description = 'Simple database-backed job queue system' url = 'http://www.dabapps.com' author = 'DabApps' author_email = 'con...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function from setuptools import setup import re import os import sys name = 'django-db-queue' package = 'django_dbq' description = 'Simple database-backed job queue system' url = 'http://www.dabapps.com' author = 'DabApps' author_email = 'con...
bsd-2-clause
Python
2a87d2013ff46633ee1f1ee9edac5a21eddc9242
Update license info in setup.py
morefigs/pymba
setup.py
setup.py
from setuptools import setup from pymba import PYMBA_VERSION setup(name='pymba', version=PYMBA_VERSION, description="Pymba is a Python wrapper for Allied Vision's Vimba C API.", long_description="Pymba is a Python wrapper for Allied Vision's Vimba C API. It wraps the Vimba C library file " ...
from setuptools import setup from pymba import PYMBA_VERSION setup(name='pymba', version=PYMBA_VERSION, description="Pymba is a Python wrapper for Allied Vision's Vimba C API.", long_description="Pymba is a Python wrapper for Allied Vision's Vimba C API. It wraps the Vimba C library file " ...
mit
Python
a5644372e1b18aa208552c8babd15ebe2fd38575
format about project description
zhengchun/cwsharp-python
setup.py
setup.py
# -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup LONGDOC = """ cwsharp ======== Python中文分词库, 支持自定义词典和多种分词算法. GitHub: https://github.com/zhengchun/cwsharp-python 特点 ======== - 支持多种分词算法: - MMSegTokenizer - 基于字典的分词算法,默认的分词算法. - BigramTo...
# -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup LONGDOC = """ cwsharp === Python中文分词库, 支持自定义词典和多种分词算法。 特点 === - 支持多种分词算法。 - MMSegTokenizer - 基于字典的分词算法,默认的分词算法。 - BigramTokenizer - 二元分词,支持英文、数字。 - 自定义字典,支持中英文混合。 - MIT协议 """ setup(name='cwsharp...
mit
Python
1772052db9446616d65815e36c808e335aa3b136
Bump the immutables dep to the latest
MagicStack/contextvars
setup.py
setup.py
import os.path import setuptools with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() setuptools.setup( name='contextvars', version="2.3", url='http://github.com/MagicStack/contextvars', description='PEP 567 Backport', long_description=readme, author='...
import os.path import setuptools with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() setuptools.setup( name='contextvars', version="2.3", url='http://github.com/MagicStack/contextvars', description='PEP 567 Backport', long_description=readme, author='...
apache-2.0
Python
ec1b8616fe38f8b0e9f36e02ae7b7d36326d57f8
Add Sphinx and Pygments as setup requirements
tomleese/tvnamer,thomasleese/tvnamer
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup with open("README.rst") as file: long_description = file.read() setup( name="tvnamer", version="1.0.0", description="Utility to rename lots of TV video files using the TheTVDB.", long_description=long_description, author="Tom ...
#!/usr/bin/env python from setuptools import find_packages, setup with open("README.rst") as file: long_description = file.read() setup( name="tvnamer", version="1.0.0", description="Utility to rename lots of TV video files using the TheTVDB.", long_description=long_description, author="Tom ...
mit
Python
8b1c38532f1b1b97625f95e8b12a2e1c59790906
Bump version.
Weasyl/txyam2
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="txyam2", version="0.5.1", description="Yet Another Memcached (YAM) client for Twisted.", author="Brian Muller", author_email="bamuller@gmail.com", license="MIT", url="http://github.com/bmuller/txyam", package...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="txyam2", version="0.5", description="Yet Another Memcached (YAM) client for Twisted.", author="Brian Muller", author_email="bamuller@gmail.com", license="MIT", url="http://github.com/bmuller/txyam", packages=...
mit
Python
7677632267ec480664e4011455dcdc0117ecce55
Bump flake8 from 3.8.2 to 3.8.3
sloria/ped,sloria/ped
setup.py
setup.py
import re from setuptools import setup EXTRAS_REQUIRE = { "tests": ["pytest", "mock", "pytest-mock", "scripttest==1.3"], "lint": ["flake8==3.8.3", "flake8-bugbear==20.1.4", "mypy==0.780", "pre-commit"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] PYTHON_REQUIRES = ">=3....
import re from setuptools import setup EXTRAS_REQUIRE = { "tests": ["pytest", "mock", "pytest-mock", "scripttest==1.3"], "lint": ["flake8==3.8.2", "flake8-bugbear==20.1.4", "mypy==0.780", "pre-commit"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] PYTHON_REQUIRES = ">=3....
mit
Python
c563b74099be557f517f71a328715c9734cb0e34
fix setup.py
tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples,tensorflow/examples
setup.py
setup.py
# Copyright 2015 The TensorFlow Authors. 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 required by applica...
# Copyright 2015 The TensorFlow Authors. 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 required by applica...
apache-2.0
Python
1d8c48dfc858a5ad097369a7655d889a2ad9b964
Remove leading space in setup.py
paparent/pytunkrank
setup.py
setup.py
import os from distutils.core import setup from pytunkrank import __version__ setup(name='pytunkrank', version=__version__, author='PA Parent', author_email='paparent@paparent.me', description='Python interface to TunkRank API', long_description=file( os.path.join( ...
import os from distutils.core import setup from pytunkrank import __version__ setup(name='pytunkrank', version=__version__, author='PA Parent', author_email='paparent@paparent.me', description='Python interface to TunkRank API', long_description=file( os.path.join( ...
mit
Python
1eafffb73bd29ca0154d77eed85e8106bac546fa
Fix PEP-8 issues in setup.py
zyga/mocker
setup.py
setup.py
#!/usr/bin/env python import os import re try: from setuptools import setup except ImportError: from distutils.core import setup if os.path.isfile("MANIFEST"): os.unlink("MANIFEST") version = re.search('__version__ = "([^"]+)"', open("mocker.py").read()).group(1) setup( name="m...
#!/usr/bin/env python import os import re try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension if os.path.isfile("MANIFEST"): os.unlink("MANIFEST") version = re.search('__version__ = "([^"]+)"', open("mocker.py").read()).group(...
bsd-3-clause
Python
86e777bb20569ce83206026a0180f77e1515a532
Fix installation in python 2.6
scalative/haas,scalative/haas,sjagoe/haas,itziakos/haas,itziakos/haas,sjagoe/haas
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright (c) 2013-2014 Simon Jagoe # All rights reserved. # # This software may be modified and distributed under the terms # of the 3-clause BSD license. See the LICENSE.txt file for details. import os import sys from setuptools import setup VERSION = '0.2.3.dev' def write_version_py(f...
# -*- coding: utf-8 -*- # Copyright (c) 2013-2014 Simon Jagoe # All rights reserved. # # This software may be modified and distributed under the terms # of the 3-clause BSD license. See the LICENSE.txt file for details. import os from setuptools import setup VERSION = '0.2.3.dev' def write_version_py(filename=Non...
bsd-3-clause
Python
d11e752bc6b3c573600ca916f4737e80a5a18bea
Set premailer version to 3.1.1
schnapptack/djpl-emailing,schnapptack/djpl-emailing
setup.py
setup.py
#! /usr/bin/env python import os from setuptools import setup, find_packages def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except IOError: return '' setup( name='djpl-emailing', version='0.1', description='a django-productline feature to i...
#! /usr/bin/env python import os from setuptools import setup, find_packages def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except IOError: return '' setup( name='djpl-emailing', version='0.1', description='a django-productline feature to i...
mit
Python
12c4577b7acd0056cd4ed853e99789f598a5e11a
switch to uw_gws and uw_libraries
uw-it-aca/myuw,uw-it-aca/myuw,uw-it-aca/myuw,uw-it-aca/myuw
setup.py
setup.py
import os from setuptools import setup README = """ See the README on `GitHub <https://github.com/uw-it-aca/myuw>`_. """ # The VERSION file is created by travis-ci, based on the tag name version_path = 'myuw/VERSION' VERSION = open(os.path.join(os.path.dirname(__file__), version_path)).read() VERSION = VERSION.replac...
import os from setuptools import setup README = """ See the README on `GitHub <https://github.com/uw-it-aca/myuw>`_. """ # The VERSION file is created by travis-ci, based on the tag name version_path = 'myuw/VERSION' VERSION = open(os.path.join(os.path.dirname(__file__), version_path)).read() VERSION = VERSION.replac...
apache-2.0
Python
56bed76a605baec28892858d8cb4705f9e04ea13
Add runsqlrun.gresource to setup.py.
andialbrecht/runsqlrun
setup.py
setup.py
#!/usr/bin/env python3 import glob from setuptools import setup, find_packages import rsr.config setup( name=rsr.config.name, version=rsr.config.version, description=rsr.config.description, author=rsr.config.author, author_email=rsr.config.author_email, url=rsr.config.url, packages=find_p...
#!/usr/bin/env python3 import glob from setuptools import setup, find_packages import rsr.config setup( name=rsr.config.name, version=rsr.config.version, description=rsr.config.description, author=rsr.config.author, author_email=rsr.config.author_email, url=rsr.config.url, packages=find_p...
mit
Python
10d14f8d261c5c5ece52e66ea01f6b39f73cdd68
Bump patch number
shafferm/SCNIC
setup.py
setup.py
from setuptools import setup, find_packages __author__ = 'shafferm' __version__ = '0.5.1' setup( name="SCNIC", version=__version__, setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx>=2", "biom-format", "pandas", "scikit-bio", "statsm...
from setuptools import setup, find_packages __author__ = 'shafferm' __version__ = '0.5.0' setup( name="SCNIC", version=__version__, setup_requires=['pytest-runner'], test_require=['pytest'], install_requires=["numpy", "scipy", "networkx>=2", "biom-format", "pandas", "scikit-bio", "statsm...
bsd-3-clause
Python
45cc56fb9fc69f1e7a8ddfdd08b11255ae5564dc
Update setup.py
MagicSolutions/django-orderedmodel,MagicSolutions/django-orderedmodel
setup.py
setup.py
# encoding=utf8 import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() README = read('README.md') setup( name="django-orderedmodel", version="0.1.5", url='http://github.com/IndustriaTech/django-orderedmodel', description="Intend...
# encoding=utf8 import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() README = read('README.md') setup( name="django-orderedmodel", version="0.1.5", url='http://github.com/MagicSolutions/django-orderedmodel', description="Inten...
bsd-3-clause
Python
87ed339f6892e8f9fa80642b3a4c67ed679a8882
Use proper uWSGI version
Yelp/yelp_clog,Yelp/yelp_clog
setup.py
setup.py
# -*- coding: utf-8 -*- # Copyright 2015 Yelp 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 law or ...
# -*- coding: utf-8 -*- # Copyright 2015 Yelp 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 law or ...
apache-2.0
Python
6916f712b664ddf67c8572d8f9c7c435b82349e2
fix readme reference in setup.py
jangler/vcii
setup.py
setup.py
from distutils.core import setup setup( name='vcii', version='0.0.0', author='Brandon Mulcahy', author_email='brandon@jangler.info', url='https://github.com/jangler/vcii', description='A TUI spreadsheet application.', long_description=open('README.txt').read(), packages=['vcii', 'vcii.t...
from distutils.core import setup setup( name='vcii', version='0.0.0', author='Brandon Mulcahy', author_email='brandon@jangler.info', url='https://github.com/jangler/vcii', description='A TUI spreadsheet application.', long_description=open('README.md').read(), packages=['vcii', 'vcii.te...
mit
Python
24730976f38a170175148c773a04a32a875d4b1c
tidy up
shandymora/remote_storage_finder
setup.py
setup.py
# coding: utf-8 from setuptools import setup setup( name='remote_storage_finder', version='0.0.1', license='Apache 2', author=u'shandymora', description=('A plugin for connecting graphite-web with remote graphite-webs'), py_modules=('remote_storage_finder',), zip_safe=False, ...
# coding: utf-8 from setuptools import setup setup( name='remote_storage_finder', version='0.0.1', license='BSD', author=u'shandymora', description=('A plugin for connecting graphite-web with remote graphite-webs'), py_modules=('remote_storage_finder',), zip_safe=False, inclu...
apache-2.0
Python
04af3899e2ce1d40b34d30bc796c2c993dd49aa2
Bump to v1.12.1
texastribune/tx_salaries,texastribune/tx_salaries
setup.py
setup.py
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
from distutils.core import setup import os # Stolen from django-registration # Compile the list of packages available, because distutils doesn't have # an easy way to do this. packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir: os.chdir(root_dir) for dirpath, dirnames, filenames in os....
apache-2.0
Python
352b88cd7f22238b60dc8868552a74dfdf9d4c6e
Improve keywords
njvack/masterfile
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys from os import path SETUP_REQUIRES = ['setuptools >= 30.3.0'] SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else [] def get_locals(filename): l = {} exec(open(filename, 'r').read(), {}, l) ret...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys from os import path SETUP_REQUIRES = ['setuptools >= 30.3.0'] SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else [] def get_locals(filename): l = {} exec(open(filename, 'r').read(), {}, l) ret...
mit
Python
a7224284e4bad0d58991b82fed397e3c96c25859
Update setup.py with parallel-ssh fork dep.
milesgranger/cluster-clyde,milesgranger/cluster-clyde
setup.py
setup.py
""" MIT License Copyright (c) 2016 Miles Granger 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 to use, copy, modify, merge, publish,...
""" MIT License Copyright (c) 2016 Miles Granger 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 to use, copy, modify, merge, publish,...
mit
Python
af0547fc9bb48320ec250e958c3fa50ca9633274
Increment to version 0.0.1
byanofsky/bookmarks,byanofsky/bookmarks,byanofsky/bookmarks
setup.py
setup.py
from setuptools import setup setup( name='bookmarks', packages=['bookmarks'], version='0.0.2', description='A bookmarking and link shortening service.', author='Brandon Yanofsky', author_email='byanofsky@me.com', include_package_data=True, install_requires=[ 'Flask', 'SQ...
from setuptools import setup setup( name='bookmarks', packages=['bookmarks'], version='0.0.1', description='A bookmarking and link shortening service.', author='Brandon Yanofsky', author_email='byanofsky@me.com', include_package_data=True, install_requires=[ 'Flask', 'SQ...
apache-2.0
Python
cc9192ac83b873156d5c06644e61857b4c614b61
increment capirca version number after nsxv.py changes.
rarcotvmw/capirca,rarcotvmw/capirca,google/capirca,google/capirca,google/capirca,google/capirca,rarcotvmw/capirca
setup.py
setup.py
#!/usr/bin/env python # # Copyright 2009 Google 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 law ...
#!/usr/bin/env python # # Copyright 2009 Google 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 law ...
apache-2.0
Python
9b34afb1507f8a57b395b3eaffacc434be71ae3f
fix paths
opencord/xos,wathsalav/xos,zdw/xos,jermowery/xos,zdw/xos,cboling/xos,xmaruto/mcord,open-cloud/xos,wathsalav/xos,xmaruto/mcord,cboling/xos,wathsalav/xos,wathsalav/xos,xmaruto/mcord,jermowery/xos,open-cloud/xos,opencord/xos,cboling/xos,zdw/xos,opencord/xos,open-cloud/xos,cboling/xos,jermowery/xos,jermowery/xos,xmaruto/mc...
setup.py
setup.py
from distutils.core import setup from glob import glob setup(name='plstackapi', version='0.1', description='PlanetStack API', packages=['plstackapi', 'plstackapi/planetstack', 'plstackapi/planetstack/views', 'plstackapi/planetstack/api', 'plstackapi/planetstack/fixtures', 'plstackapi/openstack' ,'pls...
from distutils.core import setup from glob import glob setup(name='plstackapi', version='0.1', description='PlanetStack API', packages=['plstackapi', 'plstackapi/planetstack', 'plstackapi/planetstack/views', 'plstackapi/planetstack/api', 'plstackapi/openstack' ,'plstackapi/util', 'plstackapi/importer...
apache-2.0
Python
54321cbe73366a81d03216e806d44350ebd11110
update to 2.1.fb56
mikenawrocki/rtslib-fb,mikenawrocki/rtslib-fb,cvubrugier/rtslib-fb,agrover/rtslib-fb
setup.py
setup.py
#! /usr/bin/env python ''' This file is part of RTSLib. Copyright (c) 2011-2013 by Datera, 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...
#! /usr/bin/env python ''' This file is part of RTSLib. Copyright (c) 2011-2013 by Datera, 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...
apache-2.0
Python
0f66f38b33293c77ea0a29378db548b3ae097f8b
Add project metadata to "setup.py"
ziotom78/polycomp
setup.py
setup.py
#!/usr/bin/env python # -*- mode: python -*- from setuptools import setup, find_packages from setuptools.extension import Extension from Cython.Build import cythonize modules = [Extension("pypolycomp", sources=["pypolycomp.pyx"], libraries=["polycomp"])] setup(name="pypolyco...
#!/usr/bin/env python # -*- mode: python -*- from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize modules = [Extension("pypolycomp", sources=["pypolycomp.pyx"], libraries=["polycomp"])] setup(name="pypolycomp", ext_...
bsd-3-clause
Python
25b574863d33a14e38134cdbf7e508b74dab8482
Increment minor version number
zastari/masterha_toolkit,zastari/masterha_toolkit
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') requirements = [ 'configobj', 'six', 'validator', 'argparse' ] test_requirements = [ # TODO: put packa...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') requirements = [ 'configobj', 'six', 'validator', 'argparse' ] test_requirements = [ # TODO: put packa...
bsd-3-clause
Python