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
caf0e4b9166a0108e8545ec27610215c0f0245ce
add classifiers to setup.py
anossov/ppmongo
setup.py
setup.py
from setuptools import setup import codecs def readme(fn): with codecs.open(fn, encoding='utf-8') as f: return unicode(f.read()) setup(name='ppmongo', version='0.1.0', packages=[ 'ppmongo', ], scripts=[ 'bin/ppmongo', ], author='Pavel Anossov', ...
from setuptools import setup import codecs def readme(fn): with codecs.open(fn, encoding='utf-8') as f: return unicode(f.read()) setup(name='ppmongo', version='0.1.0', packages=[ 'ppmongo', ], scripts=[ 'bin/ppmongo', ], author='Pavel Anossov', ...
bsd-2-clause
Python
d6aaf2b8f37cee7a07b5907bda6f6350e7d9c129
Remove argparse and entry_points.
seanfisk/ecs,seanfisk/ecs
setup.py
setup.py
import os import sys from setuptools import setup, find_packages sys.path.append('.') from ecs import metadata def read(filename): with open(os.path.join(os.path.dirname(__file__), filename)) as f: return f.read() # See here for more options: # <http://pythonhosted.org/setuptools/setuptools.html> setu...
import os import sys from setuptools import setup, find_packages sys.path.append('.') from ecs import metadata def read(filename): with open(os.path.join(os.path.dirname(__file__), filename)) as f: return f.read() # define install_requires for specific Python versions python_version_specific_requires ...
mit
Python
40690fc6ad0126816270788f6cf334e3706db21e
Add raven to setup.py
kfdm/promgen,kfdm/promgen,kfdm/promgen,kfdm/promgen
setup.py
setup.py
from setuptools import find_packages, setup from promgen.version import __version__ setup( name='Promgen', author='Paul Traylor', packages=find_packages(exclude=['test']), version=__version__, classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended ...
from setuptools import find_packages, setup from promgen.version import __version__ setup( name='Promgen', author='Paul Traylor', packages=find_packages(exclude=['test']), version=__version__, classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended ...
mit
Python
48dc523d438425b2aae9820e835f535b8783d661
Add JavaScript files as package data.
eddieantonio/paperpal,eddieantonio/paperpal
setup.py
setup.py
from setuptools import setup, find_packages from paperpal import __version__ as version def slurp(filename): with open(filename) as opened_file: return opened_file.read() setup(name='paperpal', version=version, description='Paper management with Zotero', long_description=slurp('README...
from paperpal import __version__ as version def slurp(filename): with open(filename) as opened_file: return opened_file.read() from setuptools import setup setup(name='paperpal', version=version, description='Helper to export Zotero data', long_description=slurp('README.rst'), url...
apache-2.0
Python
dc4a3e7cb1d3d76ea600e4ce2b1e751273993d93
Add Py3 to setup tags
funkybob/antfarm
setup.py
setup.py
from setuptools import setup, find_packages setup( name='antfarm', version='0.0.1', description='An ultra-light-weight web framework', author='Curtis Maloney', author_email='curtis@tinbrain.net', url='http://github.com/funkybob/antfarm', keywords=['wsgi'], packages = find_packages(exclu...
from setuptools import setup, find_packages setup( name='antfarm', version='0.0.1', description='An ultra-light-weight web framework', author='Curtis Maloney', author_email='curtis@tinbrain.net', url='http://github.com/funkybob/antfarm', keywords=['wsgi'], packages = find_packages(exclu...
mit
Python
e05bf7b383573f14c58bbaaec3a975eb3dbb5a5b
Update setup.py, add exclude for test package (#554)
XKNX/xknx,XKNX/xknx
setup.py
setup.py
"""Setup for XKNX python package.""" from os import path from setuptools import find_packages, setup THIS_DIRECTORY = path.abspath(path.dirname(__file__)) with open(path.join(THIS_DIRECTORY, "README.md"), encoding="utf-8") as f: LONG_DESCRIPTION = f.read() VERSION = {} # pylint: disable=exec-used with open(path....
"""Setup for XKNX python package.""" from os import path from setuptools import find_packages, setup THIS_DIRECTORY = path.abspath(path.dirname(__file__)) with open(path.join(THIS_DIRECTORY, "README.md"), encoding="utf-8") as f: LONG_DESCRIPTION = f.read() VERSION = {} # pylint: disable=exec-used with open(path....
mit
Python
de494854e618d662ea78e1cb9abab4aa7047957d
bump mypy from 0.930 to 0.942
malwarefrank/dnfile
setup.py
setup.py
#!/usr/bin/env python """The setup script.""" from setuptools import setup, find_packages with open("README.rst") as readme_file: readme = readme_file.read() with open("HISTORY.rst") as history_file: history = history_file.read() requirements = ["pefile>=2019.4.18"] setup_requirements = [ "pytest-runn...
#!/usr/bin/env python """The setup script.""" from setuptools import setup, find_packages with open("README.rst") as readme_file: readme = readme_file.read() with open("HISTORY.rst") as history_file: history = history_file.read() requirements = ["pefile>=2019.4.18"] setup_requirements = [ "pytest-runn...
mit
Python
39d5186ad4930086e48151c6d2d7b14468aa2ac4
Update setup.py
ambitioninc/django-narrative,ambitioninc/django-narrative
setup.py
setup.py
from setuptools import setup setup( name='django-narrative', version='0.5.8', packages=[ 'narrative', 'narrative.batteries', 'narrative.migrations', 'narrative.management', 'narrative.management.commands', ], url='https://github.com/', description='Django...
from setuptools import setup setup( name='django-narrative', version='0.5.7.9', packages=[ 'narrative', 'narrative.batteries', 'narrative.migrations', 'narrative.management', 'narrative.management.commands', ], url='https://github.com/', description='Djan...
mit
Python
b9c8a68dd83f753997c562646bb9352a5e5b63f5
Fix model Article.last_modifid
invzhi/invzhi.me,invzhi/invzhi.me
mysite/article/models.py
mysite/article/models.py
from django.db import models class Tag(models.Model): name = models.CharField(max_length=10) def __str__(self): return self.name class Article(models.Model): title = models.CharField(max_length=50) tags = models.ManyToManyField(Tag) content = models.TextField() views = models.Posit...
from django.db import models class Tag(models.Model): name = models.CharField(max_length=10) def __str__(self): return self.name class Article(models.Model): title = models.CharField(max_length=50) tags = models.ManyToManyField(Tag) content = models.TextField() views = models.Posit...
bsd-3-clause
Python
a584fab6d94eac7d2362459254c375338bc91012
Increment release.
chevah/pocket-lint,chevah/pocket-lint
setup.py
setup.py
#!/usr/bin/python import subprocess from distutils.core import setup from distutils.command.sdist import sdist class SignedSDistCommand(sdist): """Sign the source archive with a detached signature.""" description = "Sign the source archive after it is generated." def run(self): sdist.run(self)...
#!/usr/bin/python import subprocess from distutils.core import setup from distutils.command.sdist import sdist class SignedSDistCommand(sdist): """Sign the source archive with a detached signature.""" description = "Sign the source archive after it is generated." def run(self): sdist.run(self)...
mit
Python
0f193ca138b1a202ea3a4e54585c05410ae7263d
increase timeout
contactless/wirenboard,contactless/wirenboard,contactless/wirenboard,contactless/wirenboard,contactless/wirenboard,contactless/wirenboard,contactless/wirenboard
examples/test_suite/common/wbmqtt.py
examples/test_suite/common/wbmqtt.py
#!/usr/bin/python import mosquitto import time import sys from collections import defaultdict VALUES_MASK = "/devices/+/controls/+" class WBMQTT(object): def __init__(self): self.control_values = defaultdict(lambda: None) self.client = mosquitto.Mosquitto() self.client.connect('localhost...
#!/usr/bin/python import mosquitto import time import sys from collections import defaultdict VALUES_MASK = "/devices/+/controls/+" class WBMQTT(object): def __init__(self): self.control_values = defaultdict(lambda: None) self.client = mosquitto.Mosquitto() self.client.connect('localhost...
mit
Python
72d8d1a491d2c778b6febca25d20d66c3455765a
add dependency on pythonlsf
genome/flow-core,genome/flow-core,genome/flow-core
setup.py
setup.py
import distribute_setup distribute_setup.use_setuptools() from setuptools import setup, find_packages entry_points = ''' [flow.protocol.message_classes] submit_command = flow.protocol._messages.command_line:SubmitCommandLineMessage ''' setup( name = 'flow', version = '0.1', packages = find_pa...
import distribute_setup distribute_setup.use_setuptools() from setuptools import setup, find_packages entry_points = ''' [flow.protocol.message_classes] submit_command = flow.protocol._messages.command_line:SubmitCommandLineMessage ''' setup( name = 'flow', version = '0.1', packages = find_pa...
agpl-3.0
Python
657d7bcf177a86170d776511769712a344e010b1
Update setup.py and change version to 0.1.0
hallazzang/asyncio-throttle
setup.py
setup.py
import os from setuptools import setup def get_long_description(path): path = os.path.join(os.path.dirname(os.path.abspath(__file__)), path) with open(path) as f: return f.read() setup( name='asyncio-throttle', version='0.1.0', url='https://github.com/hallazzang/asyncio-throttle', lice...
from setuptools import setup """ ================ asyncio-throttle ================ |travis-ci| |pypi-version| |pypi-license| Simple, easy-to-use throttler for asyncio. Example ------- .. code:: python import time import random import asyncio from asyncio_throttle import Throttler async def ...
mit
Python
20d0f9dba2e6d193d53f2e0337304db5617ba411
Bump South version in setup.py - it's old!
khchine5/opal,khchine5/opal,khchine5/opal
setup.py
setup.py
import os import re from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) HERE = os.path.realpath(os.path.dirname(__file__)) VERSION_FILE = os.pat...
import os import re from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) HERE = os.path.realpath(os.path.dirname(__file__)) VERSION_FILE = os.pat...
agpl-3.0
Python
db815a76fbf67eda9121cb5940fc9eae528df5d5
Revise err msg.
uw-it-aca/myuw,uw-it-aca/myuw,uw-it-aca/myuw,uw-it-aca/myuw
myuw/dao/applications.py
myuw/dao/applications.py
import logging from uw_sdbmyuw import get_app_status from myuw.dao import get_userids from myuw.dao.pws import get_student_system_key_of_current_user logger = logging.getLogger(__name__) def get_applications(request): response = [] system_key = get_student_system_key_of_current_user(request) if system_ke...
import logging from uw_sdbmyuw import get_app_status from myuw.dao import get_userids from myuw.dao.pws import get_student_system_key_of_current_user logger = logging.getLogger(__name__) def get_applications(request): response = [] system_key = get_student_system_key_of_current_user(request) if system_ke...
apache-2.0
Python
41133c63eb7432d35a2b14ce8c9b58c0bac60eed
Bump version
treyhunner/django-email-log,treyhunner/django-email-log
setup.py
setup.py
from setuptools import setup, find_packages setup( name='django-email-log', version='0.1.0.post1', author='Trey Hunner', author_email='trey@treyhunner.com', description='Django email backend that logs all emails', long_description='\n\n'.join(( open('README.rst').read(), open('...
from setuptools import setup, find_packages setup( name='django-email-log', version='0.1.0', author='Trey Hunner', author_email='trey@treyhunner.com', description='Django email backend that logs all emails', long_description='\n\n'.join(( open('README.rst').read(), open('CHANGE...
mit
Python
377ca155a74e3c0a4fe1335b8d0235b8327edf63
Clean setup file
opps/opps,jeanmask/opps,YACOWS/opps,williamroot/opps,opps/opps,opps/opps,williamroot/opps,YACOWS/opps,opps/opps,williamroot/opps,williamroot/opps,jeanmask/opps,jeanmask/opps,jeanmask/opps,YACOWS/opps,YACOWS/opps
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps install_requires = ["Django>=1.5", "south>=0.7", "Pillow==1.7.8", "django-filebrowser==3.5.1", "django-redis", "dj...
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages import opps install_requires = ["Django>=1.5", "south>=0.7", "Pillow==1.7.8", "django-filebrowser==3.5.1", "django-redis", "dj...
mit
Python
798b7976084748d7966b3fc3e4ae2e9a634c99de
Use compatible release versions for all dependencies
remind101/stacker,remind101/stacker,mhahn/stacker,mhahn/stacker
setup.py
setup.py
import os from setuptools import setup, find_packages import glob VERSION = "0.6.3" src_dir = os.path.dirname(__file__) install_requires = [ "troposphere~=1.8.0", "boto3~=1.3.1", "botocore~=1.4.38", "PyYAML~=3.11", "awacs~=0.6.0", "colorama~=0.3.7", ] tests_require = [ "nose~=1.0", "...
import os from setuptools import setup, find_packages import glob VERSION = "0.6.3" src_dir = os.path.dirname(__file__) install_requires = [ "troposphere>=1.8.0", "boto3>=1.3.1", "botocore>=1.4.38", "PyYAML>=3.11", "awacs>=0.6.0", "colorama==0.3.7", ] tests_require = [ "nose>=1.0", "...
bsd-2-clause
Python
7e4480cc61854f18f3420a56ec10173964f91838
add whitespace after class definition
red-hat-storage/rhcephcompose,red-hat-storage/rhcephcompose
setup.py
setup.py
import os import re import sys import subprocess from setuptools.command.test import test as TestCommand from setuptools import setup, Command readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(r...
import os import re import sys import subprocess from setuptools.command.test import test as TestCommand from setuptools import setup, Command readme = os.path.join(os.path.dirname(__file__), 'README.rst') LONG_DESCRIPTION = open(readme).read() module_file = open('rhcephcompose/__init__.py').read() metadata = dict(r...
mit
Python
44686cb9e235b74a7031cf7d7e14195ee4155d52
Bump version to 6.0.0
incuna/incuna-auth,incuna/incuna-auth
setup.py
setup.py
from setuptools import find_packages, setup install_requires = ('django-admin-sso', 'django-crispy-forms') setup( name='incuna-auth', version='6.0.0', url='http://github.com/incuna/incuna-auth', packages=find_packages(), include_package_data=True, install_requires=install_requires, descri...
from setuptools import find_packages, setup install_requires = ('django-admin-sso', 'django-crispy-forms') setup( name='incuna-auth', version='5.0.0', url='http://github.com/incuna/incuna-auth', packages=find_packages(), include_package_data=True, install_requires=install_requires, descri...
bsd-2-clause
Python
25f1a89a901b865046c99f79455dca9d4c2c6b57
Bump version to 0.4.1.
quantopian/coal-mine
setup.py
setup.py
import sys from setuptools import setup, find_packages if sys.version_info[0] < 3: sys.exit("This package does not work with Python 2.") # You can't just put `from pypandoc import convert` at the top of your # setup.py and then put `description=convert("README.md", "rst")` in # your `setup()` invocation, because...
import sys from setuptools import setup, find_packages if sys.version_info[0] < 3: sys.exit("This package does not work with Python 2.") # You can't just put `from pypandoc import convert` at the top of your # setup.py and then put `description=convert("README.md", "rst")` in # your `setup()` invocation, because...
apache-2.0
Python
8e856cc2b5a63d2cc6fb50c00d2c404d67606ea0
Change author in setup.py
sdu-cfei/modest-py
setup.py
setup.py
from setuptools import setup setup( name='modestpy', version='0.1', description='FMI-compliant model identification package', url='https://github.com/sdu-cfei/modest-py', keywords='fmi fmu optimization model identification estimation', author='Center for Energy Informatics SDU', author_emai...
from setuptools import setup setup( name='modestpy', version='0.1', description='FMI-compliant model identification package', url='https://github.com/sdu-cfei/modest-py', keywords='fmi fmu optimization model identification estimation', author='Krzysztof Arendt', author_email='krzysztof.aren...
bsd-2-clause
Python
44893a36364323699b29db55c61d34f15b08af5c
Clean up setup.py
dirn/When.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup settings = dict() setup( name='whenpy', version='0.4.0', description='Friendly Dates and Times', long_description=open('README.rst').read(), author='Andy Dirnberger', author_email='dirn@dirnonline.com', url='https:...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys try: from setuptools import setup except ImportError: from distutils.core import setup settings = dict() settings.update( name='whenpy', version='0.4.0', description='Friendly Dates and Times', long_description=open('README.r...
bsd-3-clause
Python
bdafcacd481b15fd53cc0bdf0fc0193b32afd08a
Bump version to 3.1m5
cloudify-cosmo/cloudify-rest-client,aria-tosca/cloudify-rest-client,codilime/cloudify-rest-client
setup.py
setup.py
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless...
apache-2.0
Python
c687e10d7db9bdbcfaf8219d397c96a9b6c0cce5
Update to 2.5.0
jasedit/scriptorium,jasedit/papers_base
setup.py
setup.py
"""Setuptools file for a MultiMarkdown Python wrapper.""" from codecs import open from os import path from distutils.core import setup from setuptools import find_packages import pypandoc here = path.abspath(path.dirname(__file__)) long_description = pypandoc.convert_file('README.md', 'rst') setup( name='scripto...
"""Setuptools file for a MultiMarkdown Python wrapper.""" from codecs import open from os import path from distutils.core import setup from setuptools import find_packages import pypandoc here = path.abspath(path.dirname(__file__)) long_description = pypandoc.convert_file('README.md', 'rst') setup( name='scripto...
mit
Python
3677a91625fa56f57fa0bb79303467e48a9f57aa
increment version and set requests to greater than 2
meyersj/geotweet,meyersj/geotweet,meyersj/geotweet
setup.py
setup.py
from setuptools import setup setup( name='geotweet', version='0.2.1', description='Fetch geographic tweets from Twitter Streaming API', author='Jeffrey Alan Meyers', author_email='jeffrey.alan.meyers@gmail.com', url='https://github.com/meyersj/geotweet', packages=[ 'geotweet', ...
from setuptools import setup setup( name='geotweet', version='0.1.23', description='Fetch geographic tweets from Twitter Streaming API', author='Jeffrey Alan Meyers', author_email='jeffrey.alan.meyers@gmail.com', url='https://github.com/meyersj/geotweet', packages=[ 'geotweet', ...
mit
Python
04e2f647be2ff87585fdc44e441b35323721169e
Use moz.com email.
seomoz/qless-py,seomoz/qless-py
setup.py
setup.py
#! /usr/bin/env python from setuptools import setup setup( name = 'qless-py', version = '0.11.0-dev', description = 'Redis-based Queue Management', long_description = ''' Redis-based queue management, with heartbeating, job tracking, stats, notifications, and ...
#! /usr/bin/env python from setuptools import setup setup( name = 'qless-py', version = '0.11.0-dev', description = 'Redis-based Queue Management', long_description = ''' Redis-based queue management, with heartbeating, job tracking, stats, notifications, and ...
mit
Python
d5d006dff6a263321099b4094187a6b64c9e25d9
Remove the Arch init scripts from the setup.py, init scripts should be installed with the distribution package
saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt
setup.py
setup.py
#!/usr/bin/python2 ''' The setup script for salt ''' from distutils.core import setup setup(name='salt', version='0.6.9', description='Portable, distrubuted, remote execution system', author='Thomas S Hatch', author_email='thatch45@gmail.com', url='https://github.com/thatch45/salt', ...
#!/usr/bin/python2 ''' The setup script for salt ''' from distutils.core import setup setup(name='salt', version='0.6.9', description='Portable, distrubuted, remote execution system', author='Thomas S Hatch', author_email='thatch45@gmail.com', url='https://github.com/thatch45/salt', ...
apache-2.0
Python
6f57d653f0d7d01e0b805c193db7a165e35d4e4a
Bump Version to 2.0.47-dev
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
#!/usr/bin/env python try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup import os import sys # Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml) if sys.platform == 'darwin': os.environ['C_INCLU...
bsd-2-clause
Python
a2bd15575f6799a6d473c7fef9bfd4a629a8350a
Upgrade to Flask 0.12.3 to fix CVE-2018-1000656
Antojitos/guacamole
setup.py
setup.py
from setuptools import setup with open('README.md') as file: long_description = file.read() setup( name="guacamole-files", version="0.1.0", author="Antonin Messinger", author_email="antonin.messinger@gmail.com", description=" Upload any file, get a URL back", long_description=long_descrip...
from setuptools import setup with open('README.md') as file: long_description = file.read() setup( name="guacamole-files", version="0.1.0", author="Antonin Messinger", author_email="antonin.messinger@gmail.com", description=" Upload any file, get a URL back", long_description=long_descrip...
mit
Python
c921cf81a21edbd4917d7f802a54e6d1eee54191
bump version number
jbernhard/george,andres-jordan/george,migueldvb/george,migueldvb/george,jbernhard/george,jbernhard/george,dfm/george,karenyyng/george,andres-jordan/george,karenyyng/george,dfm/george,karenyyng/george,migueldvb/george,andres-jordan/george
setup.py
setup.py
#!/usr/bin/env python import os import sys if "publish" in sys.argv[-1]: os.system("python setup.py sdist upload") sys.exit() try: from setuptools import setup, Extension setup, Extension except ImportError: from distutils.core import setup from distutils.extension import Extension setup,...
#!/usr/bin/env python import os import sys if "publish" in sys.argv[-1]: os.system("python setup.py sdist upload") sys.exit() try: from setuptools import setup, Extension setup, Extension except ImportError: from distutils.core import setup from distutils.extension import Extension setup,...
mit
Python
7134041557a14f7fb80135af2ba54a3ee084db84
Update setup.py
ymyzk/python-gyazo
setup.py
setup.py
#!/usr/bin/env python try: from setuptools import setup except: from distutils.core import setup setup(name='python-gyazo', version='0.2.0', description='A Python wrapper for Gyazo API', author='Yusuke Miyazaki', author_email='miyazaki.dev@gmail.com', url='https://github.com/lit...
#!/usr/bin/env python try: from setuptools import setup except: from distutils.core import setup setup(name='python-gyazo', version='0.2.0', description='A Python wrapper for Gyazo API', author='Yusuke Miyazaki', author_email='miyazaki.dev@gmail.com', url='https://github.com/lit...
mit
Python
26586a33b7b0dcf64bf5ae9b221e320c01f0c748
Update travis and appveyor config V2
CalebBell/ht
setup.py
setup.py
# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell <Caleb.Andrew.Bell@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal...
# -*- coding: utf-8 -*- '''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. Copyright (C) 2016, Caleb Bell <Caleb.Andrew.Bell@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal...
mit
Python
0b4d467a483beff90ba6ccea489f6e0767d95487
fix for readthedocs
gdementen/xlwings,ston380/xlwings,Juanlu001/xlwings,alekz112/xlwings,gdementen/xlwings,Juanlu001/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...
bsd-3-clause
Python
8ed470f474b2cac84a18fe3709e67b3a160cfdc6
Move lib dependency to nexmo
thibault/django-nexmo
setup.py
setup.py
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-nexmo', version='2.0.0', packages=['djexmo'], i...
import os from setuptools import setup README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-nexmo', version='2.0.0', packages=['djexmo'], i...
mit
Python
1d080245f125e0b57e6f074679aeb57ee80fb598
Update setup metadata
briandilley/ebs-deploy
setup.py
setup.py
from setuptools import setup setup( # general meta name='ebs-deploy', version='2.0.0', author='Brian C. Dilley (Python 3 fixes by Erik Wallentinsen)', author_email='brian.dilley@gmail.com', description='Python based command line tools for managing ' 'Amazon Elastic Beanstalk ap...
from setuptools import setup setup( # general meta name='ebs-deploy', version='1.9.9', author='Brian C. Dilley', author_email='brian.dilley@gmail.com', description='Python based command line tools for managing ' 'Amazon Elastic Beanstalk applications.', platforms='any', ...
mit
Python
d9164704bf8237d1722572d94a5ba2e8fe04b0be
Update setup.py classifiers
yprez/django-logentry-admin,yprez/django-logentry-admin
setup.py
setup.py
from setuptools import setup with open('README.rst') as f: readme = f.read() with open('CHANGELOG.rst') as f: changelog = f.read() setup( name='django-logentry-admin', author='Yuri Prezument', author_email='y@yprez.com', version='1.0.3a', packages=['logentry_admin'], package_data={...
from setuptools import setup with open('README.rst') as f: readme = f.read() with open('CHANGELOG.rst') as f: changelog = f.read() setup( name='django-logentry-admin', author='Yuri Prezument', author_email='y@yprez.com', version='1.0.3a', packages=['logentry_admin'], package_data={...
isc
Python
5cd3c4199f4a8f30174c4e4b1d7c430b7309f5c9
Bump version
educreations/python-iap
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="iap", version="2.3", description="Python utilities for working with Apple In-App Purchases (IAP)", long_description=long_description, long_description_content_type="...
#!/usr/bin/env python from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() setup( name="iap", version="2.2.8", description="Python utilities for working with Apple In-App Purchases (IAP)", long_description=long_description, long_description_content_type...
mit
Python
06a42316c3beef5431703f4a81c171dabbd23f91
update dev status to stable (#142)
googleapis/google-resumable-media-python,googleapis/google-resumable-media-python
setup.py
setup.py
# Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
apache-2.0
Python
4c2e465ff59f5e03f2b50b86c2b8620843ea909e
Fix clear
mayhem/led-chandelier,mayhem/led-chandelier,mayhem/led-chandelier
software/bin/count_off.py
software/bin/count_off.py
#!/usr/bin/python import os import sys import math import random from time import sleep, time from hippietrap.chandelier import Chandelier, BROADCAST, NUM_NODES from hippietrap.color import Color device = "/dev/serial0" ch = Chandelier() ch.open(device) ch.clear(BROADCAST) start = int(sys.argv[1]) for id in range...
#!/usr/bin/python import os import sys import math import random from time import sleep, time from hippietrap.chandelier import Chandelier, BROADCAST, NUM_NODES from hippietrap.color import Color device = "/dev/serial0" ch = Chandelier() ch.open(device) ch.off(BROADCAST) start = int(sys.argv[1]) for id in range(s...
mit
Python
43076531cfa27006d1f3d8a55b57333c122b07a8
Add Framework::Pytest to list of classifiers
pytest-dev/pytest-qt,The-Compiler/pytest-qt
setup.py
setup.py
import sys import re from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): """ Overrides setup "test" command, taken from here: http://pytest.org/latest/goodpractises.html """ def finalize_options(self): TestCommand....
import sys import re from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): """ Overrides setup "test" command, taken from here: http://pytest.org/latest/goodpractises.html """ def finalize_options(self): TestCommand....
mit
Python
751ca37e12dc36f26ce9c65857bc0a91b42cf5b6
Update yamllint requirement from <1.15,>=1.11.1 to >=1.11.1,<1.16
openfisca/senegal
setup.py
setup.py
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='OpenFisca-Senegal', version='0.7.4', author='OpenFisca Team', author_email='contact@openfisca.fr', description=u'Senegalese tax and benefit system for OpenFisca', keywords='benefit microsi...
#! /usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='OpenFisca-Senegal', version='0.7.4', author='OpenFisca Team', author_email='contact@openfisca.fr', description=u'Senegalese tax and benefit system for OpenFisca', keywords='benefit microsi...
agpl-3.0
Python
f37efa70b18a1b29d3b7dea167e32a1c93e5df23
bump version
noisyboiler/wampy
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, find_packages from os import path here = path.abspath(path.dirname(__file__)) # Get th...
# 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, find_packages from os import path here = path.abspath(path.dirname(__file__)) # Get th...
mpl-2.0
Python
59761e83b240fe7573370f542ea6e877c5850907
Add json to from vdf scripts
ynsta/steamcontroller,oneru/steamcontroller,oneru/steamcontroller,ynsta/steamcontroller
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup, Extension uinput = Extension('libuinput', sources = ['src/uinput.c']) setup(name='python-steamcontroller', version='1.0', description='Steam Controller userland driver', author='Stany MARCEL', author_email='stanypub@gm...
#!/usr/bin/env python from distutils.core import setup, Extension uinput = Extension('libuinput', sources = ['src/uinput.c']) setup(name='python-steamcontroller', version='1.0', description='Steam Controller userland driver', author='Stany MARCEL', author_email='stanypub@gm...
mit
Python
69a49a5ada371f42aafefdf72034b90f28bcde0d
Bump version
YarnSeemannsgarn/pyshorteners
setup.py
setup.py
# coding: utf8 from __future__ import unicode_literals from setuptools import setup, find_packages setup( name='pyshorteners', version='0.3', license='MIT', description=('A simple URL shortening Python Lib, implementing ' 'the most famous shorteners.'), long_description=open('READ...
# coding: utf8 from __future__ import unicode_literals from setuptools import setup, find_packages setup( name='pyshorteners', version='0.2.10', license='MIT', description=('A simple URL shortening Python Lib, implementing ' 'the most famous shorteners.'), long_description=open('R...
mit
Python
f23a95df8cbadc09b388375942466b5ad110ad53
Read README as UTF-8
blancltd/django-latest-tweets
setup.py
setup.py
#!/usr/bin/env python from codecs import open from setuptools import find_packages, setup with open('README.rst', 'r', 'utf-8') as f: readme = f.read() # Use latest_tweets.VERSION for version numbers version_tuple = __import__('latest_tweets').VERSION version = '.'.join([str(v) for v in version_tuple]) setup(...
#!/usr/bin/env python from setuptools import find_packages, setup # Use latest_tweets.VERSION for version numbers version_tuple = __import__('latest_tweets').VERSION version = '.'.join([str(v) for v in version_tuple]) setup( name='django-latest-tweets', version=version, description='Latest Tweets for Djan...
bsd-3-clause
Python
e2a30e91f3681bddb63f632db9a2234022381c8a
Bump version to 0.8
harlowja/zk_shell,rgs1/zk_shell,harlowja/zk_shell,rgs1/zk_shell
setup.py
setup.py
from setuptools import setup def readme(): with open('README.md') as f: return f.read() setup(name='zk_shell', version='0.8', description='A Python - Kazoo based - shell for ZooKeeper', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'Lic...
from setuptools import setup def readme(): with open('README.md') as f: return f.read() setup(name='zk_shell', version='0.7', description='A Python - Kazoo based - shell for ZooKeeper', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'Lic...
apache-2.0
Python
e257f4864e316c6542b5b3750552cf5cb76d36ac
Bump version.
iloob/python-periods
setup.py
setup.py
# coding=utf-8 from setuptools import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="python-periods", version="0.1.2", description="Some convenient classes and methods for working with time periods", author="Johanna Eriksson", ...
# coding=utf-8 from setuptools import setup import os def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="python-periods", version="0.1.1", description="Some convenient classes and methods for working with time periods", author="Johanna Eriksson", ...
mit
Python
7fa2124e7eb7cfecb4014876da3a6970c9e2d9bc
test exist and delete
vperron/django-storages,vperron/django-storages
storages/tests/s3boto.py
storages/tests/s3boto.py
from django.test import TestCase from django.core.files.base import ContentFile from django.conf import settings from django.core.files.storage import FileSystemStorage from uuid import uuid4 import os from storages.backends.s3boto import S3BotoStorage class S3BotoStorageTests(TestCase): def setUp(self): ...
from django.test import TestCase from django.core.files.base import ContentFile from django.conf import settings from django.core.files.storage import FileSystemStorage from uuid import uuid4 import os from storages.backends.s3boto import S3BotoStorage class S3BotoStorageTests(TestCase): def setUp(self): ...
bsd-3-clause
Python
30b19eb23e61d14ed0145aa95c481f7cbc5b6270
Remove extraneous comma
wardi/ckanapi,eawag-rdm/ckanapi,perceptron-XYZ/ckanapi,xingyz/ckanapi,LaurentGoderre/ckanapi,metaodi/ckanapi
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import sys install_requires=[ 'setuptools', 'docopt', 'requests', ] if sys.version_info <= (3,): install_requires.append('simplejson') setup( name='ckanapi', version='3.3-dev', description= 'A command line interface and Python ...
#!/usr/bin/env python from setuptools import setup import sys install_requires=[ 'setuptools', 'docopt', 'requests', ], if sys.version_info <= (3,): install_requires.append('simplejson') setup( name='ckanapi', version='3.3-dev', description= 'A command line interface and Python...
mit
Python
294b415066d2873d215650677e9a883b7e3430ef
Bump the version to 0.6.7
moskytw/zipcodetw,moskytw/zipcodetw,moskytw/zipcodetw
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function import sys import zipcodetw.builder from setuptools.command.install import install class zipcodetw_install(install): def run(self): print('Building ZIP code index ... ') sys.stdout.flush() zipcodetw.builde...
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function import sys import zipcodetw.builder from setuptools.command.install import install class zipcodetw_install(install): def run(self): print('Building ZIP code index ... ') sys.stdout.flush() zipcodetw.builde...
mit
Python
54796bc8d814f2f0a898be96ae908905d2d88e32
fix email style to satisfy new rule
shibukawa/imagesize_py
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup #from distutils.core import setup setup(name='imagesize', version='1.0.0', description='Getting image size from png/jpeg/jpeg2000/gif file', long_description=''' It parses image files' header and return image size. * PNG * JPEG * JPEG2000 * GIF Th...
#!/usr/bin/env python from setuptools import setup #from distutils.core import setup setup(name='imagesize', version='1.0.0', description='Getting image size from png/jpeg/jpeg2000/gif file', long_description=''' It parses image files' header and return image size. * PNG * JPEG * JPEG2000 * GIF Th...
mit
Python
5247f01987c33f65646c57e4aa3b66b613169d68
Fix setup.py
soofaloofa/datastoredict,sookocheff/datastoredict
setup.py
setup.py
import os from setuptools import setup, find_packages def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read().strip() version = read('datastoredict/VERSION') setup( name='datastoredict', version=version, d...
import os from setuptools import setup, find_packages def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read().strip() version = read('datastoredict/VERSION') setup( name='datastoredict', version=version, d...
mit
Python
4e1ea81255c4b3aec7a863815482a4de0279372d
Rename "events" parameter into "event" parameter
pyofwave/PyOfWave,pyofwave/PyOfWave
pyofwave_server/pyofwave/core/operation.py
pyofwave_server/pyofwave/core/operation.py
""" Standard interface for connecting client protocols to the operation extensions. """ from delta import DeltaObserverPool as dop import opdev, delta # Perform operation def _getChildren(tag): rep = [tag.text, ] for child in tag: rep.append(child) rep.append(child.tail) return rep def pe...
""" Standard interface for connecting client protocols to the operation extensions. """ from delta import DeltaObserverPool as dop import opdev, delta # Perform operation def _getChildren(tag): rep = [tag.text, ] for child in tag: rep.append(child) rep.append(child.tail) return rep def pe...
mpl-2.0
Python
9ed75c89c510d8ba17e4f753acd17475404eb615
ADD autoinstall to adhoc base setup
csrocha/account_journal_payment_subtype,csrocha/account_voucher_payline
adhoc_base_setup/__openerp__.py
adhoc_base_setup/__openerp__.py
# -*- coding: utf-8 -*- { 'name': 'ADHOC Modules Configuration', 'version': '1.0', 'category': 'ADHOC Modules', 'sequence': 14, 'summary': 'extra, addons, modules', 'description': """ ADHOC Modules Configuration =============================================================================== Here...
# -*- coding: utf-8 -*- { 'name': 'ADHOC Modules Configuration', 'version': '1.0', 'category': 'ADHOC Modules', 'sequence': 14, 'summary': 'extra, addons, modules', 'description': """ ADHOC Modules Configuration =============================================================================== Here...
agpl-3.0
Python
2be776c2e543dcafbe268b9f18e17f08a5e1466f
Add OpenStack trove classifier for PyPI
VyacheslavHashov/python-swiftclient,ironsmile/python-swiftclient,citrix-openstack-build/python-swiftclient,sohonetlabs/python-swiftclient,iostackproject/IO-Bandwidth-Differentiation-Client,citrix-openstack/build-python-swiftclient,openstack/python-swiftclient,krnflake/python-hubicclient,varunarya10/python-swiftclient,p...
setup.py
setup.py
#!/usr/bin/python # -*- encoding: utf-8 -*- # Copyright (c) 2010 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
#!/usr/bin/python # -*- encoding: utf-8 -*- # Copyright (c) 2010 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
apache-2.0
Python
ba07246a0e9d64ca94101c1ac83ff792fdc0da9c
Bump to v0.3.0
bradleyayers/django-attest
setup.py
setup.py
# -*- coding: utf8 -*- from setuptools import setup, find_packages setup( name='django-attest', version='0.3.0', description = 'Provides Django specific testing helpers to Attest', author='Bradley Ayers', author_email='bradley.ayers@gmail.com', license='Simplified BSD', url='https://githu...
# -*- coding: utf8 -*- from setuptools import setup, find_packages setup( name='django-attest', version='0.2.5', description = 'Provides Django specific testing helpers to Attest', author='Bradley Ayers', author_email='bradley.ayers@gmail.com', license='Simplified BSD', url='https://githu...
bsd-2-clause
Python
de0e8bb5da0fe487a84424beda6dfb0e5a0108e5
correct player script loading
SuddenDevs/SuddenDev,SuddenDevs/SuddenDev,SuddenDevs/SuddenDev,SuddenDevs/SuddenDev
suddendev/game/player.py
suddendev/game/player.py
from .entity import Entity from .vector import Vector import math import random DEFAULT_SCRIPT = """ timer = 1 def update(self, delta): self.locals['timer'] += delta if self.locals['timer'] > 0.5: self.vel = Vector.Normalize(Vector(random.random()-0.5, random.random()-0.5)) * self.speed """ class Pla...
from .entity import Entity from .vector import Vector import math import random DEFAULT_SCRIPT = """ something = 1 someparam = 2 def update(self, delta): centre = core.pos fromCentre = Vector.Normalize(self.pos - centre) * self.speed self.vel = Vector.Normalize(Vector(1,1)) * self.speed """ class Player(...
mit
Python
1322f75c0ba11bca44cd92d47406881837c5a48d
Update to use cffi 1.15.0rc2
viblo/pymunk,viblo/pymunk
setup.py
setup.py
from setuptools import setup # type: ignore # todo: add/remove/think about this list classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Py...
from setuptools import setup # type: ignore # todo: add/remove/think about this list classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Py...
mit
Python
ce6924deba35b25e21df4b29ccf7ad735433edc8
bump to version 0.0.3
cosmicBboy/themis-ml,cosmicBboy/themis-ml
setup.py
setup.py
from setuptools import setup setup( name="themis-ml", version="0.0.3", description="Fairness-aware Machine Learning", author="Niels Bantilan", author_email="niels.bantilan@gmail.com", url="https://github.com/cosmicBboy/themis-ml", download_url="https://github.com/cosmicBboy/themis-ml/archiv...
from setuptools import setup setup( name="themis-ml", version="0.0.2", description="Fairness-aware Machine Learning", author="Niels Bantilan", author_email="niels.bantilan@gmail.com", url="https://github.com/cosmicBboy/themis-ml", download_url="https://github.com/cosmicBboy/themis-ml/archiv...
mit
Python
ac2f4f1bba2feb12f79818ff5d66c776313b52fb
add install_requirements
asrozar/perception
setup.py
setup.py
from setuptools import setup, find_packages setup( # Application name: name="Perception", # Version number (initial): version="0.5", # Application author details: author="Avery Rozar", author_email="avery.rozar@critical-sec.com", # Packages packages=find_packages(), # Includ...
from setuptools import setup, find_packages setup( # Application name: name="Perception", # Version number (initial): version="0.5", # Application author details: author="Avery Rozar", author_email="avery.rozar@critical-sec.com", # Packages packages=find_packages(), # Includ...
mit
Python
45b03b1bc38ac2f536a136e285fcf87857673e7b
Drop the verbose flag.
robot-tools/iconograph,robot-tools/iconograph,robot-tools/iconograph,robot-tools/iconograph
util/fetch_archive.py
util/fetch_archive.py
#!/usr/bin/python3 import argparse import os import requests import shutil import subprocess parser = argparse.ArgumentParser(description='iconograph fetch_archive') parser.add_argument( '--dest-dir', dest='dest_dir', action='store', default='.') parser.add_argument( '--https-ca-cert', dest='...
#!/usr/bin/python3 import argparse import os import requests import shutil import subprocess parser = argparse.ArgumentParser(description='iconograph fetch_archive') parser.add_argument( '--dest-dir', dest='dest_dir', action='store', default='.') parser.add_argument( '--https-ca-cert', dest='...
apache-2.0
Python
1add8048d4eeb54bd284b9fd5ec6f98cc9c0a86e
Bump version for release
kirberich/djangae,asendecka/djangae,kirberich/djangae,armirusco/djangae,potatolondon/djangae,asendecka/djangae,grzes/djangae,asendecka/djangae,armirusco/djangae,kirberich/djangae,grzes/djangae,grzes/djangae,potatolondon/djangae,armirusco/djangae
setup.py
setup.py
import os from setuptools import setup, find_packages NAME = 'djangae' PACKAGES = find_packages() DESCRIPTION = 'Django integration with Google App Engine' URL = "https://github.com/potatolondon/djangae" LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() AUTHOR = 'Potato London Ltd.'...
import os from setuptools import setup, find_packages NAME = 'djangae' PACKAGES = find_packages() DESCRIPTION = 'Django integration with Google App Engine' URL = "https://github.com/potatolondon/djangae" LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() AUTHOR = 'Potato London Ltd.'...
bsd-3-clause
Python
045cb4a62cc3db673e3f2840f1f3847dde08ae2b
update setup.py
r-m-n/click-help-colors
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='click-help-colors', version=0.2, packages=['click_help_colors'], description='Colorization of help messages in Click', url='https://github.com/r-m-n/click-help-colors', download_url='https://github.com/r-m-n/click-help-colors/arc...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='click-help-colors', version=0.1, packages=['click_help_colors'], description='Colorization of help messages in Click', url='https://github.com/r-m-n/click-help-colors', download_url='https://github.com/r-m-n/click-help-colors/tar...
mit
Python
ee9509b2eee48c5f73351cfba4ed525c133e3898
Use absolute path in setup.py
whtsky/bencoder.pyx
setup.py
setup.py
import os.path import platform from setuptools import setup from setuptools.extension import Extension version = platform.python_version_tuple() install_requires = [] if version < ('2', '7'): install_requires.append('ordereddict>=1.1') base_path = os.path.dirname(os.path.abspath(__file__)) try: from Cython....
import platform from setuptools import setup from setuptools.extension import Extension version = platform.python_version_tuple() install_requires = [] if version < ('2', '7'): install_requires.append('ordereddict>=1.1') try: from Cython.Build import cythonize ext_modules = cythonize("bencoder.pyx") exce...
bsd-3-clause
Python
0345bce84010fda6e3e449253652af935f521e99
add coverage
osallou/codetesting-with-python-training
setup.py
setup.py
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'sample code for code testing', 'author': 'Olivier Sallou', 'author_email': 'olivier.sallou@irisa.fr', 'version': '0.1', 'classifiers': [ # How mature is ...
try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup config = { 'description': 'sample code for code testing', 'author': 'Olivier Sallou', 'author_email': 'olivier.sallou@irisa.fr', 'version': '0.1', 'classifiers': [ # How mature is ...
apache-2.0
Python
9fea6231062f62888bebfd6ed31c387546bc548f
Fix automated dependency installation
sjl/django-hoptoad,sjl/django-hoptoad
setup.py
setup.py
import os from setuptools import setup, find_packages setup( name='django-hoptoad', version='0.2', description='django-hoptoad is some simple Middleware for letting Django-driven websites report their errors to Hoptoad.', long_description=open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'R...
import os from setuptools import setup, find_packages setup( name='django-hoptoad', version='0.2', description='django-hoptoad is some simple Middleware for letting Django-driven websites report their errors to Hoptoad.', long_description=open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'R...
mit
Python
94935da8ce413ca1071c317fdf448551cb0a70e8
update txaio dep to 2.2.1 as other deps now require
mozilla-services/ap-loadtester
setup.py
setup.py
from setuptools import setup from aplt import __version__ setup( name='aplt', version=__version__, description='Autopush Load-Tester', url='http://github.com/mozilla-services/ap-loadtester', author='Ben Bangert', author_email='bbangert@mozilla.com', license='MPL2', packages=['aplt'], ...
from setuptools import setup from aplt import __version__ setup( name='aplt', version=__version__, description='Autopush Load-Tester', url='http://github.com/mozilla-services/ap-loadtester', author='Ben Bangert', author_email='bbangert@mozilla.com', license='MPL2', packages=['aplt'], ...
mpl-2.0
Python
e3ba5e614517339af9642f7961da6ded94f1d439
Change setup.py for plot extras
lmcinnes/umap,lmcinnes/umap
setup.py
setup.py
from setuptools import setup def readme(): try: with open("README.rst", encoding="UTF-8") as readme_file: return readme_file.read() except TypeError: # Python 2.7 doesn't support encoding argument in builtin open import io with io.open("README.rst", encoding="UTF-8...
from setuptools import setup def readme(): try: with open("README.rst", encoding="UTF-8") as readme_file: return readme_file.read() except TypeError: # Python 2.7 doesn't support encoding argument in builtin open import io with io.open("README.rst", encoding="UTF-8...
bsd-3-clause
Python
a7d5fe9d70183eed5d0715dcc64ac76d21617adc
Fix path to package.json
plone/mockup,termitnjak/mockup,derFreitag/mockup,derFreitag/mockup,domruf/mockup,domruf/mockup,domruf/mockup,domruf/mockup,termitnjak/mockup,plone/mockup,termitnjak/mockup,derFreitag/mockup,termitnjak/mockup,plone/mockup,derFreitag/mockup
setup.py
setup.py
from setuptools import setup, find_packages import json package_json = json.load(open('mockup/package.json')) version = package_json['version'] setup( name='mockup', version=version, description="A collection of client side patterns for faster and easier " "web development", long_descr...
from setuptools import setup, find_packages import json package_json = json.load(open('package.json')) version = package_json['version'] setup( name='mockup', version=version, description="A collection of client side patterns for faster and easier " "web development", long_description=...
bsd-3-clause
Python
ca06378b83a2cef1902bff1204cb3f506433f974
Add authors to long description.
jwass/mplleaflet,ocefpaf/mplleaflet,jwass/mplleaflet,ocefpaf/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 DESCRIPTION = "Convert Matplotlib plots into Leaflet web maps" LONG_DESCRIPTION = DESCRIPTION NAME = "mplleaflet" AUTHOR = "Jacob Wasserman" AUTHOR_EMAIL = "jwasserman@gmail.com" MAINTAINER = "J...
bsd-3-clause
Python
4536bd3456f16c39219ab19982ef479880faab42
correct py_modules name and add a test_suite value
rduplain/wsgi_party,rduplain/wsgi_party
setup.py
setup.py
from setuptools import setup setup( name='wsgi_party', version='0.1-dev', url='http://github.com/rduplain/wsgi_party', license='BSD', author='Ron DuPlain', author_email='ron.duplain@gmail.com', description='A partyline middleware for WSGI with good intentions.', long_description=open('R...
from setuptools import setup setup( name='wsgi_party', version='0.1-dev', url='http://github.com/rduplain/wsgi_party', license='BSD', author='Ron DuPlain', author_email='ron.duplain@gmail.com', description='A partyline middleware for WSGI with good intentions.', long_description=open('R...
bsd-3-clause
Python
f18e291a4ebfb51c6eec18c9c64a8d928fd3aa9e
Fix for md to rst
PyBossa/pbs,PyBossa/pbs,PyBossa/pbs
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup try: from pypandoc import convert long_description = convert('README.md', 'md', format='rst') except IOError: print("warning: README.md not found") long_description = "" except ImportError: print("warning: pypandoc module n...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup try: from pypandoc import convert read_md = lambda f: convert(f, 'rst') long_description = read_md('README.md') except IOError: print("warning: README.md not found") long_description = "" except ImportError: print("warn...
agpl-3.0
Python
45b0e9889b336a84c18ee695c92345530da9179c
Bump version to 0.3.8
polyaxon/polyaxon,polyaxon/polyaxon,polyaxon/polyaxon
setup.py
setup.py
#!/usr/bin/env python import sys from setuptools import find_packages, setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(sel...
#!/usr/bin/env python import sys from setuptools import find_packages, setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(sel...
apache-2.0
Python
e07ccf557a986ed70f917e86ae8388d6a2bc5280
Bump up version number on trunk.
davidfraser/genshi,dag/genshi,dag/genshi,dag/genshi,davidfraser/genshi,dag/genshi,davidfraser/genshi,davidfraser/genshi
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2006 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://markup.edgewall.org/wiki/License. # # This...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2006 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://markup.edgewall.org/wiki/License. # # This...
bsd-3-clause
Python
f966ab48cf0ca9bc8b7ea4ffd7471dce99df20a3
Fix licence
Bearle/django-private-chat,Bearle/django-private-chat,Bearle/django-private-chat
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import sys try: from setuptools import setup except ImportError: from distutils.core import setup def get_version(*file_paths): """Retrieves the version from django_private_chat/__init__.py""" filename = os.path.join(os.path.dirname(__...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import re import sys try: from setuptools import setup except ImportError: from distutils.core import setup def get_version(*file_paths): """Retrieves the version from django_private_chat/__init__.py""" filename = os.path.join(os.path.dirname(__...
isc
Python
073c7036d71c447111dc9cb518e588e608496c93
remove distribute
thiagosm/pyboleto,thiagosm/pyboleto
setup.py
setup.py
# -*- coding: utf-8 -*- import sys import os import re from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def get_version(package): """Return package version as listed in `__version__` in `__init__.py`.""" init_py = open(os.p...
# -*- coding: utf-8 -*- import sys import os import re from setuptools import setup, find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() def get_version(package): """Return package version as listed in `__version__` in `__init__.py`.""" init_py = open(os.p...
bsd-3-clause
Python
55950487cbd5ca5648a1997a9528d4342f46396b
add classifiers
tombiasz/django-hibpwned
setup.py
setup.py
from setuptools import setup setup( name='django-hibpwned', version='0.1', description='Django password validator based on haveibeenpwned.com API', url='https://github.com/tombiasz/django-hibpwned', author='tombiasz', author_email='', license='MIT', packages=['haveibeenpwned'], zip_...
from setuptools import setup setup( name='django-hibpwned', version='0.1', description='Django password validator based on haveibeenpwned.com API', url='https://github.com/tombiasz/django-hibpwned', author='tombiasz', author_email='', license='MIT', packages=['haveibeenpwned'], zip_...
mit
Python
dc562bb678a7b899cbe835fdc5d9fc52a41069e7
update version only
losalamos/Pavilion,losalamos/Pavilion,losalamos/Pavilion
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'Pavilion - High Performance Cluster Testing Framework', 'long_description': 'Software framework for testing and analyzing HPC system health', 'author': 'LANL', 'url': 'git.lanl.gov/...
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': 'Pavilion - High Performance Cluster Testing Framework', 'long_description': 'Software framework for testing and analyzing HPC system health', 'author': 'LANL', 'url': 'git.lanl.gov/...
bsd-3-clause
Python
cfec870e9435ba1c32278b8ce8a0743f4f9a97ab
Add list-jobs script to list buildable jobs from a nitor-deploy-tools targeted repo
NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools,NitorCreations/nitor-deploy-tools
setup.py
setup.py
# Copyright 2016-2017 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
# Copyright 2016-2017 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
apache-2.0
Python
b3b26bd674e0e7c2f9a3339c9539cc6f58d3114d
Update release version
tianhao64/pyvmomi,vmware/pyvmomi
setup.py
setup.py
# VMware vSphere Python SDK # Copyright (c) 2009-2016 VMware, 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 # # ...
# VMware vSphere Python SDK # Copyright (c) 2009-2016 VMware, 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 # # ...
apache-2.0
Python
9b1ae7410004635dd59d07fda89c9aa93979a88f
Use py_modules instead of packages.
percipient/django-querysetsequence
setup.py
setup.py
import codecs from setuptools import setup, find_packages def long_description(): with codecs.open('README.rst', encoding='utf8') as f: return f.read() setup( name='django-querysetsequence', py_modules=['queryset_sequence'], version='0.1', description='Chain together multiple (disparate)...
import codecs from setuptools import setup, find_packages def long_description(): with codecs.open('README.rst', encoding='utf8') as f: return f.read() setup( name='django-querysetsequence', packages=find_packages(), version='0.1', description='Chain together multiple (disparate) QuerySe...
isc
Python
6f2690858d41a86ee1d2f3345b544a50438a493f
Fix case of "nose" in tests_require.
tartley/blessings,erikrose/blessings,jquast/blessed
setup.py
setup.py
import sys from setuptools import setup, find_packages extra_setup = {} if sys.version_info >= (3,): extra_setup['use_2to3'] = True setup( name='blessings', version='1.4', description='A thin, practical wrapper around terminal coloring, styling, and positioning', long_description=open('README.rs...
import sys from setuptools import setup, find_packages extra_setup = {} if sys.version_info >= (3,): extra_setup['use_2to3'] = True setup( name='blessings', version='1.4', description='A thin, practical wrapper around terminal coloring, styling, and positioning', long_description=open('README.rs...
mit
Python
082b767c3a194ad43093edbaa81d16d813cedfa8
change version to 1.0.1
mizuy/sitegen,mizuy/sitegen,mizuy/sitegen
setup.py
setup.py
import os from setuptools import setup, find_packages version = '1.0.1' README = os.path.join(os.path.dirname(__file__), 'README.md') long_description = open(README).read() + '\n\n' classifiers = """\ Development Status :: 4 - Beta Environment :: Console Intended Audience :: Developers License :: OSI Approved :: MIT...
import os from setuptools import setup, find_packages version = '1.0.0' README = os.path.join(os.path.dirname(__file__), 'README.md') long_description = open(README).read() + '\n\n' classifiers = """\ Development Status :: 4 - Beta Environment :: Console Intended Audience :: Developers License :: OSI Approved :: MIT...
mit
Python
9032d6537e97b3095a894a4a1e9a23812f09efab
Fix setup.py
hpleva/pyemto
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, Extension from Cython.Build import cythonize import numpy extensions = [ Extension("pyemto.c.c_lattice", ["pyemto/c/c_lattice.pyx"], include_dirs = [numpy.get_include()], #libraries = [...], #libr...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, Extension from Cython.Build import cythonize extensions = [ Extension("pyemto.c.c_lattice", ["pyemto/c/c_lattice.pyx"], #include_dirs = [...], #libraries = [...], #library_dirs = [...], ...
mit
Python
566590540b27270020ba3728f88f52f8a03d1e03
Update maintainer info
Unholster/django-lookup
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-lookup", version="0.0.1", author="Sebastián Acuña", author_email="sebastian@unholster.com", maintainer="Sebastián Acuña", maintainer_email="sebastian@unholster.com", packages=find_packages(), license="...
#!/usr/bin/env python from setuptools import setup, find_packages setup( name="django-lookup", version="0.0.1", author="Sebastián Acuña", author_email="sebastian@unholster.com", maintainer="Andrés Villavicencio", maintainer_email="andres@unholster.com", packages=find_packages(), license...
mit
Python
87cfbc3a0cf6c2496ba22d9a2f1cef3e6c5bac7c
Reduce asn1crypto and oscrypto version specs for CI to complete
wbond/certbuilder
setup.py
setup.py
import os import shutil from setuptools import setup, find_packages, Command from certbuilder import version class CleanCommand(Command): user_options = [ ('all', None, '(Compatibility with original clean command)') ] def initialize_options(self): self.all = False def finalize_opti...
import os import shutil from setuptools import setup, find_packages, Command from certbuilder import version class CleanCommand(Command): user_options = [ ('all', None, '(Compatibility with original clean command)') ] def initialize_options(self): self.all = False def finalize_opti...
mit
Python
ba7952506a631bc49567a18279cb0bd9ead5c4ba
Add url and 3.5 classifier
MagicStack/contextvars
setup.py
setup.py
import os.path import setuptools with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() setuptools.setup( name='contextvars', version="2.1", url='http://github.com/MagicStack/contextvars', description='PEP 567 Backport', long_description=readme, author='...
import os.path import setuptools with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: readme = f.read() setuptools.setup( name='contextvars', version="2.1", description='PEP 567 Backport', long_description=readme, author='MagicStack Inc', author_email='hello@magic.io', ...
apache-2.0
Python
4c3a630317c068ca74df9df6f84eab4f3dd6ea12
fix python 3.4 tests
tomi77/python-t77-date
setup.py
setup.py
import sys from codecs import open from setuptools import setup, find_packages setup( name='t77-date', version='0.5.0', author='Tomasz Jakub Rup', author_email='tomasz.rup@gmail.com', url='https://github.com/tomi77/python-t77-date', description='A set of functions related with dates', lon...
from codecs import open from setuptools import setup, find_packages setup( name='t77-date', version='0.5.0', author='Tomasz Jakub Rup', author_email='tomasz.rup@gmail.com', url='https://github.com/tomi77/python-t77-date', description='A set of functions related with dates', long_descripti...
mit
Python
6a5583df960bf8e2e3f5d7611c50b34140fb475e
use distutils instead of setuptools
snormore/pyreferrer
setup.py
setup.py
from distutils.core import setup setup(name='pyreferrer', version='0.2.3', description='A referrer parser for Python.', url='http://github.com/snormore/pyreferrer', author='Steven Normore', author_email='snormore@gmail.com', license='MIT', packages=['pyreferrer'], packag...
from setuptools import setup setup(name='pyreferrer', version='0.2.2', description='A referrer parser for Python.', url='http://github.com/snormore/pyreferrer', author='Steven Normore', author_email='snormore@gmail.com', license='MIT', packages=['pyreferrer'], package_da...
mit
Python
3f949870592c9b6d41e4c4d0fc9ae779e301705f
Remove python-2.{5,6} from setup.py "classifiers".
marcecj/faust_python
setup.py
setup.py
import os from setuptools import find_packages, setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'FAUSTPy', version = '0.1', url = 'https://github.com/marcecj/faust_python', download_url = 'https://github....
import os from setuptools import find_packages, setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = 'FAUSTPy', version = '0.1', url = 'https://github.com/marcecj/faust_python', download_url = 'https://github....
mit
Python
1322f49c0dca9e5f6fdddcec9b5df0c67cbc9661
Update dependencies required (#28)
FocusedSupport/thedoorman,FocusedSupport/thedoorman
setup.py
setup.py
from setuptools import setup with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='thedoorman', version='0.1.1', description='Remote Doorman', long_description=readme, author='Dave Ehrenberger', author_email='dave.ehrenberger@focused...
from setuptools import setup with open('README.md') as f: readme = f.read() with open('LICENSE') as f: license = f.read() setup( name='thedoorman', version='0.1.1', description='Remote Doorman', long_description=readme, author='Dave Ehrenberger', author_email='dave.ehrenberger@focused...
mit
Python
be2abdf5bc5bfb46555c2ad3033e1a0847c533f0
Use numpy.distutils in main setup.py, add scons-local to the distribution: scons command can now be executed
cournape/numscons,cournape/numscons,cournape/numscons
setup.py
setup.py
#!/usr/bin/env python import os CLASSIFIERS = """\ Development Status :: 4 - Beta Intended Audience :: Science/Research Intended Audience :: Developers License :: OSI Approved Programming Language :: Python Topic :: Software Development Topic :: Scientific/Engineering Operating System :: Microsoft :: Windows Operating...
#!/usr/bin/env python import os CLASSIFIERS = """\ Development Status :: 4 - Beta Intended Audience :: Science/Research Intended Audience :: Developers License :: OSI Approved Programming Language :: Python Topic :: Software Development Topic :: Scientific/Engineering Operating System :: Microsoft :: Windows Operating...
bsd-3-clause
Python
08b21fb4e46c412b207f176a099747feb8ef2d62
bump version
rdeits/meshcat-python
setup.py
setup.py
import sys from setuptools import setup, find_packages setup(name="meshcat", version="0.0.18", description="WebGL-based visualizer for 3D geometries and scenes", url="https://github.com/rdeits/meshcat-python", download_url="https://github.com/rdeits/meshcat-python/archive/v0.0.18.tar.gz", author="R...
import sys from setuptools import setup, find_packages setup(name="meshcat", version="0.0.17", description="WebGL-based visualizer for 3D geometries and scenes", url="https://github.com/rdeits/meshcat-python", download_url="https://github.com/rdeits/meshcat-python/archive/v0.0.17.tar.gz", author="R...
mit
Python
d220ff2082ed72cc6d5484eab3babeaf8c7bb24a
Change version number to 0.7.9.
cmcqueen/cobs-python,cmcqueen/cobs-python
setup.py
setup.py
import sys from distutils.core import setup from distutils.extension import Extension if sys.version_info[0] == 2: cobs_extension_filename = 'src/_cobs_ext2.c' elif sys.version_info[0] == 3: cobs_extension_filename = 'src/_cobs_ext3.c' if sys.version_info[0] == 2: if sys.version_info[1] >= 6: co...
import sys from distutils.core import setup from distutils.extension import Extension if sys.version_info[0] == 2: cobs_extension_filename = 'src/_cobs_ext2.c' elif sys.version_info[0] == 3: cobs_extension_filename = 'src/_cobs_ext3.c' if sys.version_info[0] == 2: if sys.version_info[1] >= 6: co...
mit
Python
7cd8091209cc38eb19493cd819fa8eb5048cf934
Add exams packages, update requirements
arkon/uoft-scrapers,kshvmdn/uoft-scrapers,cobalt-uoft/uoft-scrapers,g3wanghc/uoft-scrapers
setup.py
setup.py
from distutils.core import setup from codecs import open setup( name = 'uoftscrapers', packages = [ 'uoftscrapers', 'uoftscrapers.scrapers.buildings', 'uoftscrapers.scrapers.calendar.utsg', 'uoftscrapers.scrapers.coursefinder', 'uoftscrapers.scrapers.exams.utm', ...
from distutils.core import setup from codecs import open setup( name = 'uoftscrapers', packages = [ 'uoftscrapers', 'uoftscrapers.scrapers.buildings', 'uoftscrapers.scrapers.calendar.utsg', 'uoftscrapers.scrapers.coursefinder', 'uoftscrapers.scrapers.food', 'uoft...
mit
Python
3b189021a0085bfa1023298a75e9fb472a8641f6
add maestro version to be at least 0.8.8 as hard requirement
Signiant/umpire
setup.py
setup.py
from setuptools import setup, find_packages from distutils.core import setup from os import path # this_directory = path.abspath(path.dirname(__file__)) # with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: # long_description = f.read() setup(name='Umpire', version='0.6.4', descr...
from setuptools import setup, find_packages from distutils.core import setup from os import path # this_directory = path.abspath(path.dirname(__file__)) # with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: # long_description = f.read() setup(name='Umpire', version='0.6.3', descr...
mit
Python
06b0034c36bd8c3471dc120de422bea367280991
Include newly minted `Dash` framework
plotly/dash,plotly/dash,plotly/dash,plotly/dash,plotly/dash
setup.py
setup.py
import io from setuptools import setup, find_packages main_ns = {} exec(open("dash/version.py").read(), main_ns) # pylint: disable=exec-used def read_req_file(req_type): with open("requires-{}.txt".format(req_type)) as fp: requires = (line.strip() for line in fp) return [req for req in requires ...
import io from setuptools import setup, find_packages main_ns = {} exec(open("dash/version.py").read(), main_ns) # pylint: disable=exec-used def read_req_file(req_type): with open("requires-{}.txt".format(req_type)) as fp: requires = (line.strip() for line in fp) return [req for req in requires ...
mit
Python
2b02ff77dff6b9fbd8365c09a193d86e792e7215
Improve setup.py
ijks/textinator
setup.py
setup.py
from setuptools import setup setup( name='textinator', description='A command line image viewer', version='0.1.0', author='Daan Rijks', autor_email='daanrijks@gmail.com', license='MIT', py_modules=['convertinator'], install_requires=[ 'click>=3.3, <4', 'Pillow>=2.6.1,...
from setuptools import setup setup( name='textinator', version='0.1.0', py_modules=['convertinator'], install_requires=[ 'Click', 'Pillow', 'ansi' ], entry_points=''' [console_scripts] textinate=textinator:convert ''' )
mit
Python
097a4dc3c20c6795ed0607e40d57d0315037b556
Fix setup.py to not fail if default encoding is not set to UTF-8 (#168)
rm-hull/ssd1306
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from io import open from setuptools import setup def read_file(fname, encoding='utf-8'): with open(os.path.join(os.path.dirname(__file__), fname), encoding=encoding) as r: return r.read() README = read_file("README.rst") CONTRIB = read...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from setuptools import setup def read_file(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as r: return r.read() README = read_file("README.rst") CONTRIB = read_file("CONTRIBUTING.rst") CHANGES = read_file("CHANGES.rst...
mit
Python