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 |
|---|---|---|---|---|---|---|---|---|
0b990c28d2aad533d6f8605957669ad9e6cae786 | Fix Issue #4 | rjpower/falcon,rjpower/falcon,rjpower/falcon,rjpower/falcon | setup.py | setup.py | #!/usr/bin/python
import glob
import platform
import sys
import os
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, Extension
system, node, release, version, machine, processor = platform.uname()
setup(
name='falcon',
version='0.02',
maintainer='Russell Power',
maintainer_email='russe... | #!/usr/bin/python
import glob
import platform
import sys
import os
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, Extension
system, node, release, version, machine, processor = platform.uname()
setup(
name='falcon',
version='0.02',
maintainer='Russell Power',
maintainer_email='russe... | apache-2.0 | Python |
0069af436db7825f3b1fe4987eed1128350c0545 | set dev status: beta | jayme-github/steamweb,jbzdarkid/steamweb | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
def parse_requirements(path):
with open(path, 'r') as infile:
return [l.strip() for l in infile.readlines()]
setup(
name = 'steamweb',
version = '0.4',
description = 'lib to access/use steam web pages (stuff not exposed via API)',
long_de... | #!/usr/bin/env python
from setuptools import setup
def parse_requirements(path):
with open(path, 'r') as infile:
return [l.strip() for l in infile.readlines()]
setup(
name = 'steamweb',
version = '0.3',
description = 'lib to access/use steam web pages (stuff not exposed via API)',
long_de... | agpl-3.0 | Python |
fad69b39269684570fadce38660b9eb5050179fe | Debug setup.py for RTD | plugaai/aioinflux | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
from pathlib import Path
with open('README.rst', 'r') as f:
long_description = f.read()
meta = {}
with open(Path('aioinflux') / '__init__.py') as f:
exec('\n'.join(l for l in f if l.startswith('__')), meta)
setup(name='aioinflux',
version=meta['__vers... | #!/usr/bin/env python
from setuptools import setup
from pathlib import Path
with open('README.rst', 'r') as f:
long_description = f.read()
meta = {}
with open(Path(__file__).parent / 'aioinflux' / '__init__.py') as f:
exec('\n'.join(l for l in f if l.startswith('__')), meta)
setup(name='aioinflux',
ve... | mit | Python |
a04fbb25dea14cfded321e80738878ad668cac39 | fix coding style issues | fretboardfreak/netify | setup.py | setup.py | """The netify deployment script."""
# Copyright 2015 Curtis Sand
#
# 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 appl... | """The netify deployment script."""
# Copyright 2015 Curtis Sand
#
# 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 appl... | apache-2.0 | Python |
0f8fd08735b1194e0cb571fa1f2d31954eca34ce | update email address | yohanboniface/mapbox-vector-tile,mapzen/mapbox-vector-tile | setup.py | setup.py | import io
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.md', encoding='utf-8') as f:
# long_description = f.read()
with io.open("README.rst") as readme_file:
long_description = readme_file.read()
... | import io
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.md', encoding='utf-8') as f:
# long_description = f.read()
with io.open("README.rst") as readme_file:
long_description = readme_file.read()
... | mit | Python |
28b16a355177ad0f52860d9598cca5198635224f | Update version | samastur/image-diet,ArabellaTech/django-image-diet | setup.py | setup.py | from setuptools import setup, find_packages
long_description = '''\
image-diet is a Django application for removing unnecessary bytes from image
files. It optimizes images without changing their look or visual quality
("losslessly").
It works on images in JPEG, GIF and PNG formats and will leave others
unchanged. Pr... | from setuptools import setup, find_packages
long_description = '''\
image-diet is a Django application for removing unnecessary bytes from image
files. It optimizes images without changing their look or visual quality
("losslessly").
It works on images in JPEG, GIF and PNG formats and will leave others
unchanged. Pr... | mit | Python |
0edaf3506bd46d57618ef21a2aeba6c8077da7d0 | add missing comma | erdc-cm/RAPIDpy | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='RAPIDpy',
version='2.5.2',
description='Python interface for RAPID (rapid-hub.org)',
long_description='RAPIDpy is a python interface for RAPID that assists '
'to prepare inputs, runs the RAPID program, and provides '
'post-proce... | from setuptools import setup, find_packages
setup(
name='RAPIDpy',
version='2.5.2',
description='Python interface for RAPID (rapid-hub.org)',
long_description='RAPIDpy is a python interface for RAPID that assists '
'to prepare inputs, runs the RAPID program, and provides '
'post-proce... | bsd-3-clause | Python |
696648364a52c2d499ae9bf382c1c66266b9f5c1 | Add missing comma | sameersingh7/rstcheck,sameersingh7/rstcheck,myint/rstcheck,myint/rstcheck | setup.py | setup.py | #!/usr/bin/env python
"""Installer for rstcheck."""
import ast
import setuptools
def version():
"""Return version string."""
with open('rstcheck.py') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
with op... | #!/usr/bin/env python
"""Installer for rstcheck."""
import ast
import setuptools
def version():
"""Return version string."""
with open('rstcheck.py') as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
with op... | mit | Python |
c735ca20338e729f6f19ed098332a1aaebbb6c94 | move version to a variable | UpCloudLtd/upcloud-python-api | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
version = '0.4.5'
setup(
name='upcloud-api',
version=version,
description='UpCloud API Client',
author='Elias Nygren',
maintainer='Mika Lackman',
maintainer_email='mika.lackman@upcloud.com',
url='https://github.com/UpCloudLtd/upcloud-pyt... | #!/usr/bin/env python
from setuptools import setup
setup(
name='upcloud-api',
version='0.4.5',
description='UpCloud API Client',
author='Elias Nygren',
maintainer='Mika Lackman',
maintainer_email='mika.lackman@upcloud.com',
url='https://github.com/UpCloudLtd/upcloud-python-api',
packag... | mit | Python |
bd53878b7c38f1e58f708a20bb73865613a462c6 | use “client” instead of “wrapper” in description | django-haystack/pysolr,toastdriven/pysolr,toastdriven/pysolr,django-haystack/pysolr | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="pysolr",
use_scm_version=True,
description="Lightweight Python client for Apache Solr",
author='Daniel Lindsley',
author_email='daniel@toastdriven.com',
long_description=open('README.rst... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="pysolr",
use_scm_version=True,
description="Lightweight python wrapper for Apache Solr.",
author='Daniel Lindsley',
author_email='daniel@toastdriven.com',
long_description=open('README.r... | bsd-3-clause | Python |
be3c656def0d59143a22d66644910d83ab1c1108 | Bump version to 0.9.3 | funkybob/django-flatblocks,funkybob/django-flatblocks | setup.py | setup.py | import io
from setuptools import setup, find_packages
setup(
name='django-flatblocks',
version='0.9.3',
description='django-flatblocks acts like django.contrib.flatpages but '
'for parts of a page; like an editable help box you want '
'show alongside the main content.',
... | import io
from setuptools import setup, find_packages
setup(
name='django-flatblocks',
version='0.9.2',
description='django-flatblocks acts like django.contrib.flatpages but '
'for parts of a page; like an editable help box you want '
'show alongside the main content.',
... | bsd-3-clause | Python |
b8270f1615ade763d71a8bb7905202e69269929d | Update setup.py deps and trove classifier | adamcik/oauthclientbridge | setup.py | setup.py | from setuptools import find_packages, setup
setup(
name='OAuth-Client-Bridge',
version='1.0.0',
url='https://github.com/adamcik/oauthclientbridge',
license='Apache License, Version 2.0',
author='Thomas Adamcik',
author_email='thomas@adamcik.no',
description='Bridge OAuth2 Authorization Code... | from setuptools import find_packages, setup
setup(
name='OAuth-Client-Bridge',
version='1.0.0',
url='https://github.com/adamcik/oauthclientbridge',
license='Apache License, Version 2.0',
author='Thomas Adamcik',
author_email='thomas@adamcik.no',
description='Bridge OAuth2 Authorization Code... | apache-2.0 | Python |
325c74ffcf7b5ace8e72c5645934ea2a90bafa4d | Revert venusian dep | SunDwarf/curious | setup.py | setup.py | from setuptools import setup
setup(
name='discord-curious',
version='0.2.1',
packages=['curious', 'curious.core', 'curious.http', 'curious.commands', 'curious.dataclasses', 'curious.voice',
'curious.ext.loapi', 'curious.ext.paginator'],
url='https://github.com/SunDwarf/curious',
licen... | from setuptools import setup
setup(
name='discord-curious',
version='0.2.1',
packages=['curious', 'curious.core', 'curious.http', 'curious.commands', 'curious.dataclasses', 'curious.voice',
'curious.ext.loapi', 'curious.ext.paginator'],
url='https://github.com/SunDwarf/curious',
licen... | mit | Python |
42c0cccacce69174b8482654ab9bf1239dba94d9 | Update docstring (#11) | fabaff/python-mystrom | setup.py | setup.py | """Set up the Python API for myStrom devices."""
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
if sys.argv[-1] == 'publish':
os.system('python... | """
Copyright (c) 2015-2018 Fabian Affolter <fabian@affolter-engineering.ch>
Licensed under MIT. All rights reserved.
"""
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_d... | mit | Python |
0b544c48e01ac975d04b5853dc1bffe1295c94ea | Bump version to 0.0.5 | portfoliome/postpy | postpy/_version.py | postpy/_version.py | version_info = (0, 0, 5)
__version__ = '.'.join(map(str, version_info))
| version_info = (0, 0, 4)
__version__ = '.'.join(map(str, version_info))
| mit | Python |
3251c9c1c98aef47571ced6b850c8ccab5ed5ab0 | Bump version. | PingaxAnalytics/koob_auth,carlosfunk/djoser,unacast/djoser,liyocee/djoser,akalipetis/djoser,avances123/djoser,sunscrapers/djoser,sunscrapers/djoser,vandoornik/djoser,mjuopperi/djoser,fladi/djoser,apokinsocha/djoser,dokenzy/djoser,akalipetis/djoser,barseghyanartur/djoser,johnwalker/djoser,yiyocx/djoser,sunscrapers/djose... | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
setup(
name='djoser',
version='0.0.3',
packages=['djoser'],
license='MIT',
author='SUNSCRAP... | #!/usr/bin/env python
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
setup(
name='djoser',
version='0.0.2',
packages=['djoser'],
license='MIT',
author='SUNSCRAP... | mit | Python |
8e97886c8744c4829f54a1d05167295c0f5453f4 | Fix typo | locustio/locust,locustio/locust,locustio/locust,locustio/locust | setup.py | setup.py | # kept for compatibility, https://setuptools.pypa.io/en/latest/setuptools.html?highlight=setuptools.setup()#setup-cfg-only-projects
import setuptools
setuptools.setup()
| # kept for compability, https://setuptools.pypa.io/en/latest/setuptools.html?highlight=setuptools.setup()#setup-cfg-only-projects
import setuptools
setuptools.setup()
| mit | Python |
5bc082b547bbe00fdaa1cdf7464aa1c46c37d229 | Update version for release 0.2.10 | wendbv/pluvo-python,wendbv/pluvo-python | setup.py | setup.py | from setuptools import setup
setup(
name='pluvo',
packages=['pluvo'],
package_data={},
version='0.2.10',
description='Python library to access the Pluvo REST API.',
author='Wend BV',
author_email='info@wend.nl',
license='MIT',
url='https://github.com/wendbv/pluvo-python',
keywo... | from setuptools import setup
setup(
name='pluvo',
packages=['pluvo'],
package_data={},
version='0.2.9',
description='Python library to access the Pluvo REST API.',
author='Wend BV',
author_email='info@wend.nl',
license='MIT',
url='https://github.com/wendbv/pluvo-python',
keywor... | mit | Python |
8b05b45759efdfe63a0e4a543c8a8e5c33ea8370 | Use correct package name in setup.py | cathydeng/openelections-core,datamade/openelections-core,cathydeng/openelections-core,openelections/openelections-core,datamade/openelections-core,openelections/openelections-core | setup.py | setup.py | #!/usr/bin/env python
import sys
from distutils.core import setup
# TODO: More informative message about Python version support, version reflected
# classifiers argument to setup(). Perhaps setup should fail altogether for
# unsupported Python versions.
if sys.version_info < (2,7) or sys.version_info >= (3,):
pr... | #!/usr/bin/env python
import sys
from distutils.core import setup
# TODO: More informative message about Python version support, version reflected
# classifiers argument to setup(). Perhaps setup should fail altogether for
# unsupported Python versions.
if sys.version_info < (2,7) or sys.version_info >= (3,):
pr... | mit | Python |
2dbf8746a15449044f777b3c87f5586a0ec9dfc3 | change version number and add bibtex in setup.py | galbramc/gpkit,hoburg/gpkit,convexopt/gpkit,galbramc/gpkit,hoburg/gpkit,convexopt/gpkit | setup.py | setup.py | from __future__ import print_function
import os
import sys
import shutil
# custom build script
if sys.argv[1] in ["build", "install"]:
import gpkit.build
from distutils.core import setup
long_description = """
GPkit
*****
GPkit is a Python package for defining and manipulating
geometric programming models,
abs... | from __future__ import print_function
import os
import sys
import shutil
# custom build script
if sys.argv[1] in ["build", "install"]:
import gpkit.build
from distutils.core import setup
long_description = """
GPkit
*****
GPkit is a Python package for defining and manipulating
geometric programming models,
abs... | mit | Python |
d177f5dd04721f9f50c628e3e54bea975e022b3a | Increase version number to 1.3.12 | Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey,Pierre-Sassoulas/django-survey | setup.py | setup.py | import sys
from os import path
import setuptools
if sys.version_info < (3, 6):
sys.exit("Sorry, Python < 3.6 is not supported")
DESCRIPTION = (
"A django survey app, based on and compatible with "
'"django-survey". You will be able to migrate your data from an ancient '
"version of django-survey, but... | import sys
from os import path
import setuptools
if sys.version_info < (3, 6):
sys.exit("Sorry, Python < 3.6 is not supported")
DESCRIPTION = (
"A django survey app, based on and compatible with "
'"django-survey". You will be able to migrate your data from an ancient '
"version of django-survey, but... | agpl-3.0 | Python |
737a76ed5b5b0b0720deca2804fa9dd1d79e0fa1 | Bump version to 0.6.0 | disqus/django-perftools | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'Django>=1.2',
'unittest2',
]
setup(
name='django-perftools',
version='0.6.0',
author='DISQUS',
author_email='opensource@disqus.com',
url='http://github.com/disqus/django-perftools',
description = '',
... | #!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'Django>=1.2',
'unittest2',
]
setup(
name='django-perftools',
version='0.5.1',
author='DISQUS',
author_email='opensource@disqus.com',
url='http://github.com/disqus/django-perftools',
description = '',
... | apache-2.0 | Python |
e81d5f85266f937ddc4771534875e9d02d306e84 | Bump wcxf version to 1.2 | flav-io/flavio,flav-io/flavio | setup.py | setup.py | from setuptools import setup, find_packages
with open('flavio/_version.py') as f:
exec(f.read())
setup(name='flavio',
version=__version__,
author='David M. Straub',
author_email='david.straub@tum.de',
url='https://flav-io.github.io',
description='A Python package for flavour physics ... | from setuptools import setup, find_packages
with open('flavio/_version.py') as f:
exec(f.read())
setup(name='flavio',
version=__version__,
author='David M. Straub',
author_email='david.straub@tum.de',
url='https://flav-io.github.io',
description='A Python package for flavour physics ... | mit | Python |
f0216d291337bce4241a40bb05c79e6d43d9b9c2 | Fix indentation. | danielsamuels/cms,danielsamuels/cms,dan-gamble/cms,danielsamuels/cms,jamesfoley/cms,jamesfoley/cms,jamesfoley/cms,jamesfoley/cms,lewiscollard/cms,dan-gamble/cms,lewiscollard/cms,lewiscollard/cms,dan-gamble/cms | setup.py | setup.py | #!/usr/bin/env python
#coding: utf-8
import os, sys
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = ['cms.project_template',
'cms.bin']
setup(
name = "cms",
version = "1.0.4",
url = "https://github.com/onespacemedia/cms",
author = "Daniel Samuels",
au... | #!/usr/bin/env python
#coding: utf-8
import os, sys
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = ['cms.project_template',
'cms.bin']
setup(
name = "cms",
version = "1.0.4",
url = "https://github.com/onespacemedia/cms",
author = "Daniel Samuels",
author_emai... | bsd-3-clause | Python |
870d8f73ee1b4584220b09c6ac2b87ccd43b78a0 | Fix style problems in setup.py | trozamon/hadmin | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="HAdmin",
version="0.1",
packages=find_packages(),
author="Alec Ten Harmsel",
author_email="alec@alectenharmsel.com",
description="A Hadoop configuration manager",
url="http://github.com/trozamon/hadmin",
lic... | #!/usr/bin/env python
from setuptools import setup, find_packages
import hadmin_test
setup(
name = "HAdmin",
version = "0.1",
packages = find_packages(),
author = "Alec Ten Harmsel",
author_email = "alec@alectenharmsel.com",
description = "A Hadoop configuration manager... | mit | Python |
a9e007f2876c7356311975eb11232f11aba80625 | Add classifiers, platforms | Alir3z4/django-kewl | setup.py | setup.py | from setuptools import setup
setup(
name='django-kewl',
version=".".join(map(str, __import__('short_url').__version__)),
packages=['django_kewl'],
url='https://github.com/Alir3z4/django-kewl',
license='BSD',
author='Alireza Savand',
author_email='alireza.savand@gmail.com',
description='... | from setuptools import setup
setup(
name='django-kewl',
version=".".join(map(str, __import__('short_url').__version__)),
packages=['django_kewl'],
url='https://github.com/Alir3z4/django-kewl',
license='BSD',
author='Alireza Savand',
author_email='alireza.savand@gmail.com',
description='... | bsd-3-clause | Python |
fddab75d614d6d063731c76046969b382c41c430 | Fix setup.py to use 2to3. | lig/django-registration-me | setup.py | setup.py | try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
from distutils.command.build_py import build_py
from distutils.core import setup
import os
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
r... | from distutils.core import setup
import os
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, filenames in os.walk('registration'):
# Ignore... | bsd-3-clause | Python |
7ccbf6b68a581f0163f6064a33958801f0cfac40 | Update version and remove dependency link | scidash/sciunit,scidash/sciunit | setup.py | setup.py | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='sciunit',
version='0.1.5.6',
author='Rick Gerkin',
author_email='rgerkin@asu.edu',
packages=['sciunit',
'sciunit.tests'],
url='http://sciunit.scidash.org',
license='MIT... | try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='sciunit',
version='0.1.5.5',
author='Rick Gerkin',
author_email='rgerkin@asu.edu',
packages=['sciunit',
'sciunit.tests'],
url='http://github.com/scidash/sciunit',
licen... | mit | Python |
a210fde6806070d0c47eaeb34a485e26850dc779 | make sure all subpackages get installed | olivierverdier/SpecTraVVave | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'travwave',
description = 'Compute traveling waves',
author='Daulet Moldabayev, Henrik Kalisch, Olivier Verdier',
license = 'MIT',
keywords = ['Math'],
packages=['travwave', 'travwave.equations', 'travwave.boundary', ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'travwave',
description = 'Compute traveling waves',
author='Daulet Moldabayev, Henrik Kalisch, Olivier Verdier',
license = 'MIT',
keywords = ['Math'],
packages=['travwave'],
classifiers = [
'Development Status :: 3... | bsd-3-clause | Python |
75ebe45f64228e39f196d75a3e3d0cf8a5fcc20f | Add unit tests to setup.py | WMD-group/MacroDensity | setup.py | setup.py |
#!/usr/bin/env python
__author__ = "Keith T. Butler"
__copyright__ = "Copyright Keith T. Butler (2013)"
__version__ = "1.0"
__maintainer__ = "Keith T. Butler"
__email__ = "k.t.butler@bath.ac.uk"
__date__ = "Aug 24 2017"
from setuptools import setup
import os
import unittest
module_dir = os.path.dirname(os.path.absp... |
#!/usr/bin/env python
__author__ = "Keith T. Butler"
__copyright__ = "Copyright Keith T. Butler (2013)"
__version__ = "1.0"
__maintainer__ = "Keith T. Butler"
__email__ = "k.t.butler@bath.ac.uk"
__date__ = "Aug 24 2017"
from setuptools import setup
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
... | mit | Python |
3bceef110f24e22ca8cc72cf1e33da0c580de767 | extend classifiers | mattmilten/PySCIPOpt,mattmilten/PySCIPOpt,SCIP-Interfaces/PySCIPOpt,SCIP-Interfaces/PySCIPOpt | setup.py | setup.py | from setuptools import setup, Extension
import os, platform
# look for environment variable that specifies path to SCIP Opt lib and headers
scipoptdir = os.environ.get('SCIPOPTDIR', '')
includedir = os.path.abspath(os.path.join(scipoptdir, 'include'))
libdir = os.path.abspath(os.path.join(scipoptdir, 'lib'))
libname... | from setuptools import setup, Extension
import os, platform
# look for environment variable that specifies path to SCIP Opt lib and headers
scipoptdir = os.environ.get('SCIPOPTDIR', '')
includedir = os.path.abspath(os.path.join(scipoptdir, 'include'))
libdir = os.path.abspath(os.path.join(scipoptdir, 'lib'))
libname... | mit | Python |
d0714dcabc80cc1af98ad3517ddda2dbae0b3e6c | add brax to extra_require | google/evojax | setup.py | setup.py | # Copyright 2022 The EvoJAX Authors.
#
# 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 w... | # Copyright 2022 The EvoJAX Authors.
#
# 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 w... | apache-2.0 | Python |
d25226ad9a8df4ddb4724113b4cce8dd920fc493 | Add back setup | e-koch/TurbuStat,Astroua/TurbuStat | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools import setup
TEST_HELP = """
Note: running tests is no longer done using 'python setup.py test'. Instead
you will need to run:
tox -e test
If you don't already have tox installed, you can install it with:
pip install tox
If you only want to run part ... | #!/usr/bin/env python
import os
import sys
TEST_HELP = """
Note: running tests is no longer done using 'python setup.py test'. Instead
you will need to run:
tox -e test
If you don't already have tox installed, you can install it with:
pip install tox
If you only want to run part of the test suite, you can als... | mit | Python |
21223700ea1f1d0209c967761e5c22635ee721e7 | Correct PEP8 | touilleMan/marshmallow-mongoengine | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
REQUIRES = (
'marshmallow>=2.1.0',
'mongoengine>=0.9.0',
)
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='marshmallow-mongoengine',
version='0.7.7',
description='Mongoe... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
REQUIRES = (
'marshmallow>=2.1.0',
'mongoengine>=0.9.0',
)
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='marshmallow-mongoengine',
version='0.7.7',
description='Mongoen... | mit | Python |
27b08ae644d76853241b16d0a45e751c15467df5 | Fix setup module | ikeikeikeike/celery-tracker | setup.py | setup.py | #!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
version = re.compile(r'VERSION\s*=\s*\((.*?)\)')
def get_package_version():
"returns package version without importing it"
base = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base, "tracker/__init... | #!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
version = re.compile(r'VERSION\s*=\s*\((.*?)\)')
def get_package_version():
"returns package version without importing it"
base = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base, "tracker/__init... | mit | Python |
a292192c64c6c965d817617334a36f84c6b7fb98 | update setup.py | Y-oHr-N/kenchi,Y-oHr-N/kenchi | setup.py | setup.py | from setuptools import find_packages, setup
from kenchi import __version__
with open('README.rst') as f:
readme = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name = 'kenchi',
version = __version__,
a... | from setuptools import find_packages, setup
from kenchi import __version__
with open('README.rst') as f:
readme = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name = 'kenchi',
version = __version__,
author ... | bsd-3-clause | Python |
4710ee93e4b9c4a9410d360b480f1fbe49574b9d | change version number 1.2.1 -> 1.2.2 | mathandy/svgpathtools,jpcofr/svgpathtools | setup.py | setup.py | from distutils.core import setup
VERSION = '1.2.2'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezie... | from distutils.core import setup
VERSION = '1.2.1'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezie... | mit | Python |
325b6d209c96a0cb743fd3d32682f77362910cb1 | Fix build. | Intelworks/libtaxii,TAXIIProject/libtaxii,stkyle/libtaxii | setup.py | setup.py | #!/usr/bin/env python
#Copyright (C) 2013 - The MITRE Corporation
#For license information, see the LICENSE.txt file
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info <(2, 6):
raise Exception('libtaxii requires Python 2.6 or higher.')
in... | #!/usr/bin/env python
#Copyright (C) 2013 - The MITRE Corporation
#For license information, see the LICENSE.txt file
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info <(2, 6):
raise Exception('libtaxii requires Python 2.6 or higher.')
in... | bsd-3-clause | Python |
8d6ab010d45d69b2eb101653b720270ffe13570c | Enforce an oauth2 version | disqus/overseer | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
class mytest(test):
... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
class mytest(test):
... | apache-2.0 | Python |
ca929bd291ab93ef1fcbc9ae28f9c5e7def6421d | Bump up to v0.4.5 | globocom/hlsclient,globocom/hlsclient,globocom/hlsclient | setup.py | setup.py | from os.path import dirname, abspath, join
from setuptools import setup
with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj:
README = fileobj.read().strip()
setup(
name='hlsclient',
description='Client to download all files from HLS streams',
long_description=README,
author='Globo... | from os.path import dirname, abspath, join
from setuptools import setup
with open(abspath(join(dirname(__file__), 'README.rst'))) as fileobj:
README = fileobj.read().strip()
setup(
name='hlsclient',
description='Client to download all files from HLS streams',
long_description=README,
author='Globo... | mit | Python |
c9be62cfd8d39f263cff494cfdc3c764bed01adc | Bump version | thombashi/DataProperty | setup.py | setup.py | import sys
import os.path
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join(MISC_DIR, "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install... | import sys
import os.path
import setuptools
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join(MISC_DIR, "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install... | mit | Python |
01fdab64a84a0b960850a655ed5a27639e860002 | Fix mockup egg. | termitnjak/mockup,termitnjak/mockup,plone/mockup,derFreitag/mockup,derFreitag/mockup,domruf/mockup,domruf/mockup,derFreitag/mockup,termitnjak/mockup,domruf/mockup,derFreitag/mockup,plone/mockup,plone/mockup,termitnjak/mockup,domruf/mockup | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.1'
setup(
name='mockup',
version=version,
description="No sure how should this package be named so please don't "
"judge me just, yet",
long_description=open("README.rst").read(),
classifiers=[
"Framework :: Plone",
... | from setuptools import setup, find_packages
version = '0.1'
setup(
name='mockup',
version=version,
description="No sure how should this package be named so please don't "
"judge me just, yet",
long_description=open("README.rst").read(),
classifiers=[
"Framework :: Plone",
... | bsd-3-clause | Python |
a3a4cd3416dff2e436c88a586f3ad4eb860daccf | fix description in setup.py | jjengo/cql-builder | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='cql-builder',
version='0.0.1',
description="CQL generation tool",
long_description=""" """,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
keywords='',
... | from setuptools import setup, find_packages
setup(name='cql-builder',
version='0.0.1',
description="Generic data modeling and validation",
long_description=""" """,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
k... | mit | Python |
9b14273a78e135a5be0127dd36cafe8168d424da | Bump to version 0.3.2 | OiNutter/rivets,OiNutter/rivets | setup.py | setup.py | from distutils.core import setup
setup(name='Rivets',
version='0.3.2',
url='https://github.com/OiNutter/rivets',
download_url='https://github.com/OiNutter/rivets/tarball/master',
description='Python asset packaging system. Based on Sprockets ruby gem',
author='Will McKenzie',
author_email='wi... | from distutils.core import setup
setup(name='Rivets',
version='0.3',
url='https://github.com/OiNutter/rivets',
download_url='https://github.com/OiNutter/rivets/tarball/master',
description='Python asset packaging system. Based on Sprockets ruby gem',
author='Will McKenzie',
author_email='will... | mit | Python |
a1e934fc42f2c2ca737bebed4208bd9d5f575ce7 | remove bogus setuptools requirement | zillow/config-enhance | setup.py | setup.py | __VERSION__ = "1.2.1"
import os
from setuptools import setup
def read(fname):
'''Utility function to read the README file.'''
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# figure out what the install will need
install_requires = []
tests_require = ["nose==1.1.2", "nosexcover==1.0.8", "... | __VERSION__ = "1.2.0"
import os
from setuptools import setup
def read(fname):
'''Utility function to read the README file.'''
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# figure out what the install will need
install_requires = ["setuptools==0.9.8"]
tests_require = ["nose==1.1.2", "no... | mit | Python |
0b19ddf44da25728557d01ccfa4b596627b0f44b | Bump release | anjos/website,anjos/website | setup.py | setup.py | #!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <andre.dos.anjos@gmail.com>
# Tue 22 Jan 2013 13:37:39 CET
"""Professional website package management
"""
from setuptools import setup, find_packages
setup(
name="anjos.website",
version="1.0.1",
description="My professional website",
... | #!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <andre.dos.anjos@gmail.com>
# Tue 22 Jan 2013 13:37:39 CET
"""Professional website package management
"""
from setuptools import setup, find_packages
setup(
name="anjos.website",
version="1.0.0",
description="My professional website",
... | bsd-2-clause | Python |
856efd20e2ce3e9e542b6c76e304885795eaab93 | Add revrand back to setup.py requirements | NICTA/dora | setup.py | setup.py | """ Setup utility for the dora package. """
from setuptools import setup, find_packages
# from setuptools.command.test import test as TestCommand
setup(
name='dora',
version='0.1',
description='Active sampling using a non-parametric regression model.',
author="Alistair Reid and Simon O'Callag... | """ Setup utility for the dora package. """
from setuptools import setup, find_packages
# from setuptools.command.test import test as TestCommand
setup(
name='dora',
version='0.1',
description='Active sampling using a non-parametric regression model.',
author="Alistair Reid and Simon O'Callag... | apache-2.0 | Python |
e92d240967acdce817f634fdb533f3a4212870c5 | Bump minimal Core version | 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 |
b47c83f1da853577244dc44bce07978be198727a | add test to setup.py | jdswinbank/Comet,jdswinbank/Comet | setup.py | setup.py | import os
import distutils.sysconfig
from distutils.core import setup
setup(
name="Comet",
description="VOEvent Broker",
author="John Swinbank",
author_email="swinbank@transientskp.org",
packages=[
'comet',
'comet.config',
'comet.plugins',
'comet.service',
'c... | import os
import distutils.sysconfig
from distutils.core import setup
setup(
name="Comet",
description="VOEvent Broker",
author="John Swinbank",
author_email="swinbank@transientskp.org",
packages=[
'comet',
'comet.config',
'comet.plugins',
'comet.service',
'c... | bsd-2-clause | Python |
3145f7759058a805954c6f1a55cbac724cdc3aef | Update version | bekbulatov/PyV8Mono,bekbulatov/PyV8Mono,bekbulatov/PyV8Mono | setup.py | setup.py | import os
from setuptools import setup, Extension
V8_PREFIX = os.environ.get('V8_PREFIX')
if not V8_PREFIX:
print 'You should set V8_PREFIX variable in the environment'
exit(1)
V8_LIBRARY_DIR = os.path.join(V8_PREFIX, 'lib64/')
V8_INCLUDE_DIR = os.path.join(V8_PREFIX, 'include/')
setup(
name='PyV8Mono'... | import os
from setuptools import setup, Extension
V8_PREFIX = os.environ.get('V8_PREFIX')
if not V8_PREFIX:
print 'You should set V8_PREFIX variable in the environment'
exit(1)
V8_LIBRARY_DIR = os.path.join(V8_PREFIX, 'lib64/')
V8_INCLUDE_DIR = os.path.join(V8_PREFIX, 'include/')
setup(
name='PyV8Mono'... | bsd-2-clause | Python |
57453036b2dc1bc513a0031043d505bff92e14af | Update setup.py | ElsevierDev/elsapy | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
from elsapy.__init__ import version
# TODO: use pbr for various packaging tasks.
setup(
name = 'elsapy',
version = version,
description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://... | from distutils.core import setup
from setuptools import find_packages
from elsapy.__init__ import version
setup(
name = 'elsapy',
version = version,
description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://api.elsevier.com",
long_description = "Se... | bsd-3-clause | Python |
a6045ae313a501c73ba2b0c23576ba444fbbbaf1 | add sqlalchemy-migrate dependency | simbuerg/benchbuild,simbuerg/benchbuild | setup.py | setup.py | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='pprof',
version='0.9.9',
packages=find_packages(),
install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0",
"regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6",
... | #!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='pprof',
version='0.9.8',
packages=find_packages(),
install_requires=["SQLAlchemy==1.0.4", "cloud==2.8.5", "plumbum>=1.5.0",
"regex==2015.5.28", "wheel==0.24.0", "parse==1.6.6",
... | mit | Python |
54e9265da13b79f008abafc6853790cdb6b7d46d | Update trove classifiers | TangledWeb/tangled.auth | setup.py | setup.py | from setuptools import setup
setup(
name='tangled.auth',
version='0.1a3.dev0',
description='Tangled auth integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
author='Wyatt Baldwin',
author_email='self@wyattbaldwin.com',
packages=[
'tangl... | from setuptools import setup
setup(
name='tangled.auth',
version='0.1a3.dev0',
description='Tangled auth integration',
long_description=open('README.rst').read(),
url='http://tangledframework.org/',
author='Wyatt Baldwin',
author_email='self@wyattbaldwin.com',
packages=[
'tangl... | mit | Python |
2105b2ae0c68a559e1268b3fc2da0b433bfda3dc | Update version | dianchang/flask-debugtoolbar,dianchang/flask-debugtoolbar,lepture/flask-debugtoolbar,lepture/flask-debugtoolbar,dianchang/flask-debugtoolbar | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='Flask-DebugToolbar',
version='0.5',
url='http://github.com/mvantellingen/flask-debugtoolbar',
license='BSD',
author='Michael van Tellingen',
author_email='michaelvantellingen@gmail.com',
description='A port of the Django debug toolba... | from setuptools import setup, find_packages
setup(
name='Flask-DebugToolbar',
version='0.4.6dev',
url='http://github.com/mvantellingen/flask-debugtoolbar',
license='BSD',
author='Michael van Tellingen',
author_email='michaelvantellingen@gmail.com',
description='A port of the Django debug t... | bsd-3-clause | Python |
6d34151817f5c161cfd209d8b3e2f1ed59e28c6b | Fix static analysis | serathius/sanic-sentry | setup.py | setup.py | #!/usr/bin/env python
from os import path as op
from setuptools import setup
def _read(fname):
return open(op.join(op.dirname(__file__), fname)).read()
install_requires = [
line for line in _read('requirements.txt').split('\n')
if line and not line.startswith('#')]
setup(
name='sanic-sentry',
... | #!/usr/bin/env python
from os import path as op
from setuptools import setup
def _read(fname):
return open(op.join(op.dirname(__file__), fname)).read()
install_requires = [
l for l in _read('requirements.txt').split('\n')
if l and not l.startswith('#')]
setup(
name='sanic-sentry',
version='0.1... | mit | Python |
60d29ca3bf958c4753162762209a56e85af0a412 | update setup for new version 0.0.12 | jagter/python-netbox | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def readme():
with open('README.rst') as f:
return f.read()
setup(name='python-netbox',
version='0.0.12',
description='Python Ne... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def readme():
with open('README.rst') as f:
return f.read()
setup(name='python-netbox',
version='0.0.11',
description='Python Ne... | apache-2.0 | Python |
566bf8b10b74e3457d5a81b7699bee19d385c86b | Change python3-ldap to ldap3 in setup.py | mdj2/django-arcutils,PSU-OIT-ARC/django-arcutils,wylee/django-arcutils,wylee/django-arcutils,mdj2/django-arcutils,PSU-OIT-ARC/django-arcutils | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name="django-arcutils",
version='0.0.1',
url='https://github.com/PSU-OIT-ARC/django-arcutils',
author='Matt Johnson',
author_email='mdj2@pdx.edu',
description="ARC Utils for Django sites",
packages=['arcutils', 'arcutils.templatetags... | #!/usr/bin/env python
from setuptools import setup
setup(
name="django-arcutils",
version='0.0.1',
url='https://github.com/PSU-OIT-ARC/django-arcutils',
author='Matt Johnson',
author_email='mdj2@pdx.edu',
description="ARC Utils for Django sites",
packages=['arcutils', 'arcutils.templatetags... | mit | Python |
d593c904144427496f69f2acaa9d702de5842c76 | Bump le version | anchor/ceilometer-publisher-vaultaire | setup.py | setup.py | import os
from setuptools import setup
from pip.req import parse_requirements
# 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):
w... | import os
from setuptools import setup
from pip.req import parse_requirements
# 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):
w... | apache-2.0 | Python |
64ba26f57874136569740c13ef7703f900b4ae08 | Bump back to 1.1.2 | algorithmiaio/algorithmia-python | setup.py | setup.py | import os
from setuptools import setup
setup(
name='algorithmia',
version='1.1.2',
description='Algorithmia Python Client',
long_description='Algorithmia Python Client is a client library for accessing Algorithmia from python code. This library also gets bundled with any Python algorithms in Algorithm... | import os
from setuptools import setup
setup(
name='algorithmia',
version='1.1.3',
description='Algorithmia Python Client',
long_description='Algorithmia Python Client is a client library for accessing Algorithmia from python code. This library also gets bundled with any Python algorithms in Algorithm... | mit | Python |
62778c3d0e26faeb5c05813387816f9764950af9 | Cut release 1.0.0 of logging package. (#3278) | googleapis/python-error-reporting,googleapis/python-error-reporting | setup.py | setup.py | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | apache-2.0 | Python |
2e43eb089dee46e4fab229a49429d231b23396ed | update the metadata | damoti/python-v8,pombredanne/python-v8,pombredanne/python-v8,damoti/python-v8,pombredanne/python-v8,pombredanne/python-v8,damoti/python-v8,damoti/python-v8 | setup.py | setup.py | #!/usr/bin/env python
import os, os.path
from distutils.core import setup, Extension
import distutils.msvccompiler
source_files = ["Engine.cpp", "Wrapper.cpp", "PyV8.cpp"]
macros = [("BOOST_PYTHON_STATIC_LIB", None)]
third_party_libraries = ["python", "boost", "v8"]
include_dirs = os.environ["INCLUDE"].spl... | #!/usr/bin/env python
import os, os.path
from distutils.core import setup, Extension
import distutils.msvccompiler
source_files = ["Engine.cpp", "Wrapper.cpp", "PyV8.cpp"]
macros = [("BOOST_PYTHON_STATIC_LIB", None)]
third_party_libraries = ["python", "boost", "v8"]
include_dirs = os.environ["INCLUDE"].spl... | apache-2.0 | Python |
e6fa2ba2c7298cf2d3482961d76119c928fb2ed0 | add example | joequant/algobroker,joequant/algobroker,joequant/algobroker,joequant/algobroker | setup.py | setup.py | # Copyright (C) 2015 Bitquant Research Laboratories (Asia) Limited
# Released under the Simplified BSD License
from setuptools import (
setup,
find_packages,
)
setup(
name="algobroker",
version = "0.0.1",
author="Joseph C Wang",
author_email='joequant@gmail.com',
url="https://github.co... | # Copyright (C) 2015 Bitquant Research Laboratories (Asia) Limited
# Released under the Simplified BSD License
from setuptools import (
setup,
find_packages,
)
setup(
name="algobroker",
version = "0.0.1",
author="Joseph C Wang",
author_email='joequant@gmail.com',
url="https://github.co... | bsd-2-clause | Python |
78674a31aca536309dea38aeb6ac1271910248bb | Bump up version number | barumrho/apush | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='apush',
version='0.2.1',
description='A simple Apple push notification service provider',
long_description=readme,
... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='apush',
version='0.1.0',
description='A simple Apple push notification service provider',
long_description=readme,
... | mit | Python |
8cd82d462132e0a5ac74bd540c6f1f092af73056 | Bump version | thombashi/DataProperty | setup.py | setup.py | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
from __future__ import unicode_literals
import io
import os.path
import setuptools
import sys
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with io.open("README.rst", encoding="utf8") as f:
long_description = f.read()
with ... | # encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com>
"""
from __future__ import unicode_literals
import io
import os.path
import setuptools
import sys
MISC_DIR = "misc"
REQUIREMENT_DIR = "requirements"
with io.open("README.rst", encoding="utf8") as f:
long_description = f.read()
with ... | mit | Python |
7f7e4a73c9b0dfe395ed71fb19f6fa76186146da | Use system default python interpreter in setup.py | cle1109/scot,mbillingr/SCoT,scot-dev/scot,cle1109/scot,mbillingr/SCoT,scot-dev/scot,cbrnr/scot,cbrnr/scot | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
versionfile = open('VERSION', 'r')
ver = versionfile.read().strip()
versionfile.close()
setup(name='SCoT',
version=ver,
description='Source Connectivity Toolbox',
author='Martin Billinger',
author_email='martin.billinger@tugraz.at',
... | #!/usr/bin/env python2
from distutils.core import setup
versionfile = open('VERSION', 'r')
ver = versionfile.read().strip()
versionfile.close()
setup(name='SCoT',
version=ver,
description='Source Connectivity Toolbox',
author='Martin Billinger',
author_email='martin.billinger@tugraz.at',
... | mit | Python |
3edb02b36a85712e896e785c9205f53258a48428 | Update setup.py | thombashi/pytablereader,thombashi/pytablereader,thombashi/pytablereader | setup.py | setup.py | import os.path
import setuptools
import sys
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join("docs", "pages", "intro... | import os.path
import setuptools
import sys
REQUIREMENT_DIR = "requirements"
needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join("docs", "pages", "intro... | mit | Python |
bffebebd86d09f5924461959401ef3698b4e47d5 | Create version 0.3.23 | Duke-GCB/DukeDSClient,Duke-GCB/DukeDSClient | setup.py | setup.py | from setuptools import setup
setup(name='DukeDSClient',
version='0.3.23',
description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.',
url='https://github.com/Duke-GCB/DukeDSClient',
keywords='duke dds dukedataservice',
author='John Bradley',
... | from setuptools import setup
setup(name='DukeDSClient',
version='0.3.22',
description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.',
url='https://github.com/Duke-GCB/DukeDSClient',
keywords='duke dds dukedataservice',
author='John Bradley',
... | mit | Python |
85950c20a13f34bb4a52ac7fa19ffaac8a1c7453 | Drop 2 support. | groklearning/simple-packages | setup.py | setup.py | # vim: set et nosi ai ts=4 sts=4 sw=4:
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read_local_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read().strip()
README = read_local_file('README.md')
VERSION = __import__('simple').__version_... | # vim: set et nosi ai ts=4 sts=4 sw=4:
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read_local_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read().strip()
README = read_local_file('README.md')
VERSION = __import__('simple').__version_... | mit | Python |
250970a54bc04cde46685692ec71d164ed17a484 | Update to buildbot 2.4.0 | madisongh/autobuilder | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='autobuilder',
version='2.2.0',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
entry_points={
'console_scripts': [
'store-artifacts = autobuilder.scripts.store_a... | from setuptools import setup, find_packages
setup(
name='autobuilder',
version='2.1.0',
packages=find_packages(),
license='MIT',
author='Matt Madison',
author_email='matt@madison.systems',
entry_points={
'console_scripts': [
'store-artifacts = autobuilder.scripts.store_a... | mit | Python |
ec1afb1d57ea4c674475c9510de1e1964372043b | Add pripnglsch to setup.py | drj11/pypng,drj11/pypng | setup.py | setup.py | # PyPNG setup.py
# This is the setup.py script used by distutils.
# You can install the png module into your Python distribution with:
# python setup.py install
# You can also do other standard distutil type things, but you can refer
# to the distutil documentation for that.
# This script is also imported as a module... | # PyPNG setup.py
# This is the setup.py script used by distutils.
# You can install the png module into your Python distribution with:
# python setup.py install
# You can also do other standard distutil type things, but you can refer
# to the distutil documentation for that.
# This script is also imported as a module... | mit | Python |
61c42e177f1a6ca9a74bdda2da9ae0dcac06e74b | fix doc build broken by Sphinx 5 | xflr6/graphviz | setup.py | setup.py | import pathlib
from setuptools import setup, find_packages
setup(
name='graphviz',
version='0.20.1.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Simple Python interface for Graphviz',
keywords='graph visualization dot render',
license='MIT',
... | import pathlib
from setuptools import setup, find_packages
setup(
name='graphviz',
version='0.20.1.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Simple Python interface for Graphviz',
keywords='graph visualization dot render',
license='MIT',
... | mit | Python |
bb3d855d7335a456b0a15323e49aa0b40b04c38c | Bump the version number. | roberto-reale/pyTrivialCache | setup.py | setup.py | from setuptools import setup
setup(
name = 'pyTrivialCache',
version = '0.3.0',
description = "The poor man's API for manipulating a file system cache.",
packages = [ 'pyTrivialCache' ],
author = 'Roberto Reale',
author_email = 'rober.reale@gmail.com',
url = 'https://github.com/robertoreale... | from setuptools import setup
setup(
name = 'pyTrivialCache',
version = '0.2.0',
description = "The poor man's API for manipulating a file system cache.",
packages = [ 'pyTrivialCache' ],
author = 'Roberto Reale',
author_email = 'rober.reale@gmail.com',
url = 'https://github.com/robertoreale... | mit | Python |
8d14ced65919fa6f94b041c79ae60439db4e243f | Add joblib to install_requires | lmcinnes/pynndescent | setup.py | setup.py | from setuptools import setup
def readme():
with open("README.rst") as readme_file:
return readme_file.read()
configuration = {
"name": "pynndescent",
"version": "0.3.0",
"description": "Nearest Neighbor Descent",
"long_description": readme(),
"classifiers": [
"Development Sta... | from setuptools import setup
def readme():
with open("README.rst") as readme_file:
return readme_file.read()
configuration = {
"name": "pynndescent",
"version": "0.3.0",
"description": "Nearest Neighbor Descent",
"long_description": readme(),
"classifiers": [
"Development Sta... | bsd-2-clause | Python |
047215a3e07e7cebf78e409602dd57a2709f8923 | Update broken link in PyPi (Homepage) | datafolklabs/cement,datafolklabs/cement,datafolklabs/cement | setup.py | setup.py |
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
f = open('README.md', 'r')
LONG = f.read()
f.close()
setup(name='cement',
version=VERSION,
description='CLI Framework for Python',
long_description=LONG,
long_description_content_t... |
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
f = open('README.md', 'r')
LONG = f.read()
f.close()
setup(name='cement',
version=VERSION,
description='CLI Framework for Python',
long_description=LONG,
long_description_content_t... | bsd-3-clause | Python |
ae279376122772dc189d744caa799c3a0916b38b | Fix setup.py | sinnwerkstatt/django-bettertemplates,sinnwerkstatt/django-bettertemplates | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
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()
readme = open('README.md').read()
history = open('HISTORY.rst'... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
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()
readme = open('README.rst').read()
history = open('HISTORY.rst... | bsd-3-clause | Python |
761c6d6331b8031b957d772d203dcba2575eb908 | Fix readthedocs URLs in the long description. | mdickinson/refcycle | setup.py | setup.py | # Copyright 2013 Mark Dickinson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... | # Copyright 2013 Mark Dickinson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... | apache-2.0 | Python |
36bb5f553f0488b8eba7c0b70c7a35ffccb47dbb | Add Easy-Deploy / Easy-Publish | TensorPy/TensorPy,TensorPy/TensorPy | setup.py | setup.py | """
The setup package to install TensorPy dependencies.
*> This does NOT include TensorFlow installation.
*> To install TensorFlow, use "./install.sh"
"""
from setuptools import setup, find_packages # noqa
import os
import sys
this_directory = os.path.abspath(os.path.dirname(__file__))
long_description = None
try:
... | """
The setup package to install TensorPy dependencies.
*> This does NOT include TensorFlow installation.
*> To install TensorFlow, use "./install.sh"
"""
from setuptools import setup, find_packages # noqa
from os import path
this_directory = path.abspath(path.dirname(__file__))
long_description = None
try:
wit... | mit | Python |
41f1fa3e04929cfda9df52f6f80eba5fed2150bb | Fix metadata | necaris/python3-openid,misli/python3-openid,moreati/python3-openid,moreati/python3-openid,moreati/python3-openid,misli/python3-openid,isagalaev/sm-openid,misli/python3-openid,necaris/python3-openid | setup.py | setup.py | import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if 'sdist' in sys.argv:
os.system('./admin/makedoc')
version = '3.0.0-alpha'
setup(
name='python-openid',
version=version,
description='OpenID support for servers and consumers.',
... | import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if 'sdist' in sys.argv:
os.system('./admin/makedoc')
version = '3.0.0-alpha'
setup(
name='python-openid',
version=version,
description='OpenID support for servers and consumers.',
... | apache-2.0 | Python |
52ee1ff44b51c7f6a10697354031a326a825abcc | fix for dependencies that were not specified in the module setup | GGOutfitters/conjure | setup.py | setup.py | from setuptools import setup, find_packages
DESCRIPTION = "A MongoDB object mapper inspired by Django models and SQLAlchemy's pythonic DSL."
with open('README') as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.1.2'
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'... | from setuptools import setup, find_packages
DESCRIPTION = "A MongoDB object mapper inspired by Django models and SQLAlchemy's pythonic DSL."
with open('README') as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.1.2'
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'... | mit | Python |
606ed4f5f984c4e099442ae3db017c54b330bfd8 | update videos.html | ddboline/roku_app,ddboline/roku_app,ddboline/roku_app | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Created on Sun May 17 07:14:20 2015
@author: ddboline
"""
from __future__ import (absolute_import, division, print_function)
from setuptools import setup
setup(
name='roku_app',
version='0.0.3.7',
author='Daniel Boline',
author_email='ddboline@gmail.com',... | #!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Created on Sun May 17 07:14:20 2015
@author: ddboline
"""
from __future__ import (absolute_import, division, print_function)
from setuptools import setup
setup(
name='roku_app',
version='0.0.3.6',
author='Daniel Boline',
author_email='ddboline@gmail.com',... | mit | Python |
ca7df2103a2e53f0b401c7004a2a5e942bd3e7e1 | Remove PIL and docutils from requirements, easy_thumbnails requires it anyway | winzard/django-image-cropping,henriquechehad/django-image-cropping,henriquechehad/django-image-cropping,winzard/django-image-cropping,henriquechehad/django-image-cropping,winzard/django-image-cropping | setup.py | setup.py | from distutils.core import setup
from setuptools import setup, find_packages
setup(name = "django-image-cropping",
version = "0.3.0",
description = "A reusable app for cropping images easily and non-destructively in Django",
long_description=open('README.rst').read(),
author = "jonasvp",
author_ema... | from distutils.core import setup
from setuptools import setup, find_packages
setup(name = "django-image-cropping",
version = "0.3.0",
description = "A reusable app for cropping images easily and non-destructively in Django",
long_description=open('README.rst').read(),
author = "jonasvp",
author_ema... | bsd-3-clause | Python |
d497942fedb3096b291f887b70ca231c203e6b85 | Bump version. | christabor/flask_jsondash,christabor/flask_jsondash,christabor/flask_jsondash | setup.py | setup.py | """Setup for Flask Jsondash."""
from glob import glob
import os
from setuptools import setup, find_packages
SRCDIR = '.'
folder = os.path.abspath(os.path.dirname(__file__))
template_start = '{}/flask_jsondash/templates'.format(folder)
static_start = '{}/flask_jsondash/static'.format(folder)
def get_all_files(patter... | """Setup for Flask Jsondash."""
from glob import glob
import os
from setuptools import setup, find_packages
SRCDIR = '.'
folder = os.path.abspath(os.path.dirname(__file__))
template_start = '{}/flask_jsondash/templates'.format(folder)
static_start = '{}/flask_jsondash/static'.format(folder)
def get_all_files(patter... | mit | Python |
5c1397fd563f30741f71f07433722dfe3f5a322d | Update pypi.python.org URL to pypi.org (#21) | JoshData/python-email-validator,JoshData/python-email-validator | setup.py | setup.py | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from codecs import open
setup(
name='email_validator',
version='1.0.3',
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
long_description=open("README.rst", encoding='utf-8').read(),
url=... | # -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from codecs import open
setup(
name='email_validator',
version='1.0.3',
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
long_description=open("README.rst", encoding='utf-8').read(),
url=... | cc0-1.0 | Python |
acdeb233acd9d3f5e1b5e7e5c9df6030fdb0cd85 | Fix bugs in setup.py. | isnotajoke/django-analyze-sessions | setup.py | setup.py | from distutils.core import setup
setup(
name='django-analyze-sessions',
version='0.1',
author='Kevan Carstensen',
author_email='kevan@isnotajoke.com',
packages=['analyze_sessions', 'analyze_sessions.management', 'analyze_sessions.management.commands'],
url='http://isnotajoke.com',
license='... | from distutils.core import setup
setup(
name='django-analyze-sesions',
version='0.1',
author='Kevan Carstensen',
author_email='kevan@isnotajoke.com',
packages=['analyze_sessions'],
url='http://isnotajoke.com',
license='LICENSE.txt',
description='Tools to analyze Django DB sessions',
... | mit | Python |
29023d781b817db58686e23ff47e134f63b1a86e | Add python version dependency in setup | epsy/sigtools,epsy/sigtools | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
with open("README.rst") as fh:
long_description = fh.read()
setup(
name='sigtools',
version='2.0.2',
description="Utilities for working with inspect.Signature objects.",
long_description=long_description,
long_description_content_type='text/... | #!/usr/bin/env python
from setuptools import setup
with open("README.rst") as fh:
long_description = fh.read()
setup(
name='sigtools',
version='2.0.2',
description="Utilities for working with inspect.Signature objects.",
long_description=long_description,
long_description_content_type='text/... | mit | Python |
86954efce4f93f4614137a262d94b6acffa8521f | Remove the upper bound | bruth/django-tracking2,bruth/django-tracking2 | setup.py | setup.py | from setuptools import setup, find_packages
kwargs = {
'packages': find_packages(
exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
'include_package_data': True,
'install_requires': [
'django>=1.4',
],
'name': 'django-tracking2',
'version': __import__('tracking').get_versio... | from setuptools import setup, find_packages
kwargs = {
'packages': find_packages(
exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
'include_package_data': True,
'install_requires': [
'django>=1.4,<1.8',
],
'name': 'django-tracking2',
'version': __import__('tracking').get_v... | bsd-2-clause | Python |
29fb5c36e7f2dd647c18d30ad026b1de6ff03821 | Update dev status | pastas/pasta,gwtsa/gwtsa,pastas/pastas | setup.py | setup.py | from setuptools import setup
# from setuptools import find_packages
# from os import path
# from codecs import open # To use a consistent encoding
# here = path.abspath(path.dirname(__file__))
#
# Get the long description from the relevant file
# with open(path.join(here, 'README'), encoding='utf-8') as f:
# long_... | from setuptools import setup
# from setuptools import find_packages
# from os import path
# from codecs import open # To use a consistent encoding
# here = path.abspath(path.dirname(__file__))
#
# Get the long description from the relevant file
# with open(path.join(here, 'README'), encoding='utf-8') as f:
# long_... | mit | Python |
80d50feb7353067f2477c4e21be833e1d37d3999 | Bump pypi version | imbolc/aiohttp-login,imbolc/aiohttp-login | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
from setuptools import setup
try:
import pandoc
except ImportError:
pandoc = None
if sys.argv[-1] == 'publish':
assert pandoc, 'You have to do: pip install pyandoc'
os.system('python setup.py sdist upload')
sys.exit(0)
def read(fname):
with open(fn... | #!/usr/bin/env python
import os
import sys
from setuptools import setup
try:
import pandoc
except ImportError:
pandoc = None
if sys.argv[-1] == 'publish':
assert pandoc, 'You have to do: pip install pyandoc'
os.system('python setup.py sdist upload')
sys.exit(0)
def read(fname):
with open(fn... | isc | Python |
e78044306dd1a7c7484e5bd83bc0cda7d6bc2c75 | bump version | lincolnloop/django-salmonella,lincolnloop/django-salmonella,Gustavosdo/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella,Gustavosdo/django-salmonella,Gustavosdo/django-salmonella | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name="django-salmonella",
version="0.2.1",
author='Lincoln Loop',
author_email='info@lincolnloop.com',
description=("raw_id_fields widget replacement that handles display of an object's "
"string value on change and can be overridd... | from setuptools import setup, find_packages
setup(
name="django-salmonella",
version="0.2.0",
author='Lincoln Loop',
author_email='info@lincolnloop.com',
description=("raw_id_fields widget replacement that handles display of an object's "
"string value on change and can be overridd... | mit | Python |
dc6d19fa8f967741ea209be529946e0232e3be28 | Set version to 1.0.1. | appressoas/vitalstyles,appressoas/vitalstyles | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'vitalstyles',
description = 'Generate CSS/SASS/LESS documentation with previews using Markdown in comments.',
version = '1.0.1',
license = 'BSD',
author = 'Espen Angell Kristiansen',
author_email = 'post@espenak.net',
url = 'https:... | from setuptools import setup, find_packages
setup(
name = 'vitalstyles',
description = 'Generate CSS/SASS/LESS documentation with previews using Markdown in comments.',
version = '1.0',
license = 'BSD',
author = 'Espen Angell Kristiansen',
author_email = 'post@espenak.net',
url = 'https://... | bsd-3-clause | Python |
4117539f0e2c377ebaf50120a4a3205b5cfa952e | Bump dependency versions | kislyuk/aegea,kislyuk/aegea,kislyuk/aegea | setup.py | setup.py | #!/usr/bin/env python
import os, sys, glob, subprocess, textwrap, setuptools
try:
# Git version extraction logic designed to be compatible with both semver and PEP 440
version = subprocess.check_output(["git", "describe", "--tags", "--match", "v*.*.*"]).decode()
version = version.strip("v\n").replace("-",... | #!/usr/bin/env python
import os, sys, glob, subprocess, textwrap, setuptools
try:
# Git version extraction logic designed to be compatible with both semver and PEP 440
version = subprocess.check_output(["git", "describe", "--tags", "--match", "v*.*.*"]).decode()
version = version.strip("v\n").replace("-",... | apache-2.0 | Python |
c46da7419dee72f543ea289eb6b6531dfa31a280 | Update version | growdaisy/pysend | setup.py | setup.py | """PySend
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pysend',... | """PySend
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pysend',... | mit | Python |
4b3dc61e5cb46774cf647f8c640b280aae1e4e90 | Handle symlinks in path to home directory | TobiX/dotfiles,TobiX/dotfiles | setup.py | setup.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# © 2017-2021 qsuscs, TobiX
# Should still run with Python 2.7...
from __future__ import print_function, unicode_literals
import os
import sys
from glob import glob
os.chdir(os.path.dirname(os.path.abspath(__file__)))
home = os.path.realpath(os.path.expanduser('~'))
ex... | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# © 2017-2019 qsuscs, TobiX
# Should still run with Python 2.7...
from __future__ import print_function, unicode_literals
import os
import sys
from glob import glob
os.chdir(os.path.dirname(os.path.abspath(__file__)))
exit = 0
for f in glob('dot.*'):
dst_home = '~/... | isc | Python |
32fe723d195d03f68714d3b97d77f2ce34e02e13 | Bump version and Python version. | ppb/ppb-vector,ppb/ppb-vector | setup.py | setup.py | from setuptools import setup
setup(
name='ppb-vector',
version='0.3',
packages=['ppb_vector'],
url='http://github.com/pathunstrom/ppb-vector',
license='',
author='Piper Thunstrom',
author_email='pathunstrom@gmail.com',
description='A basic game development Vector2 class.',
classifie... | from setuptools import setup
setup(
name='ppb-vector',
version='0.2',
packages=['ppb_vector'],
url='http://github.com/pathunstrom/ppb-vector',
license='',
author='Piper Thunstrom',
author_email='pathunstrom@gmail.com',
description='A basic game development Vector2 class.',
classifie... | artistic-2.0 | Python |
7cd6bdb80649f6ef903cd8356b5c417fbb84cad4 | Add twistedcaldav.directory to packages. | trevor/calendarserver,trevor/calendarserver,trevor/calendarserver | setup.py | setup.py | #!/usr/bin/env python
##
# Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | #!/usr/bin/env python
##
# Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | apache-2.0 | Python |
5ef63a4400669a67ab09d9a822ace4f7e6c5acf5 | Add sphinx and spelling packages to setup.py | jongiddy/jute,jongiddy/jute | setup.py | setup.py | from distutils.core import setup
GITHUB_URL = 'https://github.com/jongiddy/jute'
VERSION = '0.1.8'
def contents_of(filename):
with open(filename, encoding='utf-8') as f:
return f.read()
setup(
name='jute',
packages=['jute'],
package_dir={'jute': 'python3/jute'},
version=VERSION,
desc... | from distutils.core import setup
GITHUB_URL = 'https://github.com/jongiddy/jute'
VERSION = '0.1.8'
def contents_of(filename):
with open(filename, encoding='utf-8') as f:
return f.read()
setup(
name='jute',
packages=['jute'],
package_dir={'jute': 'python3/jute'},
version=VERSION,
desc... | mit | Python |
6e2f22d4e710e90100387f62715282c58612e102 | Add install_requires. | paultag/loofah | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
long_description = open('README.md', 'r').read()
with open('requirements.txt') as f:
install_requires = [l for l in f.read().splitlines()
if not l.startswith('#')]
setup(
name="loofah",
version="0.1",
packages=[
"loo... | #!/usr/bin/env python
from setuptools import setup
long_description = open('README.md', 'r').read()
setup(
name="loofah",
version="0.1",
packages=[
"loofah"
],
author="Paul Tagliamonte",
author_email="paultag@debian.org",
long_description=long_description,
description='does so... | mit | Python |
e4b441a38e8a68d8b1e697a6e5e0cb818ea2eb64 | bump other packages too | erik/lastcast | setup.py | setup.py | import sys
from setuptools import setup
# Be verbose about Python < 3.6 being deprecated.
if sys.version_info < (3, 6):
print('\n' * 3 + '*' * 64)
print('lastcast requires Python 3.6+, and might be broken if run with\n'
'this version of Python.')
print('*' * 64 + '\n' * 3)
setup(
name='las... | import sys
from setuptools import setup
# Be verbose about Python < 3.6 being deprecated.
if sys.version_info < (3, 6):
print('\n' * 3 + '*' * 64)
print('lastcast requires Python 3.6+, and might be broken if run with\n'
'this version of Python.')
print('*' * 64 + '\n' * 3)
setup(
name='las... | mit | Python |
1680cc753010ca267cdcc12ae414e6083baeb686 | bump version | harmslab/pytc-gui,harmslab/pytc-gui | setup.py | setup.py | import sys
if sys.version_info[0] < 3:
sys.exit('Sorry, Python < 3.x is not supported')
# Try using setuptools first, if it's installed
from setuptools import setup, find_packages
packages = ["pytc_gui",
"pytc_gui/dialogs",
"pytc_gui/widgets",
"pytc_gui/widgets/experiment_box"... | import sys
if sys.version_info[0] < 3:
sys.exit('Sorry, Python < 3.x is not supported')
# Try using setuptools first, if it's installed
from setuptools import setup, find_packages
packages = ["pytc_gui",
"pytc_gui/dialogs",
"pytc_gui/widgets",
"pytc_gui/widgets/experiment_box"... | unlicense | Python |
02ac38532cea722ef71717cbe70f9639a4373d07 | Tweak description and long_description | Nexmo/nexmo-python | setup.py | setup.py | import re
from setuptools import setup
with open('nexmo/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
setup(name='nexmo',
version=version,
description='Nexmo Client Library for Python',
long_description='This is the Python client ... | import re
from setuptools import setup
with open('nexmo/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
setup(name='nexmo',
version=version,
description='Python client for the Nexmo API',
long_description='Python client for the Nexm... | mit | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.