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
bfb434cff2bbf07c14479c3a31941d98a9431068
change version to 0.4.5-git.
quantopian/ta-lib,quantopian/ta-lib
setup.py
setup.py
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import numpy import os import sys if sys.platform == "darwin": if os.path.exists("/opt/local/include/ta-lib"): include_talib_dir = "/opt/local/include" lib_talib_dir = "/opt/local/lib"...
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import numpy import os import sys if sys.platform == "darwin": if os.path.exists("/opt/local/include/ta-lib"): include_talib_dir = "/opt/local/include" lib_talib_dir = "/opt/local/lib"...
bsd-2-clause
Python
79a1190ed24d3263063f869afe4c92f84395e755
Update setup.py
HewlettPackard/python-ilorest-library,HewlettPackard/python-ilorest-library
setup.py
setup.py
from setuptools import setup, find_packages extras = {'socks': ['pysocks']} setup(name='python-ilorest-library', version='3.1.1', description='iLO Restful Python Library', author = 'Hewlett Packard Enterprise', author_email = 'rajeevalochana.kallur@hpe.com', extras_require = extras, ...
from setuptools import setup, find_packages extras = {'socks': ['pysocks']} setup(name='python-ilorest-library', version='3.1.0', description='iLO Restful Python Library', author = 'Hewlett Packard Enterprise', author_email = 'rajeevalochana.kallur@hpe.com', extras_require = extras, ...
apache-2.0
Python
fec10deb7670abb2b0daf72c80ebdcc6346e0545
Add README.rst contents to PyPI page
datasciencebr/serenata-toolbox
setup.py
setup.py
from setuptools import setup REPO_URL = 'http://github.com/okfn-brasil/serenata-toolbox' with open('README.rst') as fobj: long_description = fobj.read() setup( author='Serenata de Amor', author_email='contato@serenata.ai', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audi...
from setuptools import setup REPO_URL = 'http://github.com/okfn-brasil/serenata-toolbox' setup( author='Serenata de Amor', author_email='contato@serenata.ai', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT L...
mit
Python
a8f676b5595cb9497b843d2807668e2215764255
change the cabmember structure.
bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS
setup.py
setup.py
#!/usr/bin/env python2 # -*- coding:utf-8 -*- from setuptools import setup, find_packages setup( name='torcms', version='0.4.8', keywords=('torcms', 'tornado', 'cms',), description='''CMS based on Python 3 and Tornado. Flexible, extensible web CMS framework built on Tornado and Peewee, compatible with ...
#!/usr/bin/env python2 # -*- coding:utf-8 -*- from setuptools import setup, find_packages setup( name='torcms', version='0.4.7', keywords=('torcms', 'tornado', 'cms',), description='''CMS based on Python 3 and Tornado. Flexible, extensible web CMS framework built on Tornado and Peewee, compatible with ...
mit
Python
447365a79b9ca804fef2e43ff6e7231f19d1090d
Add explicit 2.7 to list of supported Python versions
wylee/django-local-settings
setup.py
setup.py
import sys from setuptools import find_packages, setup py_version = sys.version_info[:2] py_version_dotted = '{0.major}.{0.minor}'.format(sys.version_info) supported_py_versions = ('2.7', '3.3', '3.4', '3.5', '3.6') if py_version_dotted not in supported_py_versions: sys.stderr.write('WARNING: django-local-sett...
import sys from setuptools import find_packages, setup py_version = sys.version_info[:2] py_version_dotted = '{0.major}.{0.minor}'.format(sys.version_info) supported_py_versions = ('2.7', '3.3', '3.4', '3.5', '3.6') if py_version_dotted not in supported_py_versions: sys.stderr.write('WARNING: django-local-sett...
mit
Python
612293dfb89b506f0f6879f26bf843c021da3fc1
bump version to 0.2.1
basnijholt/fileup
setup.py
setup.py
from setuptools import setup setup(name='fileup', version='0.2.1', description='Easily upload files to an FTP-server and get back the url.', url='https://github.com/basnijholt/fileup', author='Bas Nijholt', license='BSD 3-clause', py_modules=["fileup"], entry_points={'console_...
from setuptools import setup setup(name='fileup', version='0.2.0', description='Easily upload files to an FTP-server and get back the url.', url='https://github.com/basnijholt/fileup', author='Bas Nijholt', license='BSD 3-clause', py_modules=["fileup"], entry_points={'console_...
bsd-3-clause
Python
7b6e7e255e0e6b50ec037f9992c040e4fa74ab80
Update requirement --> Django==1.6.10
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from setuptools import setup from setuptools.command.test import test as TestCommand # Pytest class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['tests', '--ignore', 'tests/sandbox', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys from setuptools import setup from setuptools.command.test import test as TestCommand # Pytest class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['tests', '--ignore', 'tests/sandbox', ...
agpl-3.0
Python
721e6979bc03875cb467f8a25b9983b7ca2ed8d5
Bump version
thombashi/pytablereader,thombashi/pytablereader,thombashi/pytablereader
setup.py
setup.py
import os.path import setuptools import sys REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "intro...
import os.path import setuptools import sys REQUIREMENT_DIR = "requirements" needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) pytest_runner = ["pytest-runner"] if needs_pytest else [] with open("README.rst") as fp: long_description = fp.read() with open(os.path.join("docs", "pages", "intro...
mit
Python
7e31b8245c1cf9c7ae557fbd4d0c6e62631e9c84
bump version
nborrmann/jodel_api
setup.py
setup.py
from setuptools import setup, find_packages import os with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: long_description = f.read() setup(name='jodel_api', version='1.2.5', description='Unoffical Python Interface to the Jodel API', long_description=long_description, ur...
from setuptools import setup, find_packages import os with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: long_description = f.read() setup(name='jodel_api', version='1.2.4', description='Unoffical Python Interface to the Jodel API', long_description=long_description, ur...
mit
Python
d5285d8ce52a3d413a994656f788a5ab73cb01e3
update version to 1.0.0
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="1.0.0", author="Open Baton", author_email="dev@openbaton.org", description="The Open Baton CLI", license="Apach...
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="2.2.1-beta8", author="Open Baton", author_email="dev@openbaton.org", description="The Open Baton CLI", license=...
apache-2.0
Python
a32b653210b408cc5ba90af464b9163b6e0dfd50
Add encoding
thombashi/sqliteschema
setup.py
setup.py
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ from __future__ import unicode_literals import io import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" ENCODING = "utf8" with io.open("README.rst", encoding=ENCODING) as fp: ...
#!/usr/bin/env python # encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com> """ from __future__ import unicode_literals import os.path import sys import setuptools REQUIREMENT_DIR = "requirements" with open("README.rst") as fp: long_description = fp.read() with open(os.path.j...
mit
Python
c82911c53be76872af15961ab6c5269922da87f5
increment version
Parsely/probably
setup.py
setup.py
#!/usr/bin/env python from os.path import join import numpy as np from Cython.Build import cythonize from setuptools import Extension, setup VERSION = "1.1.3" extensions = [ Extension( "probably.maintenance", [join("probably", "maintenance.pyx")], include_dirs=[np.get_include()], ), ]...
#!/usr/bin/env python from os.path import join import numpy as np from Cython.Build import cythonize from setuptools import Extension, setup VERSION = "1.1.2" extensions = [ Extension( "probably.maintenance", [join("probably", "maintenance.pyx")], include_dirs=[np.get_include()], ), ]...
mit
Python
0b9da5fc6ae0ff75f524d1b7b6c1393fd6bc0823
add shapely as requirement
michaelaye/planet4,michaelaye/planet4,michaelaye/planet4,michaelaye/planet4
setup.py
setup.py
# To use a consistent encoding from codecs import open from os import path from setuptools import setup, find_packages DISTNAME = 'planet4' DESCRIPTION = "Software for the reduction and analysis of PlanetFour data." AUTHOR = "K.-Michael Aye" AUTHOR_EMAIL = "michael.aye@lasp.colorado.edu" MAINTAINER_EMAIL = AUTHOR_EMA...
# To use a consistent encoding from codecs import open from os import path from setuptools import setup, find_packages DISTNAME = 'planet4' DESCRIPTION = "Software for the reduction and analysis of PlanetFour data." AUTHOR = "K.-Michael Aye" AUTHOR_EMAIL = "michael.aye@lasp.colorado.edu" MAINTAINER_EMAIL = AUTHOR_EMA...
isc
Python
b3542a8865b8b218cec6791d3a427a57b4f63318
Bump version
mjg59/python-broadlink
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages version = '0.16.0' setup( name='broadlink', version=version, author='Matthew Garrett', author_email='mjg59@srcf.ucam.org', url='http://github.com/mjg59/python-broadlink', packages=find_packages(), ...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages version = '0.15.0' setup( name='broadlink', version=version, author='Matthew Garrett', author_email='mjg59@srcf.ucam.org', url='http://github.com/mjg59/python-broadlink', packages=find_packages(), ...
mit
Python
d21a2eacc463bdb46c56accec13e2266d69668fe
Remove Python 2.6 trove classifier
nodish/pexpect,nodish/pexpect,nodish/pexpect
setup.py
setup.py
# encoding: utf-8 from distutils.core import setup import os import re with open(os.path.join(os.path.dirname(__file__), 'pexpect', '__init__.py'), 'r') as f: for line in f: version_match = re.search(r"__version__ = ['\"]([^'\"]*)['\"]", line) if version_match: version = version_match.g...
# encoding: utf-8 from distutils.core import setup import os import re with open(os.path.join(os.path.dirname(__file__), 'pexpect', '__init__.py'), 'r') as f: for line in f: version_match = re.search(r"__version__ = ['\"]([^'\"]*)['\"]", line) if version_match: version = version_match.g...
isc
Python
b00c8f40415ef14a674d76e71143c7d77d38cb4f
Bump version
mirumee/django-offsite-storage
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup, find_packages setup( name='django-offsite-storage', author='Mirumee Software', author_email='hello@mirumee.com', description="Cloud static and media file storage suitable for app containers", license='MIT', version='0.0.4', url='https://...
#! /usr/bin/env python from setuptools import setup, find_packages setup( name='django-offsite-storage', author='Mirumee Software', author_email='hello@mirumee.com', description="Cloud static and media file storage suitable for app containers", license='MIT', version='0.0.3', url='https://...
bsd-3-clause
Python
0e4abdd8ab8ced760dbd2eb2c39afd8e88e4e87f
Add requests as a dependency
xapple/plumbing
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'plumbing', version = '2.9.9', description = 'Helps with plumbing-type programing in python.', license = 'MIT', url = 'http://github.com/xapple/plumbing/', author = 'Lucas Sinclai...
from setuptools import setup, find_packages setup( name = 'plumbing', version = '2.9.9', description = 'Helps with plumbing-type programing in python.', license = 'MIT', url = 'http://github.com/xapple/plumbing/', author = 'Lucas Sinclai...
mit
Python
d3bb3f9d3e1b45eddccdb5406399f2ee8fb763e7
Bump to next dev version
texastribune/tt_dailyemailblast,texastribune/tt_dailyemailblast
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
8cc696765322fbce278f6ca0442acff2922722da
Allow `python setup.py test`.
funkybob/django-classy-settings,tysonclugg/django-classy-settings,pombredanne/django-classy-settings
setup.py
setup.py
from setuptools import setup setup( name='django-classy-settings', version='1.1.5', description='Simple class-based settings for Django', author='Curtis Maloney', author_email='curtis@tinbrain.net', packages=[ 'cbs', 'cbs.base', ], classifiers=[ 'Development Sta...
from setuptools import setup setup( name='django-classy-settings', version='1.1.5', description='Simple class-based settings for Django', author='Curtis Maloney', author_email='curtis@tinbrain.net', packages=[ 'cbs', 'cbs.base', ], classifiers=[ 'Development Sta...
bsd-2-clause
Python
8496f081546d759a57f917d016d2fe25fdc7afc2
Add a framework classifier (#61)
zheller/flake8-quotes,zheller/flake8-quotes
setup.py
setup.py
import io import os from setuptools import setup __dir__ = os.path.dirname(__file__) def read(*filenames, **kwargs): encoding = kwargs.get('encoding', 'utf-8') sep = kwargs.get('sep', '\n') buf = [] for filename in filenames: with io.open(filename, encoding=encoding) as f: buf.app...
import io import os from setuptools import setup __dir__ = os.path.dirname(__file__) def read(*filenames, **kwargs): encoding = kwargs.get('encoding', 'utf-8') sep = kwargs.get('sep', '\n') buf = [] for filename in filenames: with io.open(filename, encoding=encoding) as f: buf.app...
mit
Python
de7feeb739e07ae08eee21dd8c017c9f5f0f8924
修改setup.py中的包名问题
reorx/torext,reorx/torext
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- __version__ = '0.1' from setuptools import setup setup( name='torext', version=__version__, author='Nodemix', author_email='novoreorx@gmail.com', url='http://nodemix.com', description='torext is an instrumental package which aim at easy implementation...
#!/usr/bin/python # -*- coding: utf-8 -*- __version__ = '0.1' from setuptools import setup setup( name='torext', version=__version__, author='Nodemix', author_email='novoreorx@gmail.com', url='http://nodemix.com', description='torext is an instrumental package which aim at easy implementation...
mit
Python
36dcf720f57a6cecd1ecd078e003b2e448c6d78b
Update trove classifiers; setup.py test uses pytest, not tox
ktalik/tornado-json,Tarsbot/Tornado-JSON,hfaran/Tornado-JSON
setup.py
setup.py
import os import sys __DIR__ = os.path.abspath(os.path.dirname(__file__)) import codecs from setuptools import setup from setuptools.command.test import test as TestCommand import tornado_json def read(filename): """Read and return `filename` in root dir of project and return string""" return codecs.open(os.p...
import os import sys __DIR__ = os.path.abspath(os.path.dirname(__file__)) import codecs from setuptools import setup from setuptools.command.test import test as TestCommand import tornado_json def read(filename): """Read and return `filename` in root dir of project and return string""" return codecs.open(os.p...
mit
Python
3d600fba92030885bbe3ef6a7724478efcf5bc82
fix tuple->list for classifier
kivy/plyer,KeyWeeUsr/plyer,kivy/plyer,kivy/plyer,KeyWeeUsr/plyer,kived/plyer,kived/plyer,KeyWeeUsr/plyer
setup.py
setup.py
#!/usr/bin/env python from os.path import dirname, join import plyer try: from setuptools import setup except ImportError: from distutils.core import setup curdir = dirname(__file__) packages = [ 'plyer', 'plyer.facades', 'plyer.platforms', 'plyer.platforms.linux', 'plyer.platforms.androi...
#!/usr/bin/env python from os.path import dirname, join import plyer try: from setuptools import setup except ImportError: from distutils.core import setup curdir = dirname(__file__) packages = [ 'plyer', 'plyer.facades', 'plyer.platforms', 'plyer.platforms.linux', 'plyer.platforms.androi...
mit
Python
3f145033028ca7ca8dca5394af9f278c9cd87fbf
Copy bias PWM file to correct location during installation.
lweasel/piquant,lweasel/piquant
setup.py
setup.py
from setuptools import setup import piquant setup( name='piquant', version=piquant.__version__, url='https://github.com/lweasel/piquant', license='MIT License', author='Owen Dando', author_email='owen.dando@ed.ac.uk', packages=['piquant'], install_requires=[ 'Cython==0.20.1', ...
from setuptools import setup import piquant setup( name='piquant', version=piquant.__version__, url='https://github.com/lweasel/piquant', license='MIT License', author='Owen Dando', author_email='owen.dando@ed.ac.uk', packages=['piquant'], install_requires=[ 'Cython==0.20.1', ...
mit
Python
6b8b694456122431f623822c6c0663146d81badb
Bump version.
escherba/phraser,knighton/phraser,escherba/phraser,knighton/phraser,knighton/phraser,escherba/phraser,escherba/phraser,knighton/phraser
setup.py
setup.py
from distutils.core import setup, Extension from setuptools import find_packages import os SRC_ROOT = 'phraser/' # 1. Base flags. # 2. Max out warnings. # 3. Disable some warnings. # 4. Disable more warnings for LAPOS. COMPILE_FLAGS = (""" -std=c++11 -fcolor-diagnostics -O3 -ferror-limit=5 -I%s ...
from distutils.core import setup, Extension from setuptools import find_packages import os SRC_ROOT = 'phraser/' # 1. Base flags. # 2. Max out warnings. # 3. Disable some warnings. # 4. Disable more warnings for LAPOS. COMPILE_FLAGS = (""" -std=c++11 -fcolor-diagnostics -O3 -ferror-limit=5 -I%s ...
mit
Python
6457c155022aac6e7acc77ddb92a1845da984751
prepare 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.2', description='Ascetic command runner. The most ease way' ' to power your python app wi...
mit
Python
cc8b371a7b62c7a48cdb8eab4231457787a19de0
Update contact email
pennlabs/penn-sdk-python,pennlabs/penn-sdk-python
setup.py
setup.py
from setuptools import setup setup( name='PennSDK', description='Python tools for building Penn-related applications', url='https://github.com/pennlabs/penn-sdk-python', author='Penn Labs', author_email='admin@pennlabs.org', version='1.3.1', packages=['penn'], license='MIT', packag...
from setuptools import setup setup( name='PennSDK', description='Python tools for building Penn-related applications', url='https://github.com/pennlabs/penn-sdk-python', author='Penn Labs', author_email='pennappslabs@gmail.com', version='1.3.1', packages=['penn'], license='MIT', pa...
mit
Python
d111f89dbf3ee2cd9b37a9bb1b5ee194bf0b8878
Add wheel requirement
mbarkhau/tinypng
setup.py
setup.py
from setuptools import setup from os.path import join, dirname from tinypng import __version__ def read(fname): with open(join(dirname(__file__), fname), 'r') as f: return f.read() setup( name='tinypng', version=__version__, description='Access api.tinypng.org from the shell and python scrip...
from setuptools import setup from os.path import join, dirname from tinypng import __version__ def read(fname): with open(join(dirname(__file__), fname), 'r') as f: return f.read() setup( name='tinypng', version=__version__, description='Access api.tinypng.org from the shell and python scrip...
bsd-2-clause
Python
4ce849d4b9dca558035766c806c1873291eb7dbd
Change version requirement for astropy
mwcraig/msumastro
setup.py
setup.py
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytes...
from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytes...
bsd-3-clause
Python
f5d70f4a23fe271d3f78b8eccb8d296b63936e4e
Bump minimum sqlalchemy version after an alembic issue.
d0ugal-archive/home,d0ugal-archive/home,d0ugal-archive/home,d0ugal-archive/home
setup.py
setup.py
import ast import codecs import os from setuptools import setup, find_packages class VersionFinder(ast.NodeVisitor): def __init__(self): self.version = None def visit_Assign(self, node): if getattr(node.targets[0], 'id', None) == '__version__': self.version = node.value.s def r...
import ast import codecs import os from setuptools import setup, find_packages class VersionFinder(ast.NodeVisitor): def __init__(self): self.version = None def visit_Assign(self, node): if getattr(node.targets[0], 'id', None) == '__version__': self.version = node.value.s def r...
bsd-3-clause
Python
02feaae7a1d049893a0e91ab65013d8d46ca5d59
Prepare openprocurement.auctions.dgf 1.1.2.
openprocurement/openprocurement.auctions.dgf
setup.py
setup.py
from setuptools import setup, find_packages import os version = '1.1.2' entry_points = { 'openprocurement.auctions.core.plugins': [ 'auctions.dgf = openprocurement.auctions.dgf:includeme' ], 'openprocurement.api.migrations': [ 'auctions = openprocurement.auctions.dgf.migration:migrate_data...
from setuptools import setup, find_packages import os version = '1.1.1' entry_points = { 'openprocurement.auctions.core.plugins': [ 'auctions.dgf = openprocurement.auctions.dgf:includeme' ], 'openprocurement.api.migrations': [ 'auctions = openprocurement.auctions.dgf.migration:migrate_data...
apache-2.0
Python
dd3ea5cc908ba7a15782c96c7d3bfa787ff871b1
Use python-fido2 from git (for now).
Yubico/yubikey-manager,Yubico/yubikey-manager
setup.py
setup.py
# Copyright (c) 2015 Yubico AB # All rights reserved. # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditi...
# Copyright (c) 2015 Yubico AB # All rights reserved. # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following # conditions are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditi...
bsd-2-clause
Python
3d67e8209f8e9e308b945b721fbbcbfd2b23d5d9
Update setup.py info
l04m33/filehub,l04m33/filehub
setup.py
setup.py
import os import ast from setuptools import setup PACKAGE_NAME = 'filehub' def load_description(fname): here = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(here, fname)) as f: return f.read().strip() def get_version(fname): with open(fname) as f: source = f.read() ...
import os import ast from setuptools import setup PACKAGE_NAME = 'filehub' def load_description(fname): here = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(here, fname)) as f: return f.read().strip() def get_version(fname): with open(fname) as f: source = f.read() ...
mit
Python
dbc3abb5320e6800af05e6bb62ae7ace45011c2a
increment version number
meyersj/geotweet,meyersj/geotweet,meyersj/geotweet
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='geotweet', version='0.1.2', description='Fetch geographic tweets from Twitter Streaming API', author='Jeffrey Alan Meyers', author_email='jeffrey.alan.meyers@gmail.com', url='https://git...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='geotweet', version='0.1.1', description='Fetch geographic tweets from Twitter Streaming API', author='Jeffrey Alan Meyers', author_email='jeffrey.alan.meyers@gmail.com', url='https://git...
mit
Python
6a590bb0d6fbd7367fda3edd0f48d12456efb3c4
Add pytest to tests_require in setup.py
whiskerlabs/mmringbuffer
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = "mmringbuffer", version = "0.0.1.dev0", description = "A memory-mapped ring buffer implementation in Python.", url = "https://github.com/whiskerlabs/mmringbuffer", author = "Evan Meagher", author_email = "evan@whiskerlabs.com"...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = "mmringbuffer", version = "0.0.1.dev0", description = "A memory-mapped ring buffer implementation in Python.", url = "https://github.com/whiskerlabs/mmringbuffer", author = "Evan Meagher", author_email = "evan@whiskerlabs.com"...
mit
Python
93d4973725d2eb0ff955765b4ba5f433d39564d4
Update setup.py
twneale/rexlex,twneale/rexlex
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup long_description = """Basic regular expression lexer implementation. """ appname = "rexlex" version = "0.00" setup(**{ "name": appname, "version": version, "packages": [ 'tater', ], "author": "Thom Neale", "package...
#!/usr/bin/env python from setuptools import find_packages, setup long_description = """Tokenizer and basic smart-objects AST-builder implementation. """ appname = "tater" version = "0.04" setup(**{ "name": appname, "version": version, "packages": [ 'tater', ], "author": "Thom Neale"...
bsd-3-clause
Python
6a07e4b3b0c67c442f0501f19c0253b4c99637cd
Add more requirements that are needed for this module
benkonrath/transip-api,benkonrath/transip-api
setup.py
setup.py
from setuptools import setup import transip setup( name = transip.__name__, version = transip.__version__, author = transip.__author__, author_email = transip.__email__, license = transip.__license__, description = transip.__doc__.splitlines()[0], long_description = open('README.rst').read...
from setuptools import setup import transip setup( name = transip.__name__, version = transip.__version__, author = transip.__author__, author_email = transip.__email__, license = transip.__license__, description = transip.__doc__.splitlines()[0], long_description = open('README.rst').read...
mit
Python
6b35679fafe70a691fc17c29fd50c459f910c105
Bump requests from 2.7.0 to 2.20.0 (#10)
kokosing/docker-release,kokosing/docker-release
setup.py
setup.py
from setuptools import setup, find_packages requirements = [ 'GitPython == 1.0.1', 'docker-py >= 1.7.0', 'requests ==2.20.0' ] setup_requirements = [ 'flake8' ] description = """ Tool for releasing docker images. It is useful when your docker image files are under continuous development and you want ...
from setuptools import setup, find_packages requirements = [ 'GitPython == 1.0.1', 'docker-py >= 1.7.0', 'requests ==2.7.0' ] setup_requirements = [ 'flake8' ] description = """ Tool for releasing docker images. It is useful when your docker image files are under continuous development and you want t...
apache-2.0
Python
1c3cd15b03323bef5430d05754be27911115579f
Fix graphitesend dependency verison.
amorphic/braubuddy,amorphic/braubuddy,amorphic/braubuddy
setup.py
setup.py
from setuptools import setup, find_packages setup( name='braubuddy', version='0.3.0', author='James Stewart', author_email='jstewart101@gmail.com', description='An extensile thermostat framework', long_description=open('README.rst').read(), license='LICENSE.txt', packages=find_packages(...
from setuptools import setup, find_packages setup( name='braubuddy', version='0.3.0', author='James Stewart', author_email='jstewart101@gmail.com', description='An extensile thermostat framework', long_description=open('README.rst').read(), license='LICENSE.txt', packages=find_packages(...
bsd-3-clause
Python
eb2e5e9404e1db525b5e641800d1a8ba1ce591fc
Fix package name
mvantellingen/django-healthchecks
setup.py
setup.py
from setuptools import find_packages, setup with open('README.rst', 'r') as fh: description = '\n'.join(fh.readlines()) tests_require = [ 'pytest>=2.6.0', 'pytest-cov>=1.7.0', 'pytest-django>=2.8.0', ] setup( name='django-healthchecks', version='0.1.0', description=description, url='...
from setuptools import find_packages, setup with open('README.rst', 'r') as fh: description = '\n'.join(fh.readlines()) tests_require = [ 'pytest>=2.6.0', 'pytest-cov>=1.7.0', 'pytest-django>=2.8.0', ] setup( name='django_healthchecks', version='0.1.0', description=description, url='...
mit
Python
221dd82048f0521e302cd17b2e0c91fcd75bfa59
Use setuptools, with fallback to distutils
cmcqueen/cobs-python,cmcqueen/cobs-python
setup.py
setup.py
#!/usr/bin/env python import sys try: from setuptools import setup, Extension except ImportError: from distutils.core import setup from distutils.extension import Extension import _version if sys.version_info[0] == 2: base_dir = 'python2' elif sys.version_info[0] == 3: base_dir = 'python3' setu...
#!/usr/bin/env python import sys from distutils.core import setup from distutils.extension import Extension import _version if sys.version_info[0] == 2: base_dir = 'python2' elif sys.version_info[0] == 3: base_dir = 'python3' setup( name='cobs', version=_version.__version__, description='Consis...
mit
Python
a74c01c4d4504efbaf6bbaa215466b8b69acd92f
Update setup.py
qema/nanosite,qema/nanosite
setup.py
setup.py
from setuptools import setup setup( name = "nanosite", author = "Andrew Wang", author_email = "azw7@cornell.edu", url = "https://github.com/qema/nanosite", description="Speedy static site generator in Python.", version = "0.1.4", packages = ["nanosite"], install_requires = ["markdown"],...
from setuptools import setup setup( name = "nanosite", author = "Andrew Wang", author_email = "azw7@cornell.edu", url = "https://github.com/qema/nanosite", version = "0.1.4", packages = ["nanosite"], install_requires = ["markdown"], entry_points = { "console_scripts": [ ...
mit
Python
24a50d2179d25b6dd02f3bcfe4f59baae458434c
Update url in setup.py
pypingou/pygolib
setup.py
setup.py
#!/usr/bin/python """ Setup script """ from distutils.core import setup from src import __version__ setup( name='pygolib', description='Tools to manipulate GO term and graphs.', author='Pierre-Yves Chibon', author_email='pingou@pingoured.fr', version=__version__, license='BSD', url='https:...
#!/usr/bin/python """ Setup script """ from distutils.core import setup from src import __version__ setup( name='pygolib', description='Tools to manipulate GO term and graphs.', author='Pierre-Yves Chibon', author_email='pingou@pingoured.fr', version=__version__, license='BSD', url='https:...
bsd-3-clause
Python
abc6f0d6a09e47e29e588055aef92689b3730651
update version
MrLucasCardoso/pycards
setup.py
setup.py
import os from setuptools import setup, find_packages 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='Pycards', version='1...
import os from setuptools import setup, find_packages 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='Pycards', version='1...
mit
Python
bc0705fb603d1d33cc55c229b2945c78c26feddd
fix platform and operating system
blubber/gaclient
setup.py
setup.py
from distutils.core import setup import gaclient setup(name='gaclient', version=gaclient.__version__, description='A easy to use interface to Google Analytics.', long_description='''This package provides an easy to use interface to Google Analytics.''', author='Tiemo Kieft', author_email='t.kieft...
from distutils.core import setup import gaclient setup(name='gaclient', version=gaclient.__version__, description='A easy to use interface to Google Analytics.', long_description='''This package provides an easy to use interface to Google Analytics.''', author='Tiemo Kieft', author_email='t.kieft...
apache-2.0
Python
98e43994f669a03d36cbffdc5ef64b242ef0acaa
add package data in setup.py
PyThaiNLP/pythainlp
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup,find_packages import codecs with codecs.open('README.rst','r',encoding='utf-8') as readme_file: readme = readme_file.read() readme_file.close() requirements = [ 'nltk>=3.2.2', 'future>=0.16.0', 'six', 'marisa_trie', 'requests', 'dill', 'pytz', 'conllu' ]...
# -*- coding: utf-8 -*- from setuptools import setup,find_packages import codecs with codecs.open('README.rst','r',encoding='utf-8') as readme_file: readme = readme_file.read() readme_file.close() requirements = [ 'nltk>=3.2.2', 'future>=0.16.0', 'six', 'marisa_trie', 'requests', 'dill', 'pytz', 'conllu' ]...
apache-2.0
Python
0adf3e54454d499045d2bfd8f6bcfece4e8fe6ed
Revert accidental bumping of angluar_sdk dep
rzr/synapse,matrix-org/synapse,howethomas/synapse,illicitonion/synapse,TribeMedia/synapse,rzr/synapse,matrix-org/synapse,rzr/synapse,TribeMedia/synapse,matrix-org/synapse,rzr/synapse,TribeMedia/synapse,illicitonion/synapse,illicitonion/synapse,TribeMedia/synapse,iot-factory/synapse,iot-factory/synapse,howethomas/synaps...
setup.py
setup.py
#!/usr/bin/env python # Copyright 2014 OpenMarket Ltd # # 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 2014 OpenMarket Ltd # # 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
87c897209880e6038e06d5fe5660eefa75429528
fix version indication for black
murrayo/yape,murrayo/yape,murrayo/yape
setup.py
setup.py
from setuptools import setup setup( name="yape", description="Yet another pbuttons tool", url="https://github.com/murrayo/yape", author="Fabian,Murray", author_email="fabian@fabianhaupt.de", license="MIT", packages=["yape"], entry_points={ "console_scripts": [ "yape=...
from setuptools import setup setup( name="yape", description="Yet another pbuttons tool", url="https://github.com/murrayo/yape", author="Fabian,Murray", author_email="fabian@fabianhaupt.de", license="MIT", packages=["yape"], entry_points={ "console_scripts": [ "yape=...
mit
Python
1aa9baa51b30a47879355a97ddde140bafe570c4
Fix setup.py
aioworkers/aioworkers-redis
setup.py
setup.py
#!/usr/bin/env python import pathlib from setuptools import find_packages, setup version = __import__('aioworkers_redis').__version__ requirements = [ 'aioworkers>=0.13', 'aioredis==1.1.0', ] test_requirements = [ 'pytest', ] readme = pathlib.Path('README.rst').read_text() setup( name='aioworkers-...
#!/usr/bin/env python import pathlib from setuptools import find_packages, setup version = __import__('aioworkers_redis').__version__ requirements = [ 'aioworkers>=0.13', 'aioredis==1.1.0', ] test_requirements = [ 'pytest', ] readme = pathlib.Path('README.rst').read_text() setup( name='aioworkers-...
apache-2.0
Python
c03ec1eb5ddde0c4ea80c0dbd4442e383d09d713
update trove classifiers
edoburu/django-fluent-dashboard,edoburu/django-fluent-dashboard
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from os.path import dirname, join import sys, os # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv: try: os.chdir('fluent_dashboard') from django.core.management.commands.compilemessages impo...
#!/usr/bin/env python from setuptools import setup, find_packages from os.path import dirname, join import sys, os # When creating the sdist, make sure the django.mo file also exists: if 'sdist' in sys.argv: try: os.chdir('fluent_dashboard') from django.core.management.commands.compilemessages impo...
apache-2.0
Python
3a55c046fc7ada3bb610450a282a243bc1410300
Put dependencies into separate lines in setup.py.
renatahodovan/fuzzinator,akosthekiss/fuzzinator,renatahodovan/fuzzinator,akosthekiss/fuzzinator,akosthekiss/fuzzinator,renatahodovan/fuzzinator,akosthekiss/fuzzinator,renatahodovan/fuzzinator
setup.py
setup.py
# Copyright (c) 2016-2018 Renata Hodovan, Akos Kiss. # # Licensed under the BSD 3-Clause License # <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>. # This file may not be copied, modified, or distributed except # according to those terms. import json from os.path import dirname, join from setuptools imp...
# Copyright (c) 2016-2018 Renata Hodovan, Akos Kiss. # # Licensed under the BSD 3-Clause License # <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>. # This file may not be copied, modified, or distributed except # according to those terms. import json from os.path import dirname, join from setuptools imp...
bsd-3-clause
Python
ba6047a56b0596861abc6a23b5b0e55c30202f55
Update for v0.5.22 release.
houglum/apitools,google/apitools,craigcitro/apitools,kevinli7/apitools
setup.py
setup.py
#!/usr/bin/env python # # Copyright 2013 Google Inc. 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 ...
#!/usr/bin/env python # # Copyright 2013 Google Inc. 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 ...
apache-2.0
Python
17ab10dd5cddd00a845ce8ebeb072cc83d5cd8fc
Update description in setup.py.
uwbmrb/PyNMRSTAR,uwbmrb/PyNMRSTAR,uwbmrb/PyNMRSTAR
setup.py
setup.py
from distutils.core import setup, Extension cnmrstar = Extension('cnmrstar', sources = ['c/cnmrstarmodule.c'], extra_compile_args = ["-funroll-loops", "-O3"], optional = True) setup(name='pynmrstar', version = '2.2.1', packages = ['pynmrstar'], ...
from distutils.core import setup, Extension cnmrstar = Extension('cnmrstar', sources = ['c/cnmrstarmodule.c'], extra_compile_args = ["-funroll-loops", "-O3"], optional = True) setup(name='pynmrstar', version = '2.2.1', packages = ['pynmrstar'], ...
mit
Python
c06e73b0b89818e55e5329cc17f2122f72b2e206
Update setup.py
alexforencich/python-hpgl
setup.py
setup.py
from __future__ import with_statement # http://docs.python.org/distutils/ # http://packages.python.org/distribute/ try: from setuptools import setup except: from distutils.core import setup import os.path version_py = os.path.join(os.path.dirname(__file__), 'hpgl', 'version.py') with open(version_py, 'r') a...
from __future__ import with_statement # http://docs.python.org/distutils/ # http://packages.python.org/distribute/ try: from setuptools import setup except: from distutils.core import setup import os.path version_py = os.path.join(os.path.dirname(__file__), 'hpgl', 'version.py') with open(version_py, 'r') a...
mit
Python
28b72fc577af2a0349c691bdfc0461fc59de94dd
Correct dependecies
AP-e/mutube
setup.py
setup.py
from setuptools import setup, find_packages setup(name='mutube', version='0.1', description='Scrape YouTube links from 4chan threads.', url='https://github.com/AP-e/mutube', license='unlicense', classifiers=['Development Status :: 2 - Pre-Alpha', 'Programming Language :...
from setuptools import setup, find_packages setup(name='mutube', version='0.1', description='Scrape YouTube links from 4chan threads.', url='https://github.com/AP-e/mutube', license='unlicense', classifiers=['Development Status :: 2 - Pre-Alpha', 'Programming Language :...
unlicense
Python
722d9b3517b8d2674b0a52ed66586540377ad590
Bump version.
HXLStandard/libhxl-python,HXLStandard/libhxl-python
setup.py
setup.py
#!/usr/bin/python from setuptools import setup dependency_links=[ 'git+https://github.com/Toblerity/Shapely.git@maint#egg=Shapely', ] setup(name='libhxl', version='1.11', description='Python support for the Humanitarian Exchange Language (HXL).', author='David Megginson', author_email='co...
#!/usr/bin/python from setuptools import setup dependency_links=[ 'git+https://github.com/Toblerity/Shapely.git@maint#egg=Shapely', ] setup(name='libhxl', version='1.1', description='Python support for the Humanitarian Exchange Language (HXL).', author='David Megginson', author_email='con...
unlicense
Python
06dab661c2d3cc0e34b527654691659a054f3a5d
Upgrade to Flask 0.12.3 to fix CVE-2018-1000656
Antojitos/frijoles
setup.py
setup.py
from setuptools import setup, find_packages with open('README.rst') as file: long_description = file.read() setup( name="frijoles", version="0.1.0", author="Pablo SEMINARIO", author_email="pablo@seminar.io", description="Simple notifications powered by jumping beans", long_description=lo...
from setuptools import setup, find_packages with open('README.rst') as file: long_description = file.read() setup( name="frijoles", version="0.1.0", author="Pablo SEMINARIO", author_email="pablo@seminar.io", description="Simple notifications powered by jumping beans", long_description=lo...
agpl-3.0
Python
a2b24e3b9689c410dc5d06391585a03b9c6806ca
Update setup.py (#11)
swilly22/redisgraph-py
setup.py
setup.py
from setuptools import setup, find_packages setup( name='redisgraph', version='1.5', description='RedisGraph Python Client', url='https://github.com/redislabs/redisgraph-py', packages=find_packages(), install_requires=['redis', 'PTable'], classifiers=[ 'Intended Audience :: Develope...
from setuptools import setup, find_packages setup( name='redisgraph', version='1.5', description='RedisGraph Python Client', url='https://github.com/swilly22/redisgraph-py', packages=find_packages(), install_requires=['redis', 'PTable'], classifiers=[ 'Intended Audience :: Developer...
bsd-2-clause
Python
6c5306410e0e8a30dc6d1a356d9649d0a2424947
update to v0.329
josesho/bootstrap_contrast
setup.py
setup.py
from setuptools import setup, find_packages import os # Taken from setup.py in seaborn. # temporarily redirect config directory to prevent matplotlib importing # testing that for writeable directory which results in sandbox error in # certain easy_install versions os.environ["MPLCONFIGDIR"]="." # Modified from from se...
from setuptools import setup, find_packages import os # Taken from setup.py in seaborn. # temporarily redirect config directory to prevent matplotlib importing # testing that for writeable directory which results in sandbox error in # certain easy_install versions os.environ["MPLCONFIGDIR"]="." # Modified from from se...
mit
Python
e02e578c7df7931197a1c7ea812d783ceb19a773
Include package-dir
codelv/enaml-native,codelv/enaml-native,codelv/enaml-native,codelv/enaml-native
setup.py
setup.py
''' Copyright (c) 2017, Jairus Martin. Distributed under the terms of the MIT License. The full license is in the file COPYING.txt, distributed with this software. Created on July 10, 2017 @author: jrm ''' import sys from setuptools import setup, find_packages, Extension setup( name="enaml-native", versio...
''' Copyright (c) 2017, Jairus Martin. Distributed under the terms of the MIT License. The full license is in the file COPYING.txt, distributed with this software. Created on July 10, 2017 @author: jrm ''' import sys from setuptools import setup, find_packages, Extension setup( name="enaml-native", versio...
mit
Python
a66b1611bf7114aeddaa0cf9d0e68e5e7d3d3cbb
Fix unicode
LeResKP/colorterm
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='colorterm/', version=version, description="", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Aur\xc3\xa9...
from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='colorterm/', version=version, description="", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Aurélien Ma...
mit
Python
5c7b23c7c06e5e399fa8c088bca5a40f9410737f
Remove topic 'logging' from setup.py
sbuss/pypercube
setup.py
setup.py
from distutils.core import setup from pypercube import __version__ setup( name='pypercube', version=__version__, description='A Cube API client in python.', long_description="An easy way to use Cube's API in python", author='Steven Buss', author_email='steven.buss@gmail...
from distutils.core import setup from pypercube import __version__ setup( name='pypercube', version=__version__, description='A Cube API client in python.', long_description="An easy way to use Cube's API in python", author='Steven Buss', author_email='steven.buss@gmail...
bsd-3-clause
Python
b0be54ebaad7aa762f28876be8a28bb8b27ace69
Update classifiers
asottile/pyterminalsize,asottile/pyterminalsize
setup.py
setup.py
import os import re import sys from setuptools import Extension from setuptools import setup if sys.platform == 'win32': versions = [ var for var in os.environ if var.startswith('VS') and var.endswith('COMNTOOLS') ] vs = sorted(versions, key=lambda s: int(re.search('\d+', s).group()))[-1] ...
import os import re import sys from setuptools import Extension from setuptools import setup if sys.platform == 'win32': versions = [ var for var in os.environ if var.startswith('VS') and var.endswith('COMNTOOLS') ] vs = sorted(versions, key=lambda s: int(re.search('\d+', s).group()))[-1] ...
mit
Python
11932b630f56c15654f4aae652b46b94f3b5bb1f
Drop Python 3.6 support
deepmind/dm_fast_mapping
setup.py
setup.py
# Copyright 2019 DeepMind Technologies Limited. 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 a...
# Copyright 2019 DeepMind Technologies Limited. 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 a...
apache-2.0
Python
b8c1d0350dc6bf62eaa1f1ac2c078d2c80025403
remove lxml dependency
ariebovenberg/omgorm,ariebovenberg/snug
setup.py
setup.py
from pathlib import Path from setuptools import setup, find_packages local_path = Path(__file__).parent.joinpath metadata = {} exec(local_path('snug/__about__.py').read_text(), metadata) readme = local_path('README.rst').read_text() history = local_path('HISTORY.rst').read_text() setup( name='snug', versio...
from pathlib import Path from setuptools import setup, find_packages local_path = Path(__file__).parent.joinpath metadata = {} exec(local_path('snug/__about__.py').read_text(), metadata) readme = local_path('README.rst').read_text() history = local_path('HISTORY.rst').read_text() setup( name='snug', versio...
mit
Python
f06941fec4ef6bcb0c2456927a0cf258fa4f899b
Bump version from 0.1 to 0.2
goconnectome/geordi,HurricaneLabs/geordi
setup.py
setup.py
#!/usr/bin/env python """Installs geordi""" import os import sys from distutils.core import setup def long_description(): """Get the long description from the README""" return open(os.path.join(sys.path[0], 'README.txt')).read() setup( author='Brodie Rao', author_email='brodie@sf.io', classifiers...
#!/usr/bin/env python """Installs geordi""" import os import sys from distutils.core import setup def long_description(): """Get the long description from the README""" return open(os.path.join(sys.path[0], 'README.txt')).read() setup( author='Brodie Rao', author_email='brodie@sf.io', classifiers...
lgpl-2.1
Python
d09fe2060ccbbd52c77fc8ed47557bc01acdca46
Fix up setup.py to properly include all required packages
swtp1v07/Savu,swtp1v07/Savu,mjn19172/Savu,swtp1v07/Savu,mjn19172/Savu,mjn19172/Savu,mjn19172/Savu,mjn19172/Savu,swtp1v07/Savu
setup.py
setup.py
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='savu', version='0.1', description='Savu Python Tomography Pipeline', long_description=readme(), classifiers=[ 'Development Status :: 1 - Planning', 'Inte...
from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup(name='savu', version='0.1', description='Savu Python Tomography Pipeline', long_description=readme(), classifiers=[ 'Development Status :: 1 - Planning', 'Inte...
apache-2.0
Python
7d564f05c445379ffd58ce507d680e8145b92b9e
include numpy headers when building ufuncs
treverhines/RBF,treverhines/RBF,treverhines/RBF
setup.py
setup.py
#!/usr/bin/env python if __name__ == '__main__': from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize import subprocess as sp import numpy as np import json # this should create the file rbf/_version.py sp.call(['python', 'make_versi...
#!/usr/bin/env python if __name__ == '__main__': from setuptools import setup from setuptools.extension import Extension from Cython.Build import cythonize import subprocess as sp import json # this should create the file rbf/_version.py sp.call(['python', 'make_version.py']) version_in...
mit
Python
b2b11d73ba8110dc162f4c7e7f417a603b7a80bf
Corrige parte das dependências
odoo-brazil/PySPED
setup.py
setup.py
from setuptools import setup test_requirements = ['pyflakes>=0.6.1'] setup( name = "PySPED", version = "1.2.0", author = "Aristides Caldeira", author_email = 'aristides.caldeira@tauga.com.br', test_suite='tests', keywords = ['nfe', 'nfse', 'cte', 'sped', 'edf', 'ecd'], classifiers=[ ...
from setuptools import setup test_requirements = ['pyflakes>=0.6.1'] setup( name = "PySPED", version = "1.2.0", author = "Aristides Caldeira", author_email = 'aristides.caldeira@tauga.com.br', test_suite='tests', keywords = ['nfe', 'nfse', 'cte', 'sped', 'edf', 'ecd'], classifiers=[ ...
lgpl-2.1
Python
b119e3c9f322f314723ef160ee368d130b934a11
Add httpx as an extra dependecy
sam-washington/requests-aws4auth
setup.py
setup.py
import os import io import codecs import re from setuptools import setup def read(*names): with io.open( os.path.join(os.path.dirname(__file__), *names), encoding='utf-8' ) as f: return f.read() def find_version(*file_paths): version_file = read(*file_paths) version_match = r...
import os import io import codecs import re from setuptools import setup def read(*names): with io.open( os.path.join(os.path.dirname(__file__), *names), encoding='utf-8' ) as f: return f.read() def find_version(*file_paths): version_file = read(*file_paths) version_match = r...
mit
Python
8c82e56dff3f69634bd5bbc39483e77070a5927f
Add wrapt as a dependency.
deepmind/trfl
setup.py
setup.py
# Copyright 2018 The trfl 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 applicable law...
# Copyright 2018 The trfl 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 applicable law...
apache-2.0
Python
fabf3a640547b7b9c394febdf7977a1a6c7ee85a
Fix project URL in setup.py
crypto101/arthur
setup.py
setup.py
import sys from setuptools import setup from setuptools.command.test import test as TestCommand packageName = "arthur" import re versionLine = open("{0}/_version.py".format(packageName), "rt").read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", versionLine, re.M) versionString = match.group(1) class Tox(...
import sys from setuptools import setup from setuptools.command.test import test as TestCommand packageName = "arthur" import re versionLine = open("{0}/_version.py".format(packageName), "rt").read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", versionLine, re.M) versionString = match.group(1) class Tox(...
isc
Python
a20108f5d72b090e8aa94c34ea090a9d2524fb81
include LICENSE file in package
mysz/versionner,msztolcman/versionner
setup.py
setup.py
from versionner import utils utils.validate_python_version() from codecs import open from os import path from setuptools import setup, find_packages BASE_DIR = path.abspath(path.dirname(__file__)) with open(path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='...
from versionner import utils utils.validate_python_version() from codecs import open from os import path from setuptools import setup, find_packages BASE_DIR = path.abspath(path.dirname(__file__)) with open(path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='...
mit
Python
833aecaa4ba9f9e9dbe6a800899d6c5aad59fa15
Bump Pyramid version specifier in setup.py
tilgovi/pyramid-oauthlib
setup.py
setup.py
import os from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): user_options = [ ('cov', None, "measure coverage") ] def initialize_options(self): TestCommand.initialize_options(self) self.cov = N...
import os from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): user_options = [ ('cov', None, "measure coverage") ] def initialize_options(self): TestCommand.initialize_options(self) self.cov = N...
bsd-2-clause
Python
0cd5edf2aa9915372982fefc8cd6ed8ac70d13ef
fix incorrect package requirements and entry point script
infinitewarp/trekipsum,infinitewarp/trekipsum
setup.py
setup.py
#!/usr/bin/env python """ Setup module for trekipsum. """ from datetime import datetime from setuptools import find_packages, setup build_time = datetime.utcnow().strftime('%Y%m%d%H%M%S') setup( name='trekipsum', version='1.0.0.dev1+{}'.format(build_time), long_description='Generates pseudo-random string...
#!/usr/bin/env python """ Setup module for trekipsum. """ from datetime import datetime from setuptools import find_packages, setup build_time = datetime.utcnow().strftime('%Y%m%d%H%M%S') setup( name='trekipsum', version='1.0.0.dev1+{}'.format(build_time), long_description='Generates pseudo-random string...
mit
Python
dc7f8815fcaff588a12f267d0935191d8ec693fc
Bump version to 0.1.2
thusoy/poff,thusoy/poff,thusoy/poff
setup.py
setup.py
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup, find_packages import sys install_requires = [ 'flask', 'flask-sqlalchemy', 'flask-wtf', 'pyyaml', 'wtforms-alchemy', ] if sys.version_info < (2, 7, 0): install_requires.append('argparse') setup( name='poff', ...
#!/usr/bin/env python # -*- encoding: utf-8 -*- from setuptools import setup, find_packages import sys install_requires = [ 'flask', 'flask-sqlalchemy', 'flask-wtf', 'pyyaml', 'wtforms-alchemy', ] if sys.version_info < (2, 7, 0): install_requires.append('argparse') setup( name='poff', ...
mit
Python
e60a98f6774dc5f7ee7c0ec1d3b44516eabc6127
add idna package for idna 2008 support
jvanasco/tldextract,john-kurkowski/tldextract
setup.py
setup.py
"""`tldextract` accurately separates the gTLD or ccTLD (generic or country code top-level domain) from the registered domain and subdomains of a URL. >>> import tldextract >>> tldextract.extract('http://forums.news.cnn.com/') ExtractResult(subdomain='forums.news', domain='cnn', suffix='com') >>> tldext...
"""`tldextract` accurately separates the gTLD or ccTLD (generic or country code top-level domain) from the registered domain and subdomains of a URL. >>> import tldextract >>> tldextract.extract('http://forums.news.cnn.com/') ExtractResult(subdomain='forums.news', domain='cnn', suffix='com') >>> tldext...
bsd-3-clause
Python
c48303b7f8c151ada019e9b053cd15db52fa2e46
rework setup.py file
trezor/python-mnemonic
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='mnemonic', version='0.8', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', description='Implementation of Bitcoin BIP-0039', url='https://github.com/trezor/python-mnemonic', packages=['mnemonic',], package_da...
#!/usr/bin/env python from setuptools import setup #python setup.py sdist upload setup(name='mnemonic', version='0.8', description='Implementation of Bitcoin BIP-0039', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', url='https://github.com/trezor/python-mnemonic', ...
mit
Python
f55479fcb033b317696dcd98a8c061e234ffcae7
Update dependencies
LetThereBe/lettherebe
setup.py
setup.py
from setuptools import setup from lettherebe import __version__ entry_points = """ [console_scripts] lettherebe = lettherebe.main:main """ setup( version=__version__, url="https://github.com/LetThereBe/lettherebe", name="lettherebe", description='LetThereBe Python library and command-line scripts', ...
from setuptools import setup from lettherebe import __version__ entry_points = """ [console_scripts] lettherebe = lettherebe.main:main """ setup( version=__version__, url="https://github.com/LetThereBe/lettherebe", name="lettherebe", description='LetThereBe Python library and command-line scripts', ...
bsd-3-clause
Python
53f20651ab27b24ad6f711727448cac27683e31f
Bump reobject version to 0.9a0
onyb/reobject,onyb/reobject
setup.py
setup.py
from setuptools import setup, find_packages setup( name='reobject', version='0.9a1', description='Python without ifs and buts', url='https://github.com/onyb/reobject', author='Anirudha Bose', author_email='ani07nov@gmail.com', license='Apache-2.0', classifiers=[ 'Development Sta...
from setuptools import setup, find_packages setup( name='reobject', version='0.8a1', description='Python without ifs and buts', url='https://github.com/onyb/reobject', author='Anirudha Bose', author_email='ani07nov@gmail.com', license='Apache-2.0', classifiers=[ 'Development Sta...
apache-2.0
Python
75c5a8e5df96c44a89688f3c2b944076f2f570ac
solve the wrong spell error
markshao/pagrant
setup.py
setup.py
from __future__ import with_statement import os from setuptools import setup, find_packages README = os.path.join(os.path.dirname(__file__), 'README.md') REQUIREMENT = os.path.join(os.path.dirname(__file__), 'requirements.txt') def dependency(): with open(REQUIREMENT) as f: filter(lambda x: x != '', f...
from __future__ import with_statement import os from setuptools import setup, find_packages README = os.path.join(os.path.dirname(__file__), 'README.md') REQUIREMENT = os.path.join(os.path.dirname(__file__), 'requirements.txt') def dependency(): with open(REQUIREMENT) as f: filter(lambda x: x != '', f...
mit
Python
dfe305cfd56d0ea6352012b944e19c011f7548b4
Update version
miguelgrinberg/Flask-PageDown,miguelgrinberg/Flask-PageDown
setup.py
setup.py
""" Flask-PageDown -------------- Implementation of StackOverflow's "PageDown" markdown editor for Flask-WTF. """ from setuptools import setup setup( name='Flask-PageDown', version='0.1.5', url='http://github.com/miguelgrinberg/flask-pagedown/', license='MIT', author='Miguel Grinberg', author...
""" Flask-PageDown -------------- Implementation of StackOverflow's "PageDown" markdown editor for Flask-WTF. """ from setuptools import setup setup( name='Flask-PageDown', version='0.1.3', url='http://github.com/miguelgrinberg/flask-pagedown/', license='MIT', author='Miguel Grinberg', author...
mit
Python
9159bd74fe9400bbb602fb5b669c46f149b295d4
revert "support setup.py install with git archive tarballs" commit
Tesi-Luca-Davide/ryu,mikhaelharswanto/ryu,lsqtongxin/ryu,TakeshiTseng/ryu,jazzmes/ryu,jkoelker/ryu,sivaramakrishnansr/ryu,alyosha1879/ryu,zangree/ryu,takahashiminoru/ryu,hisaharu/ryu,yamt/ryu,haniehrajabi/ryu,lsqtongxin/ryu,StephenKing/summerschool-2015-ryu,takahashiminoru/ryu,iwaseyusuke/ryu,diogommartins/ryu,pichuang...
setup.py
setup.py
# Copyright (C) 2011, 2012 Nippon Telegraph and Telephone Corporation. # Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # h...
# Copyright (C) 2011, 2012 Nippon Telegraph and Telephone Corporation. # Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # h...
apache-2.0
Python
a3b33bc0022b0f24e3481f5a50dd2c550d135937
Remove affine property of raster
ricardog/raster-project,ricardog/raster-project,ricardog/raster-project,ricardog/raster-project,ricardog/raster-project
projections/rasterset/raster.py
projections/rasterset/raster.py
import numpy as np import numpy.ma as ma import rasterio import rasterio.errors import threading def window_inset(win1, win2): if win2: return ((win1[0][0] + win2[0][0], min(win1[0][0] + win2[0][1], win1[0][1])), (win1[1][0] + win2[1][0], min(win1[1][0] + win2[1][1], win1[1][1]))) return win1 cla...
import numpy as np import numpy.ma as ma import rasterio import rasterio.errors import threading def window_inset(win1, win2): if win2: return ((win1[0][0] + win2[0][0], min(win1[0][0] + win2[0][1], win1[0][1])), (win1[1][0] + win2[1][0], min(win1[1][0] + win2[1][1], win1[1][1]))) return win1 cla...
apache-2.0
Python
5b33180f674534cdeb6746eb0754d2489b76d5ad
Add missing dependency
itkach/mwscrape
setup.py
setup.py
from distutils.core import setup setup(name='mwscrape', version='1.0', description='Download', author='Igor Tkach', author_email='itkach@gmail.com', url='http://github.com/itkach/mwscrape', license='MPL 2.0', packages=['mwscrape'], #mwclient appears to need six, but does...
from distutils.core import setup setup(name='mwscrape', version='1.0', description='Download', author='Igor Tkach', author_email='itkach@gmail.com', url='http://github.com/itkach/mwscrape', license='MPL 2.0', packages=['mwscrape'], #mwclient appears to need six, but does...
mpl-2.0
Python
ff51bc4ccdc27578c7321a63801df186d828e391
Use setuptools if available. setuptools is pretty standard now.
paulc/dnslib,paulc/dnslib
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import Command, setup except ImportError: from distutils.core import Command, setup # noqa import dnslib long_description = dnslib.__doc__.rstrip() + "\n" version = dnslib.version class GenerateReadme(Command): description = "Generates README file from long_d...
#!/usr/bin/env python #try: # from setuptools import setup, Command #except ImportError: # from distutils.core import Command,setup from distutils.core import Command,setup import dnslib long_description = dnslib.__doc__.rstrip() + "\n" version = dnslib.version class GenerateReadme(Command): description = ...
bsd-2-clause
Python
8223304457ad3e3698aa24584a896bf3ee26fda4
Bump to 0.0.5
jwass/mplleaflet,ocefpaf/mplleaflet,ocefpaf/mplleaflet,jwass/mplleaflet
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages with open('AUTHORS.md') as f: authors = f.read() description = "Convert Matplotlib plots into Leaflet web maps" long_description = description + "\n\n" + authors NAME = "mplleaflet" AUTHOR ...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages with open('AUTHORS.md') as f: authors = f.read() description = "Convert Matplotlib plots into Leaflet web maps" long_description = description + "\n\n" + authors NAME = "mplleaflet" AUTHOR ...
bsd-3-clause
Python
12fa63ae42508e0e9223e2a31c5c6acd7bcf85d6
Use setuptools rather than distutils
patricklaw/clortho
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # # Copyright 2012 ShopWiki # # 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 requ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # # Copyright 2012 ShopWiki # # 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 requ...
apache-2.0
Python
a48fb4b0f92f9282ea54b142fe529a82b594fee7
fix 3 only trove classifier case
jayclassless/setoptconf
setup.py
setup.py
import os.path import re import sys from setuptools import setup, find_packages DEPENDENCIES = [] def get_version(): init = os.path.join(os.path.dirname(__file__), 'setoptconf/__init__.py') source = open(init, 'r').read() version = re.search( r"__version__ = '(?P<version>[^']+)'", sourc...
import os.path import re import sys from setuptools import setup, find_packages DEPENDENCIES = [] def get_version(): init = os.path.join(os.path.dirname(__file__), 'setoptconf/__init__.py') source = open(init, 'r').read() version = re.search( r"__version__ = '(?P<version>[^']+)'", sourc...
mit
Python
0816af2c578e3fc1398655d315288da2aba6c1ea
disable use of setuptools 2to3
jayclassless/setoptconf
setup.py
setup.py
import os.path import re import sys from setuptools import setup, find_packages DEPENDENCIES = [] def get_version(): init = os.path.join(os.path.dirname(__file__), 'setoptconf/__init__.py') source = open(init, 'r').read() version = re.search( r"__version__ = '(?P<version>[^']+)'", sourc...
import os.path import re import sys from setuptools import setup, find_packages PYVER = sys.version_info SETUP_KWARGS = {} DEPENDENCIES = [] # Do we need to install argparse? if PYVER < (2, 7): DEPENDENCIES.append('argparse') elif PYVER >= (3, 0) and PYVER < (3, 2): DEPENDENCIES.append('argparse') # Are ...
mit
Python
813f66d08b43eefc3727725f12041d375057cb38
update zeit.cms dependency
ZeitOnline/zeit.content.cp,ZeitOnline/zeit.content.cp
setup.py
setup.py
# Copyright (c) 2009 gocept gmbh & co. kg # See also LICENSE.txt from setuptools import setup, find_packages setup( name='zeit.content.cp', version='0.4dev', author='gocept', author_email='mail@gocept.com', url='https://intra.gocept.com/projects/projects/zeit-cms', description="""\ """, p...
# Copyright (c) 2009 gocept gmbh & co. kg # See also LICENSE.txt from setuptools import setup, find_packages setup( name='zeit.content.cp', version='0.4dev', author='gocept', author_email='mail@gocept.com', url='https://intra.gocept.com/projects/projects/zeit-cms', description="""\ """, p...
bsd-3-clause
Python
29cb760030021f97906d5eaec1c0b885e8bb2930
Add what the example should output.
caseywstark/dimensionful
example/gravity.py
example/gravity.py
""" Compute the force of gravity between the Earth and Sun. Copyright 2012, Casey W. Stark. See LICENSE.txt for more information. """ # Import the gravitational constant and the Quantity class from dimensionful import G, Quantity # Supply the mass of Earth, mass of Sun, and the distance between. mass_earth = Quant...
""" Compute the force of gravity between the Earth and Sun. Copyright 2012, Casey W. Stark. See LICENSE.txt for more information. """ # Import the gravitational constant and the Quantity class from dimensionful import G, Quantity # Supply the mass of Earth, mass of Sun, and the distance between. mass_earth = Quant...
bsd-2-clause
Python
76127c6c7e0ae1271dfecd2a10efd2ccd6148f97
Add plec json to package data
oddt/oddt,oddt/oddt,mkukielka/oddt,mkukielka/oddt
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages from oddt import __version__ as VERSION setup(name='oddt', version=VERSION, description='Open Drug Discovery Toolkit', author='Maciej Wojcikowski', author_email='mwojcikowski@ibb.waw.pl', url='https://github.com/oddt/oddt',...
#!/usr/bin/env python from setuptools import setup, find_packages from oddt import __version__ as VERSION setup(name='oddt', version=VERSION, description='Open Drug Discovery Toolkit', author='Maciej Wojcikowski', author_email='mwojcikowski@ibb.waw.pl', url='https://github.com/oddt/oddt',...
bsd-3-clause
Python
f6dccf2b8f4cab09e300b0e4b1fa770bc2e4c0a6
bump version
podio/conssert
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="conssert", version="0.2.5", description="Content assertion library for Python", url="https://github.com/podio/conssert", download_url="https://github.com/podio/conssert/tarball/0.2.5", author="Juan Alvarez", aut...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="conssert", version="0.2.4", description="Content assertion library for Python", url="https://github.com/podio/conssert", download_url="https://github.com/podio/conssert/tarball/0.2.4", author="Juan Alvarez", aut...
mit
Python
003f40c5fbd6a3559d7cfc62dc163c37140f1ffc
Fix dependency issue
mneagul/scape-cloud-toolkit,mneagul/scape-cloud-toolkit,mneagul/scape-cloud-toolkit
setup.py
setup.py
# -*- coding: utf-8 -*- """ Copyright 2014 Universitatea de Vest din Timișoara 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 appli...
# -*- coding: utf-8 -*- """ Copyright 2014 Universitatea de Vest din Timișoara 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 appli...
apache-2.0
Python
136638af9d69652989a2aea3e1903520dc8cdccc
Change Development Status to Beta
mishbahr/djangocms-gmaps,mishbahr/djangocms-gmaps,mishbahr/djangocms-gmaps
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import djangocms_gmaps try: from setuptools import setup except ImportError: from distutils.core import setup version = djangocms_gmaps.__version__ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') print("You p...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import djangocms_gmaps try: from setuptools import setup except ImportError: from distutils.core import setup version = djangocms_gmaps.__version__ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') print("You p...
bsd-3-clause
Python
4df8379b8a41ef87cab7555e83e938d004cde97a
use semantic versioning
varlink/python-varlink,varlink/python-varlink
setup.py
setup.py
from setuptools import setup setup( name = "varlink", packages = ["varlink"], version = "26.0.1", description = "Varlink", long_description = "Python implementation of the varlink protocol http://varlink.org", author = "Lars Karlitski<lars@karlitski.net>, Harald Hoyer<harald@redhat.com>", a...
from setuptools import setup setup( name = "varlink", packages = ["varlink"], version = "26", description = "Varlink", long_description = "Python implementation of the varlink protocol http://varlink.org", author = "Lars Karlitski<lars@karlitski.net>, Harald Hoyer<harald@redhat.com>", autho...
apache-2.0
Python
cf4a3240c797c1544542596933f93efc56cdb690
Remove indirect dependencies.
gorakhargosh/pyoauth,gorakhargosh/pyoauth
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Python module that implements the OAuth protocol for clients and servers. More information at http://github.com/gorakhargosh/pyoauth """ from setuptools import setup setup( name="pyoauth", version="0.0.1", license="Apache Software License", url="http...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Python module that implements the OAuth protocol for clients and servers. More information at http://github.com/gorakhargosh/pyoauth """ from setuptools import setup setup( name="pyoauth", version="0.0.1", license="Apache Software License", url="http...
apache-2.0
Python
148f2c2ab8be31cf3108849b72efe1f770f93327
Upgrade to version 0.0.2
edasi/kool
setup.py
setup.py
# coding=utf-8 from setuptools import setup, find_packages from codecs import open import os def read(fname): path = os.path.join(os.path.dirname(__file__), fname) return open(path, encoding='utf-8').read() setup( name="Kool", version="0.0.2", packages=find_packages(), # development metadat...
# coding=utf-8 from setuptools import setup, find_packages from codecs import open import os def read(fname): path = os.path.join(os.path.dirname(__file__), fname) return open(path, encoding='utf-8').read() setup( name="Kool", version="0.0.1", packages=find_packages(), # development metadat...
mit
Python
0781bff16b80aa09f03bc3ba8d342bea662569e8
Incrementa a versão.
scieloorg/xylose
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages requires = [ "legendarium>=1.2.0" ] setup( name="xylose", version='1.32.0', description="A SciELO library to abstract a JSON data structure that is a produ...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages requires = [ "legendarium>=1.2.0" ] setup( name="xylose", version='1.31.0', description="A SciELO library to abstract a JSON data structure that is a produ...
bsd-2-clause
Python