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 |
|---|---|---|---|---|---|---|---|---|
01799ad76bd5748e153312357c97034eba58c3a6 | Improve setup script. | miguelfrde/openautomata | setup.py | setup.py | import os, shutil
from setuptools import setup
with open('README.md') as f:
description = f.read()
with open('LICENSE.md') as f:
license = f.read()
setup(
name = "openautomata",
version = "0.1",
author = "Miguel Flores",
author_email = "miguel.frde@gmail.com",
description = ("Python automa... | import os
from setuptools import setup
with open('README.md') as f:
description = f.read()
with open('LICENSE.md') as f:
license = f.read()
setup(
name = "openautomata",
version = "0.1",
author = "Miguel Flores",
author_email = "miguel.frde@gmail.com",
description = ("Python automata theor... | mit | Python |
bb74068fe0867086eeedf8b94dc7bae431efbbc6 | Update packages in setup.py | ymyzk/django-channels,ymyzk/kawasemi | setup.py | setup.py | #!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.1.0'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__... | #!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.1.0'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__... | mit | Python |
19d5accb83705776421f613c96b3f9939c8ee15c | Move six dependency from requires to install_requires in setup.py | scrapy-plugins/scrapy-djangoitem,scrapy/scrapy-djangoitem | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='scrapy-djangoitem',
version='1.0.0',
url='https://github.com/scrapy/scrapy-djangoitem',
description='Scrapy extension to write scraped items using Django models',
long_description=open('README.rst').read(),
author='Scrapy developers',
... | from setuptools import setup, find_packages
setup(
name='scrapy-djangoitem',
version='1.0.0',
url='https://github.com/scrapy/scrapy-djangoitem',
description='Scrapy extension to write scraped items using Django models',
long_description=open('README.rst').read(),
author='Scrapy developers',
... | bsd-3-clause | Python |
1d1b4ae328a93243905ccab5f23a65256cf1a95a | fix pyplot in setup | Zsailer/epistasis,harmslab/epistasis | setup.py | setup.py | from setuptools import setup, Extension
# Define extensions
extension = Extension('epistasis.model_matrix_ext',
['epistasis/model_matrix_ext.c'])
# define all packages for distribution
packages = [
'epistasis',
'epistasis.models',
'epistasis.pyplot,
'epistasis.sampling',
'epi... | from setuptools import setup, Extension
# Define extensions
extension = Extension('epistasis.model_matrix_ext',
['epistasis/model_matrix_ext.c'])
# define all packages for distribution
packages = [
'epistasis',
'epistasis.models',
'epistasis.plot',
'epistasis.sampling',
'epis... | unlicense | Python |
aea5cf48a1d1aabe2fd68568c968b6855d486906 | Bump version number | pberkes/big_O | setup.py | setup.py | from distutils.core import setup
with open('README.rst') as readme_file:
long_description = readme_file.read()
setup(
name='big_O',
version='0.8',
description='Empirical estimation of time complexity from execution time',
author='Pietro Berkes',
author_email='pietro.berkes@googlemail.com',
... | from distutils.core import setup
with open('README.rst') as readme_file:
long_description = readme_file.read()
setup(
name='big_O',
version='0.7',
description='Empirical estimation of time complexity from execution time',
author='Pietro Berkes',
author_email='pietro.berkes@googlemail.com',
... | bsd-3-clause | Python |
6f6b18bf9d176ac8e3557e8d592adf9c4e1b2922 | Change the PyPi title. | swayf/grako,swayf/grako | setup.py | setup.py | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='grako',
version='1.3.0',
author='Juancarlo Añez',
author_email='apalala@gmail.com',
packages=['grako', 'grako.model', 'grako.test'],
scripts=['scripts/grako'],
url='http://bitbucket.org/apalala/grako',
license='GNU Ge... | # -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='grako',
version='1.3.0',
author='Juancarlo Añez',
author_email='apalala@gmail.com',
packages=['grako', 'grako.model', 'grako.test'],
scripts=['scripts/grako'],
url='http://bitbucket.org/apalala/grako',
license='GNU Ge... | bsd-2-clause | Python |
edf4d43abfd995d35620447bcef89262e7d25ea5 | fix fabric requirements | rsalmond/ytsnarf | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='ytsnarf',
version='0.0.1',
description='Execute youtube-dl remotely',
long_description='ytsnarf will ssh into a host, execute youtube-dl on your behalf, and download the resulting file.',
classifiers=[
'Development Status :: 3 - Alpha',
... | from setuptools import setup, find_packages
setup(name='ytsnarf',
version='0.0.1',
description='Execute youtube-dl remotely',
long_description='ytsnarf will ssh into a host, execute youtube-dl on your behalf, and download the resulting file.',
classifiers=[
'Development Status :: 3 - Alpha',
... | mit | Python |
ca9e4a505d1b75a49f98858dcc694e6971098579 | Update description. | loadimpact/loadimpact-sdk-python | setup.py | setup.py | # coding=utf-8
"""
Copyright 2013 Load Impact
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writ... | # coding=utf-8
"""
Copyright 2013 Load Impact
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writ... | apache-2.0 | Python |
0da3347d6b24b251fd75338cc3f6f576409512b9 | Bump version number | Organice/django-organice-theme,Organice/django-organice-theme,Organice/django-organice-theme,Organice/django-organice-theme | setup.py | setup.py | #!/usr/bin/env python
#
# Copyright 2014-2016 Peter Bittner <django@bittner.it>
#
# 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 re... | #!/usr/bin/env python
#
# Copyright 2014 Peter Bittner <django@bittner.it>
#
# 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 require... | apache-2.0 | Python |
5926b8b74b7fa4d3f2d76153e064d9bf1e4fc0ee | Increase version number | UMD-DRASTIC/drastic-web,UMD-DRASTIC/drastic-web,UMD-DRASTIC/drastic-web | setup.py | setup.py | # -*- coding: utf-8 -*-
"""Setup for Indigo-Web
Copyright 2015 Archive Analytics Solutions
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 requir... | # -*- coding: utf-8 -*-
"""Setup for Indigo-Web
Copyright 2015 Archive Analytics Solutions
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 requir... | agpl-3.0 | Python |
ab99cc993d97c45e28e6cf3b5d2a653a4f481178 | Add url option to setup. | declaresub/pygments-xojo,declaresub/pygments-xojo | setup.py | setup.py | from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
import string
import io
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
... | from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
import string
import io
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
... | bsd-3-clause | Python |
c9c6216f19f0c22fb3094936f200a8268c6116d6 | Add python 3 classifiers | apllicationCOM/youtube-dl-api-server,jaimeMF/youtube-dl-api-server,apllicationCOM/youtube-dl-api-server,apllicationCOM/youtube-dl-api-server,jaimeMF/youtube-dl-api-server,jaimeMF/youtube-dl-api-server | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='youtube_dl_server',
version='alpha.3.5',
description='An API server based on youtube_dl',
long_description='Get the videos from different sites using a server running youtube_dl',
author='Jaime Marquínez Ferrándiz',
author_email... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='youtube_dl_server',
version='alpha.3.5',
description='An API server based on youtube_dl',
long_description='Get the videos from different sites using a server running youtube_dl',
author='Jaime Marquínez Ferrándiz',
author_email... | unlicense | Python |
7da4ab03d980f29db209e77f15aed0e61d66e7c1 | add url and bump version | btubbs/sseclient | setup.py | setup.py | #!/usr/bin/python
from setuptools import setup
setup(
name='sseclient',
version='0.0.2',
author='Brent Tubbs',
author_email='brent.tubbs@gmail.com',
py_modules=['sseclient'],
install_requires=['requests==0.14.2'],
description=(
'Python client library for reading Server Sent Event st... | #!/usr/bin/python
from setuptools import setup
setup(
name='sseclient',
version='0.0.1',
author='Brent Tubbs',
author_email='brent.tubbs@gmail.com',
py_modules=['sseclient'],
install_requires=['requests==0.14.2'],
description=(
'Python client library for reading Server Sent Event st... | mit | Python |
8424c1c4c07a8ef4d4f734036b77a8274a99581c | Bump version | jonmbake/askbot-slack | setup.py | setup.py | from setuptools import setup
setup(
name="askbot-slack",
version="0.1.4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Lang... | from setuptools import setup
setup(
name="askbot-slack",
version="0.1.2",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Lang... | mit | Python |
ed5959e6dcb44a1dcf7ba29aa2afd74a8d2beba2 | Add easy 'runbot' command | RobinSikkens/Sticky-discord | setup.py | setup.py | from setuptools import setup
from stickord import VERSION
setup(
name='stickord',
version=VERSION,
description='A bot that talks to the Sticky API, written for Discord',
url='https://github.com/RobinSikkens/Sticky-discord',
install_requires=[
'python-dotenv',
'discord.py',
... | from setuptools import setup
from stickord import VERSION
setup(
name='stickord',
version=VERSION,
description='A bot that talks to the Sticky API, written for Discord',
url='https://github.com/RobinSikkens/Sticky-discord',
install_requires=[
'python-dotenv',
'discord.py',
... | mit | Python |
2245cad0a34a40dddf92a7c43132defb35c1c63d | Fix include in setup.py | RhysU/ar,RhysU/ar | setup.py | setup.py | """Setuptools for building the extension package"""
from setuptools import setup, Extension
import numpy.distutils.misc_util
PACKAGE_NAME = 'ar'
setup(
name=PACKAGE_NAME,
author_email='rhys.ulerich@gmail.com',
author='Rhys Ulerich',
classifiers=['Development Status :: 3 - Alpha'],
install_requires... | """Setuptools for building the extension package"""
from setuptools import setup, Extension
import numpy.distutils.misc_util
PACKAGE_NAME = 'ar'
setup(
name=PACKAGE_NAME,
author_email='rhys.ulerich@gmail.com',
author='Rhys Ulerich',
classifiers=['Development Status :: 3 - Alpha'],
install_requires... | mpl-2.0 | Python |
68dd31a813a1e2785586c212875a0c2e773cbde5 | Add content_type in setup.py for pipy download page display | OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft | setup.py | setup.py | import os
from setuptools import find_packages
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
... | import os
from setuptools import find_packages
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
... | apache-2.0 | Python |
19a8b1dec4b44e066c760f4f4b1f45bde27e8fb4 | revert preventing normalization (#16) | googleapis/python-domains,googleapis/python-domains | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law o... | # -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law o... | apache-2.0 | Python |
25dbfe5a1ef14901935924420a75cdb7850e3c0d | Bump version for new release | benhodgson/baluhn | setup.py | setup.py | from os import path
from setuptools import setup
def long_description():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name='baluhn',
version='0.1.1',
license='Public Domain',
des... | from os import path
from setuptools import setup
def long_description():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name='baluhn',
version='0.1',
license='Public Domain',
descr... | unlicense | Python |
e89faebd357cc9c929950ef38cafc97524dee205 | Comment out numpy, scipy which cause problems in buildout | mistio/mist.monitor,mistio/mist.monitor | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '0.1'
long_description = (
open('README.txt').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.txt').read()
+ '\n' +
open('CHANGES.txt').read()
+ '\n')
requires = ['pyramid', 'PasteScript'... | from setuptools import setup, find_packages
import os
version = '0.1'
long_description = (
open('README.txt').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.txt').read()
+ '\n' +
open('CHANGES.txt').read()
+ '\n')
requires = ['pyramid', 'PasteScript'... | apache-2.0 | Python |
7e6b3b85b15ded8e3f17cb9b2c7bc03cb14dbef3 | Update psycopg2 to 2.7.3 | LREN-CHUV/mri-meta-extract,LREN-CHUV/mri-meta-extract | setup.py | setup.py | from setuptools import setup
from os import path
import codecs
here = path.abspath(path.dirname(__file__))
with codecs.open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='data-tracking',
version='1.7.1',
zip_safe=False,
url='https://github.com/LREN... | from setuptools import setup
from os import path
import codecs
here = path.abspath(path.dirname(__file__))
with codecs.open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='data-tracking',
version='1.7.1',
zip_safe=False,
url='https://github.com/LREN... | apache-2.0 | Python |
924a6d910c115437afc5dad41184da595aaf7d52 | fix dependency link | vmx/cbagent,couchbase/cbagent,pavel-paulau/cbagent,mikewied/cbagent | setup.py | setup.py | from setuptools import setup
version = '2.3.4'
setup(
name='cbagent',
version=version,
author='Couchbase',
license='Apache Software License',
packages=[
'cbagent',
'cbagent.collectors',
'cbagent.collectors.libstats'
],
entry_points={
'console_scripts': [
... | from setuptools import setup
version = '2.3.5'
setup(
name='cbagent',
version=version,
author='Couchbase',
license='Apache Software License',
packages=[
'cbagent',
'cbagent.collectors',
'cbagent.collectors.libstats'
],
entry_points={
'console_scripts': [
... | apache-2.0 | Python |
57228f1e2f2646ee88afbfc853adb8d3a6bcd736 | update author email | brsr/antitile,brsr/antitile | setup.py | setup.py | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='antitile',
version='20190401',
description='Tiling subdivision scripts, for use with Antiprism',
url='http://github.com/brsr/antitile',
author='B R S Recht',
author_email='brstone@gmail.com',
l... | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='antitile',
version='20190401',
description='Tiling subdivision scripts, for use with Antiprism',
url='http://github.com/brsr/antitile',
author='B R S Recht',
author_email='brstone@ufl.edu',
lic... | mit | Python |
70e531d3e12a0e93c60f50e422e125d86ebc70e3 | Fix project URL in setup.py | rovanleeuwen/informant-old,ahale/swift-informant,pandemicsyn/swift-informant,rackerlabs/swift-informant | setup.py | setup.py | from setuptools import setup, find_packages
from informant import __version__ as version
name = "informant"
setup(
name = name,
version = version,
author = "Florian Hines",
author_email = "syn@ronin.io",
description = "Informant",
license = "Apache License, (2.0)",
keywords = "openstack s... | from setuptools import setup, find_packages
from informant import __version__ as version
name = "informant"
setup(
name = name,
version = version,
author = "Florian Hines",
author_email = "syn@ronin.io",
description = "Informant",
license = "Apache License, (2.0)",
keywords = "openstack s... | apache-2.0 | Python |
1e2bebe30e49ed07ce45599617e8eb26dadb7b6e | Rename GitHub account | icydoge/Constantine | setup.py | setup.py | """ A setuptools based setup module.
Adapted from:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import glob
here = path.abspath(path.dirname(__file__))
try:
long_description = open('README.md').read()
... | """ A setuptools based setup module.
Adapted from:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import glob
here = path.abspath(path.dirname(__file__))
try:
long_description = open('README.md').read()
... | mit | Python |
c7960ab34b2f6c31f208ed650d8abc5cfef8d2a3 | Add README as documentation | fubaz/djheroku,fubaz/djheroku | setup.py | setup.py | #!/usr/bin/env python
# pylint: disable=invalid-name
''' Setuptools installation script for Djheroku '''
from __future__ import with_statement
import os
from setuptools import setup
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'djheroku/_version.py'
versioneer.versionfile_build = None
vers... | #!/usr/bin/env python
# pylint: disable=invalid-name
''' Setuptools installation script for Djheroku '''
from __future__ import with_statement
import os
from setuptools import setup
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'djheroku/_version.py'
versioneer.versionfile_build = None
vers... | mit | Python |
7a6068e8c74065053b91e037d12c1f2ea3031178 | set version 0.3.1 | slimta/slimta,rodoviario/slimta,slimta/slimta,rodoviario/slimta | setup.py | setup.py | # Copyright (c) 2012 Ian C. Good
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distrib... | # Copyright (c) 2012 Ian C. Good
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distrib... | mit | Python |
c4aea2bc936938ebb59b5d786df4d959ad9d631d | Update buildbot to 3.0.2 | madisongh/autobuilder | setup.py | setup.py | from setuptools import setup, find_packages
BUILDBOTVERSION = '3.0.2'
setup(
name='autobuilder',
version='3.1.3',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['temp... | from setuptools import setup, find_packages
BUILDBOTVERSION = '2.10.1'
setup(
name='autobuilder',
version='3.1.3',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
include_package_data=True,
package_data={
'autobuilder': ['tem... | mit | Python |
85603081495474ea4e0e2ae40e8a4b290e10a9ba | Fix setup.py kwarg | openego/data_processing | setup.py | setup.py | from distutils.core import setup
setup(
name='data_processing',
version='0.1-pre',
packages=[''],
url='https://github.com/openego/data_processing',
license='GNU GENERAL PUBLIC LICENSE Version 3',
author='open_eGo development group',
author_email='',
description='Data processing related ... | from distutils.core import setup
setup(
name='data_processing',
version='0.1-pre',
packages=[''],
url='https://github.com/openego/data_processing',
license='GNU GENERAL PUBLIC LICENSE Version 3',
author='open_eGo development group',
author_email='',
description='Data processing related ... | agpl-3.0 | Python |
97139c86ad4af554bcc38197335a98eb1cdf2c05 | update reqs | ContextLab/quail | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='quail',
version='0.2.0',
description='A python toolbox for analyzing and plotting free recall data',
long_description=' ',
author='Contextual Dynamics Lab',
author_email='contextualdynamics@gmail.com',
url='ht... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='quail',
version='0.2.0',
description='A python toolbox for analyzing and plotting free recall data',
long_description=' ',
author='Contextual Dynamics Lab',
author_email='contextualdynamics@gmail.com',
url='ht... | mit | Python |
731360a37becee8458bdf8554facc1c94f755809 | Bump version | tuvistavie/python-i18n | setup.py | setup.py | from setuptools import setup
setup(
name='python-i18n',
version='0.3.2',
description='Translation library for Python',
long_description=open('README.md').read(),
author='Daniel Perez',
author_email='tuvistavie@gmail.com',
url='https://github.com/tuvistavie/python-i18n',
download_url='ht... | from setuptools import setup
setup(
name='python-i18n',
version='0.3.1',
description='Translation library for Python',
long_description=open('README.md').read(),
author='Daniel Perez',
author_email='tuvistavie@gmail.com',
url='https://github.com/tuvistavie/python-i18n',
download_url='ht... | mit | Python |
fde2d524c2a1cf4b78894a47b451ac1e58a0c640 | Patch release for a few items | lmcinnes/umap,lmcinnes/umap | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.rst') as readme_file:
return readme_file.read()
configuration = {
'name' : 'umap-learn',
'version': '0.3.9',
'description' : 'Uniform Manifold Approximation and Projection',
'long_description' : readme(),
'classifiers' : [
... | from setuptools import setup
def readme():
with open('README.rst') as readme_file:
return readme_file.read()
configuration = {
'name' : 'umap-learn',
'version': '0.3.8',
'description' : 'Uniform Manifold Approximation and Projection',
'long_description' : readme(),
'classifiers' : [
... | bsd-3-clause | Python |
7908af3c267edd2f4a33f23063a36a09eee85c80 | Increment version number. | JenkinsDev/pelican-readtime | setup.py | setup.py | import os
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='pelican-readtime',
version='0.1.2',
description='Plugin for Pelican that computes read time based on Medium\'s readtime "algorithm."',
long_description=readme,
url='https:/... | import os
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='pelican-readtime',
version='0.1.1',
description='Plugin for Pelican that computes read time based on Medium\'s readtime "algorithm."',
long_description=readme,
url='https:/... | mit | Python |
857093368a3078990aa9edf0db04b20e89682a25 | Fix setup.py to handle migrations_django package | mkost/djangocms-googlemap,Organice/djangocms-maps,Organice/djangocms-maps,Organice/djangocms-maps,Organice/djangocms-maps,mkost/djangocms-googlemap | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from djangocms_googlemap import __version__
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from djangocms_googlemap import __version__
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved ... | bsd-3-clause | Python |
d298a4f5a454b046becb460520248b50eab8f973 | Bump faker from 4.17.1 to 4.18.0 | marshmallow-code/marshmallow-jsonapi | setup.py | setup.py | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=2.15.2",)
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock", "faker==4.18.0", "Flask==1.1.2"],
"lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "pre-commit~=2.0"],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_... | import re
from setuptools import setup, find_packages
INSTALL_REQUIRES = ("marshmallow>=2.15.2",)
EXTRAS_REQUIRE = {
"tests": ["pytest", "mock", "faker==4.17.1", "Flask==1.1.2"],
"lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "pre-commit~=2.0"],
}
EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_... | mit | Python |
3185095eed15ce8e0a83e693d2d2269794a146b3 | fix the name | dstufft/dj-search-url | setup.py | setup.py | #!/usr/bin/env python
"""
DJ-Search-URL
===============
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``SEARCH_URL`` environment variable to configure your Haystack application.
Usage
-----
Configure your Search index in ``settings.py`` from ``S... | #!/usr/bin/env python
"""
DJ-Search-URL
===============
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``SEARCH_URL`` environment variable to configure your Haystack application.
Usage
-----
Configure your Search index in ``settings.py`` from ``S... | bsd-2-clause | Python |
0c0d755798129a0a114136309f81c1168eee3f83 | Fix setup line len | 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
setup(
name='dash',
version=main_ns['__version__'],
author='chris p',
author_email='chris@plot.ly',
packages=find_packages(exclude=['tests*']),
include_... | import io
from setuptools import setup, find_packages
main_ns = {}
exec(open('dash/version.py').read(), main_ns) # pylint: disable=exec-used
setup(
name='dash',
version=main_ns['__version__'],
author='chris p',
author_email='chris@plot.ly',
packages=find_packages(exclude=['tests*']),
include_... | mit | Python |
34efb68588d308b9da8bd60523e4c5521967e4e7 | fix prev | oknuutti/visnav-py | setup.py | setup.py | import re
__author__ = "Olli Knuuttila"
__date__ = "$Nov 25, 2016 8:05:11 PM$"
from setuptools import setup, find_packages
# with open('../README.md') as f:
# long_description = f.read()
# long_description = re.sub(r'</?div[^>]*>|\r', '', long_description, flags=re.M)
setup(
name='visnav',
... | import re
__author__ = "Olli Knuuttila"
__date__ = "$Nov 25, 2016 8:05:11 PM$"
from setuptools import setup, find_packages
# with open('../README.md') as f:
# long_description = f.read()
# long_description = re.sub(r'</?div[^>]*>|\r', '', long_description, flags=re.M)
setup(
name='visnav',
... | mit | Python |
4747deb3883521e3a3255e319e1ee31539625b15 | Fix a typo in LICENSE file name | Alir3z4/python-sanitize | setup.py | setup.py | import unittest
import sys
from setuptools import setup, find_packages, Command
PKG_NAME = 'sanitize'
class RunTests(Command):
"""
New setup.py command to run all tests for the package.
"""
description = "run all tests for {0}".format(PKG_NAME)
user_options = []
def initialize_options(sel... | import unittest
import sys
from setuptools import setup, find_packages, Command
PKG_NAME = 'sanitize'
class RunTests(Command):
"""
New setup.py command to run all tests for the package.
"""
description = "run all tests for {0}".format(PKG_NAME)
user_options = []
def initialize_options(sel... | bsd-2-clause | Python |
d7ae654a87efc4e01f26291ac846f9eed4499e77 | Fix the setup.py | aptivate/django-registration,AndrewLvov/django-registration,aptivate/django-registration,fedenko/django-registration,QPmedia/django-registration,newvem/django-registration,rbarrois/django-registration,pelletier/django-registration-81,newvem/django-registration,christang/django-registration-1.5,thedod/django-registratio... | setup.py | setup.py | from distutils.core import setup
setup(name='registration',
version='0.1',
description='User-registration application for Django',
author='James Bennett',
author_email='james@b-list.org',
url='http://code.google.com/p/django-registration/',
packages=['registration'],
package_d... | from distutils.core import setup
setup(name='registration',
version='0.1',
description='User-registration application for Django',
author='James Bennett',
author_email='james@b-list.org',
url='http://code.google.com/p/django-registration/',
packages=['registration'],
classifie... | bsd-3-clause | Python |
13bf1f177c5dd6435eef957a5be2b3f886ed3c5e | Remove readme. | josetaas/vendcrawler,josetaas/vendcrawler,josetaas/vendcrawler | setup.py | setup.py | from codecs import open as codecs_open
from setuptools import setup, find_packages
setup(name='vendcrawler',
version='0.0.1',
classifiers=[],
url='https://github.com/josetaas/vendcrawler',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_pac... | from codecs import open as codecs_open
from setuptools import setup, find_packages
# Get the long description from the relevant file
with codecs_open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(name='vendcrawler',
version='0.0.1',
classifiers=[],
url='https://github... | mit | Python |
42adbdd745bb6d8ac65af04f355b6e5780098711 | Update setup.py | slibby/machine,slibby/machine,openaddresses/machine,openaddresses/machine,slibby/machine,slibby/machine,openaddresses/machine | setup.py | setup.py | from setuptools import setup
from os.path import join, dirname
with open(join(dirname(__file__), 'openaddr', 'VERSION')) as file:
version = file.read().strip()
setup(
name = 'OpenAddresses-Machine',
version = version,
url = 'https://github.com/openaddresses/machine',
author = 'Michal Migurski',
... | from setuptools import setup
from os.path import join, dirname
with open(join(dirname(__file__), 'openaddr', 'VERSION')) as file:
version = file.read().strip()
setup(
name = 'OpenAddresses-Machine',
version = version,
url = 'https://github.com/openaddresses/machine',
author = 'Michal Migurski',
... | isc | Python |
c0e33e599f0ee5447ac930d7979e49e1b0895d28 | Bump version number | tysonclugg/rinse,tysonclugg/rinse,simudream/rinse,simudream/rinse,MarkusH/rinse,MarkusH/rinse | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='rinse',
version='0.3.0',
description='SOAP client built with lxml and requests.',
long_description=open('README.rst').read(),
author='Tyson Clugg',
author_email='tyson@clugg.net',
url='https://rinse.readthedocs.org/en/latest/',... | #!/usr/bin/env python
from setuptools import setup
setup(
name='rinse',
version='0.2.0',
description='SOAP client built with lxml and requests.',
long_description=open('README.rst').read(),
author='Tyson Clugg',
author_email='tyson@clugg.net',
url='https://rinse.readthedocs.org/en/latest/',... | mit | Python |
15f23abd1ba84d56b46be7ed4ac36427fe89be8b | Bump version for release | harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl,harrystech/arthur-redshift-etl | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name="redshift_etl",
version="1.9.2",
author="Harry's Data Engineering and Analytics Engineering",
description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters",
license="MIT",
keywords="redshift postgresql ET... | from setuptools import find_packages, setup
setup(
name="redshift_etl",
version="1.9.0",
author="Harry's Data Engineering and Analytics Engineering",
description="ETL code to ferry data from PostgreSQL databases or S3 files to Redshift clusters",
license="MIT",
keywords="redshift postgresql ET... | mit | Python |
30f123e9cb419ad7942ccf84fd1fee84f3dd1668 | Bump version to 3.2m2 | cloudify-cosmo/cloudify-amqp-influxdb,geokala/cloudify-amqp-influxdb,cloudify-cosmo/cloudify-amqp-influxdb,geokala/cloudify-amqp-influxdb | setup.py | setup.py | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | ########
# Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless... | apache-2.0 | Python |
26f7f553f65eea8f6845bb2551334b0c161982ac | Add pytz as dependencie, freeze the version of filer. | mkoistinen/aldryn-newsblog,mkoistinen/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,mkoistinen/aldryn-newsblog | setup.py | setup.py | from setuptools import setup, find_packages
from aldryn_newsblog import __version__
REQUIREMENTS = [
'django-parler',
'django-filer>=0.9.9,<0.10',
'aldryn-common',
'django-appdata',
'django-cms>=3.0.90a1',
'aldryn-people',
'django-reversion>=1.8.2,<1.9',
'django>=1.6,<1.7',
'aldryn-... | from setuptools import setup, find_packages
from aldryn_newsblog import __version__
REQUIREMENTS = [
'django-parler',
'django-filer>=0.9.9',
'aldryn-common',
'django-appdata',
'django-cms>=3.0.90a1',
'aldryn-people',
'django-reversion>=1.8.2,<1.9',
'django>=1.6,<1.7',
'aldryn-apphoo... | bsd-3-clause | Python |
a075c6506683cfa4e4912ca8b09c5c9457ae5621 | bump version to 1.0.2 | kennell/curldrop,kevvvvv/curldrop | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = "curldrop",
version = "1.0.2",
packages = find_packages(),
author = "Kevin Kennell",
author_email = "kevin@kennell.de",
license = "MIT",
url = "http://github.com/kennell/curldrop",
install_requires=[
'flask',
'cli... | from setuptools import setup, find_packages
setup(
name = "curldrop",
version = "1.0.1",
packages = find_packages(),
author = "Kevin Kennell",
author_email = "kevin@kennell.de",
license = "MIT",
url = "http://github.com/kennell/curldrop",
install_requires=[
'flask',
'cli... | mit | Python |
dd997524e275e9aa57ac64e8facf528724913c33 | Fix openfisca-core version dependancy | openfisca/openfisca-tunisia,openfisca/openfisca-tunisia | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operating System... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Tunisia specific model for OpenFisca -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3
Operating System... | agpl-3.0 | Python |
8b38d8e0b582a7d36ee1885cd07ef7c0206a3f72 | package path fix by Bovy | henrysky/astroNN,henrysky/astroNN | setup.py | setup.py | from setuptools import setup, find_packages
import os, os.path
setup(
name='astroNN',
version='0.4',
#Package path fixed by Jo Bovy (UofT)
packages=['astroNN',
os.path.join('astroNN','apogeetools'),
os.path.join('astroNN','gaiatools'),
os.path.join('astroNN','N... | from setuptools import setup, find_packages
setup(
name='astroNN',
version='0.4',
packages=['astroNN', 'astroNN/apogeetools','astroNN/gaiatools','astroNN/NN', 'astroNN/datasets'],
include_package_data=True,
url='https://github.com/henrysky/astroNN/',
license='MIT',
author='Henry Leung',
... | mit | Python |
be5e0945611496439dea8e01a057abcd9b5cdfcf | Bump version: 0.1.7 -> 0.1.8 | polysquare/polysquare-generic-file-linter | setup.py | setup.py | # /setup.py
#
# Installation and setup script for polysquare-generic-file-linter
#
# See /LICENCE.md for Copyright information
"""Installation and setup script for polysquare-generic-file-linter."""
from setuptools import find_packages
from setuptools import setup
setup(name="polysquare-generic-file-linter",
ve... | # /setup.py
#
# Installation and setup script for polysquare-generic-file-linter
#
# See /LICENCE.md for Copyright information
"""Installation and setup script for polysquare-generic-file-linter."""
from setuptools import find_packages
from setuptools import setup
setup(name="polysquare-generic-file-linter",
ve... | mit | Python |
7f52e3bb63abd5365b0f6289f9ecc39e956cac27 | Edit setup.py | scrappleapp/scrapple,AlexMathew/scrapple,scrappleapp/scrapple,AlexMathew/scrapple,AlexMathew/scrapple | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open('README.md').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = open('requirements.txt').read... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = open('requirements.txt').read().split('\n')
test_requireme... | mit | Python |
9d14dab2c61947643da2da084f6357131343680f | Prepare openprocurement.auctions.dgf 1.0.9-sale. | prozorro-sale/openprocurement.auctions.dgf | setup.py | setup.py | from setuptools import setup, find_packages
import os
version = '1.0.9-sale'
entry_points = {
'openprocurement.auctions.core.plugins': [
'auctions.dgf = openprocurement.auctions.dgf:includeme'
]
}
requires = [
'setuptools',
'openprocurement.api',
'openprocurement.auctions.core',
'open... | from setuptools import setup, find_packages
import os
version = '1.0.8-sale'
entry_points = {
'openprocurement.auctions.core.plugins': [
'auctions.dgf = openprocurement.auctions.dgf:includeme'
]
}
requires = [
'setuptools',
'openprocurement.api',
'openprocurement.auctions.core',
'open... | apache-2.0 | Python |
988dd44d59b3aad5f29094d8a07f022716ce57d1 | update versions in setup (#21) | shopkeep/aws_etl_tools | setup.py | setup.py | from setuptools import setup, find_packages
running_requirements =[
'boto3==1.7.84',
'botocore==1.10.84',
'Cython==0.24.1',
'httpretty==0.8.10',
'pandas>=0.14.0',
'psycopg2==2.7',
'requests==2.7.0',
'SQLAlchemy==1.0.5'
]
setup(
name='aws_etl_tools',
description='some helpers f... | from setuptools import setup, find_packages
running_requirements =[
'boto3==1.4.4',
'botocore==1.3.29',
'Cython==0.24.1',
'httpretty==0.8.10',
'pandas>=0.14.0',
'psycopg2==2.7',
'requests==2.7.0',
'SQLAlchemy==1.0.5'
]
setup(
name='aws_etl_tools',
description='some helpers for... | apache-2.0 | Python |
2de1b957d17b4262e6597d72cd050df936b9abfe | Change release number to 0.9. | alanjds/django_object_permissions,osuosl/django_object_permissions,alanjds/django_object_permissions,osuosl/django_object_permissions | setup.py | setup.py | from setuptools import setup
long_desc = open('README').read()
setup(name='django-object-permissions',
version="0.9",
description='A method for adding object-level or row-level permissions',
long_description=long_desc,
author='Peter Krenesky',
author_email='kreneskyp@osuosl.org',
m... | from setuptools import setup
long_desc = open('README').read()
setup(name='django-object-permissions',
version="1.0",
description='A method for adding object-level or row-level permissions',
long_description=long_desc,
author='Peter Krenesky',
author_email='kreneskyp@osuosl.org',
m... | mit | Python |
04e15b3105a13b9d4297067142a629fcd31ae02e | Bump version to 2015.1 | midonet/python-neutron-plugin-midonet,yamt/networking-midonet,JoeMido/networking-midonet,midonet/python-neutron-plugin-midonet,yamt/networking-midonet,JoeMido/networking-midonet | setup.py | setup.py | #!/usr/bin/env python
# Copyright (c) 2014 Midokura Europe SARL, 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
#
# U... | #!/usr/bin/env python
# Copyright (c) 2014 Midokura Europe SARL, 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
#
# U... | apache-2.0 | Python |
0d661a65f5ee3262875e3cc19e6eec58bb2d8e8d | Upgrade core version | openfisca/country-template,openfisca/country-template | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='0.1.0',
author='OpenFisca Team',
author_email='contact@openfisca.fr',
description=u'Template of a tax and benefit system for OpenFisca',
keywords='ben... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='0.1.0',
author='OpenFisca Team',
author_email='contact@openfisca.fr',
description=u'Template of a tax and benefit system for OpenFisca',
keywords='ben... | agpl-3.0 | Python |
562564e71797f0b8ed8526e7466ba4ad77b26a78 | add default __future__ imports | jamesgk/ufo2ft,jamesgk/ufo2fdk,googlefonts/ufo2ft,googlei18n/ufo2ft,moyogo/ufo2ft | setup.py | setup.py | #!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import sys
from distutils.core import setup
try:
import fontTools
except:
print("*** Warning: ufo2ft requires FontTools, see:")
print(" fonttools.sf.net")
try:
import robofab
except:
print("*** Warning: ufo2... | #!/usr/bin/env python
import sys
from distutils.core import setup
try:
import fontTools
except:
print("*** Warning: ufo2ft requires FontTools, see:")
print(" fonttools.sf.net")
try:
import robofab
except:
print("*** Warning: ufo2ft requires RoboFab, see:")
print(" robofab.com")
if "sdi... | mit | Python |
44f869724cada6e23654ee938ada58ba93ce7fac | bump version number | jminardi/RobotBrain | setup.py | setup.py | from setuptools import setup, find_packages
INFO = {'name': 'Robot Brain',
'version': '0.2.0',
}
setup(
name = INFO['name'],
version = INFO['version'],
author = 'Jack Minardi',
packages = find_packages(),
zip_safe = False,
maintainer = 'Jack Minardi',
maintainer_email = 'jack@mina... | from setuptools import setup, find_packages
INFO = {'name': 'Robot Brain',
'version': '0.1.0',
}
setup(
name = INFO['name'],
version = INFO['version'],
author = 'Jack Minardi',
packages = find_packages(),
zip_safe = False,
maintainer = 'Jack Minardi',
maintainer_email = 'jack@mi... | mit | Python |
1656e0c2d09d7c7fe34a9ac813eeea9c8c1287c7 | fix dependencies of package | Nic30/hwtLib,Nic30/hwtLib | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(name='hwtLib',
version='0.1',
description='library of hardware components and test for HWToolkit framework (FPGA devel. tools)',
url='https://github.com/Nic30/hwtLib',
author='Michal Orsak',
... | #!/usr/bin/env python3
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(name='hwtLib',
version='0.1',
description='library of hardware components and test for HWToolkit framework (FPGA devel. tools)',
url='https://github.com/Nic30/hwtLib',
author='Michal Orsak',
... | mit | Python |
7a02302de5ec2d4464b96015c84965c1bf6870ea | update url | SG345/autopep8,MeteorAdminz/autopep8,SG345/autopep8,Vauxoo/autopep8,Vauxoo/autopep8,hhatto/autopep8,hhatto/autopep8,vauxoo-dev/autopep8,MeteorAdminz/autopep8,vauxoo-dev/autopep8 | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import autopep8
setup(
name='autopep8',
version=autopep8.__version__,
description="Automatic generated to pep8 checked code.",
long_description=open("README.rst"... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import autopep8
setup(
name='autopep8',
version=autopep8.__version__,
description="Automatic generated to pep8 checked code.",
long_description=open("README.rst"... | mit | Python |
4f89a3bfc56437c5f7c00b5c0282a7af90816eb3 | Update pypi classifiers | viewflow/viewflow,viewflow/viewflow,viewflow/viewflow | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='1.7.0',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
description='Reusable workflow library for django',
long_description=open('README.rst').read(),
platform... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='1.6.1',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
description='Reusable workflow library for django',
long_description=open('README.rst').read(),
platform... | agpl-3.0 | Python |
b84e0c9fa6dfd20dbb4cd0548e35ea9aab760af0 | Bump version | keeprocking/pygelf,keeprocking/pygelf | setup.py | setup.py | from setuptools import setup
setup(
name='pygelf',
version='0.4.2',
packages=['pygelf'],
description='Logging handlers with GELF support',
keywords='logging udp tcp ssl tls graylog2 graylog gelf',
author='Ivan Mukhin',
author_email='muhin.ivan@gmail.com',
url='https://github.com/keepro... | from setuptools import setup
setup(
name='pygelf',
version='0.4.1',
packages=['pygelf'],
description='Logging handlers with GELF support',
keywords='logging udp tcp ssl tls graylog2 graylog gelf',
author='Ivan Mukhin',
author_email='muhin.ivan@gmail.com',
url='https://github.com/keepro... | mit | Python |
d001db15d84b3b55cbbfa151dea466438ffb3ef4 | include all the packages | galaxy-iuc/parsec | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import glob
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = [
'Click>=6.7',
'bioblend',
'wrapt'... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = [
'Click>=6.7',
'bioblend',
'wrapt',
]
test_r... | apache-2.0 | Python |
a8f1aa45f38ddf35620102478d368ad3b17b5a77 | add trove classifier for py38 | jendrikseipp/vulture,jendrikseipp/vulture | setup.py | setup.py | #! /usr/bin/env python
import codecs
import os.path
import re
import setuptools
def read(*parts):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, *parts), "r") as f:
return f.read()
def find_version(*file_parts):
version_file = read(*file_parts)
versio... | #! /usr/bin/env python
import codecs
import os.path
import re
import setuptools
def read(*parts):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, *parts), "r") as f:
return f.read()
def find_version(*file_parts):
version_file = read(*file_parts)
versio... | mit | Python |
b7a6a0361b49944b1243a5cadb72b748e46015da | Bump version. | craigahobbs/chisel | setup.py | setup.py | #
# Copyright (C) 2012-2013 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | #
# Copyright (C) 2012-2013 Craig Hobbs
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, ... | mit | Python |
7b1de9d6c59a2fa9dda7c5ddaebf287172f7ce65 | tweak setup.py when building from a source checkout without cython. | Doctorhoenikker/line_profiler,Doctorhoenikker/line_profiler,jstasiak/line_profiler,amegianeg/line_profiler,ymero/line_profiler,jsalva/line_profiler,jsalva/line_profiler,dreampuf/lprofiler,jstasiak/line_profiler,ymero/line_profiler,dreampuf/lprofiler,amegianeg/line_profiler,eblur/line_profiler,eblur/line_profiler,dreamp... | setup.py | setup.py | import os.path
import distutils.errors
from distutils.core import setup
from distutils.extension import Extension
from distutils.log import warn
try:
from Cython.Distutils import build_ext
cmdclass = dict(build_ext=build_ext)
line_profiler_source = '_line_profiler.pyx'
except ImportError, e:
cmdclass ... |
from distutils.core import setup
from distutils.extension import Extension
from distutils.log import warn
try:
from Cython.Distutils import build_ext
cmdclass = dict(build_ext=build_ext)
line_profiler_source = '_line_profiler.pyx'
except ImportError, e:
warn("Could not import Cython. Using pre-generat... | bsd-3-clause | Python |
65fd54eff795c19d63e8c3f8e06c1cf4f141d72f | Bump version. | iMedicare/python-callfire | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='python-callfire',
version='0.9.6',
description='CallFire API thin wrapper.',
long_description=readme,
url='https://github.com/iMedicare/python-callfire',
license=... | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='python-callfire',
version='0.9.5',
description='CallFire API thin wrapper.',
long_description=readme,
url='https://github.com/iMedicare/python-callfire',
license=... | mit | Python |
790385f947f125d89539e0b3ca17436958143709 | edit dependency_links for msl-loadlib | 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 |
54c5baf37360a1855be5461ef1eedf23d4ac6091 | Add setup classifiers as per @thijstriemstra's suggestion | rm-hull/luma.led_matrix,rm-hull/max7219 | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup,Extension
setup(
name = "max7219",
version = "0.2.2",
author = "Richard Hull",
author_email = "richard.hull@destructuring-bind.org",
description = ("A library to drive a MAX7219 LED serializer using hardware spidev"),
license = "MIT",
k... | #!/usr/bin/env python
from distutils.core import setup,Extension
setup(
name = "max7219",
version = "0.2.2",
author = "Richard Hull",
author_email = "richard.hull@destructuring-bind.org",
description = ("A library to drive a MAX7219 LED serializer using hardware spidev"),
license = "MIT",
k... | mit | Python |
3ef96311d740e8a7d81bcadba95c35ea5d95fbb2 | Fix project web page | ahitrin-attic/measurator-proto | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='measurator',
version='0.1',
url='https://github.com/ahitrin/measurator-proto',
license='MIT',
author='Andrey Hitrin',
author_email='andrey.hitrin@gmail.com',
description='Simple command-line app aimed to record and evaluate measures',... | from setuptools import setup, find_packages
setup(
name='measurator',
version='0.1',
url='https://ahitrin.github.io',
license='MIT',
author='Andrey Hitrin',
author_email='andrey.hitrin@gmail.com',
description='Simple command-line app aimed to record and evaluate measures',
packages=find... | mit | Python |
f1dcaa68841c4ed71cdcede6f5b229acc6f3a10f | Add missing comma | alexandermendes/Flask-Z3950,alexandermendes/Flask-Z3950 | setup.py | setup.py | # -*- coding: utf8 -*-
"""
Flask-Z3950
-----------
A Flask plugin that provides Z39.50 integration.
"""
import os
from setuptools import setup, find_packages
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except:
readme = ""
requirements=[
"Flask>=0.10.1",
"lxml>=3.5... | # -*- coding: utf8 -*-
"""
Flask-Z3950
-----------
A Flask plugin that provides Z39.50 integration.
"""
import os
from setuptools import setup, find_packages
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except:
readme = ""
requirements=[
"Flask>=0.10.1",
"lxml>=3.5... | bsd-3-clause | Python |
c1bf1e333178f80cca510e4eaf89534a89798337 | use correct release status (#9451) | googleapis/python-phishingprotection,googleapis/python-phishingprotection | setup.py | setup.py | # -*- coding: utf-8 -*-
#
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | # -*- coding: utf-8 -*-
#
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law... | apache-2.0 | Python |
7dff00da73361286ba1371dcc30c02c174dcda31 | Revert "Only specify which point release of sqlalchemy we should require." | nimbusproject/pidantic | setup.py | setup.py | #!/usr/bin/env pythonv
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
Version = "0.1"
if float("%d.%d" % sys.version_info[:2]) < 2.5:
sys.stderr.write("Your Python version %d.%d.%d is not supported.\n" % sys.version_info[:3])
sys.stderr.wri... | #!/usr/bin/env pythonv
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
Version = "0.1"
if float("%d.%d" % sys.version_info[:2]) < 2.5:
sys.stderr.write("Your Python version %d.%d.%d is not supported.\n" % sys.version_info[:3])
sys.stderr.wri... | apache-2.0 | Python |
f6f122f017be7a4d6a5215a33e3ee6112e4b2563 | Bump version number to 0.4b1 | SpotlightKid/jack-select,SpotlightKid/jack-select | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="jack-select",
version="0.4b1",
url="https://github.com/SpotlightKid/jack-select",
author="Christopher Arndt",
author_email="chris@chrisarndt.de",
description="A systray app to set the JACK configuration fr... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="jack-select",
version="0.3b1",
url="https://github.com/SpotlightKid/jack-select",
author="Christopher Arndt",
author_email="chris@chrisarndt.de",
description="A systray app to set the JACK configuration fr... | mit | Python |
e04b425bdc0d2d64e15871e82469c00bb07eec95 | Change the author name | tonyseek/simple-rbac,springtangent/simple-rbac,CoolCloud/simple-rbac | setup.py | setup.py | #!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup
long_description = open("README.rst", "r").read().decode("utf-8")
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"... | #!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup
long_description = open("README.rst", "r").read().decode("utf-8")
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"... | mit | Python |
58d79e60aff0f1009b8b81991844d0aaf23065eb | Bump required versions | asottile/cheetah_lint | setup.py | setup.py | from setuptools import find_packages
from setuptools import setup
setup(
name='cheetah_lint',
description='Linting tools for the Cheetah templating language.',
url='https://github.com/asottile/cheetah_lint',
version='0.0.0',
author='Anthony Sottile',
author_email='asottile@umich.edu',
class... | from setuptools import find_packages
from setuptools import setup
setup(
name='cheetah_lint',
description='Linting tools for the Cheetah templating language.',
url='https://github.com/asottile/cheetah_lint',
version='0.0.0',
author='Anthony Sottile',
author_email='asottile@umich.edu',
class... | mit | Python |
cd50b9aa21597e1a924970ba29155766ab7d4900 | Refactor setup.py | mechaxl/mixer,suriya/mixer,mattcaldwell/mixer | setup.py | setup.py | #!/usr/bin/env python
"""
mixer
-----
mixer -- Description
"""
import sys
from os import path as op
from setuptools import setup
from mixer import __version__, __project__, __license__
def read(fname):
try:
return open(op.join(op.dirname(__file__), fname)).read()
except IOError:
return '... | #!/usr/bin/env python
"""
mixer
-----
mixer -- Description
"""
from os import path as op
from setuptools import setup
from mixer import __version__, __project__, __license__
def read(fname):
try:
return open(op.join(op.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
... | bsd-3-clause | Python |
10e31b6e484e360d635c4e34e6be9d2f10f75bb1 | remove entry_points from setup() and revert packages= | ssato/python-anytemplate,ssato/python-anytemplate | setup.py | setup.py | from __future__ import absolute_import
from setuptools import setup, Command, find_packages
import os
import os.path
import subprocess
# See anytemplate/globals.py
PACKAGE = "anytemplate"
VERSION = "0.1.4"
# For daily snapshot versioning mode:
if os.environ.get("_SNAPSHOT_BUILD", None) is not None:
import datet... | from __future__ import absolute_import
from setuptools import setup, Command, find_packages
import os
import os.path
import subprocess
# See anytemplate/globals.py
PACKAGE = "anytemplate"
VERSION = "0.1.4"
# For daily snapshot versioning mode:
if os.environ.get("_SNAPSHOT_BUILD", None) is not None:
import datet... | mit | Python |
c692c1c228d1e1714b2092ab5feeca0c5d3e2018 | increment to 0.1.13 | rveachkc/pymsteams | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools.command.install import install
VERSION = "0.1.13"
def readme():
""" print long description """
with open('README.md') as f:
long_descrip = f.read()
return long_descrip
class VerifyVersionCommand(install)... | #!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools.command.install import install
VERSION = "0.1.12"
def readme():
""" print long description """
with open('README.md') as f:
long_descrip = f.read()
return long_descrip
class VerifyVersionCommand(install)... | apache-2.0 | Python |
239c1b228b9ed77b1fe0828eaf49af30ccbbae8e | Update version | ShunSakurai/check_forbidden,ShunSakurai/check_forbidden | setup.py | setup.py | from distutils.core import setup
import py2exe
setup(
console=[{'script':'check_forbidden.py','version':'1.1.0',}],
)
'''
go to the location and
py -3.4 setup.py py2exe
'''
| from distutils.core import setup
import py2exe
setup(
console=[{'script':'check_forbidden.py','version':'1.0.10',}],
)
'''
go to the location and
py -3.4 setup.py py2exe
'''
| mit | Python |
af87d78fab9006edba7271e1240255eaeabc6dbe | update version | drgrib/dotmap | setup.py | setup.py | from setuptools import setup
setup(
version = '1.2.14',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap'... | from setuptools import setup
setup(
version = '1.2.13',
name = 'dotmap',
packages = ['dotmap'], # this must be the same as the name above
description = 'ordered, dynamically-expandable dot-access dictionary',
author = 'Chris Redford',
author_email = 'credford@gmail.com',
url = 'https://github.com/drgrib/dotmap'... | mit | Python |
3b0e895a34af260c9e80dccfb3d4c6b625ba9315 | Upgrade version | trzemecki/dicttools | setup.py | setup.py | from distutils.core import setup
setup(
name='dicttools',
version='1.1.3',
packages=['dicttools', 'dicttools.tests'],
url='https://github.com/trzemecki/dicttools',
license='Apache 2.0',
author='Leszek Trzemecki',
author_email='leszek.trzemecki@gmail.com',
description='Additional diction... | from distutils.core import setup
setup(
name='dicttools',
version='1.1.2',
packages=['dicttools', 'dicttools.tests'],
url='https://github.com/trzemecki/dicttools',
license='Apache 2.0',
author='Leszek Trzemecki',
author_email='leszek.trzemecki@gmail.com',
description='Additional diction... | apache-2.0 | Python |
c70d9204930690769773587dc70bcde01efbd640 | Add minimum version check to setup.py scripts re #9793 | lexqt/EduTracTimingAndEstimation,lexqt/EduTracTimingAndEstimation,lexqt/EduTracTimingAndEstimation | setup.py | setup.py | #!/usr/bin/env python
import sys
from setuptools import setup
min_python = (2, 5)
if sys.version_info < min_python:
print "TimingAndEstimation requires Python %d.%d or later" % min_python
sys.exit(1)
if sys.version_info >= (3,):
print "TimingAndEstimation doesn't support Python 3 (yet)"
sys.exit(1)
PA... | #!/usr/bin/env python
from setuptools import setup
PACKAGE = 'timingandestimationplugin'
setup(name=PACKAGE,
description='Plugin to make Trac support time estimation and tracking with permissions',
keywords='trac plugin estimation timetracking permissions',
version='1.2.6b',
url='http://www.t... | mit | Python |
ea16654f3b46e907268d7b112d23e93767d5c45a | bump to v0.2 (new functionality) | armstrong/armstrong.esi | setup.py | setup.py | from setuptools import setup
setup(
name='armstrong.esi',
version='0.2',
description='Base functionality that needs to be shared widely',
author='Texas Tribune',
author_email='tech@texastribune.org',
url='http://github.com/texastribune/armstrong.esi/',
packages=[
'armstrong',
... | from setuptools import setup
setup(
name='armstrong.esi',
version='0.1.1',
description='Base functionality that needs to be shared widely',
author='Texas Tribune',
author_email='tech@texastribune.org',
url='http://github.com/texastribune/armstrong.esi/',
packages=[
'armstrong',
... | bsd-3-clause | Python |
4e9ffbb0aec449d50469dd52bca21a5c6e7e9fe1 | Bump version for release. | tilezen/scoville,tilezen/scoville,tilezen/scoville | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.1.3'
setup(name='scoville',
version=version,
description="A tool for measureing tile latency.",
long_description=open('README.md').read(),
classifiers=[
# strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
... | from setuptools import setup, find_packages
version = '0.1.2'
setup(name='scoville',
version=version,
description="A tool for measureing tile latency.",
long_description=open('README.md').read(),
classifiers=[
# strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
... | mit | Python |
692ecc596e24be16a5ae77bfa97da49deff2f046 | update extras_require | akaszynski/vtkInterface | setup.py | setup.py | """
Installation file for python vtki module
"""
from setuptools import setup
from io import open as io_open
import os
import sys
import platform
import warnings
package_name = 'vtki'
__version__ = None
filepath = os.path.dirname(__file__)
version_file = os.path.join(filepath, package_name, '_version.py')
with io_ope... | """
Installation file for python vtki module
"""
from setuptools import setup
from io import open as io_open
import os
import sys
import platform
import warnings
package_name = 'vtki'
__version__ = None
filepath = os.path.dirname(__file__)
version_file = os.path.join(filepath, package_name, '_version.py')
with io_ope... | mit | Python |
e92b0593a10577b238d1bb3823a2f2417e3f2ec0 | Bump version | arkon/uoft-scrapers,g3wanghc/uoft-scrapers,cobalt-uoft/uoft-scrapers,kshvmdn/uoft-scrapers | setup.py | setup.py | from distutils.core import setup
from codecs import open
setup(
name = 'uoftscrapers',
packages = [
'uoftscrapers',
'uoftscrapers.scrapers.utils',
'uoftscrapers.scrapers.courses',
'uoftscrapers.scrapers.buildings',
'uoftscrapers.scrapers.textbooks',
'uoftscrapers... | from distutils.core import setup
from codecs import open
setup(
name = 'uoftscrapers',
packages = [
'uoftscrapers',
'uoftscrapers.scrapers.utils',
'uoftscrapers.scrapers.courses',
'uoftscrapers.scrapers.buildings',
'uoftscrapers.scrapers.textbooks',
'uoftscrapers... | mit | Python |
35d76ae04933f90c09c02831e83ad42b7c0fe26c | bump version to 1.2.1 | andrenarchy/pseudopy | setup.py | setup.py | # -*- coding: utf-8 -*-
import os
from distutils.core import setup
import codecs
# shamelessly copied from VoroPy
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setup(name='pseudopy',
packages=['pseudopy'],
version='1.2.1',
descriptio... | # -*- coding: utf-8 -*-
import os
from distutils.core import setup
import codecs
# shamelessly copied from VoroPy
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setup(name='pseudopy',
packages=['pseudopy'],
version='1.2.0',
descriptio... | mit | Python |
fc03858672f9dff43aaddb472b9de3d978af0f2b | update classifiers for Django 2.0. | blastkiln/django-ip-shield | setup.py | setup.py | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-ip-shield',
... | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-ip-shield',
... | bsd-3-clause | Python |
12935ad0a057138a91515260197cd2f1ccab5d26 | Update links to github | avanov/book2arrange | setup.py | setup.py | import os
import sys
from setuptools import find_packages
from setuptools import setup
PY3K = sys.version_info >= (3,0)
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='book2arrange',
version='1.0.0',
packages=find_packages(exclude=['tests']),
install_require... | import os
import sys
from setuptools import find_packages
from setuptools import setup
PY3K = sys.version_info >= (3,0)
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='book2arrange',
version='1.0.0',
packages=find_packages(exclude=['tests']),
install_require... | mit | Python |
f61bffff2d5a0478bed902216968dc3220b16ec7 | Bump version! | yetone/timeout-decorator,pnpnpn/timeout-decorator | setup.py | setup.py | """Setuptools entry point."""
import codecs
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Engl... | """Setuptools entry point."""
import codecs
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Engl... | mit | Python |
98ecdc4f7740fddfbf2e00617e5cda0a01a5e4ed | update version to 0.1.2 | dhellmann/entry_point_inspector | setup.py | setup.py | #!/usr/bin/env python
PROJECT = 'entry_point_inspector'
# Change docs/source/conf.py too!
VERSION = '0.1.2'
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name=PROJECT,
version=VERSION,
descriptio... | #!/usr/bin/env python
PROJECT = 'entry_point_inspector'
# Change docs/source/conf.py too!
VERSION = '0.1.1'
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name=PROJECT,
version=VERSION,
descriptio... | apache-2.0 | Python |
d187c29e791ac3e95fdb35311c7683700ea0162a | update setup.py | DeanThompson/pyelong | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='pyelong',
version='0.0.1',
packages=[
'pyelong',
'pyelong.api',
'pyelong.api.hotel',
'pyelong.api.ihotel',
'pyelong.api.common'
],
url='',
license='MIT',
author='Yangliang Li',
autho... | #!/usr/bin/env python
from setuptools import setup
setup(
name='pyelong',
version='0.0.1',
packages=[
'pyelong',
'pyelong.api',
'pyelong.api.hotel',
'pyelong.api.ihotel',
'pyelong.api.common'
],
url='',
license='MIT',
author='Yangliang Li',
autho... | mit | Python |
bc99dd4fb2998d46f34d8822b91dc64f6998fc8d | make setup.py pull the version number from git | amplify-education/rover,mdg/rover | setup.py | setup.py | #
# Copyright (c) 2009 Wireless Generation, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, ... | #
# Copyright (c) 2009 Wireless Generation, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, ... | mit | Python |
144003b69598462a1ec5e8f53bef7da40ed4abd0 | Rewrite setup.py to add compile flags to those obtained from lapack options, so that we don't end up with duplicate kwargs passed to the extension. Also, change the compile flags to use -march=native instead of -march=opteron. | dopplershift/Scattering | setup.py | setup.py | from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
from numpy.distutils.system_info import get_info
from os.path import join
flags = ['-W', '-Wall', '-march=native', '-O3']
def configuration(parent_package='', top_path=None):
config = Configuration('scattering', parent_pack... | from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
from numpy.distutils.system_info import get_info
from os.path import join
flags = ['-W', '-Wall', '-march=opteron', '-O3']
def configuration(parent_package='', top_path=None):
config = Configuration('scattering', parent_pac... | bsd-2-clause | Python |
e902b7a4375b789b268cd1bfdf4d2fd3b7e21e0f | Patch version bump | ilogue/niprov,ilogue/niprov,ilogue/niprov,ilogue/niprov | setup.py | setup.py | #!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
import os
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
README = ''
setup(name='niprov',
version='0.1.post7',
author='Jasper J.F. van den Bosch',
author_... | #!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
import os
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
README = ''
setup(name='niprov',
version='0.1.post6',
author='Jasper J.F. van den Bosch',
author_... | bsd-3-clause | Python |
7e1f405466dec61b095467da078d7d609579e1fc | Exclude examples from setup.py | deepmind/dm-haiku,deepmind/dm-haiku | setup.py | setup.py | # Copyright 2019 DeepMind Technologies Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by ... | # Copyright 2019 DeepMind Technologies Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by ... | apache-2.0 | Python |
e00b8b72acdd3d4d46d1bf2411f893f4ea0ee44d | Fix unicode error on Py3.6.1 during install | plotly/dash,plotly/dash,plotly/dash,plotly/dash,plotly/dash | setup.py | setup.py | from setuptools import setup, find_packages
import io
exec (open('dash/version.py').read())
setup(
name='dash',
version=__version__,
author='chris p',
author_email='chris@plot.ly',
packages=find_packages(exclude=['tests*']),
license='MIT',
description='A Python framework for building react... | from setuptools import setup, find_packages
exec (open('dash/version.py').read())
setup(
name='dash',
version=__version__,
author='chris p',
author_email='chris@plot.ly',
packages=find_packages(exclude=['tests*']),
license='MIT',
description='A Python framework for building reactive web-ap... | mit | Python |
18f72651bdd29e65e147dd6da10da8f00764e61c | Add URL (#83) | angr/archinfo | setup.py | setup.py | try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find . -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n... | try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find . -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n... | bsd-2-clause | Python |
16443648d97c3e89d1a79a5809e875e35d25a1bd | Fix typeo in setup.py, no functional changes. | Yawning/sshproxy | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "sshproxy",
author = "yawning",
version = "0.0.1",
description = ("A SSH pluggable transport proxy written in Python"),
license = "BSD",
keywords = ['tor', 'obfuscation', 'twisted', 'ssh'],
packages = find_pac... | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "sshproxy",
author = "yawning",
version = "0.0.1",
description = ("A SSH pluggable transport proxy written in Python"),
license = "BSD",
keywords = ['tor', 'obfusication', 'twisted', 'ssh'],
packages = find_pa... | bsd-3-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.