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
2e08fc46892dc7ef257eb27e99356f8ba6b36ad7
add dev requirements
colinhoglund/piprepo
setup.py
setup.py
import piprepo from setuptools import find_packages, setup setup( name="piprepo", version=piprepo.__version__, url="https://github.com/colinhoglund/piprepo", description=piprepo.__description__, packages=find_packages(), entry_points={ 'console_scripts': ['piprepo=piprepo.command:main']...
import piprepo from setuptools import find_packages, setup setup( name="piprepo", version=piprepo.__version__, url="https://github.com/colinhoglund/piprepo", description=piprepo.__description__, packages=find_packages(), entry_points={ 'console_scripts': ['piprepo=piprepo.command:main']...
mit
Python
204b9e58a156e4f0faf7a240b5923a7c0f305c09
update setup.py to bootstrap numpy installation
slundberg/shap,slundberg/shap,slundberg/shap,slundberg/shap
setup.py
setup.py
from setuptools import setup, Extension from setuptools.command.build_ext import build_ext as _build_ext # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc # Extend the default build_ext class to bootstrap numpy installation # that are needed to build C extensions. # see https://stackover...
from setuptools import setup, Extension import numpy # to publish use: # > python setup.py sdist upload # which depends on ~/.pypirc def run_setup(with_binary): ext_modules = [] if with_binary: ext_modules.append( Extension('shap._cext', sources=['shap/_cext.cc'], include_dirs=[numpy.get_i...
mit
Python
85a7e2deeb60de60b04ca282c963157d692f348f
remove pyqtgraph library
ckaus/EpiPy
setup.py
setup.py
#!/usr/bin/env python import os import sys try: from setuptools import setup, find_packages except ImportError: raise ImportError("Install setup tools") try: import PyQt4 except ImportError: raise ImportError("Install PyQt4") try: import numpy as np except ImportError: raise ImportError("Ins...
#!/usr/bin/env python import os import sys try: from setuptools import setup, find_packages except ImportError: raise ImportError("Install setup tools") try: import PyQt4 except ImportError: raise ImportError("Install PyQt4") try: import numpy as np except ImportError: raise ImportError("Ins...
mit
Python
16d509f2ff1af0f7588f302323c883edcd4384b4
Move schema salad minimum version back to earlier version.
common-workflow-language/cwltest,common-workflow-language/cwltest
setup.py
setup.py
#!/usr/bin/env python import os import sys import shutil import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.rst') try: import gittaggers tagger = gittaggers.EggInfoFromGit except Import...
#!/usr/bin/env python import os import sys import shutil import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages SETUP_DIR = os.path.dirname(__file__) README = os.path.join(SETUP_DIR, 'README.rst') try: import gittaggers tagger = gittaggers.EggInfoFromGit except Import...
apache-2.0
Python
da74aa7b9c3b227fb449e0e8016d3511efcf315d
Add PyPy to classifiers
zoidbergwill/demands,yola/demands
setup.py
setup.py
import re from setuptools import setup with open('demands/__init__.py') as init_py: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py.read())) with open('README.rst') as readme_file: readme = readme_file.read() setup( name='demands', version=metadata['version'], description=metadata...
import re from setuptools import setup with open('demands/__init__.py') as init_py: metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py.read())) with open('README.rst') as readme_file: readme = readme_file.read() setup( name='demands', version=metadata['version'], description=metadata...
mit
Python
944df739983244aaacb90314d0d0ec3046042959
Fix package setup
tvmaze/tvmaze
setup.py
setup.py
#!/usr/bin/env python """Distutils setup script for packaging and distribution.""" import pathlib import setuptools PROJECT_AUTHOR = 'Labrys of Knossos' PROJECT_AUTHOR_EMAIL = 'labrys.git@gmail.com' PROJECT_ROOT = pathlib.Path(__file__).parent PROJECT_NAME = 'tvmaze' PROJECT_VERSION = '0.1.0' PROJECT_URL = 'https:/...
#!/usr/bin/env python """Distutils setup script for packaging and distribution.""" import pathlib import setuptools PROJECT_ROOT = pathlib.Path(__file__).parent PROJECT_NAME = 'tvmaze' PROJECT_VERSION = '0.1.0' PROJECT_URL = 'https://github.com/tvmaze/tvmaze' PROJECT_LICENSE = 'MIT License' PROJECT_DESCRIPTION = 'A...
mit
Python
dfaf7ec8b2ac6143cbdd0231418df0c7cbf8fb0c
add Beaker dependency
adeel/pump
setup.py
setup.py
from setuptools import setup setup( name="pump", version="0.1.2", description="A web application library.", author="Adeel Ahmad Khan", author_email="adeel@adeel.ru", packages=["pump", "pump.util", "pump.middleware"], install_requires=["Beaker"], license="MIT", classifiers=[ 'Topic :: Internet :: ...
from setuptools import setup setup( name="pump", version="0.1.1", description="A web application library.", author="Adeel Ahmad Khan", author_email="adeel@adeel.ru", packages=["pump", "pump.util", "pump.middleware"], license="MIT", classifiers=[ 'Topic :: Internet :: WWW/HTTP :: WSGI', 'Develop...
mit
Python
4d1e7573e52add8ff04d6a9e86862e07a6576d17
Increase version in setup.py
NEERAJIITKGP/pybbm,zekone/dj_pybb,just-work/pybbm,katsko/pybbm,onecue/pybbm,jonsimington/pybbm,just-work/pybbm,ttyS15/pybbm,concentricsky/pybbm,webu/pybbm,hovel/pybbm,concentricsky/pybbm,webu/pybbm,just-work/pybbm,skolsuper/pybbm,springmerchant/pybbm,skolsuper/pybbm,zekone/dj_pybb,onecue/pybbm,jonsimington/pybbm,katsko...
setup.py
setup.py
import os from setuptools import setup # 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) PACKAGE = 'pybb' for dirpath, dirnames, filenames in os.walk(PACKAGE): ...
import os from setuptools import setup # 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) PACKAGE = 'pybb' for dirpath, dirnames, filenames in os.walk(PACKAGE): ...
bsd-2-clause
Python
0a834f03114698b75d7c5e2c7a01276781072ff9
Bump patch version
Turbasen/turbasen.py
setup.py
setup.py
from setuptools import setup name = 'turbasen' VERSION = '2.4.5' setup( name=name, packages=[name], version=VERSION, description='Client for Nasjonal Turbase REST API', long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md', author='Ali Kaafarani', author_emai...
from setuptools import setup name = 'turbasen' VERSION = '2.4.3' setup( name=name, packages=[name], version=VERSION, description='Client for Nasjonal Turbase REST API', long_description='See https://github.com/Turbasen/turbasen.py/blob/master/README.md', author='Ali Kaafarani', author_emai...
mit
Python
9e7129d5a3a2c625ab0d97ecb50c030e2a258014
Add package
ScottWales/ftools
setup.py
setup.py
#!/usr/bin/env python """ Copyright 2015 ARC Centre of Excellence for Climate Systems Science author: Scott Wales <scott.wales@unimelb.edu.au> 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...
#!/usr/bin/env python """ Copyright 2015 ARC Centre of Excellence for Climate Systems Science author: Scott Wales <scott.wales@unimelb.edu.au> 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
de5e68913d268399533a3d70e21497cf5c36d2c1
bump version to 1.0.2
escattone/txpool
setup.py
setup.py
import os from setuptools import setup def read(relpath): filename = os.path.join(os.path.dirname(__file__), relpath) with open(filename) as f: return f.read() setup( name='txpool', version='1.0.2', description='A persistent process pool in Python for Twisted', long_description=read(...
import os from setuptools import setup def read(relpath): filename = os.path.join(os.path.dirname(__file__), relpath) with open(filename) as f: return f.read() setup( name='txpool', version='1.0.0', description='A persistent process pool in Python for Twisted', long_description=read(...
mit
Python
32e91504e6ea6ac4c09b4688eeefd4d3034824ff
add cython to setup_requires
daleroberts/hdmedians
setup.py
setup.py
""" hdmedians: High-dimensional medians. """ import numpy as np from setuptools import setup, find_packages, Extension from Cython.Build import cythonize extensions = [Extension('hdmedians.geomedian', ['hdmedians/geomedian.pyx'], include_dirs = [np.get_include()])] se...
""" hdmedians: High-dimensional medians. """ import numpy as np from setuptools import setup, find_packages, Extension from Cython.Build import cythonize extensions = [Extension('hdmedians.geomedian', ['hdmedians/geomedian.pyx'], include_dirs = [np.get_include()])] se...
apache-2.0
Python
8d3d339d27ef4a61f3447dae5d671b2dfc30a9b7
change readme target in setup.py
mankyd/htmlmin,BlaXpirit/htmlmin,BlaXpirit/htmlmin,mankyd/htmlmin
setup.py
setup.py
from setuptools import setup, find_packages from htmlmin import __version__ README = open('README.rst').read() LICENSE = open('LICENSE').read() setup( name='htmlmin', version=__version__, license='BSD', description='An HTML Minifier', long_description=README, url='https://htmlmin.readthedocs.o...
from setuptools import setup, find_packages from htmlmin import __version__ README = open('README.md').read() LICENSE = open('LICENSE').read() setup( name='htmlmin', version=__version__, license='BSD', description='An HTML Minifier', long_description=README, url='https://htmlmin.readthedocs.or...
bsd-3-clause
Python
07b11f05e3cce7e76d80e115c388087bcb7a633b
Change setup.py description of quickplots
samirelanduk/quickplots
setup.py
setup.py
from setuptools import setup setup( name="quickplots", version="2.1.0", description="A simple plotting library", long_description="An object-oriented plotting library for Python, with simplicity as its principal aim.", url="https://quickplots.readthedocs.io", author="Sam Ireland", author_email="mail@samireland....
from setuptools import setup setup( name="quickplots", version="2.1.0", description="A simple plotting library", long_description="A Python plotting library with simplicty and intuition as its primary goals", url="https://quickplots.readthedocs.io", author="Sam Ireland", author_email="mail@samireland.com", lic...
mit
Python
bb2f5ec13cd452b92a197d14ff7629d01d8b35c7
Update Django version used w/ Python 2.7 (1.10 => 1.11)
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
916f426c93c3d3de8f5412bdf46b832b14fc7978
Add support for custom function in setup.py
fabiocody/PyNetatmo
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' try: setup( name='pynetatmo', version='0.0.1', ...
#!/usr/bin/env python3 from setuptools import setup from os import path here = path.abspath(path.dirname(__file__)) try: with open(path.join(here, 'README.md')) as f: long_description = f.read() except: long_description = '' setup( name='pynetatmo', version='0.0.1', description='Netatmo ...
mit
Python
03499b7a1cf7491aa3b9a67ff573442a5c925a2e
Bump version number.
avakar/crater,avakar/crater
setup.py
setup.py
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='crater', version='0.6', description='A dependency management system', author='Martin Vejnár', author_email='vejnar.martin@gmail.com', url='https://github.com/avakar/crater', license='MIT', packages=['crat...
#!/usr/bin/env python # coding: utf-8 from setuptools import setup setup( name='crater', version='0.5', description='A dependency management system', author='Martin Vejnár', author_email='vejnar.martin@gmail.com', url='https://github.com/avakar/crater', license='MIT', packages=['crat...
mit
Python
a6f1ea90cde8282075b3dedda9162da4ad731792
update authors
culqi/culqi-python
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup package_name = "culqi" package_path = os.path.abspath(os.path.dirname(__file__)) repositorty_url = "https://github.com/culqi/culqi" long_description_file_path = os.path.join(package_path, "README.md") long_description ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup package_name = "culqi" package_path = os.path.abspath(os.path.dirname(__file__)) repositorty_url = "https://github.com/culqi/culqi" long_description_file_path = os.path.join(package_path, "README.md") long_description ...
mit
Python
a53e1a56460f197ae11a078f036d2a2ac9342fc3
Bump to v0.11.1
gisce/esios
setup.py
setup.py
from setuptools import setup, find_packages PACKAGES_DATA = {'esios': ['data/*.xsd']} setup( name='esios', version='0.11.1', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.n...
from setuptools import setup, find_packages PACKAGES_DATA = {'esios': ['data/*.xsd']} setup( name='esios', version='0.11.0', packages=find_packages(), url='https://github.com/gisce/esios', license='MIT', install_requires=['libsaas'], author='GISCE-TI, S.L.', author_email='devel@gisce.n...
mit
Python
8aba69624d0719a9912302c492e05d1988bd1c31
Add licensing info to setup.py
joh/Flickrsaver
setup.py
setup.py
from distutils.core import setup setup( name='flickrsaver', version='0.1', description='A screensaver for Flickr enthusiasts', url='http://github.com/joh/Flickrsaver', license='BSD', author='Johannes H. Jensen', author_email='joh@pseudoberries.com', requires=[ 'clutter (>=1...
from distutils.core import setup setup( name='flickrsaver', version='0.1', description='A screensaver for Flickr enthusiasts', author='Johannes H. Jensen', author_email='joh@pseudoberries.com', url='http://github.com/joh/Flickrsaver', requires=[ 'clutter (>=1.0.3)', 'flickra...
bsd-3-clause
Python
df7e7b7a220dcfefc4d31fc1f01fb1518023c425
Bump version
ITNG/SurveyGizmo
setup.py
setup.py
import os import unittest from setuptools import setup, find_packages PATH = os.path.join(os.path.dirname(__file__), 'README.md') try: import pypandoc README = pypandoc.convert(PATH, 'rst') except ImportError: README = open(PATH).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os...
import os import unittest from setuptools import setup, find_packages PATH = os.path.join(os.path.dirname(__file__), 'README.md') try: import pypandoc README = pypandoc.convert(PATH, 'rst') except ImportError: README = open(PATH).read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os...
bsd-3-clause
Python
d8ec6ed2e9100f3e9550fda5078e0a6c0f6d144d
bump version to 0.3 + added github url
the-gigi/conman
setup.py
setup.py
from setuptools import setup, find_packages setup(name='conman', version='0.3', url='https://github.com/the-gigi/conman', license='MIT', author='Gigi Sayfan', author_email='the.gigi@gmail.com', description='Manage configuration files', packages=find_packages(exclude=['tests'])...
from setuptools import setup, find_packages setup(name='conman', version='0.2', license='MIT', author='Gigi Sayfan', author_email='the.gigi@gmail.com', description='Manage configuration files', packages=find_packages(exclude=['tests']), long_description=open('README.md').read(...
mit
Python
8f696555df932ef9e87edf108c7ed10904a8b256
Add *ini files in migrations to package data
apache/cloudstack-gcestack
setup.py
setup.py
#!/usr/bin/env python # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "Li...
#!/usr/bin/env python # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "Li...
apache-2.0
Python
98efb2ea38539644a1ee1f40d98190a9fb0a5b64
Bump version to 0.2
lebauce/hashmerge
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name='hashmerge', version='0.2', url='https://github.com/lebauce/hashmerge', author='Sylvain Baubeau', author_email='bob@glumol.com', description="Merges two arbitrari...
#!/usr/bin/env python from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name='hashmerge', version='0.1', url='https://github.com/lebauce/hashmerge', author='Sylvain Baubeau', author_email='bob@glumol.com', description="Merges two arbitrari...
mit
Python
d67899d0cd62732f27e0e87400192c7b95af5055
Bump version
mailgun/flanker,nylas/flanker
setup.py
setup.py
# coding:utf-8 from setuptools import setup, find_packages setup(name='flanker', version='0.6.12', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.com', u...
# coding:utf-8 from setuptools import setup, find_packages setup(name='flanker', version='0.6.11', description='Mailgun Parsing Tools', long_description=open('README.rst').read(), classifiers=[], keywords='', author='Mailgun Inc.', author_email='admin@mailgunhq.com', u...
apache-2.0
Python
ccd3660f01ec595ee63ecd6ad1332af078277abd
add sphinx-intl
seisman/HinetPy
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from os import path from codecs import open from setuptools import setup 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() ...
#!/usr/bin/env python # -*- coding: utf-8 -*- import re from os import path from codecs import open from setuptools import setup 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() ...
mit
Python
31cd04c8805459fb44047c8e61536ddfc123d566
update version.
bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS,bukun/TorCMS
setup.py
setup.py
#!/usr/bin/env python3 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.24', keywords=('torcms', 'tornado', 'cms',), ...
#!/usr/bin/env python3 # -*- coding:utf-8 -*- ''' For pypi ''' from setuptools import setup, find_packages desc = ('Flexible, extensible Web CMS framework built on Tornado,' 'compatible with Python 3.4 and above.') setup( name='torcms', version='0.6.23', keywords=('torcms', 'tornado', 'cms',), ...
mit
Python
60236b17c98cd783ac2ab4fd214a6425410195f1
add long_description
Taywee/makerestapiclient,Taywee/makerestapiclient
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup version = '1.2.1' setup(name='makerestapiclient', version=version, description="Simple python utility to build a python client class for interfacing with a REST API", long_description="Simple python utility to build a python client class for interfacing...
#!/usr/bin/env python3 from setuptools import setup version = '1.2.0' setup(name='makerestapiclient', version=version, description="Simple python utility to build a python client class for interfacing with a REST API", classifiers=[ "Intended Audience :: Developers", "License :: OSI Appro...
mit
Python
9266e87c0930e589145ab25609cd8e129a3f487e
bump version
stephenbm/pastry
setup.py
setup.py
import os try: from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class ...
import os try: from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class ...
mit
Python
098594700b0b8d782b599cb0d74eb0f7de770c7b
Bump version.
liangsun/simhash,leonsim/simhash,pombredanne/simhash-5
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'simhash', version = '1.9.0', keywords = ('simhash'), description = 'A Python implementation of Simhash Algorithm', license = 'MIT License', url = 'http://leons.im/posts/a-python-implementation-of-simhash-algorith...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name = 'simhash', version = '1.8.0', keywords = ('simhash'), description = 'A Python implementation of Simhash Algorithm', license = 'MIT License', url = 'http://leons.im/posts/a-python-implementation-of-simhash-algorith...
mit
Python
f75ed6add2058f6988b2baaf73d34c382d17adf7
add examples and test sub-packages and bump version number for new pypi release
mattfenwick/NMRPyStar,mattfenwick/NMRPyStar
setup.py
setup.py
from distutils.core import setup setup( name='NMRPyStar', version='0.0.12', packages=['nmrpystar', 'nmrpystar.parse', 'nmrpystar.examples', 'nmrpystar.test'], license='MIT', author='Matt Fenwick', author_email='mfenwick100@gmail.com', url='https:/...
from distutils.core import setup setup( name='NMRPyStar', version='0.0.11', packages=['nmrpystar', 'nmrpystar.parse'], license='MIT', author='Matt Fenwick', author_email='mfenwick100@gmail.com', url='https://github.com/mattfenwick/NMRPyStar', description='a parser for the NMR-Star data ...
mit
Python
4bb8acd103131868dfc8bf68cc583c01b4e8481c
Bump version to 0.1.1
incuna/django-user-deletion
setup.py
setup.py
from setuptools import find_packages, setup version = '0.1.1' setup( name='django-user-deletion', packages=find_packages(), include_package_data=True, version=version, license='BSD', description='Management commands to notify and delete inactive django users', classifiers=[ 'Deve...
from setuptools import find_packages, setup version = '0.1.0' setup( name='django-user-deletion', packages=find_packages(), include_package_data=True, version=version, license='BSD', description='Management commands to notify and delete inactive django users', classifiers=[ 'Deve...
bsd-2-clause
Python
bc95f1488b5e573277a1306bf0ecca6d2207f88b
Use PEP440-compliant version in setup.py (#277)
bugsnag/bugsnag-python,bugsnag/bugsnag-python
setup.py
setup.py
#!/usr/bin/env python """ Bugsnag ======= The official Python notifier for `Bugsnag <https://bugsnag.com/>`_. Provides support for automatically capturing and sending exceptions in your Django and other Python apps to Bugsnag, to help you find and solve your bugs as fast as possible. """ from setuptools import setup...
#!/usr/bin/env python """ Bugsnag ======= The official Python notifier for `Bugsnag <https://bugsnag.com/>`_. Provides support for automatically capturing and sending exceptions in your Django and other Python apps to Bugsnag, to help you find and solve your bugs as fast as possible. """ from setuptools import setup...
mit
Python
d5109b582cdf1f0f356122e71847debd37201636
Update version.
pmaigutyak/mp-shop,pmaigutyak/mp-shop,pmaigutyak/mp-shop
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '4.0.3' with open('requirements.txt') as f: requires = f.read().splitlines() url = 'https://github.com/pmaigutyak/mp-shop' setup( name='django-mp-shop', version=__version__, description='Django shop apps', long_description=open('READM...
from setuptools import setup, find_packages __version__ = '4.0.2' with open('requirements.txt') as f: requires = f.read().splitlines() url = 'https://github.com/pmaigutyak/mp-shop' setup( name='django-mp-shop', version=__version__, description='Django shop apps', long_description=open('READM...
isc
Python
48420606edc3d2486e0e943d8480fe7f57aa6e0e
fix for unneccesary require to argparse
briandailey/alembic
setup.py
setup.py
from setuptools import setup, find_packages import sys import os import re extra = {} if sys.version_info >= (3, 0): extra.update( use_2to3=True, ) v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1...
from setuptools import setup, find_packages import sys import os import re extra = {} if sys.version_info >= (3, 0): extra.update( use_2to3=True, ) v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1...
mit
Python
a6d5e8e1550f523eb87d0cd4a097136a350dcd28
Bump versioBump version
airtonix/django-shop,nimbis/django-shop,awesto/django-shop,DavideyLee/django-shop,khchine5/django-shop,creimers/django-shop,rfleschenberg/django-shop,ojii/django-shop,jrief/django-shop,bmihelac/django-shop,rfleschenberg/django-shop,pjdelport/django-shop,fusionbox/django-shop,dwx9/test,awesto/django-shop,divio/django-sh...
setup.py
setup.py
from setuptools import setup, find_packages import os CLASSIFIERS = [] setup( author="Christopher Glass", author_email="tribaal@gmail.com", name='django-shop', version='0.0.2', description='An Advanced Django Shop', long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).r...
from setuptools import setup, find_packages import os CLASSIFIERS = [] setup( author="Christopher Glass", author_email="tribaal@gmail.com", name='django-shop', version='0.0.1', description='An Advanced Django Shop', long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).r...
bsd-3-clause
Python
7dcbfe2db81cef4de082b2ee2f83b1bce823876d
increase version number
SergejPr/NooLite-F
setup.py
setup.py
from setuptools import setup import io with io.open('README.rst', encoding="utf-8") as readme_file: long_description = readme_file.read() setup( name="NooLite_F", packages=["NooLite_F"], version="0.0.4", license="MIT License", description="Module to work with NooLite_F (MTRF-64-USB)", long...
from setuptools import setup import io with io.open('README.rst', encoding="utf-8") as readme_file: long_description = readme_file.read() setup( name="NooLite_F", packages=["NooLite_F"], version="0.0.3", license="MIT License", description="Module to work with NooLite_F (MTRF-64-USB)", long...
mit
Python
901a1e52db9bc960c307e1e6f3fd08f79a7a97bb
Upgrade discord.py and remove unused aiodns
FallenWarrior2k/cardinal.py,FallenWarrior2k/cardinal.py
setup.py
setup.py
import sys from pathlib import Path from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
import sys from pathlib import Path from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand class Tox(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self...
mit
Python
83f79ed05f2e53b6156c118ce8d9248c97b80aee
fix grammer error.
soasme/blackgate
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- 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 = [ 'futures==3.0.5', 'requests==2.10.0', 'tornado==...
#!/usr/bin/env python # -*- coding: utf-8 -*- 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 = [ 'futures==3.0.5', 'requests==2.10.0', 'tornado==...
mit
Python
fb3983017da558018fd0de7ef10a4c0e98bbb0ec
Send the gecos input from USER through the sanitization as well
Heufneutje/txircd,ElementalAlchemist/txircd,DesertBus/txircd
txircd/modules/cmd_user.py
txircd/modules/cmd_user.py
from twisted.words.protocols import irc from txircd.modbase import Command import string class UserCommand(Command): def onUse(self, user, data): if not user.username: user.registered -= 1 user.setUsername(data["ident"]) user.setRealname(data["gecos"]) if user.registered...
from twisted.words.protocols import irc from txircd.modbase import Command import string class UserCommand(Command): def onUse(self, user, data): if not user.username: user.registered -= 1 user.setUsername(data["ident"]) user.realname = data["gecos"] if user.registered =...
bsd-3-clause
Python
a013af88adad469782d2f05a0b882c2f5500b6b8
Include README as long package description. Specified license.
TheLady/gallerize,TheLady/gallerize
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup def read_readme(): with open('README.rst') as f: return f.read() setup( name='gallerize', version='0.3.1', description='Create a static HTML/CSS image gallery from a bunch of images.', long_description=read_readme(), license='MIT'...
#!/usr/bin/env python from setuptools import setup setup( name='gallerize', version='0.3.1', description='Create a static HTML/CSS image gallery from a bunch of images.', author='Jochen Kupperschmidt', author_email='homework@nwsnet.de', url='http://homework.nwsnet.de/releases/cc0e/#gallerize'...
mit
Python
5a5f805e76098ca64187b475c5b4c47e4be5b6be
Remove double classifier in setup.py and add Python 2 and Python 3
MotherNatureNetwork/django-dynamic-forms,uhuramedia/django-dynamic-forms,wangjiaxi/django-dynamic-forms,wangjiaxi/django-dynamic-forms,uhuramedia/django-dynamic-forms,MotherNatureNetwork/django-dynamic-forms,MotherNatureNetwork/django-dynamic-forms,uhuramedia/django-dynamic-forms,wangjiaxi/django-dynamic-forms
setup.py
setup.py
#!/usr/bin/env python import os import codecs from setuptools import setup def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() from dynamic_forms import get_version setup( name='django-dynamic-forms',...
#!/usr/bin/env python import os import codecs from setuptools import setup def read(*parts): filename = os.path.join(os.path.dirname(__file__), *parts) with codecs.open(filename, encoding='utf-8') as fp: return fp.read() from dynamic_forms import get_version setup( name='django-dynamic-forms',...
bsd-3-clause
Python
71acce577d1fc7d3366e1cc763433f18bbdfdc00
Upgrade status to Production/Stable and add specific python version to classifiers
gsakkis/valideer,podio/valideer
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="valideer", version="0.4.1", description="Lightweight data validation and adaptation library for Python", long_description=open("README.rst").read(), url="https://github.com/podio/valideer", author="George Sakkis", ...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="valideer", version="0.4.1", description="Lightweight data validation and adaptation library for Python", long_description=open("README.rst").read(), url="https://github.com/podio/valideer", author="George Sakkis", ...
mit
Python
7768ace5c6dbe939086bd3beb5051a4d4417e3a4
Fix typo
dizballanze/jinja2-pluralize-filter
setup.py
setup.py
from distutils.core import setup setup( name='jinja2-pluralize-filter', version='0.0.1', author='Yuri Shikanov', author_email='dizballanze@gmail.com', packages=['pluralize'], # scripts=[], url='https://github.com/dizballanze/jinja2-pluralize-filter', license='LICENSE', description='...
from distutils.core import setup setup( name='jinja2-pluralize-filter', version='0.0.1', author='Yuri Shikanov', author_email='dizballanze@gmail.com', packages=['pluralize'], # scripts=[], url='https://github.com/dizballanze/jinja2-pluralize-filter', license='LICENSE', description='...
mit
Python
13aa2ad682565dc1959d1010fee477b5a1870715
Bump version to 0.3.0-pre2
mwilliamson/zuice
setup.py
setup.py
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='zuice', version='0.3.0-pre2', description='A dependency injection framework for Python', long_description=read("README.rst"), autho...
#!/usr/bin/env python import os from distutils.core import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='zuice', version='0.3.0-pre1', description='A dependency injection framework for Python', long_description=read("README.rst"), autho...
bsd-2-clause
Python
ee1e6b92b6b853025eff314ed65a4f752177c4b6
fix setup.py
uralbash/sqlalchemy_mptt,ITCase/sqlalchemy_mptt,uralbash/sqlalchemy_mptt,ITCase/sqlalchemy_mptt
setup.py
setup.py
from sqlalchemy_mptt import __version__ from setuptools import setup setup( name='sqlalchemy_mptt', version=__version__, url='http://github.com/ITCase/sqlalchemy_mptt/', author='Svintsov Dmitry', author_email='root@uralbash.ru', packages=['sqlalchemy_mptt', ], include_package_data=True, ...
from sqlalchemy_mptt import __version__ from setuptools import setup setup( name='sqlalchemy_mptt', version=__version__, url='http://github.com/ITCase/sqlalchemy_mptt/', author='Svintsov Dmitry', author_email='root@uralbash.ru', packages=['sqlalchemy_mptt', ], include_package_data=True, ...
mit
Python
8835dffe1f33dbf772462e75b1074b2b9a7e7fd6
Fix attrs version for backward compatibility
ComerciaGP/addonpayments-Python-SDK
setup.py
setup.py
# -*- encoding: utf-8 -*- import os import re import codecs try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = codecs.open(os.path.ab...
# -*- encoding: utf-8 -*- import os import re import codecs try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup def get_version(package): """ Return package version as listed in `__version__` in `init.py`. """ init_py = codecs.open(os.path.ab...
mit
Python
9dae7ba658f028e1f4de3291c56fb7b81c0e07c6
Change version
keitaoouchi/seleniumwrapper
setup.py
setup.py
from setuptools import setup from sys import version if version < '2.6.0': raise Exception("This module doesn't support any version less than 2.6") import sys sys.path.append("./test") with open('README.rst', 'r') as f: long_description = f.read() classifiers = [ 'Development Status :: 4 - Beta', 'I...
from setuptools import setup from sys import version if version < '2.6.0': raise Exception("This module doesn't support any version less than 2.6") import sys sys.path.append("./test") with open('README.rst', 'r') as f: long_description = f.read() classifiers = [ 'Development Status :: 4 - Beta', 'I...
bsd-3-clause
Python
f9172ef83dfc96a29480e306de2d1219dd020dd6
add numpy dependencies
menpo/landmarkerio-server,jabooth/landmarkerio-server,jabooth/landmarkerio-server,menpo/landmarkerio-server
setup.py
setup.py
from setuptools import setup from os.path import join setup(name='landmarkerio-server', version='0.0.7', description='Menpo-based server for www.landmarker.io', author='James Booth', author_email='james.booth08@imperial.ac.uk', url='https://github.com/menpo/landmarkerio-server/', cl...
from setuptools import setup from os.path import join setup(name='landmarkerio-server', version='0.0.7', description='Menpo-based server for www.landmarker.io', author='James Booth', author_email='james.booth08@imperial.ac.uk', url='https://github.com/menpo/landmarkerio-server/', cl...
bsd-3-clause
Python
48a0c13cf38fd50927dbb110f56954e2567859c6
Revert "different pippery"
shellphish/driller
setup.py
setup.py
from distutils.core import setup import subprocess TRACER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/tracer.git#egg=tracer' FUZZER_URL = 'git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer' if subprocess.call(['pip', 'install', TRACER_URL]) != 0: raise LibError("Unable to install tracer") if s...
from distutils.core import setup import subprocess import pip r = pip.req.RequirementSet(pip.locations.build_prefix, pip.locations.src_prefix, download_dir=None) r.add_requirement(pip.req.InstallRequirement.from_line('git+ssh://git@git.seclab.cs.ucsb.edu:/cgc/fuzzer.git#egg=fuzzer')) r.add_requirement(pip.req.InstallR...
bsd-2-clause
Python
f6ab67e9d1d4974e16392cfadf811e0f2504287f
change version to 1.0
CartoDB/carto-python,CartoDB/cartodb-python
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() with open('test_requirements.txt') as f: test_required = f.read().splitlines() setup(name="carto", author="Daniel Carrión", author_email="daniel@carto.com", description=...
# -*- coding: utf-8 -*- from setuptools import setup with open('requirements.txt') as f: required = f.read().splitlines() with open('test_requirements.txt') as f: test_required = f.read().splitlines() setup(name="carto", author="Daniel Carrión", author_email="daniel@carto.com", description=...
bsd-3-clause
Python
5c802412e04f4548c81761000501d194a7c951c2
bump version
benwbooth/quick-clojure
setup.py
setup.py
''' quick ------------------- Run clojure scripts and lein commands quickly using a persistent nREPL session. Links ````` * `development version <https://github.com/benwbooth/quick-clojure>`_ ''' import os from setuptools import setup, find_packages setup(name="quick-clojure", version=...
''' quick ------------------- Run clojure scripts and lein commands quickly using a persistent nREPL session. Links ````` * `development version <https://github.com/benwbooth/quick-clojure>`_ ''' import os from setuptools import setup, find_packages setup(name="quick-clojure", version=...
epl-1.0
Python
f2196d29208c4f3df0905227025eb36d5ea60ce6
Bump version to 2015.12.29
bbayles/vod_metadata
setup.py
setup.py
from setuptools import setup, find_packages import sys long_description = ( "This project contains a library and tools for manipulating and " "generating metadata files that conform to the CableLabs VOD Metada 1.1 " "specification" ) # Install requires configparser for Python 2.x if sys.version_info[0] < ...
from setuptools import setup, find_packages import sys long_description = ( "This project contains a library and tools for manipulating and " "generating metadata files that conform to the CableLabs VOD Metada 1.1 " "specification" ) # Install requires configparser for Python 2.x if sys.version_info[0] < ...
mit
Python
f46b364d78ece19752535ec3882158901fe78649
prepare next release
genouest/biomaj,horkko/biomaj-postgres,horkko/biomaj,markiskander/biomaj,markiskander/biomaj,horkko/biomaj,genouest/biomaj,horkko/biomaj-postgres
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'BioMAJ', 'author': 'Olivier Sallou', 'url': 'http://biomaj.genouest.org', 'download_url': 'http://biomaj.genouest.org', 'author_email': 'olivier.sallou@irisa.fr',...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'BioMAJ', 'author': 'Olivier Sallou', 'url': 'http://biomaj.genouest.org', 'download_url': 'http://biomaj.genouest.org', 'author_email': 'olivier.sallou@irisa.fr',...
agpl-3.0
Python
b417db7cf6f06c74436733590ef15b27f912ed33
Add entry point to setup script
Commonists/Grokapi
setup.py
setup.py
#!/usr/bin/python # -*- coding: latin-1 -*- """Setup script.""" try: from setuptools import setup except ImportError: from distutils.core import setup try: import grokapi version = grokapi.__version__ except ImportError: version = 'Undefined' with open('requirements.txt') as requirements_file: ...
#!/usr/bin/python # -*- coding: latin-1 -*- """Setup script.""" try: from setuptools import setup except ImportError: from distutils.core import setup try: import grokapi version = grokapi.__version__ except ImportError: version = 'Undefined' with open('requirements.txt') as requirements_file: ...
mit
Python
f9947459c6c7330f02dd1f6c0fb59800289beca6
use a pep 440 compatible version number
anfema/cleanerversion,anfema/cleanerversion,anfema/cleanerversion
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages """ Documentation can be found at https://docs.python.org/2/distutils/index.html, but usually you only need to do the following steps to publish a new package version to PyPI:: # Update the version tag in this file (setup.py) python setup.py re...
#!/usr/bin/env python from setuptools import setup, find_packages """ Documentation can be found at https://docs.python.org/2/distutils/index.html, but usually you only need to do the following steps to publish a new package version to PyPI:: # Update the version tag in this file (setup.py) python setup.py re...
apache-2.0
Python
65ba164f7b2cf3256177dbf5a8e2b3f8796d4920
Use the correct name in setup.py
thecut/thecut-authorship
setup.py
setup.py
from setuptools import setup, find_packages from version import get_git_version setup(name='thecut-authorship', author='The Cut', author_email='development@thecut.net.au', url='http://projects.thecut.net.au/projects/thecut-authorship', namespace_packages=['thecut'], version=get_git_version(), packa...
from setuptools import setup, find_packages from version import get_git_version setup(name='core', author='The Cut', author_email='development@thecut.net.au', url='http://projects.thecut.net.au/projects/thecut-authorship', namespace_packages=['thecut'], version=get_git_version(), packages=find_pack...
apache-2.0
Python
83a5bf4152da781da2e86b1bc5bda72aeb87bc6d
Update list trove classifiers
jaap3/django-richtextfield,jaap3/django-richtextfield
setup.py
setup.py
import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup version = '1.4.1.dev0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print("You probably want to also tag the version now:") print(" git tag -a %s -m ...
import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup version = '1.4.1.dev0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') print("You probably want to also tag the version now:") print(" git tag -a %s -m ...
mit
Python
59c665f27ccbb8fc07d3a2a23b161be5c732562f
bump version
BrianGallew/bacula_configuration
setup.py
setup.py
#! /usr/bin/env python import ez_setup ez_setup.use_setuptools() import os import glob from setuptools import setup, find_packages NAME = 'bacula_configuration' VERSION = '0.92' WEBSITE = 'http://gallew.org/bacula_configuration' LICENSE = 'GPLv3 or later' DESCRIPTION = 'Bacula configuration management tool' AUTHOR =...
#! /usr/bin/env python import ez_setup ez_setup.use_setuptools() import os import glob from setuptools import setup, find_packages NAME = 'bacula_configuration' VERSION = '0.91' WEBSITE = 'http://gallew.org/bacula_configuration' LICENSE = 'GPLv3 or later' DESCRIPTION = 'Bacula configuration management tool' AUTHOR =...
bsd-3-clause
Python
d286ce93d0394e3bd626aa12c4016527c4306a45
swap out .rst readme for .md one.
gdawg/papaltv
setup.py
setup.py
from setuptools import setup, find_packages import subprocess with open('README.md') as file: long_description = file.read() setup(name='papaltv', version='0.2.3', description='Interactive shell Apple Tv controller', long_description=long_description, author='Andrew Griffiths', autho...
from setuptools import setup, find_packages import subprocess try: subprocess.check_call('pandoc --from=markdown README.md --to=rst --output=README.rst',shell=True) except Exception, e: print '*** NOTE: this package uses pandoc to generate rst documentation ' print 'from the original markdown and thi...
mit
Python
93794e7596a11c3e82ae89cf7ae8699bf456495e
Fix setup.py packaging
alerta/python-alerta-client,alerta/python-alerta-client,alerta/python-alerta
setup.py
setup.py
#!/usr/bin/env python import setuptools with open('VERSION') as f: version = f.read().strip() with open('README.md') as f: readme = f.read() setuptools.setup( name="alerta", version=version, description="Alerta unified command-line tool and SDK", long_description=readme, url="http://gith...
#!/usr/bin/env python import setuptools with open('VERSION') as f: version = f.read().strip() with open('README.md') as f: readme = f.read() setuptools.setup( name="alerta", version=version, description="Alerta unified command-line tool and SDK", long_description=readme, license="MIT", ...
apache-2.0
Python
b52ec0805cff336f3c2e132766bf3b54b4ac2471
Update setup.py
dyer234/pywinsparkle,dyer234/pywinsparkle
setup.py
setup.py
from setuptools import setup, Distribution from pypandoc import convert_file class BinaryDistribution(Distribution): def has_ext_modules(foo): return True #: Converts the Markdown README in the RST format that PyPi expects. long_description = convert_file('README.md', 'rst') setup(name='pywinsparkle', ...
from setuptools import setup, Distribution #from pypandoc import convert_file class BinaryDistribution(Distribution): def has_ext_modules(foo): return True #: Converts the Markdown README in the RST format that PyPi expects. #long_description = convert_file('README.md', 'rst') setup(name='pywinsparkle'...
mit
Python
4106a8ae6d9779ae84ec4036cced05ca0f510ace
fix setup.py
wecatch/app-turbo
setup.py
setup.py
from setuptools import setup, find_packages import sys import os version = __import__('turbo').version install_requires = [ ] for k in ['pymongo', 'requests', 'redis', 'docopt', 'jinja2']: try: _m = __import__(k) except ImportError: if k == 'pymongo': k = 'pymongo>=3.2' ...
from setuptools import setup, find_packages import sys import os version = __import__('turbo').version install_requires = [ ] for k in ['pymongo', 'requests', 'redis', 'docopt', 'jinja2']: try: _m = __import__(k) except ImportError: if k == 'pymongo': k = 'pymongo>=3.2' ...
apache-2.0
Python
c26019ee038ee90c7cd39e3d19790ecb3fca75a3
fix __version__ in setup.py
cgarciae/tfinterface,cgarciae/tfinterface
setup.py
setup.py
import os from setuptools import setup from pip.req import parse_requirements from tfinterface import __version__ # parse requirements reqs = [str(r.req) for r in parse_requirements("requirements.txt", session=False)] # Utility function to read the README file. # Used for the long_description. It's nice, because no...
import os from setuptools import setup from pip.req import parse_requirements from tfinterface import __version__ # parse requirements reqs = [str(r.req) for r in parse_requirements("requirements.txt", session=False)] # Utility function to read the README file. # Used for the long_description. It's nice, because no...
mit
Python
852ea076e7fc04446aa58650b293a48d2a4089ba
Bump version to 0.2.0
celeryclub/bustime
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'bustime', version = '0.2.0', packages = find_packages(), description = 'SDK for the MTA Bus Time API', install_requires = ['requests>=2.0'], author = 'Steve Davis', author_email = 'steve@celery.club', url = 'https://github.com/celeryclub/bustim...
from setuptools import setup, find_packages setup( name = 'bustime', version = '0.1', packages = find_packages(), description = 'SDK for the MTA Bus Time API', install_requires = ['requests>=2.0'], author = 'Steve Davis', author_email = 'steve@celery.club', url = 'https://github.com/celeryclub/bustime'...
bsd-2-clause
Python
cc860538eef75b527a209cfc85e24754c7468f5d
Add setuptools-git for setup.
ployground/ploy_ezjail
setup.py
setup.py
from setuptools import setup version = "0.1" setup( version=version, description="A plugin for mr.awsome providing support for FreeBSD jails using ezjail.", name="mr.awsome.ezjail", author='Florian Schulze', author_email='florian.schulze@gmx.net', url='http://github.com/fschulze/mr.awsome.ezja...
from setuptools import setup version = "0.1" setup( version=version, description="A plugin for mr.awsome providing support for FreeBSD jails using ezjail.", name="mr.awsome.ezjail", author='Florian Schulze', author_email='florian.schulze@gmx.net', url='http://github.com/fschulze/mr.awsome.ezja...
bsd-3-clause
Python
e588d98f451c3cbfbdd3954b5784e8d8f15a1b9d
remove dev in setup.py
wakita181009/slack-api-utils
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import unicode_literals """ A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # To use a consistent encoding from os import path from codecs import open # Always prefer setuptools over dist...
# -*- coding: utf-8 -*- from __future__ import unicode_literals """ A setuptools based setup module. See: https://packaging.python.org/en/latest/distributing.html https://github.com/pypa/sampleproject """ # To use a consistent encoding from os import path from codecs import open # Always prefer setuptools over dist...
mit
Python
4f6d177bac356062901d2c699ff6b96b382a3fc5
Change command names
fkmclane/MCP,fkmclane/MCP,fkmclane/MCP,fkmclane/MCP
setup.py
setup.py
#!/usr/bin/env python3 from distutils.core import setup from distutils.command.install import install from distutils import dir_util from distutils import file_util import getpass import os import shutil import subprocess import config def setupUser(): import armaadmin.users print() print('Please set up the admin...
#!/usr/bin/env python3 from distutils.core import setup from distutils.command.install import install from distutils import dir_util from distutils import file_util import getpass import os import shutil import subprocess import config def setupUser(): import armaadmin.users print() print('Please set up the admin...
mit
Python
f411e874bcb33cd9f7f23a3abc23830e3728ccf5
bump to 0.2.2
enricobacis/wos
setup.py
setup.py
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] suds_install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version=...
from setuptools import setup from sys import version_info with open('README.rst') as README: long_description = README.read() long_description = long_description[long_description.index('Description'):] suds_install_requires = ['suds'] if version_info < (3,0) else ['suds-py3'] setup(name='wos', version=...
mit
Python
c609cc937ab91a634b92a38b78ab86e323deaaf1
Fix setup.py.
TyVik/YaDiskClient
setup.py
setup.py
#-*- coding: utf-8 -*- from setuptools import setup, find_packages import YaDiskClient setup( name='YaDiskClient', version=YaDiskClient.__version__, include_package_data=True, py_modules=['YaDiskClient'], url='https://github.com/TyVik/YaDiskClient', license='MIT', author='TyVik', author...
#-*- coding: utf-8 -*- from setuptools import setup, find_packages import YaDiskClient setup( name='YaDiskClient', version=YaDiskClient.__version__, include_package_data=True, py_modules=['YaDiskClient'], url='https://github.com/TyVik/YaDiskClient', license='MIT', author='TyVik', author...
mit
Python
39ab58ed009568a3eca0fd168841d5437ee6f7d0
Corrige dependencias do setup.py e numero da versao do Python
mstuttgart/pysigep,mstuttgart/python-sigep
setup.py
setup.py
#!/usr/bin/env python import os from codecs import open from setuptools import find_packages, setup version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pysigep', '__version__.py') about = {} with open(version_path, 'r') as f: exec(f.re...
#!/usr/bin/env python import os from codecs import open from setuptools import find_packages, setup version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pysigep', '__version__.py') about = {} with open(version_path, 'r') as f: exec(f.re...
mit
Python
544754701e0cd7243e7a7cfc5245bdb91b73d2c5
Fix a bug in setup.py
cartoonist/pystream-protobuf
setup.py
setup.py
""" setup.py """ import sys import subprocess try: from setuptools import setup except ImportError: from distutils.core import setup PYPI_DISTNAME = "pystream-protobuf" PROC = subprocess.run(["git", "log", "-n1", "--pretty=%h"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) if PROC....
""" setup.py """ import sys import subprocess try: from setuptools import setup except ImportError: from distutils.core import setup PROC = subprocess.run(["git", "log", "-n1", "--pretty=%h"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) if PROC.returncode != 0: print("ERROR: wh...
mit
Python
87831602727e71f1969499e84aca50385eb9b9ed
Fix bad syntax
firegrass/ravendb-py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages import os import platform # Conditional include unittest2 for versions of python < 2.7 tests_require = ['nose', 'pyyaml'] platform_version = list(platform.python_version_tuple())[0:2] if platform_version[0] != '3' and platform_version != ['2', '7']: ...
#!/usr/bin/env python from setuptools import setup, find_packages import os import platform # Conditional include unittest2 for versions of python < 2.7 tests_require = ['nose', 'pyyaml'] platform_version = list(platform.python_version_tuple())[0:2] if platform_version[0] != '3' and platform_version != ['2', '7']: ...
mit
Python
93dc1eaa750e6dec8eedad2353fdabba19c829b1
Bump version (2.0.1).
renstrom/python-jump-consistent-hash,renstrom/python-jump-consistent-hash,renstrom/python-jump-consistent-hash
setup.py
setup.py
# -*- coding: utf-8 -*- """ Jump Consistent Hash -------------------- Python implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Requires Python 2.6-2.7 or 3.2+. Usage ````` .. code:: python >>> import jump >>> jump.hash(256, 1024) 520 Or if you want to use the C++ e...
# -*- coding: utf-8 -*- """ Jump Consistent Hash -------------------- Python implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Requires Python 2.6-2.7 or 3.2+. Usage ````` .. code:: python >>> import jump >>> jump.hash(256, 1024) 520 Or if you want to use the C++ e...
mit
Python
026a7d5649388e4d57eeabed8f36ecdf6f5bf0d3
fix aircv dep version
NetEase/airtest,NetEase/airtest,NetEase/airtest,NetEase/airtest,NetEase/airtest
setup.py
setup.py
# coding: utf-8 # import sys sys.path.insert(0,'/usr/lib/pyshared/python2.7') from setuptools import setup, find_packages from airtest import __version__ long_description = '' try: with open('README.md') as f: long_description = f.read() except: pass setup( name='airtest', version=__ver...
# coding: utf-8 # import sys sys.path.insert(0,'/usr/lib/pyshared/python2.7') from setuptools import setup, find_packages from airtest import __version__ long_description = '' try: with open('README.md') as f: long_description = f.read() except: pass setup( name='airtest', version=__ver...
bsd-3-clause
Python
d84d84c583db53759129216747da7b2e81d59582
Bump version to 0.0.2
freshlimestudio/djlime
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup def fullsplit(path, result=None): """ Split a pathname into components (the opposite of os....
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup def fullsplit(path, result=None): """ Split a pathname into components (the opposite of os....
bsd-3-clause
Python
8291758ff2fc5266e28450c29b80d509a785641c
Update setup.py.
deconst/preparer-sphinx,ktbartholomew/preparer-sphinx,ktbartholomew/preparer-sphinx,deconst/preparer-sphinx
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read().replace('.. :changelog:', ...
apache-2.0
Python
46182e3646f9932a6a39e95fe4f289dd0c62325b
remove unnecessary requirements list
michalwiacek/simplegenerator
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup requirements = [i.strip() for i in open("requirements.txt").readlines()] config = { 'name': 'SimpleGenerator', 'description': 'Simple string (password) generator scrip...
#!/usr/bin/env python # -*- coding: utf-8 -*- try: from setuptools import setup except ImportError: from distutils.core import setup requirements = ['click==6.2', 'pyparsing==2.0.7', 'ecdsa==0.13', 'PyYAML==3.11', 'pycrypto==2.6.1', ...
mit
Python
268fa37807fed07739d4e81eab7d1fbcc5842db9
Remove long_description from setup.py
nimbis/cmsplugin-newsplus,nimbis/cmsplugin-newsplus
setup.py
setup.py
#!/usr/bin/env python from setuptools import find_packages, setup # setup the project setup( name='cmsplugin-newsplus', version='1.0.0', description='Simple news plugin for django-cms 3.x', author='Nimbis Services, Inc.', author_email='devops@nimbisservices.com', url='https://github.com/nimbis...
#!/usr/bin/env python from setuptools import find_packages, setup # setup the project setup( name='cmsplugin-newsplus', version='1.0.0', description='Simple news plugin for django-cms 3.x', long_description=open('README.rst').read(), author='Nimbis Services, Inc.', author_email='devops@nimbiss...
bsd-2-clause
Python
66785400dee22d97202413d23812c897266ce990
remove marge marks
fiduswriter/fiduswriter-books,fiduswriter/fiduswriter-books
setup.py
setup.py
import os from glob import glob from setuptools import find_namespace_packages, setup from setuptools.command.build_py import build_py as _build_py # From https://github.com/pypa/setuptools/pull/1574 class build_py(_build_py): def find_package_modules(self, package, package_dir): modules = super().find_pac...
import os from glob import glob from setuptools import find_namespace_packages, setup from setuptools.command.build_py import build_py as _build_py # From https://github.com/pypa/setuptools/pull/1574 class build_py(_build_py): def find_package_modules(self, package, package_dir): modules = super().find_pac...
agpl-3.0
Python
efa88a14e21455bbe2aa4d0dd4944472cfab1261
fix python3 'pip install' bug
nficano/gendo
setup.py
setup.py
#!/usr/bin/python # -*- coding: utf-8 -*- from __future__ import absolute_import from setuptools import setup, find_packages try: from itertools import ifilter except: ifilter = filter from os import path from ast import parse import pip requirements = pip.req.parse_requirements("requirements.txt", ...
#!/usr/bin/python # -*- coding: utf-8 -*- from __future__ import absolute_import from setuptools import setup, find_packages from itertools import ifilter from os import path from ast import parse import pip requirements = pip.req.parse_requirements("requirements.txt", session=...
mit
Python
decfd45d96ef3ed83acfa7d357de72e3e9931ee2
Fix ECPy dependency version
LedgerHQ/blue-loader-python
setup.py
setup.py
#from distribute_setup import use_setuptools #use_setuptools() from setuptools import setup, find_packages from os.path import dirname, join import os here = dirname(__file__) setup( name='ledgerblue', version='0.1.19', author='Ledger', author_email='hello@ledger.fr', description='Python library t...
#from distribute_setup import use_setuptools #use_setuptools() from setuptools import setup, find_packages from os.path import dirname, join import os here = dirname(__file__) setup( name='ledgerblue', version='0.1.18', author='Ledger', author_email='hello@ledger.fr', description='Python library t...
apache-2.0
Python
84c9bdcb388f6fd77cf58ccdcd6b9d298017389a
order setup
pryvkin10x/tsne,pryvkin10x/tsne,pryvkin10x/tsne
setup.py
setup.py
# encoding: utf-8 import numpy from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import sys DESCRIPTION = 'TSNE implementations for python' if sys.platform == 'darwin': ext_modules = [Extension( name='bh_sne', s...
# encoding: utf-8 import numpy from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import sys DESCRIPTION = 'TSNE implementations for python' if sys.platform == 'darwin': ext_modules = [Extension( name='bh_sne', s...
bsd-3-clause
Python
2d18428d1774e4a15840462ad512e15e2a199c3d
add setuptools
louiejtaylor/pyViKO,louiejtaylor/pyViKO
setup.py
setup.py
import setuptools from distutils.core import setup #with open("README.md", "r") as fh: # long_description = fh.read() setup(name='pyviko', version='1.1.0.6', description='Design knockout viruses in Python', author='LJ Taylor', author_email='l'+'taylor'+str(3+4)+'@'+'tu'+'lane.edu', url='https://github.com/lo...
from distutils.core import setup #with open("README.md", "r") as fh: # long_description = fh.read() setup(name='pyviko', version='1.1.0.6', description='Design knockout viruses in Python', author='LJ Taylor', author_email='l'+'taylor'+str(3+4)+'@'+'tu'+'lane.edu', url='https://github.com/louiejtaylor/pyViKO'...
mit
Python
01f33d9760d68e79913b8eee0174e8dfc46fbae7
remove the msl-loadlib version number in the dependency
MSLNZ/msl-equipment
setup.py
setup.py
import os import re import sys from setuptools import setup, find_packages sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), 'docs')) import docs_commands def read(filename): with open(filename) as fp: text = fp.read() return text def fetch_init(key): # open the __init...
import os import re import sys from setuptools import setup, find_packages sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), 'docs')) import docs_commands def read(filename): with open(filename) as fp: text = fp.read() return text def fetch_init(key): # open the __init...
mit
Python
879915958ed8be4b57e2d53ca744a97b3429dd5e
Update setup.py
cadop/pyCGM
setup.py
setup.py
import sys sys.path.append('./pyCGM_Single') # TODO update to pycgm when fixed from _about import __version__ import setuptools with open("README.md", "r",encoding="utf8") as fh: long_description = fh.read() setuptools.setup( name="pyCGM", version= __version__, author="", # Many author_email="cad...
import sys sys.path.append('./pyCGM_Single') # TODO update to pycgm when fixed from _about import __version__ import setuptools with open("README.md", "r",encoding="utf8") as fh: long_description = fh.read() setuptools.setup( name="pyCGM", version= __version__, author="", # Many author_email="cad...
mit
Python
c96dfa0387380da023f72b77b2d159e400d2f491
Update to the latest version of wptrunner.
ypwalter/fxos-certsuite,mozilla-b2g/fxos-certsuite,ShakoHo/fxos-certsuite,Conjuror/fxos-certsuite,ShakoHo/fxos-certsuite,ypwalter/fxos-certsuite,oouyang/fxos-certsuite,ypwalter/fxos-certsuite,mozilla-b2g/fxos-certsuite,cr/fxos-certsuite,ypwalter/fxos-certsuite,oouyang/fxos-certsuite,askeing/fxos-certsuite,mozilla-b2g/f...
setup.py
setup.py
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup PACKAGE_VERSION = '0.1' deps = ['fxos-appgen>=0.2.7', 'marionette_client>=0.7.1.1'...
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup PACKAGE_VERSION = '0.1' deps = ['fxos-appgen>=0.2.7', 'marionette_client>=0.7.1.1'...
mpl-2.0
Python
23301d890239db74ebd754175c11314c4d8a91ec
Remove the pbr version requirements in setup.py
vmthunder/volt
setup.py
setup.py
#!/usr/bin/env python # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
#!/usr/bin/env python # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
apache-2.0
Python
50a89b33201e1ceec8207b705b3829a72bca51c4
Bump to version 10
krieghan/kobold_python,krieghan/kobold_python
setup.py
setup.py
from setuptools import setup, find_packages setup( name='kobold', version='10', packages=find_packages(), install_requires=['python-dateutil==2.2'], tests_require=['nosetests'], )
from setuptools import setup, find_packages setup( name='kobold', version='9', packages=find_packages(), install_requires=['python-dateutil==2.2'], tests_require=['nosetests'], )
mit
Python
974f8211b20020c29ed893b0541a50ec1d3ba79a
Add secret key to test
discolabs/django-shopify-auth,discolabs/django-shopify-auth
test.py
test.py
import sys import django from django.conf import settings if django.VERSION >= (2, 0, 0): middleware_settings_key = "MIDDLEWARE" else: middleware_settings_key = 'MIDDLEWARE_CLASSES' configuration = { 'DEBUG': True, 'DATABASES': { 'default': { 'ENGINE': 'django.db.backends.sqlite3',...
import sys import django from django.conf import settings if django.VERSION >= (2, 0, 0): middleware_settings_key = "MIDDLEWARE" else: middleware_settings_key = 'MIDDLEWARE_CLASSES' configuration = { 'DEBUG': True, 'DATABASES': { 'default': { 'ENGINE': 'django.db.backends.sqlite3',...
mit
Python
64a069447b81cbfd6deb8cc753226fb8462ee4a2
test 5
Niharika29/database-reports
test.py
test.py
import mwclient import MySQLdb from config import * # Test stuff # site = mwclient.Site('en.wikipedia.org') # page = site.Pages['Battle of Trenton'] # text = page.text() # print 'Trenton thingy: ', text.encode('utf-8') db = MySQLdb.connect( host = credentials['host'], user = credentials['user'], passwd = credentials[...
import mwclient import MySQLdb from config import * # Test stuff # site = mwclient.Site('en.wikipedia.org') # page = site.Pages['Battle of Trenton'] # text = page.text() # print 'Trenton thingy: ', text.encode('utf-8') db = MySQLdb.connect( host = credentials['host'], user = credentials['user'], passwd = credentials[...
lgpl-2.1
Python
7f18350b161c03e95afe9064d79236afc82f26b2
Update trove classifiers
TangledWeb/tangled.sqlalchemy
setup.py
setup.py
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1a2.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
from setuptools import setup setup( name='tangled.sqlalchemy', version='0.1a2.dev0', description='Tangled SQLAlchemy integration', long_description=open('README.rst').read(), url='http://tangledframework.org/', author='Wyatt Baldwin', author_email='self@wyattbaldwin.com', packages=[ ...
mit
Python
90e144154f4b29ef0bd81c54546325fc62c7b649
set the version to 2.1.0
xgfone/xutils,xgfone/pycom
setup.py
setup.py
import os.path try: from setuptools import setup except ImportError: from distutils.core import setup ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) README_FILE = os.path.join(ROOT_DIR, "README.rst") with open(README_FILE) as f: long_description = f.read() setup( name="xutils", version="2...
import os.path try: from setuptools import setup except ImportError: from distutils.core import setup ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) README_FILE = os.path.join(ROOT_DIR, "README.rst") with open(README_FILE) as f: long_description = f.read() setup( name="xutils", version="2...
mit
Python
27655d233b8d45e97a713fd6035fd946aa142e1f
Change the version number
praekeltfoundation/seed-xylem,praekeltfoundation/seed-xylem
setup.py
setup.py
from setuptools import setup, find_packages setup( name="seed.xylem", version='0.0.3', url='http://github.com/praekeltfoundation/seed-xylem', license='MIT', description="A distributed service for managing container databases and shared storage", author='Colin Alston', author_email='colin@p...
from setuptools import setup, find_packages setup( name="seed.xylem", version='0.0.2', url='http://github.com/praekeltfoundation/seed-xylem', license='MIT', description="A distributed service for managing container databases and shared storage", author='Colin Alston', author_email='colin@p...
mit
Python
effa51d6752775b5dcd1b7c3afd7423414484b2d
bump version number
ping13/heospy
setup.py
setup.py
from setuptools import setup, find_packages setup( name='heospy', version='0.1.5', author='Stephan Heuel', author_email='mail@ping13.net', packages=find_packages(), entry_points = { 'console_scripts': ['heos_player=heospy.heos_player:main'], }, url='http://pypi.python.org/pypi/h...
from setuptools import setup, find_packages setup( name='heospy', version='0.1.4', author='Stephan Heuel', author_email='mail@ping13.net', packages=find_packages(), entry_points = { 'console_scripts': ['heos_player=heospy.heos_player:main'], }, url='http://pypi.python.org/pypi/h...
apache-2.0
Python
bfb0416df3547a7d2aa3dd4e0fc791ff5f7fd97e
Fix setup.py information
K-Phoen/python-fitparse
setup.py
setup.py
from distutils.core import setup import sys import fitparse requires = None if sys.version_info < (2, 7): requires = ['argparse'] setup( name='fitparse', version=fitparse.__version__, description='Python library to parse ANT/Garmin .FIT files', author='David Cooper, Kévin Gomez', author_ema...
from distutils.core import setup import sys import fitparse requires = None if sys.version_info < (2, 7): requires = ['argparse'] setup( name='fitparse', version=fitparse.__version__, description='Python library to parse ANT/Garmin .FIT files', author='David Cooper', author_email='dave@kupe...
isc
Python
2fdce95486934464f1b4bb4e102492af206e8942
Bump version number. Semi-important bugfix.
startling/cytoplasm
setup.py
setup.py
from distutils.core import setup setup( name = "Cytoplasm", version = "0.06.2", author = "startling", author_email = "tdixon51793@gmail.com", url = "http://cytoplasm.somethingsido.com", keywords = ["blogging", "site compiler", "blog compiler"], description = "A static, blog-aware website ge...
from distutils.core import setup setup( name = "Cytoplasm", version = "0.06.1", author = "startling", author_email = "tdixon51793@gmail.com", url = "http://cytoplasm.somethingsido.com", keywords = ["blogging", "site compiler", "blog compiler"], description = "A static, blog-aware website ge...
mit
Python
2fcde65de436ace5424ff2eb5893c6eb5cd07002
update setup.py to conform better to PyPi standards
chrander/pygameday
setup.py
setup.py
# from distutils.core import setup import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name = 'pygameday', version = '0.3.4', author = 'Chris Anderson', author_email = 'christian.c.anderson@gmail.com', packages = setuptools.find_packages(), ...
from distutils.core import setup setup( name = 'pygameday', version = '0.3', author = 'Chris Anderson', author_email = 'christian.c.anderson@gmail.com', packages = ['pygameday'], url = 'https://github.com/chrander/pygameday', license='LICENSE.txt', description = 'Module for scraping, pa...
mit
Python
faf475d93c8d357840959820627aedaaacfe29c8
fix for readthedocs
Juanlu001/xlwings,alekz112/xlwings,Juanlu001/xlwings,gdementen/xlwings,ston380/xlwings,gdementen/xlwings
setup.py
setup.py
import os import sys import re from distutils.core import setup # long_description: Take from README file with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() # Version Number with open(os.path.join(os.path.dirname(__file__), 'xlwings', '__init__.py')) as f: version = re.co...
import os import sys import re from distutils.core import setup # long_description: Take from README file with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() # Version Number with open(os.path.join(os.path.dirname(__file__), 'xlwings', '__init__.py')) as f: version = re.co...
apache-2.0
Python
aa96f3254241c03f244bdc3ce064b11078400918
disable yapf for setup.py
hellock/icrawler
setup.py
setup.py
from setuptools import find_packages, setup def readme(): with open('README.rst') as f: return f.read() setup( name='icrawler', version='0.3.0', description='A mini framework of image crawlers', long_description=readme(), keywords='image crawler spider', packages=find_packages(),...
from setuptools import find_packages, setup def readme(): with open('README.rst') as f: return f.read() setup( name='icrawler', version='0.3.0', description='A mini framework of image crawlers', long_description=readme(), keywords='image crawler spider', packages=find_packages(),...
mit
Python