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
f5a54897397c4a3b8f9e87b11a2a561033b8986c
Fix broken setup
wandb/client,wandb/client,wandb/client
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'Click>=6.0', 'gql>=0.1.0', 'requests>=2.0.0', 'six>=1.10.0'...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'Click>=6.0', 'gql>=0.1.0', 'requests>=2.0.0', 'six>=1.10.0'...
mit
Python
adfc532450699ac929dd08199abc2c0f751d982f
Allow this tool to be used with more recent versions of BeautifulSoup
plainas/tq,plainas/tq,plainas/tq
setup.py
setup.py
#!/usr/bin/python3 from distutils.core import setup setup( name='tq', version='0.2.0', description='comand line css selector', author='Pedro', author_email='pedroghcode@gmail.com', url='https://github.com/plainas/tq', packages= ['tq'], scripts=['bin/tq'], install_requires=["beautif...
#!/usr/bin/python3 from distutils.core import setup setup( name='tq', version='0.2.0', description='comand line css selector', author='Pedro', author_email='pedroghcode@gmail.com', url='https://github.com/plainas/tq', packages= ['tq'], scripts=['bin/tq'], install_requires=["beautif...
mit
Python
cdfdff048067ee4da0a5852ef32e1c7e7d280ac3
Bump django version (#243)
fidals/refarm-site,fidals/refarm-site,fidals/refarm-site
setup.py
setup.py
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') 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='refarm...
import os from setuptools import find_packages, setup with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') 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='refarm...
mit
Python
35dc73f0149d83f2f7f0cae9e602b1aaa399f2c5
Deal with MD and RST doc
vesln/robber.py
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import setup long_description = 'BDD / TDD assertion library for Python', if os.path.exists('README.rst'): long_description = open('README.rst').read() setup( name='robber', version='1.1.2', description='BDD / TDD assertion libra...
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup setup( name='robber', version='1.1.1', description='BDD / TDD assertion library for Python', author='Tao Liang', author_email='tao@synapse-ai.com', url='https://github.com/vesln/robber.py', packages=[ 'robber...
mit
Python
28879cc2174c7b778041eb9c7439f831c4b7e16b
Fix failed tests with Django 1.3 branch
ttyS15/django-celery-rpc,tumb1er/django-celery-rpc,bourivouh/django-celery-rpc
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # https://github.com/msabramo/virtualenv/commit/ddd0aa02cf822fc690ff9c4bfead70c3e6767eee try: import multiprocessing except ImportError: pass import sys if sys.version_info >= (3, 0): AUTOFIXTURE_VERSION = "0.9.1" else: AUTOFIXTURE_VER...
#!/usr/bin/env python from setuptools import setup, find_packages # https://github.com/msabramo/virtualenv/commit/ddd0aa02cf822fc690ff9c4bfead70c3e6767eee try: import multiprocessing except ImportError: pass import sys if sys.version_info >= (3, 0): AUTOFIXTURE_VERSION = "0.9.1" else: AUTOFIXTURE_VER...
unlicense
Python
f22a9dcc6ff88d82debc3e7c2668ad1b8c74f1a2
Bump version.
EmilStenstrom/conllu
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '1.0' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__), ...
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '0.11' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__),...
mit
Python
50eed1beef1a38490fcfc206eed18d404f69dc00
rename package version
sk2/autonetkit
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup #from setuptools import setup, find_packages setup ( name = "autonetkit-v3-dev", version = "0.0.3", description = 'Automated configuration generator', long_description = 'Automated configuration generator', # simple to run entry_points...
#!/usr/bin/env python from setuptools import setup #from setuptools import setup, find_packages setup ( name = "autonetkit-v3-cisco", version = "0.0.1", description = 'Automated configuration generator', long_description = 'Automated configuration generator', # simple to run entry_poin...
bsd-3-clause
Python
8e46c89f5955990fc945e9145addfd16fe0fe3ae
Fix url in setup.py
nnsnodnb/django-ios-notifications,nnsnodnb/django-ios-notifications
setup.py
setup.py
# coding: utf-8 import sys from setuptools import setup, find_packages NAME = 'ios-notification' VERSION = '0.0.2' def read(filename): import os BASE_DIR = os.path.dirname(__file__) filename = os.path.join(BASE_DIR, filename) with open(filename, 'r') as f: return f.read() def readlist(filen...
# coding: utf-8 import sys from setuptools import setup, find_packages NAME = 'ios-notification' VERSION = '0.0.2' def read(filename): import os BASE_DIR = os.path.dirname(__file__) filename = os.path.join(BASE_DIR, filename) with open(filename, 'r') as f: return f.read() def readlist(filen...
mit
Python
19808d2474525a524e9fed028ead01d95a0bdef7
bump version to 0.1.4
layzerar/gospel
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import find_packages, setup setup( name="gospel", version="0.1.4", description="Utilities for deploying applications", author="Melvi Ts", author_email="layzerar@gmail.com", url="https://github.com/layzerar/gospel", license="MIT License", package...
# -*- coding: utf-8 -*- from setuptools import find_packages, setup setup( name="gospel", version="0.1.3", description="Utilities for deploying applications", author="Melvi Ts", author_email="layzerar@gmail.com", url="https://github.com/layzerar/gospel", license="MIT License", package...
mit
Python
3ef64d93afeb716d4c219d0b1eb0b944b49b1918
improve trove classifiers
jab/bidict,jab/bidict
setup.py
setup.py
from setuptools import setup setup( name='bidict', version='0.2.2-dev', author='Joshua Bronson', author_email='jab@math.brown.edu', description="2-way dict with convenient slice syntax: d[65] = 'A' -> d[:'A'] == 65", long_description= 'Please see https://bidict.readthedocs.org/ for documentatio...
from setuptools import setup setup( name='bidict', version='0.2.2-dev', author='Joshua Bronson', author_email='jab@math.brown.edu', description="2-way dict with convenient slice syntax: d[65] = 'A' -> d[:'A'] == 65", long_description= 'Please see https://bidict.readthedocs.org/ for documentatio...
mpl-2.0
Python
2473f0e7a42c0e82f99dcbead29c1a78e5e04465
Fix setuptools package name to 'globus-sdk'
globusonline/globus-sdk-python,aaschaer/globus-sdk-python,globus/globus-sdk-python,globus/globus-sdk-python,sirosen/globus-sdk-python
setup.py
setup.py
from setuptools import setup setup(name="globus-sdk", version="0.1", description="Globus SDK for Python", long_description=open("README.md").read(), author="Bryce Allen", author_email="ballen@globus.org", url="https://github.com/globusonline/globus-sdk-python", packages=["glob...
from setuptools import setup setup(name="globus-sdk-python", version="0.1", description="Globus SDK for Python", long_description=open("README.md").read(), author="Bryce Allen", author_email="ballen@globus.org", url="https://github.com/globusonline/globus-sdk-python", packages...
apache-2.0
Python
eaed78b748d703a63e227ee2ee2824c4bf24ed6e
Bump http-parser version in dependencies.
dieseldev/diesel
setup.py
setup.py
import sys, os assert sys.version_info >= (2, 6), \ "Diesel requires python 2.6 (or greater 2.X release)" from setuptools import setup if os.system("which palmc > /dev/null 2>&1") == 0: os.system("palmc ./diesel/protocols ./diesel/protocols") additional_requires = [] VERSION = "3.0b1" setup(name="diesel", ...
import sys, os assert sys.version_info >= (2, 6), \ "Diesel requires python 2.6 (or greater 2.X release)" from setuptools import setup if os.system("which palmc > /dev/null 2>&1") == 0: os.system("palmc ./diesel/protocols ./diesel/protocols") additional_requires = [] VERSION = "3.0b1" setup(name="diesel", ...
bsd-3-clause
Python
d49851e306d138d537e2772d5952797470f31552
Add keywords and fix license string in setup.py
linusg/wsinfo
setup.py
setup.py
from setuptools import setup from wsinfo import __version__ with open("README.rst", "r") as f: long_description = f.read() setup(name="wsinfo", packages=["wsinfo"], version=__version__, description="Python package for simply retrieving information about a specific website.", long_descripti...
from setuptools import setup from wsinfo import __version__ with open("README.rst", "r") as f: long_description = f.read() setup(name="wsinfo", packages=["wsinfo"], version=__version__, description="Python package for simply retrieving information about a specific website.", long_descripti...
mit
Python
7786a6cc8131d68ad2480536949d9a6c0be739ee
raise error on epydoc failure
bzimmer/pysmug
setup.py
setup.py
#!/usr/bin/env python # Written by Brian Zimmer import os import pysmug from distutils.core import setup from distutils.cmd import Command from distutils.errors import DistutilsExecError class epydoc(Command): description = "Builds the documentation." user_options = [] def initialize_options(self): pass ...
#!/usr/bin/env python # Written by Brian Zimmer import os import pysmug from distutils.core import setup from distutils.cmd import Command class epydoc(Command): description = "Builds the documentation." user_options = [] def initialize_options(self): pass def finalize_options(self): pass de...
mit
Python
2f36260401216dfdc1822b35e45125561d2ce5ab
increase version 0.0.1 -> 0.0.2
DavidLP/pilight
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code version = '0.0.2' author = 'David-Leon Pohl' author_email = 'David-Leon.Pohl@rub.de' setup( name='pilight', version=version, description='A pure python...
#!/usr/bin/env python from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code version = '0.0.1' author = 'David-Leon Pohl' author_email = 'David-Leon.Pohl@rub.de' setup( name='pilight', version=version, description='A pure python...
mit
Python
4bbe9f5d80bb5423752e3c2ead7c5791d9811992
enable Pylons nosetests plugin
veekun/spline,veekun/spline
setup.py
setup.py
from setuptools import setup, find_packages setup( name='spline', version='0.1', description='', author='', author_email='', #url='', install_requires=[ "Pylons>=1.0.1", "SQLAlchemy>=0.6", "Mako>=0.3.4", "nose>=0.11", "WTForms>=0.6", 'markdown...
from setuptools import setup, find_packages setup( name='spline', version='0.1', description='', author='', author_email='', #url='', install_requires=[ "Pylons>=1.0.1", "SQLAlchemy>=0.6", "Mako>=0.3.4", "nose>=0.11", "WTForms>=0.6", 'markdown...
mit
Python
59083930889982f68f96cd6a039eb90fea5c606c
fix compatibility with Python 3 (PY-3847)
allotria/intellij-community,akosyakov/intellij-community,Lekanich/intellij-community,asedunov/intellij-community,wreckJ/intellij-community,fitermay/intellij-community,ThiagoGarciaAlves/intellij-community,apixandru/intellij-community,semonte/intellij-community,ol-loginov/intellij-community,ivan-fedorov/intellij-communit...
platform/platform-resources/src/launcher.py
platform/platform-resources/src/launcher.py
#!/usr/bin/python import socket import struct import sys import os import os.path import time # see com.intelij.idea.SocketLock for the server side of this interface RUN_PATH = '$RUN_PATH$' CONFIG_PATH = '$CONFIG_PATH$' args = [] skip_next = False for arg in sys.argv[1:]: if arg == '-l' or arg == '--line': ...
#!/usr/bin/python import socket import struct import sys import os import os.path import time # see com.intelij.idea.SocketLock for the server side of this interface RUN_PATH = '$RUN_PATH$' CONFIG_PATH = '$CONFIG_PATH$' args = [] skip_next = False for arg in sys.argv[1:]: if arg == '-l' or arg == '--line': ...
apache-2.0
Python
7068a45c95a3bd779b4c2f96e0d3b67426e81ad4
Bump from 3.1.0 to 3.2.0. (#125)
SergeyPirogov/testcontainers-python
setup.py
setup.py
# # 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, software # ...
# # 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, software # ...
apache-2.0
Python
0156978505ea9cc4c7d41252714a45811be5cc6c
add support for python 3.10 (#140)
googleapis/python-recommender,googleapis/python-recommender
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
# -*- coding: utf-8 -*- # # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
apache-2.0
Python
79cb8281214ccfa09e551040d21d1fabf1351aca
Add Python classifiers to setup.py
igboyes/virtool,virtool/virtool,virtool/virtool,igboyes/virtool
setup.py
setup.py
import importlib from cx_Freeze import setup, Executable backend_path = importlib.import_module("bcrypt").__path__[0] backend_path = backend_path.replace("bcrypt", ".libs_cffi_backend") # Dependencies are automatically detected, but it might need # fine tuning. build_exe_options = { "include_files": [ ("...
import importlib from cx_Freeze import setup, Executable backend_path = importlib.import_module("bcrypt").__path__[0] backend_path = backend_path.replace("bcrypt", ".libs_cffi_backend") # Dependencies are automatically detected, but it might need # fine tuning. build_exe_options = { "include_files": [ ("...
mit
Python
8050caff6d45988bd58431875be78304b79974fa
Use setuptools.find_packages() to find all packages (Fixes #154)
anson-tang/PyMySQL,lzedl/PyMySQL,eibanez/PyMySQL,PyMySQL/PyMySQL,mosquito/Tornado-MySQL,yeyinzhu3211/PyMySQL,NunoEdgarGub1/PyMySQL,jwjohns/PyMySQL,modulexcite/PyMySQL,MartinThoma/PyMySQL,lzedl/PyMySQL,jheld/PyMySQL,yeyinzhu3211/PyMySQL,nju520/PyMySQL,pymysql/pymysql,methane/PyMySQL,eibanez/PyMySQL,boneyao/PyMySQL,Ting-...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] try: with open('README.rst') as f: readme = f.read() except IOError: ...
try: from setuptools import setup, Command except ImportError: from distutils.core import setup, Command version_tuple = __import__('pymysql').VERSION if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] setup( name = "PyMySQL", ver...
mit
Python
4dac0fbfa40e0d535945434de014fdf6d897cf13
bump version
crgwbr/asymmetric_jwt_auth,crgwbr/asymmetric_jwt_auth
setup.py
setup.py
#!/usr/bin/env python from distutils.core import setup packages = [ 'asymmetric_jwt_auth', 'asymmetric_jwt_auth.test', 'asymmetric_jwt_auth.management', 'asymmetric_jwt_auth.management.commands', ] requires = [ 'PyJWT>=1.4.0', 'cryptography>=1.0', ] setup( name='asymmetric_jwt_auth', ...
#!/usr/bin/env python from distutils.core import setup packages = [ 'asymmetric_jwt_auth', 'asymmetric_jwt_auth.test', 'asymmetric_jwt_auth.management', 'asymmetric_jwt_auth.management.commands', ] requires = [ 'PyJWT>=1.4.0', 'cryptography>=1.0', ] setup( name='asymmetric_jwt_auth', ...
isc
Python
fd6b1f0c4e7fc4c7236faf5c0debff8222c08af2
Fix #972
psf/requests
setup.py
setup.py
#!/usr/bin/env python import os import sys import requests try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() packages = [ 'requests', 'requests.packages', 'requests.pa...
#!/usr/bin/env python import os import sys import requests try: from setuptools import setup except ImportError: from distutils.core import setup if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() packages = [ 'requests', 'requests.packages', 'requests.pa...
apache-2.0
Python
57234bb0f1589d46a24891a48ebcd0eab8731d26
Fix package data
jvivian/rnaseq-lib,jvivian/rnaseq-lib
setup.py
setup.py
from setuptools import setup, find_packages setup(name='rnaseq-lib', version='1.0a7', description='', url='http://github.com/jvivian/rnaseq-lib', author='John Vivian', author_email='jtvivian@gmail.com', license='MIT', package_dir={'': 'src'}, packages=find_packages('src'...
from setuptools import setup, find_packages setup(name='rnaseq-lib', version='1.0a7', description='', url='http://github.com/jvivian/rnaseq-lib', author='John Vivian', author_email='jtvivian@gmail.com', license='MIT', package_dir={'': 'src'}, packages=find_packages('src'...
mit
Python
b3a8daa6dbc5bd9d939cd7442c69549be31f7174
Include python 3.5 in setup classifiers.
WarrenWeckesser/numpngw
setup.py
setup.py
from setuptools import setup from os import path def get_numpngw_version(): """ Find the value assigned to __version__ in numpngw.py. This function assumes that there is a line of the form __version__ = "version-string" in numpngw.py. It returns the string version-string, or None if such a...
from setuptools import setup from os import path def get_numpngw_version(): """ Find the value assigned to __version__ in numpngw.py. This function assumes that there is a line of the form __version__ = "version-string" in numpngw.py. It returns the string version-string, or None if such a...
bsd-2-clause
Python
597854eeaacaae71832833d41eea260ad5ef7279
Add Python 3 to supported languages
dirn/Simon,dirn/Simon
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup setup( name='Simon', version='0.7.0', description='Simple MongoDB Models', long_description=open('README.rst').read(), author='Andy Dirnberger', author_email='dirn@dirnonline.com', url='https://github.com/dirn/Simon', packages=['simon'...
#!/usr/bin/env python from setuptools import setup setup( name='Simon', version='0.7.0', description='Simple MongoDB Models', long_description=open('README.rst').read(), author='Andy Dirnberger', author_email='dirn@dirnonline.com', url='https://github.com/dirn/Simon', packages=['simon'...
bsd-3-clause
Python
7bd045ce1157343b17318ce446185138400a5f75
Add transaction to project requirements
plone/plone.server,plone/plone.server
setup.py
setup.py
from setuptools import setup setup( name='sandbox', version=open('VERSION').read().strip(), long_description=(open('README.rst').read() + '\n' + open('CHANGELOG.rst').read()), py_modules=[ 'sandbox', ], setup_requires=[ ], install_requires=[ 'aiohtt...
from setuptools import setup setup( name='sandbox', version=open('VERSION').read().strip(), long_description=(open('README.rst').read() + '\n' + open('CHANGELOG.rst').read()), py_modules=[ 'sandbox', ], setup_requires=[ ], install_requires=[ 'aiohtt...
bsd-2-clause
Python
4fedaa45daf11cca503ce38feb778db2dfd67064
Fix warning about keywords
Bachmann1234/marshmallow-polyfield
setup.py
setup.py
#!/usr/bin/env python import os from setuptools import setup def read(fname): with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), fname), 'r') as infile: content = infile.read() return content setup( name='marshmallow-polyfield', version=5.7, description='An unofficial ext...
#!/usr/bin/env python import os from setuptools import setup def read(fname): with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), fname), 'r') as infile: content = infile.read() return content setup( name='marshmallow-polyfield', version=5.7, description='An unofficial ext...
apache-2.0
Python
a873258d28829ee24b3452950fbf3875ccebe44d
Add missing commas to setup classifiers
dirn/Simon,dirn/Simon
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os import sys if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() setup( name='Simon', version='0.2.0', description='Simple MongoDB Models', long_description=open('README.rst').read(), author='Andy D...
#!/usr/bin/env python from setuptools import setup import os import sys if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() setup( name='Simon', version='0.2.0', description='Simple MongoDB Models', long_description=open('README.rst').read(), author='Andy D...
bsd-3-clause
Python
4da0027e0b6ee1ebca3087ed44b29dfc676a09d7
Fix PyPI classifier
crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute,crosscompute/crosscompute
setup.py
setup.py
from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] def initialize_options(self): TestCommand.initialize_options(self) ...
from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.test import test as TestCommand class PyTest(TestCommand): user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')] def initialize_options(self): TestCommand.initialize_options(self) ...
mit
Python
144df469d6632a5ec5bb5e86a9cbf1bb0b324c2c
add license
vrutkovs/atomic-reactor,maxamillion/atomic-reactor,projectatomic/atomic-reactor,DBuildService/atomic-reactor,TomasTomecek/atomic-reactor,TomasTomecek/atomic-reactor,mmilata/atomic-reactor,DBuildService/atomic-reactor,fr34k8/atomic-reactor,jarodwilson/atomic-reactor,fr34k8/atomic-reactor,jpopelka/atomic-reactor,vrutkovs...
setup.py
setup.py
#!/usr/bin/python import re from setuptools import setup, find_packages data_files = { "share/dock/images/privileged-builder": [ "images/privileged-builder/Dockerfile", "images/privileged-builder/docker.sh", ], "share/dock/images/dockerhost-builder": [ "images/dockerhost-builder/D...
#!/usr/bin/python import re from setuptools import setup, find_packages data_files = { "share/dock/images/privileged-builder": [ "images/privileged-builder/Dockerfile", "images/privileged-builder/docker.sh", ], "share/dock/images/dockerhost-builder": [ "images/dockerhost-builder/D...
bsd-3-clause
Python
cf319d6868498e75790ddddca09e7783d3d47681
use jurko's fork of suds for Py3K support
pitthsls/pycounter,chill17/pycounter
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'pycounter', version = '0.3', packages = find_packages(), author = 'Geoffrey Spear', author_email = 'geoffspear@gmail.com', keywords = 'library COUNTER journals usage_statistics', test_suite = 'pycounter.test', install_requires =...
from setuptools import setup, find_packages setup( name = 'pycounter', version = '0.3', packages = find_packages(), author = 'Geoffrey Spear', author_email = 'geoffspear@gmail.com', keywords = 'library COUNTER journals usage_statistics', test_suite = 'pycounter.test', install_requires =...
mit
Python
771ecddfc5fe2d00a1b69246b97f0b562ebb1b96
update my email
Toblerity/rtree,Toblerity/rtree
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import rtree import os import itertools as it # Get text from README.txt with open('docs/source/README.txt', 'r') as fp: readme_text = fp.read() extras_require = { 'test': ['pytest>=3', 'pytest-cov', 'numpy'] } extras_require['all'] = list(set(it.chain(*ext...
#!/usr/bin/env python from setuptools import setup import rtree import os import itertools as it # Get text from README.txt with open('docs/source/README.txt', 'r') as fp: readme_text = fp.read() extras_require = { 'test': ['pytest>=3', 'pytest-cov', 'numpy'] } extras_require['all'] = list(set(it.chain(*ext...
mit
Python
0277cf6b7875bc7813e1e1c5bbe35d4c70ac538a
Update link
vaquerizaslab/tadtool
setup.py
setup.py
from setuptools import setup, find_packages setup( name='tadtool', version='0.73', description='Assistant to find cutoffs in TAD calling algorithms.', packages=find_packages(exclude=["test"]), install_requires=[ 'numpy>=1.9.0', 'matplotlib', 'progressbar2', 'future' ...
from setuptools import setup, find_packages setup( name='tadtool', version='0.73', description='Assistant to find cutoffs in TAD calling algorithms.', packages=find_packages(exclude=["test"]), install_requires=[ 'numpy>=1.9.0', 'matplotlib', 'progressbar2', 'future' ...
mit
Python
91413a97684ee20479ca5ca56f558a85295efc9d
Upgrade pyglet to a base dependency
Farama-Foundation/Gymnasium,dianchen96/gym,d1hotpep/openai_gym,dianchen96/gym,machinaut/gym,d1hotpep/openai_gym,machinaut/gym,Farama-Foundation/Gymnasium
setup.py
setup.py
from setuptools import setup, find_packages import sys, os.path # Don't import gym module here, since deps may not be installed sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gym')) from version import VERSION setup(name='gym', version=VERSION, description='The OpenAI Gym: A toolkit for devel...
from setuptools import setup, find_packages import sys, os.path # Don't import gym module here, since deps may not be installed sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gym')) from version import VERSION setup(name='gym', version=VERSION, description='The OpenAI Gym: A toolkit for devel...
mit
Python
568284fd92dc1faeb0940e2a346da2c949fb6703
Bump flake8 to 3.7.2
MozillaSecurity/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz
setup.py
setup.py
# coding=utf-8 # # 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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import find_packages from setuptools import setup EX...
# coding=utf-8 # # 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 https://mozilla.org/MPL/2.0/. """setuptools install script""" from setuptools import find_packages from setuptools import setup EX...
mpl-2.0
Python
8dc3821fd4fbb083c67838b94d495546b4d0f8c6
add some error checking in setup.py
istresearch/json-transporter
setup.py
setup.py
from setuptools import find_packages try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='json-transporter', packages=find_packages(), package_data={}, install_requires=[ 'urllib3', 'elasticsearch>=1.6', 'boto', 'pym...
from setuptools import find_packages from setuptools import setup setup( name='json-transporter', packages=find_packages(), package_data={}, install_requires=[ 'urllib3', 'elasticsearch>=1.6', 'boto', 'pymongo', 'happybase', 'pykafka', 'docopt' ...
mit
Python
c972357a44640c7a5f803d79fc77ca597e1b22f0
Drop support for python 2.7
lauft/timew-report
setup.py
setup.py
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() config = { 'name': 'timew-report', 'version': '1.0.0', 'description': 'An interface for TimeWarrior report data', 'long_description': long_description, 'long_description_content_type': 'text/markdown',...
from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() config = { 'name': 'timew-report', 'version': '1.0.0', 'description': 'An interface for TimeWarrior report data', 'long_description': long_description, 'long_description_content_type': 'text/markdown',...
mit
Python
af0745cfff1ad43d28890dde4f0bf58bb96a8c1e
bump version
nuagenetworks/monolithe,nuagenetworks/monolithe,nuagenetworks/monolithe
setup.py
setup.py
# -*- coding: utf-8 -*- # # Copyright (c) 2015, Alcatel-Lucent Inc # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # no...
# -*- coding: utf-8 -*- # # Copyright (c) 2015, Alcatel-Lucent Inc # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # no...
bsd-3-clause
Python
655ac367fde72d892eccfeece3ebf6719612d35b
Add version to tf library reminder.
AmiiThinks/amii-tf-nn
setup.py
setup.py
from setuptools import setup, find_packages setup( name='amii-tf-nn', version='0.0.1', license='MIT', packages=find_packages(), install_requires=[ 'future == 0.15.2', 'setuptools >= 20.2.2', 'pyyaml == 3.12', # tensorflow or tensorflow-gpu v1.2 ], tests_requ...
from setuptools import setup, find_packages setup( name='amii-tf-nn', version='0.0.1', license='MIT', packages=find_packages(), install_requires=[ 'future == 0.15.2', 'setuptools >= 20.2.2', 'pyyaml == 3.12', # tensorflow or tensorflow-gpu ], tests_require=[...
mit
Python
d4a278e44effda9fb6f2cd9c505a6a2f6ed77bf8
Update setup.py
thinkpad20/simpleargs
setup.py
setup.py
import setuptools setuptools.setup(name='simpleargs', version='0.1.10', package_dir={'': 'src'}, packages=['simpleargs'], url='https://github.com/thinkpad20/simpleargs', description='A very straightforward argument parser library for python', )
import setuptools setuptools.setup(name='simpleargs', version='0.1.10', package_dir={'': 'src'}, packages=['simpleargs'], )
mit
Python
eda2686d7a59acf5fc7f6d72b710ccc8b20801a9
Install static files with distutils.
ludwiktrammer/django-tagging-autocomplete
setup.py
setup.py
# -*- coding: utf-8 -*- import os from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES long_description = open('README.rst').read() # install data files where source files are installed for scheme in INSTALL_SCHEMES.values(): scheme['data'] = scheme['purelib'] def find_data_file...
# -*- coding: utf-8 -*- from distutils.core import setup long_description = open('README.rst').read() setup( name='django-tagging-autocomplete', version='0.4.2', description='Autocompletion for django-tagging', long_description=long_description, author='Ludwik Trammer', author_email='ludwik@gm...
mit
Python
d82840e56604f89218acbf925632a67a780361cf
Bump version.
EmilStenstrom/conllu
setup.py
setup.py
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '1.2.1' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__)...
# -*- coding: utf-8 -*- import os from setuptools import setup VERSION = '1.2' setup( name='conllu', packages=["conllu"], version=VERSION, description='CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary', long_description=open(os.path.join(os.path.dirname(__file__), ...
mit
Python
4fd9c9cfd36d0ee955ece63e9e04e3719ebaa3c9
bump version for pypi
ninjaaron/fast-entry_points
setup.py
setup.py
from setuptools import setup import fastentrypoints setup( name='fastentrypoints', version='0.8', py_modules=['fastentrypoints'], description='Makes entry_points specified in setup.py load more quickly', long_description=open('README.rst').read(), url='https://github.com/ninjaaron/fast-entry_po...
from setuptools import setup import fastentrypoints setup( name='fastentrypoints', version='0.7', py_modules=['fastentrypoints'], description='Makes entry_points specified in setup.py load more quickly', long_description=open('README.rst').read(), url='https://github.com/ninjaaron/fast-entry_po...
bsd-2-clause
Python
90bf6176f9c587aeaf9371ad2457a3a3171a5436
Tweak to setup.py for PyPi submission
yunojuno/django-juno-testrunner
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-juno-testrunner', version='0.1', description='A mor...
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-juno-testrunner', version='0.1', description='A mor...
mit
Python
0e16f9100c718db8ed008bfad6e799fa7afaa27f
use setuptools for install_requires
muse/Lytebot
setup.py
setup.py
#! /usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup with open('README.md') as f: long_description = f.read() setup( name = 'Lytebot', version = '1.0.0', author = 'soud', author_email = 'soud@protonmail.com', description = 'Lytebot is a telegram bot existing of some co...
#! /usr/bin/env python3 # -*- coding: utf-8 -*- from distutils.core import setup with open('README.md') as f: long_description = f.read() setup( name = 'Lytebot', version = '1.0.0', author = 'soud', author_email = 'soud@protonmail.com', description = 'Lytebot is a telegram bot existing of som...
mit
Python
e19d86575e141d18ff3a5cc686543fb1e0f01ff3
Add pymongo requirement version.
openchordcharts/openchordcharts-api,openchordcharts/web-api
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """Open chord charts project.""" from setuptools import setup, find_packages doc_lines = __doc__.split('\n') setup( author=u'Christophe Benz', author_email=u'christophe.benz@gmail.com', classifiers=[ 'Development Status :: 3 - Alpha', 'En...
#!/usr/bin/env python # -*- coding: utf-8 -*- """Open chord charts project.""" from setuptools import setup, find_packages doc_lines = __doc__.split('\n') setup( author=u'Christophe Benz', author_email=u'christophe.benz@gmail.com', classifiers=[ 'Development Status :: 3 - Alpha', 'En...
agpl-3.0
Python
adb1efee22bce7342a22d09a9958f3a4be1cfd32
Update rc version
Chris7/pyquant,Chris7/pyquant,pandeylab/pyquant,pandeylab/pyquant,Chris7/pyquant,pandeylab/pyquant
setup.py
setup.py
from __future__ import print_function import os from distutils.core import setup from distutils.extension import Extension from setuptools import find_packages try: from Cython.Build import cythonize import Cython.Distutils CYTHON=True except ImportError: CYTHON=False print('CYTHON UNAVAILABLE') tr...
from __future__ import print_function import os from distutils.core import setup from distutils.extension import Extension from setuptools import find_packages try: from Cython.Build import cythonize import Cython.Distutils CYTHON=True except ImportError: CYTHON=False print('CYTHON UNAVAILABLE') tr...
mit
Python
0f8071c99dd8c5f29fb8021c4c04d458a2514e06
Bump version to 0.1
box/genty,box/genty
setup.py
setup.py
# coding: utf-8 from __future__ import unicode_literals from setuptools import setup, find_packages from os.path import dirname, join def main(): base_dir = dirname(__file__) setup( name='genty', version='0.1.0', description='Allows you to run a test with multiple data sets', ...
# coding: utf-8 from __future__ import unicode_literals from setuptools import setup, find_packages from os.path import dirname, join def main(): base_dir = dirname(__file__) setup( name='genty', version='0.0.1', description='Allows you to run a test with multiple data sets', ...
apache-2.0
Python
0ff36236e61ec73ee03c7dd7b6c10e319af56dee
update pypi info in CI
datamade/pyhacrf,datamade/pyhacrf,datamade/pyhacrf
setup.py
setup.py
from setuptools import setup, Extension from codecs import open from os import path # from Michael Hoffman's http://www.ebi.ac.uk/~hoffman/software/sunflower/ class NumpyExtension(Extension): def __init__(self, *args, **kwargs): from numpy import get_include from numpy.distutils.misc_util import ...
from setuptools import setup, Extension from codecs import open from os import path # from Michael Hoffman's http://www.ebi.ac.uk/~hoffman/software/sunflower/ class NumpyExtension(Extension): def __init__(self, *args, **kwargs): from numpy import get_include from numpy.distutils.misc_util import ...
bsd-3-clause
Python
12ed0ebd5cff41d4f579189284f8cda8bab9f906
Bump version -> v0.7.0
nobita-isc/annotator-store,nobita-isc/annotator-store,nobita-isc/annotator-store,happybelly/annotator-store,nobita-isc/annotator-store,ningyifan/annotator-store,openannotation/annotator-store
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'annotator', version = '0.7.0', packages = find_packages(), install_requires = [ 'Flask==0.8', 'pyes==0.16.0', 'PyJWT==0.1.4', 'nose==1.1.2', 'mock==0.8.0' ], # metadata for upload to PyPI au...
from setuptools import setup, find_packages setup( name = 'annotator', version = '0.6.4', packages = find_packages(), install_requires = [ 'Flask==0.8', 'pyes==0.16.0', 'PyJWT==0.1.4', 'nose==1.1.2', 'mock==0.8.0' ], # metadata for upload to PyPI au...
mit
Python
e273bac4ce2f3d3c82688c2148ffebc7e0bd0b22
Bump version to 3.1m4
geokala/cloudify-amqp-influxdb,cloudify-cosmo/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
3a61df335be02983cf3394f5e343bcc56bde4657
Switch from distutils to setuptools
rihardsk/LatvianStemmer
setup.py
setup.py
from setuptools import setup with open("README.md", "r") as f: readme = f.read() setup( name='LatvianStemmer', version='1.0.2', description='Light stemmer for Latvian.', py_modules=['LatvianStemmer'], author='Rihards Krišlauks', author_email='rihizs@gmail.com', url='https://github.com/...
from distutils.core import setup with open("README.md", "r") as f: readme = f.read() setup( name='LatvianStemmer', version='1.0.2', description='Light stemmer for Latvian.', py_modules=['LatvianStemmer'], author='Rihards Krišlauks', author_email='rihizs@gmail.com', url='https://github....
apache-2.0
Python
fcc86efbb203e4af30d55087ebe5f93689280f5a
Bump version in trunk
sstangle73/ouimeaux,fritz-fritz/ouimeaux,bennytheshap/ouimeaux,rgardner/ouimeaux,fritz-fritz/ouimeaux,iancmcc/ouimeaux,m-kiuchi/ouimeaux,bennytheshap/ouimeaux,drock371/ouimeaux,iancmcc/ouimeaux,aktur/ouimeaux,fritz-fritz/ouimeaux,fujita-shintaro/ouimeaux,sstangle73/ouimeaux,aktur/ouimeaux,rgardner/ouimeaux,sstangle73/o...
setup.py
setup.py
from setuptools import setup, find_packages import sys, os version = '0.3.1' with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: description = f.read() setup(name='ouimeaux', version=version, description="Python API to Belkin WeMo devices", long_description=description, ...
from setuptools import setup, find_packages import sys, os version = '0.3' with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f: description = f.read() setup(name='ouimeaux', version=version, description="Python API to Belkin WeMo devices", long_description=description, c...
bsd-3-clause
Python
9fc7b5faa72036fe20c2a5646acd2c879464daac
add package
TeamGhostBuster/restful-api
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='app', version="1.0", packages=find_packages(), include_package_data=False, install_requires=["flask_oauthlib","mongoengine"], )
# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='app', version="1.0", packages=find_packages(), include_package_data=False, install_requires=["flask"], )
apache-2.0
Python
9d3865018387b43b2ef382cdb03245601b904b2f
Add more classifiers to the setup script
Pithikos/django-compressor-postcss,Pithikos/django-compressor-postcss
setup.py
setup.py
from setuptools import setup import os import io def file_content(fname): return io.open(os.path.join(os.path.dirname(__file__), fname), encoding="UTF-8").read() dist = setup( name='django-compressor-postcss', version='0.8', description='PostCSS support for django-compressor', long_description=f...
from setuptools import setup import os import io def file_content(fname): return io.open(os.path.join(os.path.dirname(__file__), fname), encoding="UTF-8").read() dist = setup( name='django-compressor-postcss', version='0.8', description='PostCSS support for django-compressor', long_description=f...
mit
Python
294556f8bc972dd8ccf4f6b9e6eba6574725d5c0
bump 2.6.9
cdsama/shadowsocks,ellasafy/shadowsocks,xialincn/shadowsocks,paomian/shadowsocks,hilllinux/shadowsocks,cynricshu/shadowsocks,jik1992/fork-shadowsocks,zhongpei/shadowsocks,yangwe1/shadowsocks,javenfeng/shadowsocks,toooonyy/shadowsocks,WaybackMachine/shadowsocks,sinperwolf/shadowsocks,Tonyce/shadowsocks,DropFan/shadowsoc...
setup.py
setup.py
import codecs from setuptools import setup with codecs.open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name="shadowsocks", version="2.6.9", license='http://www.apache.org/licenses/LICENSE-2.0', description="A fast tunnel proxy that help you get through firewalls", ...
import codecs from setuptools import setup with codecs.open('README.rst', encoding='utf-8') as f: long_description = f.read() setup( name="shadowsocks", version="2.6.8", license='http://www.apache.org/licenses/LICENSE-2.0', description="A fast tunnel proxy that help you get through firewalls", ...
apache-2.0
Python
223323e52b2e0f035acb964257eb5aed2e7f3e49
Replace import codecs with io in setup.py
kvas-it/pytest-console-scripts
setup.py
setup.py
import io import os from setuptools import setup def read(fname): file_path = os.path.join(os.path.dirname(__file__), fname) return io.open(file_path, encoding='utf-8').read() setup( name='pytest-console-scripts', version='0.1.0', author='Vasily Kuznetsov', author_email='kvas.it@gmail.com', ...
import os import codecs from setuptools import setup def read(fname): file_path = os.path.join(os.path.dirname(__file__), fname) return codecs.open(file_path, encoding='utf-8').read() setup( name='pytest-console-scripts', version='0.1.0', author='Vasily Kuznetsov', author_email='kvas.it@gmai...
mit
Python
598f236eee9c87c83b42e3191bf171ca3e1f7555
add emit_digraph script directive
BrianHicks/emit,BrianHicks/emit,BrianHicks/emit
setup.py
setup.py
from setuptools import setup import emit setup( name='emit', version=emit.__version__, description='Emitter for stream processing', long_description=open('README.md').read(), url='http://github.com/brianhicks/emit', author='Brian Hicks', author_email='brian@brianthicks.com', license='MI...
from setuptools import setup import emit setup( name='emit', version=emit.__version__, description='Emitter for stream processing', long_description=open('README.md').read(), url='http://github.com/brianhicks/emit', author='Brian Hicks', author_email='brian@brianthicks.com', license='MI...
mit
Python
45d864bcdfb514c96f715a5e2ec1f2bc2d327a77
Bump minor.
jaj42/dyngraph,jaj42/GraPhysio,jaj42/GraPhysio
setup.py
setup.py
from setuptools import setup setup(name = 'graphysio', version = '0.65', description = 'Graphical visualization of physiologic time series', url = 'https://github.com/jaj42/graphysio', author = 'Jona JOACHIM', author_email = 'jona@joachim.cc', license = 'ISC', python_requires ...
from setuptools import setup setup(name = 'graphysio', version = '0.64', description = 'Graphical visualization of physiologic time series', url = 'https://github.com/jaj42/graphysio', author = 'Jona JOACHIM', author_email = 'jona@joachim.cc', license = 'ISC', python_requires ...
isc
Python
cfc774be977fe62482617628fe0e72e49192f1e5
Change version to 0.3.3
raybuhr/grab,subeax/grab,pombredanne/grab-1,DDShadoww/grab,SpaceAppsXploration/grab,huiyi1990/grab,shaunstanislaus/grab,raybuhr/grab,DDShadoww/grab,subeax/grab,lorien/grab,alihalabyah/grab,maurobaraldi/grab,kevinlondon/grab,pombredanne/grab-1,kevinlondon/grab,maurobaraldi/grab,codevlabs/grab,alihalabyah/grab,liorvh/gra...
setup.py
setup.py
from setuptools import setup, find_packages setup( name = 'grab', version = '0.3.3', description = 'Pycurl wrapper', url = 'http://bitbucket.org/lorien/grab/', author = 'Grigoriy Petukhov', author_email = 'lorien@lorien.name', packages = find_packages(), include_package_data = True, ...
from setuptools import setup, find_packages setup( name = 'grab', version = '0.3.2', description = 'Pycurl wrapper', url = 'http://bitbucket.org/lorien/grab/', author = 'Grigoriy Petukhov', author_email = 'lorien@lorien.name', packages = find_packages(), include_package_data = True, ...
mit
Python
168e929e3ad6da7238203f9d3339eb1bd7931125
Standardize spacing and quotes in setup.py.
benspaulding/django-gcframe
setup.py
setup.py
# -*- coding: utf-8 -*- import os from distutils.core import setup here = os.path.dirname(__file__) def get_long_desc(): return open(os.path.join(here, 'README.rst')).read() # Function borrowed from carljm. def get_version(): fh = open(os.path.join(here, 'gcframe', '__init__.py')) try: for l...
# -*- coding: utf-8 -*- import os from distutils.core import setup here = os.path.dirname(__file__) def get_long_desc(): return open(os.path.join(here, 'README.rst')).read() # Function borrowed from carljm. def get_version(): fh = open(os.path.join(here, "gcframe", "__init__.py")) try: for l...
bsd-3-clause
Python
9ff8caecacbf7f952f619124bb689ad5bc5f5259
Bump version number.
ProjetPP/PPP-QuestionParsing-PLYFrench,ProjetPP/PPP-QuestionParsing-PLYFrench
setup.py
setup.py
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_french_parser', version='0.1.3', description='Parser of the French language for the PPP.', url='https://github.com/ProjetPP', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', lic...
#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='ppp_french_parser', version='0.1.2', description='Parser of the French language for the PPP.', url='https://github.com/ProjetPP', author='Valentin Lorentz', author_email='valentin.lorentz+ppp@ens-lyon.org', lic...
mit
Python
dc6f9a8e0a84992fce029400705841cb34ac1527
add six to requirements
ingresso-group/pyticketswitch
setup.py
setup.py
# -*- coding: utf-8 -*- from __future__ import absolute_import, division, print_function from setuptools import setup import re version = '' with open('pyticketswitch/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) ...
# -*- coding: utf-8 -*- from __future__ import absolute_import, division, print_function from setuptools import setup import re version = '' with open('pyticketswitch/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) ...
mit
Python
2b1f631725ce465e511d0a09da3febfe31884d10
update version
persandstrom/python-verisure
setup.py
setup.py
from setuptools import setup setup( name='python-verisure', version='0.2.7', description='read and change status of verisure devices through mypages.', long_description='A module for reading and changing status of ' + 'verisure devices through mypages. Compatible ' + ...
from setuptools import setup setup( name='python-verisure', version='0.2.6', description='read and change status of verisure devices through mypages.', long_description='A module for reading and changing status of ' + 'verisure devices through mypages. Compatible ' + ...
mit
Python
1ff57ed2456da6c7b3c14e803144bdc80382999d
Bump version
AASHE/django-constant-contact
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-constant-contact', version='1.0.3', description=("Django package for creating email marketing " ...
#!/usr/bin/env python from setuptools import setup import os # Utility function to read README file def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name='django-constant-contact', version='1.0.2', description=("Django package for creating email marketing " ...
mit
Python
3522a3174fc11f7dc103e2e47bb081cef7fc7bb5
Update requirements
novapost/django-ticketoffice,novapost/django-ticketoffice
setup.py
setup.py
# -*- coding: utf-8 -*- """Python packaging.""" import os import sys from setuptools import setup #: Absolute path to directory containing setup.py file. here = os.path.abspath(os.path.dirname(__file__)) #: Boolean, ``True`` if environment is running Python version 2. IS_PYTHON2 = sys.version_info[0] == 2 NAME = '...
# -*- coding: utf-8 -*- """Python packaging.""" import os import sys from setuptools import setup #: Absolute path to directory containing setup.py file. here = os.path.abspath(os.path.dirname(__file__)) #: Boolean, ``True`` if environment is running Python version 2. IS_PYTHON2 = sys.version_info[0] == 2 NAME = '...
bsd-3-clause
Python
93f0da221865148f532d2a7755fa23aa7abf4c9f
Fix dependency links on setup
opps/opps-infographics
setup.py
setup.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages from opps import infographics install_requires = ["opps", 'opps-timelinejs'] classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT Lic...
#!/usr/bin/env python # -*- coding:utf-8 -*- from setuptools import setup, find_packages from opps import infographics install_requires = ["opps", 'opps-timelinejs'] classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT Lic...
mit
Python
91efb2294489da38c209fa9a813e355e503b6798
Bump version to 0.27.0
miLibris/flask-rest-jsonapi
setup.py
setup.py
from setuptools import setup, find_packages __version__ = '0.27.0' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
from setuptools import setup, find_packages __version__ = '0.26.0' setup( name="Flask-REST-JSONAPI", version=__version__, description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \ and data provider of your choice (SQLAlchemy, Mo...
mit
Python
c0a53b0e71987b1d71bc12d5c49d5a4bcf2655a0
Change long_description_content_type to text/markdown
nok/sklearn-porter
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup from setuptools import find_packages from sklearn_porter import meta # see sklearn_porter/package.json setup( name=meta.get('name'), description=meta.get('description'), long_description=meta.get('long_description'), long_description_content_type...
# -*- coding: utf-8 -*- from setuptools import setup from setuptools import find_packages from sklearn_porter import meta # see sklearn_porter/package.json setup( name=meta.get('name'), description=meta.get('description'), long_description=meta.get('long_description'), keywords=meta.get('keywords')...
bsd-3-clause
Python
6779a97cc6e7110470c692d4fc520c989328bb26
Tweak setup
bebraw/speccer
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import speccer from speccer import version from setuptools import setup description = "Specification based test runner." cur_dir = os.path.dirname(__file__) try: long_description = open(os.path.join(cur_dir, 'README.md')).read() except: long_description =...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import speccer from speccer import version from setuptools import setup description = "Specification based test runner." cur_dir = os.path.dirname(__file__) try: long_description = open(os.path.join(cur_dir, 'README.md')).read() except: long_description =...
mit
Python
d0122c0862e0024021fcf24b8c4a0c901287d5d5
Bump version to 0.0.3
Xopherus/redis-url-py
setup.py
setup.py
from setuptools import setup setup( name='redis-url-py', version='0.0.3', url='https://github.com/Xopherus/redis-url-py', license='BSD', author='Chris Raborg', author_email='craborg1@umbc.edu', description='Use Redis URLs in your Python applications', py_modules=['redis_url'], zip_s...
from setuptools import setup setup( name='redis-url-py', version='0.0.2', url='https://github.com/Xopherus/redis-url-py', license='BSD', author='Chris Raborg', author_email='craborg1@umbc.edu', description='Use Redis URLs in your Python applications', py_modules=['redis_url'], zip_s...
bsd-2-clause
Python
c34540733bed907a624be75df1c638de64f55171
Remove support for python 3.5 and 3.6 which are EOL
albertyw/git-reviewers,albertyw/git-reviewers
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup from git_reviewers import reviewers here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() # Package meta-data. NAME = 'g...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os from setuptools import find_packages, setup from git_reviewers import reviewers here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() # Package meta-data. NAME = 'g...
mit
Python
39218f7895129319d83ddf54d21ec5d50ddc42fc
Simplify code for loading README
lsst-sqre/lander,lsst-sqre/lander
setup.py
setup.py
from pathlib import Path from setuptools import setup packagename = 'lander' description = ('HTML landing page generator for LSST PDF documentation ' 'deployed from Git to LSST the Docs.') author = 'Association of Universities for Research in Astronomy, Inc.' author_email = 'jsick@lsst.org' license = ...
from io import open import os from setuptools import setup packagename = 'lander' description = ('HTML landing page generator for LSST PDF documentation ' 'deployed from Git to LSST the Docs.') author = 'Association of Universities for Research in Astronomy, Inc.' author_email = 'jsick@lsst.org' licen...
mit
Python
1e77e827518f9239d28930d1700aec693b5259eb
fix version number parsing in setup.py
thisch/python-falafel
setup.py
setup.py
from setuptools import setup, find_packages with open('falafel/version.py') as f: exec(f.read()) classifiers = [ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Programming Language :: ...
from setuptools import setup, find_packages with open('falafel/version.py') as f: for line in f: if line.startswith('__version__'): exec(line) classifiers = [ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Int...
bsd-2-clause
Python
750ff74e17a51572f0cd9c19eeb811b34b6e19bb
Bump to version 0.22.0
nerevu/riko,nerevu/riko
setup.py
setup.py
#!/usr/bin/env python import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename)) ...
#!/usr/bin/env python import sys from os import path as p try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages def read(filename, parent=None): parent = (parent or __file__) try: with open(p.join(p.dirname(parent), filename)) ...
mit
Python
84e4f0f68fbd43dcce67668a5431f981cd33e12d
Update setup.py with correct version number and requirements.
nebukadhezer/lucidity,BigRoy/lucidity,4degrees/lucidity
setup.py
setup.py
# :coding: utf-8 # :copyright: Copyright (c) 2013 Martin Pengelly-Phillips # :license: See LICENSE.txt. from setuptools.command.test import test as TestCommand try: from setuptools import setup except ImportError: from distutils.core import setup class PyTest(TestCommand): '''Pytest command.''' def ...
# :coding: utf-8 # :copyright: Copyright (c) 2013 Martin Pengelly-Phillips # :license: See LICENSE.txt. from setuptools.command.test import test as TestCommand try: from setuptools import setup except ImportError: from distutils.core import setup class PyTest(TestCommand): '''Pytest command.''' def ...
apache-2.0
Python
65df6e5f158999e2c12931162814c49984207b35
bump up the version number
ihadzic/jim,ihadzic/jim,ihadzic/jim
setup.py
setup.py
"""Setup for jim. Derived from https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path from glob import glob here = path.abspath(path.dirname(__file__)) # Get the long ...
"""Setup for jim. Derived from https://github.com/pypa/sampleproject """ # Always prefer setuptools over distutils from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path from glob import glob here = path.abspath(path.dirname(__file__)) # Get the long ...
mit
Python
09f4e86faadc6d4823b5333285d0fd313fee236e
Add classifiers to setup.py
albertyw/itolapi
setup.py
setup.py
from setuptools import setup try: readme = open("README.rst") long_description = str(readme.read()) finally: readme.close() setup(name='itolapi', version='1.1', description='API for interacting with itol.embl.de', long_description=long_description, url='http://github.com/albertyw/i...
from setuptools import setup try: readme = open("README.rst") long_description = str(readme.read()) finally: readme.close() setup(name='itolapi', version='1.1', description='API for interacting with itol.embl.de', long_description=long_description, url='http://github.com/albertyw/i...
mit
Python
0a86e2c4d2c21ea5f13fed12bd19cd7b1a2399a8
package author - update to correct info
cloudify-cosmo/cloudify-cli,cloudify-cosmo/cloudify-cli
setup.py
setup.py
######## # Copyright (c) 2013-2019 Cloudify Platform 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
06110d32be6bc52f05274318a0f5ff27828acf91
Switch to a Python3 Compataible open + read + exec vs execfile
pyinvoke/invocations,alex/invocations,mrjmad/invocations,singingwolfboy/invocations
setup.py
setup.py
#!/usr/bin/env python # Support setuptools or distutils try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup # Version info -- read without importing _locals = {} with open('invocations/_version.py') as fp: exec(fp.read(), None, _locals) version = _locals['...
#!/usr/bin/env python # Support setuptools or distutils try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup # Version info -- read without importing _locals = {} version_module = execfile('invocations/_version.py', _locals) version = _locals['__version__'] se...
bsd-2-clause
Python
3fde1d12e7b0679c04863d4b47cc3bc24e60f607
add convore.packages and convore.packages.anyjson to the setup package list
kennethreitz-archive/python-convore
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from distutils.core import setup def publish(): """Publish to PyPi""" os.system("python setup.py sdist upload") if sys.argv[-1] == "publish": publish() sys.exit() elif sys.argv[-1] == "test": import tox tox.cmdline() requi...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys from distutils.core import setup def publish(): """Publish to PyPi""" os.system("python setup.py sdist upload") if sys.argv[-1] == "publish": publish() sys.exit() elif sys.argv[-1] == "test": import tox tox.cmdline() requi...
isc
Python
5d484ec2b0bd72c72b78ef52194a3d05fb9ec910
update to reflect structural change
faroit/medleydb,marl/medleydb,marl/medleydb
setup.py
setup.py
from setuptools import setup setup( name='medleydb', version='0.1.0', description='Python module for the MedleyDB dataset', author='Rachel Bittner', author_email='rachel.bittner@nyu.edu', url='https://github.com/rabitt3/medleydb', download_url='http://github.com/rabitt3/medleydb/relea...
from setuptools import setup setup( name='medleydb', version='0.1.0', description='Python module for the MedleyDB dataset', author='Rachel Bittner', author_email='rachel.bittner@nyu.edu', url='https://github.com/rabitt3/medleydb', download_url='http://github.com/rabitt3/medleydb/relea...
mit
Python
9be897ab9a0eeb08ed46450c54187166c1c90acc
Bump version to 1.3.0
twaddington/django-gravatar
setup.py
setup.py
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='django-gravatar2', version='1.3.0', description='Essential Gravatar support for Django. Features helper' ' methods, templatetags and a full test suite!', long_description=open('RE...
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='django-gravatar2', version='1.2.1', description='Essential Gravatar support for Django. Features helper' ' methods, templatetags and a full test suite!', long_description=open('RE...
mit
Python
e34969db596ff3dfa4bf78efb3f3ccfe771d9ef9
Fix templates install. Bump to version 0.4 in the process (which is really my laziness).
jaylett/django_exceptional_middleware
setup.py
setup.py
# Use setuptools if we can try: from setuptools.core import setup except ImportError: from distutils.core import setup PACKAGE = 'django_exceptional_middleware' VERSION = '0.4' package_data = { 'exceptional_middleware': [ 'templates/http_responses/*.html' ], } setup( name=PACKAGE, version=VERSION...
# Use setuptools if we can try: from setuptools.core import setup except ImportError: from distutils.core import setup PACKAGE = 'django_exceptional_middleware' VERSION = '0.2' data_files = [ ( 'exceptional_middleware/templates/http_responses', [ 'exceptional_middleware/templates/http_responses/de...
mit
Python
b5b04daeea6cd5f5abb41689e5a1d9e6eb210d03
Bump to version 1.4.1
cdeepakroy/ctk-cli
setup.py
setup.py
from setuptools import setup, find_packages setup( name = "ctk-cli", version = "1.4.1", packages = find_packages(), description = "Python interface for inspecting and running CLI modules (as defined by CommonTK)", license = 'Apache 2.0', keywords = "CTK CLI Slicer host plugin module execution m...
from setuptools import setup, find_packages setup( name = "ctk-cli", version = "1.4", packages = find_packages(), description = "Python interface for inspecting and running CLI modules (as defined by CommonTK)", license = 'Apache 2.0', keywords = "CTK CLI Slicer host plugin module execution mod...
apache-2.0
Python
df40d8fd627f2460f5c1888f444a689332333fc1
Increment version.
jdmcbr/Shapely,jdmcbr/Shapely,mouadino/Shapely,mindw/shapely,abali96/Shapely,abali96/Shapely,mouadino/Shapely,mindw/shapely
setup.py
setup.py
import warnings try: from distribute_setup import use_setuptools use_setuptools() except: warnings.warn( "Failed to import distribute_setup, continuing without distribute.", Warning) from setuptools import setup, find_packages import sys readme_text = file('README.txt', 'rb').read() setup_args ...
import warnings try: from distribute_setup import use_setuptools use_setuptools() except: warnings.warn( "Failed to import distribute_setup, continuing without distribute.", Warning) from setuptools import setup, find_packages import sys readme_text = file('README.txt', 'rb').read() setup_args ...
bsd-3-clause
Python
2a2e81ac4beec9e092809d6d472afc5300684143
Update email
rparini/cxroots,rparini/cxroots
setup.py
setup.py
#!/usr/bin/env python import os import sys import shutil import unittest from distutils.core import setup, Command from numpy.distutils.misc_util import get_numpy_include_dirs packages = ['cxroots', 'cxroots.tests'] # get the version exec(open('cxroots/version.py').read()) # read the README_pip.rst try: with ope...
#!/usr/bin/env python import os import sys import shutil import unittest from distutils.core import setup, Command from numpy.distutils.misc_util import get_numpy_include_dirs packages = ['cxroots', 'cxroots.tests'] # get the version exec(open('cxroots/version.py').read()) # read the README_pip.rst try: with ope...
bsd-3-clause
Python
709740e1620743af3a57ae979d3aa9d609847a11
Fix closure dependency
Harry-R/skylines,TobiasLohner/SkyLines,shadowoneau/skylines,Turbo87/skylines,RBE-Avionik/skylines,Turbo87/skylines,TobiasLohner/SkyLines,RBE-Avionik/skylines,skylines-project/skylines,kerel-fs/skylines,skylines-project/skylines,RBE-Avionik/skylines,Harry-R/skylines,shadowoneau/skylines,skylines-project/skylines,Harry-R...
setup.py
setup.py
#!/usr/bin/env python from setuptools import setup, find_packages requirements = [ 'flask==0.10.1', 'werkzeug==0.9.4', 'Flask-Babel==0.9', 'Flask-Assets==0.8', 'Flask-Login==0.2.7', 'Flask-Cache==0.12', 'Flask-SQLAlchemy==1.0', 'Flask-DebugToolbar==0.8.0', 'Flask-WTF==0.9.3', '...
#!/usr/bin/env python from setuptools import setup, find_packages requirements = [ 'flask==0.10.1', 'werkzeug==0.9.4', 'Flask-Babel==0.9', 'Flask-Assets==0.8', 'Flask-Login==0.2.7', 'Flask-Cache==0.12', 'Flask-SQLAlchemy==1.0', 'Flask-DebugToolbar==0.8.0', 'Flask-WTF==0.9.3', '...
agpl-3.0
Python
613884b99eb0d6415210c4642d2496a291597ee4
Declare dependency
ZeitOnline/zeit.retresco
setup.py
setup.py
from setuptools import setup, find_packages import os.path def project_path(*names): return os.path.join(os.path.dirname(__file__), *names) setup( name='zeit.retresco', version='1.4.2.dev0', author='gocept, Zeit Online', author_email='zon-backend@zeit.de', url='http://www.zeit.de/', desc...
from setuptools import setup, find_packages import os.path def project_path(*names): return os.path.join(os.path.dirname(__file__), *names) setup( name='zeit.retresco', version='1.4.2.dev0', author='gocept, Zeit Online', author_email='zon-backend@zeit.de', url='http://www.zeit.de/', desc...
bsd-3-clause
Python
23981dd5908b423104bdf51e6882d043b3efdc6e
Include package data to fix bad install (v0.1.1)
nosamanuel/dj-queryset-manager
setup.py
setup.py
# -*- coding: utf-8 -*- from setuptools import setup setup( name='dj-queryset-manager', version='0.1.1', url='https://github.com/nosamanuel/dj-queryset-manager', license=open('LICENSE').read(), author='Noah Seger', author_email='nosamanuel@gmail.com.com', description='Stop writing Django q...
# -*- coding: utf-8 -*- from setuptools import setup setup( name='dj-queryset-manager', version='0.1.0', url='https://github.com/nosamanuel/dj-queryset-manager', license=open('LICENSE').read(), author='Noah Seger', author_email='nosamanuel@gmail.com.com', description='Stop writing Django q...
bsd-3-clause
Python
98ff9162c8f869a1e88cf832c64bebe89666a8dc
Improve setup.py
njvack/scorify
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys from pathlib import Path SETUP_REQUIRES = ['setuptools >= 30.3.0'] SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else [] def get_locals(filename): l = {} exec(open(filename, 'r').read(), {}, l) ...
#!/usr/bin/env python # -*- coding: utf-8 -*- SETUP_REQUIRES = ['setuptools >= 30.3.0'] SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else [] from setuptools import setup, find_packages from pathlib import Path def get_locals(filename): l = {} exec(open(filename, 'r').read(), {}, l) return l ...
mit
Python
653f1b9425dfc37120f41a3be0b643d894af25b3
Bump version to 0.5
philipdexter/pear
setup.py
setup.py
from setuptools import setup def read_file(f): with open(f) as f: return f.read() setup( name='pear-aur', packages = ['pear'], version='0.5', description = 'A stupidly simple aur helper', long_description=read_file('README.rst'), author = 'Philip Dexter', author_email = 'philip...
from setuptools import setup def read_file(f): with open(f) as f: return f.read() setup( name='pear-aur', packages = ['pear'], version='0.3', description = 'A stupidly simple aur helper', long_description=read_file('README.rst'), author = 'Philip Dexter', author_email = 'philip...
unlicense
Python
d8a6fef054b62269a366cf0324930656d5a9de59
remove pbf dependencies, no longer needed
osmcode/pyosmium,osmcode/pyosmium,osmcode/pyosmium
setup.py
setup.py
from distutils.core import setup, Extension from os import environ from sys import version_info as pyversion, platform as osplatform from ctypes.util import find_library includes = [] libs = [] libdirs = [] ## boost dependencies includes.append('/usr/include') if osplatform in ["linux", "linux2"]: libdirs.append(...
from distutils.core import setup, Extension from os import environ from sys import version_info as pyversion, platform as osplatform from ctypes.util import find_library includes = [] libs = [] libdirs = [] ## boost dependencies includes.append('/usr/include') if osplatform in ["linux", "linux2"]: libdirs.append(...
bsd-2-clause
Python
8121950d3844fe30e749e579add8d4d032c45c6e
change version
waliens/sldc
setup.py
setup.py
import sys from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() __version__ = "1.4.2" requires = ['rasterio', 'affine', 'pillow', 'numpy', 'joblib', 'shapely>=1.8', 'scikit-image'] setup( name='sldc', version=__version__, description='SLDC, a generic framewor...
import sys from setuptools import setup with open("README.md", "r") as fh: long_description = fh.read() __version__ = "1.4.1" requires = ['rasterio', 'affine', 'pillow', 'numpy', 'joblib', 'shapely>=1.8', 'scikit-image'] setup( name='sldc', version=__version__, description='SLDC, a generic framewor...
mit
Python
530e0f1dd5fdc53b3308988ac57dd9ae0e2c363b
Add python 3.5 to list of supported languages
wger-project/wger,DeveloperMal/wger,kjagoo/wger_stark,petervanderdoes/wger,rolandgeider/wger,rolandgeider/wger,DeveloperMal/wger,DeveloperMal/wger,wger-project/wger,rolandgeider/wger,rolandgeider/wger,DeveloperMal/wger,kjagoo/wger_stark,kjagoo/wger_stark,wger-project/wger,petervanderdoes/wger,kjagoo/wger_stark,petervan...
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup script for wger Workout manager :copyright: 2011, 2012 by OpenSlides team, see AUTHORS. :license: GNU GPL, see LICENSE for more details. """ from setuptools import setup from setuptools import find_packages from wger import get_version with open('R...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Setup script for wger Workout manager :copyright: 2011, 2012 by OpenSlides team, see AUTHORS. :license: GNU GPL, see LICENSE for more details. """ from setuptools import setup from setuptools import find_packages from wger import get_version with open('R...
agpl-3.0
Python
794286f00a7186c624a04af1cbe74bc474042c23
Fix jedi prerequisite
pyQode/pyqode.python,mmolero/pyqode.python,pyQode/pyqode.python,zwadar/pyqode.python
setup.py
setup.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ This setup script packages pyqode.python """ from setuptools import setup, find_packages def read_version(): with open("pyqode/python/__init__.py") as f: lines = f.read().splitlines() for l in lines: if "__version__" in l: ...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ This setup script packages pyqode.python """ from setuptools import setup, find_packages def read_version(): with open("pyqode/python/__init__.py") as f: lines = f.read().splitlines() for l in lines: if "__version__" in l: ...
mit
Python
dc33d72ba0de607a9fdf5d978b6daf52c6cfcefa
add support for python 3.10 (#55)
googleapis/python-vpc-access,googleapis/python-vpc-access
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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
# -*- 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
apache-2.0
Python
e08b55795bb49138cd39cbea50ee01fe95e231a7
use extras_require in setup
djedproject/djed.static,djedproject/djed.static
setup.py
setup.py
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() install_requires = [ 'bowerstatic', 'pyramid', 'zope.i...
import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() install_requires = [ 'bowerstatic', 'pyramid', 'zope.i...
isc
Python
aaa15c090f9be8f8a2a1d3ed489a597208478cce
Fix setup.py. Fix #30
TailorDev/Watson,TailorDev/Watson,wehlutyk/Watson,yloiseau/Watson
setup.py
setup.py
from setuptools import setup setup( name='watson', version='0.1', packages=['watson', 'gui'], install_requires=[ 'Click', 'arrow', 'requests', 'icalendar' ], extras_require={ 'gui': ['PySide'] }, entry_points={ 'console_scripts': [ ...
from setuptools import setup setup( name='watson', version='0.1', py_modules=['watson', 'gui'], install_requires=[ 'Click', 'arrow', 'requests', 'icalendar' ], extras_require={ 'gui': ['PySide'] }, entry_points={ 'console_scripts': [ ...
mit
Python