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 |
---|---|---|---|---|---|---|---|---|
9d8c769b9d0a3c1fa2da62c2a2a221e9a5764571
|
bump version for release
|
motmot/wxglvideo,motmot/wxglvideo,motmot/wxglvideo
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
import os
kws = {}
if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )):
kws['install_requires'] = ['numpy>=1.0.4',
'motmot.imops>=0.5.2.dev',
'pyglet>=1.0',
'wxPython>=2.8',
'pygarrayimage>=0.0.2',
]
setup(name='motmot.wxglvideo',
description='wx/OpenGL viewer of image sequences',
long_description = \
"""Allows for rapid display and resizing/rotation of images by
offloading the image operations to OpenGL.
This is a subpackage of the motmot family of digital image utilities.
""",
version='0.6.2',
author='Andrew Straw',
author_email='[email protected]',
url='http://code.astraw.com/projects/motmot',
license='BSD',
zip_safe=True,
packages = find_packages(),
namespace_packages = ['motmot'],
package_data = {'motmot.wxglvideo':['demo.xrc']},
entry_points = {'gui_scripts': ['wxglvideo_demo=motmot.wxglvideo.demo:main',
'wxglvideo_demo_overlay=motmot.wxglvideo.demo_overlay:main',
]},
**kws)
|
from setuptools import setup, find_packages
import os
kws = {}
if not int(os.getenv( 'DISABLE_INSTALL_REQUIRES','0' )):
kws['install_requires'] = ['numpy>=1.0.4',
'motmot.imops>=0.5.2.dev',
'pyglet>=1.0',
'wxPython>=2.8',
'pygarrayimage>=0.0.2',
]
setup(name='motmot.wxglvideo',
description='wx/OpenGL viewer of image sequences',
long_description = \
"""Allows for rapid display and resizing/rotation of images by
offloading the image operations to OpenGL.
This is a subpackage of the motmot family of digital image utilities.
""",
version='0.6.1',
author='Andrew Straw',
author_email='[email protected]',
url='http://code.astraw.com/projects/motmot',
license='BSD',
zip_safe=True,
packages = find_packages(),
namespace_packages = ['motmot'],
package_data = {'motmot.wxglvideo':['demo.xrc']},
entry_points = {'gui_scripts': ['wxglvideo_demo=motmot.wxglvideo.demo:main',
'wxglvideo_demo_overlay=motmot.wxglvideo.demo_overlay:main',
]},
**kws)
|
bsd-3-clause
|
Python
|
a5587dadbc152ba2a4cf1baa076f544018cac40e
|
Update setup.py Update Version Number.
|
trakerr-com/trakerr-python,trakerr-io/trakerr-python,trakerr-io/trakerr-python,trakerr-com/trakerr-python
|
setup.py
|
setup.py
|
# coding: utf-8
"""
Trakerr API
Get your application events and errors to Trakerr via the *Trakerr API*.
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
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
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from setuptools import setup, find_packages
NAME = "Trakerr"
VERSION = "2.1.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Trakerr API",
author_email="",
url="https://trakerr.io",
keywords=["Swagger", "Trakerr API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
Get your application events and errors to Trakerr via the *Trakerr API*.
"""
)
|
# coding: utf-8
"""
Trakerr API
Get your application events and errors to Trakerr via the *Trakerr API*.
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
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
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from setuptools import setup, find_packages
NAME = "Trakerr"
VERSION = "2.1.2"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Trakerr API",
author_email="",
url="https://trakerr.io",
keywords=["Swagger", "Trakerr API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
Get your application events and errors to Trakerr via the *Trakerr API*.
"""
)
|
apache-2.0
|
Python
|
b8fcd65e0fb4b3d35c09068d6972778918d1d2aa
|
Bump version to 0.7.0
|
ghickman/django-cache-url
|
setup.py
|
setup.py
|
# -*- coding: utf-8 -*-
"""
django-cache-url
~~~~~~~~~~~~~~~~
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``CACHE_URL`` environment variable to configure your Django application.
Usage
-----
Configure your cache in ``settings.py``::
CACHES={'default': django_cache_url.config()}
Nice and simple.
"""
from setuptools import setup
setup(
name='django-cache-url',
version='0.7.0',
url='http://github.com/ghickman/django-cache-url',
license='MIT',
author='George Hickman',
author_email='[email protected]',
description='Use Cache URLs in your Django application.',
long_description=__doc__,
py_modules=('django_cache_url',),
)
|
# -*- coding: utf-8 -*-
"""
django-cache-url
~~~~~~~~~~~~~~~~
This simple Django utility allows you to utilize the
`12factor <http://www.12factor.net/backing-services>`_ inspired
``CACHE_URL`` environment variable to configure your Django application.
Usage
-----
Configure your cache in ``settings.py``::
CACHES={'default': django_cache_url.config()}
Nice and simple.
"""
from setuptools import setup
setup(
name='django-cache-url',
version='0.6.0',
url='http://github.com/ghickman/django-cache-url',
license='MIT',
author='George Hickman',
author_email='[email protected]',
description='Use Cache URLs in your Django application.',
long_description=__doc__,
py_modules=('django_cache_url',),
)
|
mit
|
Python
|
8f4b1fee00a70b1e22e27b4f5e9a256ff2964cf4
|
update setup.py download_url to point to wheel
|
mathandy/svgpathtools
|
setup.py
|
setup.py
|
from setuptools import setup
import codecs
import os
VERSION = '1.4.2'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = '[email protected]'
GITHUB = 'https://github.com/mathandy/svgpathtools'
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
HERE = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f:
return f.read()
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezier curves.'),
long_description=read("README.md"),
long_description_content_type='text/markdown',
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
url=GITHUB,
download_url='{}/releases/download/{}/svgpathtools-{}-py2.py3-none-any.whl'
''.format(GITHUB, VERSION, VERSION),
license='MIT',
install_requires=['numpy', 'svgwrite'],
platforms="OS Independent",
requires=['numpy', 'svgwrite'],
keywords=['svg', 'svg path', 'svg.path', 'bezier', 'parse svg path', 'display svg'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
from setuptools import setup
import codecs
import os
VERSION = '1.4.2'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = '[email protected]'
GITHUB = 'https://github.com/mathandy/svgpathtools'
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
HERE = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f:
return f.read()
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezier curves.'),
long_description=read("README.md"),
long_description_content_type='text/markdown',
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
url=GITHUB,
download_url='{}/raw/1.4.1/dist/svgpathtools-{}.tar.gz'.format(GITHUB, VERSION),
license='MIT',
install_requires=['numpy', 'svgwrite'],
platforms="OS Independent",
requires=['numpy', 'svgwrite'],
keywords=['svg', 'svg path', 'svg.path', 'bezier', 'parse svg path', 'display svg'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
mit
|
Python
|
989b110bf0a0681db45036cd1a130634b278d971
|
Update setup.py
|
django-py/django-openid-provider,wojtek-fliposports/django-oidc-provider,juanifioren/django-oidc-provider,wojtek-fliposports/django-oidc-provider,Sjord/django-oidc-provider,nmohoric/django-oidc-provider,bunnyinc/django-oidc-provider,Sjord/django-oidc-provider,ByteInternet/django-oidc-provider,django-py/django-openid-provider,wayward710/django-oidc-provider,torreco/django-oidc-provider,nmohoric/django-oidc-provider,juanifioren/django-oidc-provider,torreco/django-oidc-provider,bunnyinc/django-oidc-provider,wayward710/django-oidc-provider,ByteInternet/django-oidc-provider
|
setup.py
|
setup.py
|
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.0.3',
packages=[
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
'oidc_provider/lib/utils', 'oidc_provider/tests',
],
include_package_data=True,
license='MIT License',
description='OpenID Connect Provider implementation for Django.',
long_description=README,
url='http://github.com/juanifioren/django-oidc-provider',
author='Juan Ignacio Fiorentino',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'pyjwt==1.1.0',
],
)
|
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.0.3',
packages=[
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
'oidc_provider/lib/utils', 'oidc_provider/tests',
],
include_package_data=True,
license='MIT License',
description='OpenID Connect Provider implementation for Django.',
long_description=README,
url='http://github.com/juanifioren/django-oidc-provider',
author='Juan Ignacio Fiorentino',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'pyjwt==0.3.1',
],
)
|
mit
|
Python
|
40afc357e0850c71153f8779583fc03f643b2271
|
Reorder and group metadata and options together
|
adamkalis/satnogs-client,adamkalis/satnogs-client
|
setup.py
|
setup.py
|
from setuptools import find_packages, setup
setup(
name='satnogsclient',
version='0.2.5',
url='https://github.com/satnogs/satnogs-client/',
author='SatNOGS team',
author_email='[email protected]',
description='SatNOGS Client',
zip_safe=False,
install_requires=[
'APScheduler',
'SQLAlchemy',
'requests',
'validators',
'python-dateutil',
'ephem',
'pytz',
'flask',
'pyopenssl',
'pyserial',
'flask-socketio',
'redis'
],
extras_require={
'develop': 'flake8'
},
scripts=['satnogsclient/bin/satnogs-poller'],
include_package_data=True,
packages=find_packages()
)
|
from setuptools import find_packages, setup
setup(name='satnogsclient',
packages=find_packages(),
version='0.2.5',
author='SatNOGS team',
author_email='[email protected]',
url='https://github.com/satnogs/satnogs-client/',
description='SatNOGS Client',
include_package_data=True,
zip_safe=False,
install_requires=[
'APScheduler',
'SQLAlchemy',
'requests',
'validators',
'python-dateutil',
'ephem',
'pytz',
'flask',
'pyopenssl',
'pyserial',
'flask-socketio',
'redis'
],
extras_require={
'develop': 'flake8'
},
scripts=['satnogsclient/bin/satnogs-poller'])
|
agpl-3.0
|
Python
|
55b1315aca711869df34dc2d427a1b08053e3ed0
|
Bump version to v0.1.1
|
ad-m/python-anticaptcha
|
setup.py
|
setup.py
|
from setuptools import setup
from codecs import open
from os import path, system
import sys
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()
version = '0.1.1'
if sys.argv[-1] == 'publish':
try:
import wheel
except ImportError:
raise ImportError("Fix: pip install wheel")
system('python setup.py sdist bdist_wheel upload')
print("You probably want to also tag the version now:")
print(" git tag -a {0!s} -m 'version {1!s}'".format(version, version))
print(" git push --tags")
sys.exit()
setup(
name='python-anticaptcha',
version=version,
description='Client library for solve captchas with Anticaptcha.com support.',
long_description=long_description,
url='https://github.com/ad-m/python-anticaptcha',
author='Adam Dobrawy',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
use_2to3=True,
keywords='recaptcha captcha development',
packages=['python_anticaptcha'],
install_requires=['requests', 'six'],
)
|
from setuptools import setup
from codecs import open
from os import path, system
import sys
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()
version = '0.1.0'
if sys.argv[-1] == 'publish':
try:
import wheel
except ImportError:
raise ImportError("Fix: pip install wheel")
system('python setup.py sdist bdist_wheel upload')
print("You probably want to also tag the version now:")
print(" git tag -a {0!s} -m 'version {1!s}'".format(version, version))
print(" git push --tags")
sys.exit()
setup(
name='python-anticaptcha',
version=version,
description='Client library for solve captchas with Anticaptcha.com support.',
long_description=long_description,
url='https://github.com/ad-m/python-anticaptcha',
author='Adam Dobrawy',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
use_2to3=True,
keywords='recaptcha captcha development',
packages=['python_anticaptcha'],
install_requires=['requests', 'six'],
)
|
mit
|
Python
|
ec2b867a9203bbcf21f239c9b3d7d6c90b4b6642
|
bump to version 0.1.7
|
enricobacis/wos
|
setup.py
|
setup.py
|
from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.7',
description='Web of Science client using API v3.',
long_description=long_description,
extras_require={
':python_version <= "2.7"': ['suds'],
':python_version >= "3.0"': ['suds-py3'],
},
url='http://github.com/enricobacis/wos',
author='Enrico Bacis',
author_email='[email protected]',
license='MIT',
packages=['wos'],
scripts=['scripts/wos'],
keywords='wos isi web of science knowledge api client'
)
|
from setuptools import setup
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
setup(name='wos',
version='0.1.6',
description='Web of Science client using API v3.',
long_description=long_description,
extras_require={
':python_version <= "2.7"': ['suds'],
':python_version >= "3.0"': ['suds-py3'],
},
url='http://github.com/enricobacis/wos',
author='Enrico Bacis',
author_email='[email protected]',
license='MIT',
packages=['wos'],
scripts=['scripts/wos'],
keywords='wos isi web of science knowledge api client'
)
|
mit
|
Python
|
f1af14959468ca4f8d18ce3c2e03557036ffb32e
|
Bump version
|
ludios/Monoclock,ludios/Monoclock
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import sys
from distutils.core import setup
from distutils.extension import Extension
if sys.platform == 'darwin':
monoclock_libraries = []
else:
monoclock_libraries = ['rt']
setup(
name='Monoclock',
version='14.4.18',
description="Monotonic clock access for Python",
url="https://github.com/ludios/Monoclock",
author="Ivan Kozik",
author_email="[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
ext_modules=[
Extension("monoclock", ["monoclock.c"], libraries=monoclock_libraries),
],
)
|
#!/usr/bin/env python
import sys
from distutils.core import setup
from distutils.extension import Extension
if sys.platform == 'darwin':
monoclock_libraries = []
else:
monoclock_libraries = ['rt']
setup(
name='Monoclock',
version='14.4.16',
description="Monotonic clock access for Python",
url="https://github.com/ludios/Monoclock",
author="Ivan Kozik",
author_email="[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
ext_modules=[
Extension("monoclock", ["monoclock.c"], libraries=monoclock_libraries),
],
)
|
mit
|
Python
|
4eb298af6131c6747c8053b3ed7ddf9058fc23a6
|
Allow setup.py to work when cython is not available
|
ondergetekende/python-panavatar
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
try:
from Cython.Build import cythonize
ext_modules = cythonize("wallpaper/*.pyx")
except ImportError:
ext_modules = []
setup(
name='python-wallpaper',
version='0.2.3',
url='https://github.com/ondergetekende/python-wallpaper',
description=(
'python-wallpaper generates pseudorandom abstract wallpapers'
),
author='Koert van der Veer',
author_email='[email protected]',
packages=find_packages(),
ext_modules=ext_modules,
install_requires=["cython"],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'generate-wallpaper = wallpapers:cmdline'
]
},
)
|
from setuptools import setup, find_packages
from Cython.Build import cythonize
setup(
name='python-wallpaper',
version='0.2.2',
url='https://github.com/ondergetekende/python-wallpaper',
description=(
'python-wallpaper generates pseudorandom abstract wallpapers'
),
author='Koert van der Veer',
author_email='[email protected]',
packages=find_packages(),
ext_modules=cythonize("wallpaper/*.pyx"),
install_requires=["cython"],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'generate-wallpaper = wallpapers:cmdline'
]
},
)
|
mit
|
Python
|
b65b0ed8d09d4a22164f16ed60f7c5b71d6f54db
|
Move download_url and bump version
|
chuckbutler/git-vendor
|
setup.py
|
setup.py
|
import setuptools
from gitvendor.version import Version
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Software Development'
]
setuptools.setup(name='git-vendor',
version=Version('0.0.3').number,
description='Vendor tagged releases from git to $VCS',
long_description=open('README.md').read().strip(),
author='Charles Butler',
author_email='[email protected]',
url='http://github.com/chuckbutler/git-vendor',
download_url='https://github.com/chuckbutler/git-vendor/releases/',
py_modules=[],
packages=find_packages(),
entry_points={
'console_scripts': [
'git-vendor = gitvendor.cli:main'
],
},
install_requires=['gitpython', 'jinja2', 'pyyaml', 'path.py',
'dirsync', 'six'],
package_data={
'template': ['template/vendor-rc'],
},
include_package_data=True,
license='MIT License',
zip_safe=False,
keywords='git, vendor',
classifiers=CLASSIFIERS)
|
import setuptools
from gitvendor.version import Version
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Software Development'
]
setuptools.setup(name='git-vendor',
version=Version('0.0.1').number,
description='Vendor tagged releases from git to $VCS',
long_description=open('README.md').read().strip(),
author='Charles Butler',
author_email='[email protected]',
url='http://github.com/chuckbutler/git-vendor',
py_modules=[],
packages=find_packages(),
entry_points={
'console_scripts': [
'git-vendor = gitvendor.cli:main'
],
},
install_requires=['gitpython', 'jinja2', 'pyyaml', 'path.py',
'dirsync', 'six'],
package_data={
'template': ['template/vendor-rc'],
},
include_package_data=True,
license='MIT License',
zip_safe=False,
keywords='git, vendor',
classifiers=CLASSIFIERS)
|
mit
|
Python
|
8f30f96ce48f347bc940f3da6f96254dc988817a
|
Update setup.py to include gl modules.
|
inclement/vispy,sh4wn/vispy,dchilds7/Deysha-Star-Formation,hronoses/vispy,sh4wn/vispy,jdreaver/vispy,hronoses/vispy,srinathv/vispy,drufat/vispy,RebeccaWPerry/vispy,michaelaye/vispy,kkuunnddaannkk/vispy,drufat/vispy,srinathv/vispy,michaelaye/vispy,sbtlaarzc/vispy,RebeccaWPerry/vispy,sh4wn/vispy,Eric89GXL/vispy,drufat/vispy,julienr/vispy,jay3sh/vispy,inclement/vispy,ghisvail/vispy,kkuunnddaannkk/vispy,jay3sh/vispy,julienr/vispy,inclement/vispy,ghisvail/vispy,srinathv/vispy,michaelaye/vispy,dchilds7/Deysha-Star-Formation,QuLogic/vispy,bollu/vispy,jdreaver/vispy,hronoses/vispy,kkuunnddaannkk/vispy,jdreaver/vispy,dchilds7/Deysha-Star-Formation,bollu/vispy,sbtlaarzc/vispy,QuLogic/vispy,jay3sh/vispy,julienr/vispy,QuLogic/vispy,Eric89GXL/vispy,Eric89GXL/vispy,RebeccaWPerry/vispy,bollu/vispy,sbtlaarzc/vispy,ghisvail/vispy
|
setup.py
|
setup.py
|
#!/usr/bin/env python
from distutils.core import setup
import sys
# get pygly's version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
execfile('pygly/version.py')
os_x_requires = ['pyglet(>=1.2)', 'pyobjc(==2.2)']
other_requires = ['pyglet']
setup(
name = 'pygly',
version = __version__,
description = 'Pyglet based 3D Framework',
long_description = """An OpenGL framework designed for flexbility
and power. PyGLy provides a number of tools to let you
do what you want, how you want.""",
license = 'BSD',
author = 'Adam Griffiths',
author_email = '[email protected]',
url = 'https://github.com/adamlwgriffiths/PyGLy',
requires = [
'numpy',
'cython',
'pil',
'pyrr',
]
+ (
os_x_requires if 'darwin' in sys.platform else other_requires
),
platforms = [ 'any' ],
test_suite = "pygly.test",
packages = [
'pygly',
'pygly.cocos2d',
'pygly.input',
'pygly.uv_generators',
'pygly.gl',
'pygly.gl.legacy',
'pygly.gl.core',
],
classifiers = [
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|
#!/usr/bin/env python
from distutils.core import setup
import sys
# get pygly's version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
execfile('pygly/version.py')
os_x_requires = ['pyglet(>=1.2)', 'pyobjc(==2.2)']
other_requires = ['pyglet']
setup(
name = 'pygly',
version = __version__,
description = 'Pyglet based 3D Framework',
long_description = """An OpenGL framework designed for flexbility
and power. PyGLy provides a number of tools to let you
do what you want, how you want.""",
license = 'BSD',
author = 'Adam Griffiths',
author_email = '[email protected]',
url = 'https://github.com/adamlwgriffiths/PyGLy',
requires = [
'numpy',
'cython',
'pil',
'pyrr',
]
+ (
os_x_requires if 'darwin' in sys.platform else other_requires
),
platforms = [ 'any' ],
test_suite = "pygly.test",
packages = [
'pygly',
'pygly.cocos2d',
'pygly.input',
'pygly.mesh',
'pygly.uv_generators',
],
classifiers = [
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|
bsd-3-clause
|
Python
|
ee22c23462b93c532e7b419bc9665916196a86e8
|
Add C language classifier
|
blink1073/vidsrc,blink1073/vidsrc
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
import numpy
import re
readme = open('README.rst').read()
text = open('tifffile/__init__.py').read()
version = re.search("__version__ = '(.*?)'", text).groups()[0]
setup(
name='tifffile',
version=version,
description='Read and write image data from and to TIFF files.',
long_description=readme,
author='Steven Silvester',
author_email='[email protected]',
url='https://github.com/blink1073/tifffile',
packages=['tifffile'],
package_dir={'tifffile': 'tifffile'},
include_package_data=True,
ext_modules=[Extension('tifffile/_tifffile',
['tifffile/tifffile.c'],
include_dirs=[numpy.get_include()])],
requires=['numpy (>=1.8.2)'],
license="BSD",
zip_safe=False,
keywords='tifffile',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Programming Language :: C",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
import numpy
import re
readme = open('README.rst').read()
text = open('tifffile/__init__.py').read()
version = re.search("__version__ = '(.*?)'", text).groups()[0]
setup(
name='tifffile',
version=version,
description='Read and write image data from and to TIFF files.',
long_description=readme,
author='Steven Silvester',
author_email='[email protected]',
url='https://github.com/blink1073/tifffile',
packages=['tifffile'],
package_dir={'tifffile': 'tifffile'},
include_package_data=True,
ext_modules=[Extension('tifffile/_tifffile',
['tifffile/tifffile.c'],
include_dirs=[numpy.get_include()])],
requires=['numpy (>=1.8.2)'],
license="BSD",
zip_safe=False,
keywords='tifffile',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)
|
bsd-3-clause
|
Python
|
33ed7983faec74c389902cd6ec6f6586d81e3168
|
Fix setup.py on 2.x
|
SimonSapin/azureblur,SimonSapin/azureblur,SimonSapin/azureblur,SimonSapin/azureblur
|
setup.py
|
setup.py
|
# coding: utf8
import os
import io
from setuptools import setup
setup(
name='azureblur',
version='0.1',
url='https://github.com/SimonSapin/azureblur',
license='MPL2',
maintainer='Simon Sapin',
maintainer_email='[email protected]',
description='The triple box blur implementation from Firefox’s moz2d/Azure, with Python bindings.',
long_description=io.open(
os.path.join(os.path.dirname(__file__), 'README.rst'),
encoding='utf-8',
).read(),
install_requires=['cffi'],
packages=['azureblur'],
package_data={'azureblur': ['src/*', 'moz2d/*.*', 'moz2d/*/*']},
)
|
import os
import io
from setuptools import setup
setup(
name='azureblur',
version='0.1',
url='https://github.com/SimonSapin/azureblur',
license='MPL2',
maintainer='Simon Sapin',
maintainer_email='[email protected]',
description='The triple box blur implementation from Firefox’s moz2d/Azure, with Python bindings.',
long_description=io.open(
os.path.join(os.path.dirname(__file__), 'README.rst'),
encoding='utf-8',
).read(),
install_requires=['cffi'],
packages=['azureblur'],
package_data={'azureblur': ['src/*', 'moz2d/*.*', 'moz2d/*/*']},
)
|
mpl-2.0
|
Python
|
051c02e4511d1ef2cc1627c125e0f3a35310e6f8
|
bump version
|
hopshadoop/hops-util-py,hopshadoop/hops-util-py
|
setup.py
|
setup.py
|
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.4.9',
author='Robin Andersson',
author_email='[email protected]',
description='A helper library for Hops that facilitates development by hiding the complexity of discovering services and setting up security.',
license='Apache License 2.0',
keywords='HOPS, Hadoop',
url='https://github.com/hopshadoop/hops-util-python',
download_url = 'https://github.com/hopshadoop/hops-util-python/archive/0.4.9.tar.gz',
packages=['hopsutil'],
long_description=read('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=[]
)
|
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hopsutil',
version='0.4.8',
author='Robin Andersson',
author_email='[email protected]',
description='A helper library for Hops that facilitates development by hiding the complexity of discovering services and setting up security.',
license='Apache License 2.0',
keywords='HOPS, Hadoop',
url='https://github.com/hopshadoop/hops-util-python',
download_url = 'https://github.com/hopshadoop/hops-util-python/archive/0.4.8.tar.gz',
packages=['hopsutil'],
long_description=read('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=[]
)
|
apache-2.0
|
Python
|
2bd52cd615f2b8e244b0b5db3e21b983456b07f4
|
Change version to 0.54
|
bukson/steampy
|
setup.py
|
setup.py
|
from setuptools import setup
import sys
if not sys.version_info[0] == 3 and sys.version_info[1] < 5:
sys.exit('Python < 3.5 is not supported')
version = '0.54'
setup(
name='steampy',
packages=['steampy', 'test', 'examples', ],
version=version,
description='A Steam lib for trade automation',
author='Michał Bukowski',
author_email='[email protected]',
license='MIT',
url='https://github.com/bukson/steampy',
download_url='https://github.com/bukson/steampy/tarball/' + version,
keywords=['steam', 'trade', ],
classifiers=[],
install_requires=[
"requests",
"beautifulsoup4",
"rsa"
],
)
|
from setuptools import setup
import sys
if not sys.version_info[0] == 3 and sys.version_info[1] < 5:
sys.exit('Python < 3.5 is not supported')
version = '0.53'
setup(
name='steampy',
packages=['steampy', 'test', 'examples', ],
version=version,
description='A Steam lib for trade automation',
author='Michał Bukowski',
author_email='[email protected]',
license='MIT',
url='https://github.com/bukson/steampy',
download_url='https://github.com/bukson/steampy/tarball/' + version,
keywords=['steam', 'trade', ],
classifiers=[],
install_requires=[
"requests",
"beautifulsoup4",
"rsa"
],
)
|
mit
|
Python
|
44a68e01b6051ce8f1c30997187e725402c048a4
|
Add long_description to setup.py
|
tree-sitter/py-tree-sitter,tree-sitter/py-tree-sitter,tree-sitter/py-tree-sitter
|
setup.py
|
setup.py
|
"""
Py-Tree-sitter
"""
import os
import platform
from setuptools import setup, Extension
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, 'README.md')) as f:
long_description = f.read()
setup(
name = "tree_sitter",
version = "0.0.8",
maintainer = "Max Brunsfeld",
maintainer_email = "[email protected]",
author = "Max Brunsfeld",
author_email = "[email protected]",
url = "https://github.com/tree-sitter/py-tree-sitter",
license = "MIT",
platforms = ["any"],
python_requires = ">=3.3",
description = "Python bindings to the Tree-sitter parsing library",
long_description = long_description,
long_description_content_type = "text/markdown",
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Compilers",
"Topic :: Text Processing :: Linguistic",
],
packages = ['tree_sitter'],
ext_modules = [
Extension(
"tree_sitter_binding",
[
"tree_sitter/core/lib/src/lib.c",
"tree_sitter/binding.c",
],
include_dirs = [
"tree_sitter/core/lib/include",
"tree_sitter/core/lib/utf8proc",
],
extra_compile_args = (
['-std=c99'] if platform.system() != 'Windows' else None
)
)
],
project_urls = {
'Source': 'https://github.com/tree-sitter/py-tree-sitter',
'Documentation': 'http://initd.org/psycopg/docs/',
}
)
|
"""
Py-Tree-sitter
"""
import platform
from setuptools import setup, Extension
setup(
name = "tree_sitter",
version = "0.0.8",
maintainer = "Max Brunsfeld",
maintainer_email = "[email protected]",
author = "Max Brunsfeld",
author_email = "[email protected]",
url = "https://github.com/tree-sitter/py-tree-sitter",
license = "MIT",
platforms = ["any"],
python_requires = ">=3.3",
description = "Python bindings to the Tree-sitter parsing library",
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Compilers",
"Topic :: Text Processing :: Linguistic",
],
packages = ['tree_sitter'],
ext_modules = [
Extension(
"tree_sitter_binding",
[
"tree_sitter/core/lib/src/lib.c",
"tree_sitter/binding.c",
],
include_dirs = [
"tree_sitter/core/lib/include",
"tree_sitter/core/lib/utf8proc",
],
extra_compile_args = (
['-std=c99'] if platform.system() != 'Windows' else None
)
)
],
project_urls = {
'Source': 'https://github.com/tree-sitter/py-tree-sitter',
'Documentation': 'http://initd.org/psycopg/docs/',
}
)
|
mit
|
Python
|
e1411e0dfe5bea90dc52605eb08d4fb98e21edab
|
Bump version to 0.8.1
|
exoscale/cs
|
setup.py
|
setup.py
|
# coding: utf-8
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='cs',
version='0.8.1',
url='https://github.com/exoscale/cs',
license='BSD',
author=u'Bruno Renié',
description=('A simple yet powerful CloudStack API client for '
'Python and the command-line.'),
long_description=long_description,
py_modules=('cs',),
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
),
install_requires=(
'requests',
),
extras_require={
'highlight': ['pygments'],
},
test_suite='tests',
entry_points={
'console_scripts': [
'cs = cs:main',
],
},
)
|
# coding: utf-8
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='cs',
version='0.8.0',
url='https://github.com/exoscale/cs',
license='BSD',
author=u'Bruno Renié',
description=('A simple yet powerful CloudStack API client for '
'Python and the command-line.'),
long_description=long_description,
py_modules=('cs',),
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
),
install_requires=(
'requests',
),
extras_require={
'highlight': ['pygments'],
},
test_suite='tests',
entry_points={
'console_scripts': [
'cs = cs:main',
],
},
)
|
bsd-3-clause
|
Python
|
589c2f6422a3d27d47e1e7f80d9cb5a48f8e5d26
|
Bump version instructed by bamboo
|
pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer,pbs/cmsplugin-filer
|
setup.py
|
setup.py
|
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=django-filer-0.9pbs',
]
setup(
name = "cmsplugin-filer",
version = "0.9.4pbs9",
url = 'http://github.com/stefanfoulis/cmsplugin-filer',
license = 'BSD',
description = "django-cms plugins for django-filer",
long_description = read('README.rst'),
author = 'Stefan Foulis',
author_email = '[email protected]',
packages = find_packages(),
#package_dir = {'':'src'},
dependency_links=dependency_links,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
"django-cms>=2.3.5pbs, <2.3.6",
"django-sekizai >= 0.4.2",
"easy_thumbnails >= 1.0",
"django-filer >= 0.9pbs, <0.9.1"
],
include_package_data=True,
zip_safe = False,
setup_requires=['s3sourceuploader', ],
)
|
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
'http://github.com/pbs/django-cms/tarball/support/2.3.x#egg=django-cms-2.3.5pbs',
'http://github.com/pbs/django-filer/tarball/master_pbs#egg=django-filer-0.9pbs',
]
setup(
name = "cmsplugin-filer",
version = "0.9.4pbs8",
url = 'http://github.com/stefanfoulis/cmsplugin-filer',
license = 'BSD',
description = "django-cms plugins for django-filer",
long_description = read('README.rst'),
author = 'Stefan Foulis',
author_email = '[email protected]',
packages = find_packages(),
#package_dir = {'':'src'},
dependency_links=dependency_links,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
"django-cms>=2.3.5pbs, <2.3.6",
"django-sekizai >= 0.4.2",
"easy_thumbnails >= 1.0",
"django-filer >= 0.9pbs, <0.9.1"
],
include_package_data=True,
zip_safe = False,
setup_requires=['s3sourceuploader', ],
)
|
bsd-3-clause
|
Python
|
9cbc694535b81ba9d9d268d1efc5f0862daa93c8
|
Switch package URL back.
|
KevinOrtman/behave,spacediver/behave,benthomasson/behave,mzcity123/behave,connorsml/behave,joshal/behave,charleswhchan/behave,vrutkovs/behave,mzcity123/behave,jenisys/behave,Gimpneek/behave,jenisys/behave,KevinMarkVI/behave-parallel,metaperl/behave,benthomasson/behave,tokunbo/behave-parallel,connorsml/behave,hugeinc/behave-parallel,allanlewis/behave,kymbert/behave,vrutkovs/behave,Abdoctor/behave,metaperl/behave,kymbert/behave,charleswhchan/behave,joshal/behave,spacediver/behave,Abdoctor/behave,allanlewis/behave,KevinOrtman/behave,Gimpneek/behave,tokunbo/behave-parallel,Gimpneek/behave,memee/behave
|
setup.py
|
setup.py
|
import os
import os.path
import sys
from setuptools import find_packages, setup
requirements = ['parse>=1.3.3']
major, minor = sys.version_info[:2]
if major == 2 and minor < 7:
requirements.append('argparse')
if major == 2 and minor < 6:
requirements.append('simplejson')
description = ''.join(open('README.rst').readlines()[6:])
setup(
name='behave',
version='1.2.1',
description='behave is behaviour-driven development, Python style',
long_description=description,
author='Benno Rice and Richard Jones',
author_email='[email protected]',
url='http://github.com/jeamland/behave',
packages=find_packages(),
scripts=['bin/behave'],
install_requires=requirements,
use_2to3=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: BSD License",
],
)
|
import os
import os.path
import sys
from setuptools import find_packages, setup
requirements = ['parse>=1.3.3']
major, minor = sys.version_info[:2]
if major == 2 and minor < 7:
requirements.append('argparse')
if major == 2 and minor < 6:
requirements.append('simplejson')
description = ''.join(open('README.rst').readlines()[6:])
setup(
name='behave',
version='1.2.1',
description='behave is behaviour-driven development, Python style',
long_description=description,
author='Benno Rice and Richard Jones',
author_email='[email protected]',
url='http://github.com/Katherinesun/behave',
packages=find_packages(),
scripts=['bin/behave'],
install_requires=requirements,
use_2to3=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: BSD License",
],
)
|
bsd-2-clause
|
Python
|
918c5d1649d9b1581a3dc7bd9fe889c4e59d4b9a
|
Upgrade core
|
openfisca/country-template,openfisca/country-template
|
setup.py
|
setup.py
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='1.3.1',
author='OpenFisca Team',
author_email='[email protected]',
description=u'OpenFisca tax and benefit system for Country-Template',
keywords='benefit microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/openfisca-country-template',
include_package_data = True, # Will read MANIFEST.in
install_requires=[
'OpenFisca-Core >= 19.0.0, < 20.0',
],
extras_require = {
'api': [
'OpenFisca-Web-API >= 4.0.0, < 7.0',
],
'test': [
'flake8',
'flake8-print',
'nose',
]
},
packages=find_packages(),
test_suite='nose.collector',
)
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Country-Template',
version='1.3.1',
author='OpenFisca Team',
author_email='[email protected]',
description=u'OpenFisca tax and benefit system for Country-Template',
keywords='benefit microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/openfisca-country-template',
include_package_data = True, # Will read MANIFEST.in
install_requires=[
'OpenFisca-Core >= 17.1.0, < 19.0',
],
extras_require = {
'api': [
'OpenFisca-Web-API >= 4.0.0, < 7.0',
],
'test': [
'flake8',
'flake8-print',
'nose',
]
},
packages=find_packages(),
test_suite='nose.collector',
)
|
agpl-3.0
|
Python
|
bfda5f0c6fecdc3558db106e0562364bb0406759
|
Bump 0.2
|
srounet/Pymem
|
setup.py
|
setup.py
|
import re
import setuptools
def load_dependencies(filename):
install_requires = []
dependency_links = []
for line in open(filename):
line = line.strip()
m = re.match(r'http.+#egg=(?P<pkgname>.+)', line)
if m:
dependency_links.append(line)
install_requires.append(m.groupdict()['pkgname'])
else:
install_requires.append(line)
return install_requires, dependency_links
install_requires, dependency_links = load_dependencies('requirements.txt')
setuptools.setup(
name='Pymem',
version='0.2',
description='pymem: python memory access made easy',
author='Fabien Reboia',
author_email='[email protected]',
maintainer='Fabien Reboia',
maintainer_email='[email protected]',
url='http://pymem.readthedocs.org/en/latest/',
long_description="A python library for windows, providing the needed functions to start working on your own with memory editing",
license="postcard license",
packages = setuptools.find_packages(),
platforms=["windows"],
keywords='memory win32 windows process',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Assembly',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
],
install_requires=install_requires,
dependency_links=dependency_links,
)
|
import re
import setuptools
def load_dependencies(filename):
install_requires = []
dependency_links = []
for line in open(filename):
line = line.strip()
m = re.match(r'http.+#egg=(?P<pkgname>.+)', line)
if m:
dependency_links.append(line)
install_requires.append(m.groupdict()['pkgname'])
else:
install_requires.append(line)
return install_requires, dependency_links
install_requires, dependency_links = load_dependencies('requirements.txt')
setuptools.setup(
name='Pymem',
version='0.1',
description='pymem: python memory access made easy',
author='Fabien Reboia',
author_email='[email protected]',
maintainer='Fabien Reboia',
maintainer_email='[email protected]',
url='http://pymem.readthedocs.org/en/latest/',
long_description="A python library for windows, providing the needed functions to start working on your own with memory editing",
license="postcard license",
packages = setuptools.find_packages(),
platforms=["windows"],
keywords='memory win32 windows process',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Assembly',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
],
install_requires=install_requires,
dependency_links=dependency_links,
)
|
mit
|
Python
|
8cedb458180f80304d073a27ed1f9a1560761f3d
|
Read file using proper encoding
|
fivejjs/pyuv,saghul/pyuv,fivejjs/pyuv,saghul/pyuv,saghul/pyuv,fivejjs/pyuv
|
setup.py
|
setup.py
|
# coding=utf8
import codecs
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from setup_libuv import libuv_build_ext, libuv_sdist
__version__ = "0.11.2"
setup(name = "pyuv",
version = __version__,
author = "Saúl Ibarra Corretgé",
author_email = "[email protected]",
url = "http://github.com/saghul/pyuv",
description = "Python interface for libuv",
long_description = codecs.open("README.rst", encoding="utf-8").read(),
platforms = ["POSIX", "Microsoft Windows"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3"
],
cmdclass = {'build_ext': libuv_build_ext,
'sdist' : libuv_sdist},
ext_modules = [Extension('pyuv',
sources = ['src/pyuv.c'],
define_macros=[('MODULE_VERSION', __version__),
('LIBUV_REVISION', libuv_build_ext.libuv_revision)]
)]
)
|
# coding=utf8
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from setup_libuv import libuv_build_ext, libuv_sdist
__version__ = "0.11.2"
setup(name = "pyuv",
version = __version__,
author = "Saúl Ibarra Corretgé",
author_email = "[email protected]",
url = "http://github.com/saghul/pyuv",
description = "Python interface for libuv",
long_description = open("README.rst").read(),
platforms = ["POSIX", "Microsoft Windows"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3"
],
cmdclass = {'build_ext': libuv_build_ext,
'sdist' : libuv_sdist},
ext_modules = [Extension('pyuv',
sources = ['src/pyuv.c'],
define_macros=[('MODULE_VERSION', __version__),
('LIBUV_REVISION', libuv_build_ext.libuv_revision)]
)]
)
|
mit
|
Python
|
284e4268211d868d2940c504b46e421cac31dec4
|
Bump version
|
pinax/django-waitinglist,pinax/django-waitinglist
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
setup(
name = "django-waitinglist",
version = "1.0b4",
author = "Brian Rosner",
author_email = "[email protected]",
description = "a Django waiting list app for running a private beta with cohorts support",
long_description = open("README.rst").read(),
license = "MIT",
url = "http://github.com/pinax/django-waitinglist",
packages = find_packages(),
install_requires = [
"django-appconf==0.5",
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)
|
from setuptools import setup, find_packages
setup(
name = "django-waitinglist",
version = "1.0b3",
author = "Brian Rosner",
author_email = "[email protected]",
description = "a Django waiting list app for running a private beta with cohorts support",
long_description = open("README.rst").read(),
license = "MIT",
url = "http://github.com/pinax/django-waitinglist",
packages = find_packages(),
install_requires = [
"django-appconf==0.5",
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)
|
mit
|
Python
|
5ea4bc2f30477266ab73d2ef625b650dd048f87c
|
patch from Diane Trout, ref https://github.com/python-caldav/caldav/issues/33, move nose dependency to test_requires
|
python-caldav/caldav
|
setup.py
|
setup.py
|
#!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.0'
if __name__ == '__main__':
setup(
name='caldav',
version=version,
description="CalDAV (RFC4791) client library",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General "
"Public License (GPL)",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries "
":: Python Modules"],
keywords='',
author='Cyril Robert',
author_email='[email protected]',
url='http://bitbucket.org/cyrilrbt/caldav',
license='GPL',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=['vobject', 'lxml', 'requests', 'six'],
tests_requires=['nose', 'coverage']
)
|
#!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.0'
if __name__ == '__main__':
setup(
name='caldav',
version=version,
description="CalDAV (RFC4791) client library",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General "
"Public License (GPL)",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries "
":: Python Modules"],
keywords='',
author='Cyril Robert',
author_email='[email protected]',
url='http://bitbucket.org/cyrilrbt/caldav',
license='GPL',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=['vobject', 'lxml', 'requests', 'six'],
test_requires=['nose', 'coverage']
)
|
apache-2.0
|
Python
|
654c93a3aa38c9344624f94922a4c1a928f201d7
|
Fix merge conflict with package_data.
|
awslabs/aws-shell
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import re
import ast
from setuptools import setup, find_packages
requires = [
'awscli>=1.8.9,<2.0.0',
'prompt-toolkit==0.52',
'boto3>=1.2.1',
'configobj>=5.0.6',
]
with open('awsshell/__init__.py', 'r') as f:
version = str(
ast.literal_eval(
re.search(
r'__version__\s+=\s+(.*)',
f.read()).group(1)))
setup(
name='aws-shell',
version=version,
description='AWS Shell',
long_description=open('README.rst').read(),
author='James Saryerwinnie',
url='https://github.com/jamesls/aws-shell',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
package_data={'awsshell': ['data/*/*.json',
'awsshellrc']},
install_requires=requires,
entry_points={
'console_scripts': [
'aws-shell = awsshell:main',
'aws-shell-mkindex = awsshell.makeindex:main',
]
},
license="Apache License 2.0",
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
)
|
#!/usr/bin/env python
import re
import ast
from setuptools import setup, find_packages
requires = [
'awscli>=1.8.9,<2.0.0',
'prompt-toolkit==0.52',
'boto3>=1.2.1',
'configobj>=5.0.6',
]
with open('awsshell/__init__.py', 'r') as f:
version = str(
ast.literal_eval(
re.search(
r'__version__\s+=\s+(.*)',
f.read()).group(1)))
setup(
name='aws-shell',
version=version,
description='AWS Shell',
long_description=open('README.rst').read(),
author='James Saryerwinnie',
url='https://github.com/jamesls/aws-shell',
packages=find_packages(exclude=['tests*']),
package_data={'awsshell': ['awsshellrc']},
include_package_data=True,
package_data={'awsshell': ['data/*/*.json']},
install_requires=requires,
entry_points={
'console_scripts': [
'aws-shell = awsshell:main',
'aws-shell-mkindex = awsshell.makeindex:main',
]
},
license="Apache License 2.0",
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
)
|
apache-2.0
|
Python
|
f813467253be80ee9f3ac9d1d61bf39124932537
|
Add long_description
|
nolze/msoffcrypto-tool,nolze/ms-offcrypto-tool,nolze/ms-offcrypto-tool,nolze/msoffcrypto-tool
|
setup.py
|
setup.py
|
from setuptools import setup
setup(
name='msoffcrypto-tool',
version='4.0.0',
description='A Python tool and library for decrypting MS Office files with passwords or other secrets',
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
url='https://github.com/nolze/msoffcrypto-tool',
author='nolze',
author_email='[email protected]',
license='MIT',
keywords='',
packages=[
"msoffcrypto",
"msoffcrypto.format",
"msoffcrypto.method",
],
install_requires=[
'olefile >= 0.44',
'cryptography >= 2.0.0',
],
test_require=[
'nose >= 1.3.7',
'coverage >= 4.5.1',
],
classifiers=[
],
entry_points={
'console_scripts': [
'msoffcrypto-tool = msoffcrypto.__main__:main',
],
},
)
|
from setuptools import setup
setup(
name='msoffcrypto-tool',
version='4.0.0',
description='A Python tool and library for decrypting MS Office files with passwords or other secrets',
url='https://github.com/nolze/msoffcrypto-tool',
author='nolze',
author_email='[email protected]',
license='MIT',
keywords='',
packages=[
"msoffcrypto",
"msoffcrypto.format",
"msoffcrypto.method",
],
install_requires=[
'olefile >= 0.44',
'cryptography >= 2.0.0',
],
test_require=[
'nose >= 1.3.7',
'coverage >= 4.5.1',
],
classifiers=[
],
entry_points={
'console_scripts': [
'msoffcrypto-tool = msoffcrypto.__main__:main',
],
},
)
|
mit
|
Python
|
aaaf1657694f8aab0f5c58a74c72a340de08c1f6
|
change package specification
|
shuttle1987/tail,shuttle1987/tail
|
setup.py
|
setup.py
|
from setuptools import setup
setup(
name='python-tail',
description='Python implementation of UNIX tail command',
version='0.1',
packages=['tail'],
install_requires=[
'Click',
],
)
|
from setuptools import setup
setup(
name='python-tail',
description='Python implementation of UNIX tail command',
version='0.1',
packages=find_packages(),
install_requires=[
'Click',
],
)
|
mit
|
Python
|
bcf8ffbf0119d9c2e3522895a6af6d47760dc6e9
|
Remove utilities as a direct dep
|
ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services,ooici/coi-services
|
setup.py
|
setup.py
|
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLUDE_PATH'] = '/usr/local/include'
version = '0.1.6-dev'
setup( name = 'coi-services',
version = version,
description = 'OOI ION COI Services',
url = 'https://github.com/ooici/coi-services',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'Apache 2.0',
author = 'Michael Meisinger',
author_email = '[email protected]',
keywords = ['ooici','ioncore', 'pyon', 'coi'],
packages = find_packages(),
dependency_links = [
'http://sddevrepo.oceanobservatories.org/releases/',
'https://github.com/ooici/coverage-model/tarball/master#egg=coverage-model',
'https://github.com/ooici/marine-integrations/tarball/master#egg=marine_integrations-1.0',
'https://github.com/ooici/pyon/tarball/v0.1.7#egg=pyon-1.0',
],
test_suite = 'pyon',
install_requires = [
'pyzmq==2.2.0',
'coverage-model',
'marine-integrations',
'pyon',
'Flask==0.9',
'python-dateutil==1.5',
'WebTest==1.4.0',
'requests==0.13.5',
'seawater==2.0.1',
'matplotlib==1.1.1',
'Pydap==3.1.RC1',
'netCDF4>=1.0',
'elasticpy==0.11',
'pyparsing==1.5.6',
'snakefood==1.4',
'xlrd==0.8.0',
],
entry_points = """
[pydap.handler]
coverage = ion.util.pydap.handlers.coverage:Handler
""",
)
|
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLUDE_PATH'] = '/usr/local/include'
version = '0.1.6-dev'
setup( name = 'coi-services',
version = version,
description = 'OOI ION COI Services',
url = 'https://github.com/ooici/coi-services',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'Apache 2.0',
author = 'Michael Meisinger',
author_email = '[email protected]',
keywords = ['ooici','ioncore', 'pyon', 'coi'],
packages = find_packages(),
dependency_links = [
'http://sddevrepo.oceanobservatories.org/releases/',
'https://github.com/ooici/coverage-model/tarball/master#egg=coverage-model',
'https://github.com/ooici/marine-integrations/tarball/master#egg=marine_integrations-1.0',
'https://github.com/ooici/pyon/tarball/v0.1.7#egg=pyon-1.0',
'https://github.com/ooici/utilities/tarball/master#egg=utilities-9999'
],
test_suite = 'pyon',
install_requires = [
'pyzmq==2.2.0',
'utilities',
'coverage-model',
'marine-integrations',
'pyon',
'Flask==0.9',
'python-dateutil==1.5',
'WebTest==1.4.0',
'requests==0.13.5',
'seawater==2.0.1',
'matplotlib==1.1.1',
'Pydap==3.1.RC1',
'netCDF4>=1.0',
'elasticpy==0.11',
'pyparsing==1.5.6',
'snakefood==1.4',
'xlrd==0.8.0',
],
entry_points = """
[pydap.handler]
coverage = ion.util.pydap.handlers.coverage:Handler
""",
)
|
bsd-2-clause
|
Python
|
d18abfddd3bec084af70467c54ed37633c774aed
|
Add missing deps
|
protream/iquery
|
setup.py
|
setup.py
|
#!/usr/bin/env python3
from codecs import open
from tickets import __version__
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(
name='tickets',
version=__version__,
description='Train tickets query via command line.',
long_description=read('README.rst') + '\n\n' + read('HISTORY.rst'),
author='protream',
author_email='[email protected]',
url='https://github.com/protream/tickets',
packages=[
'tickets'
],
py_modules=['run'],
include_package_data=True,
platforms='any',
install_requires=[
'prettytable',
'requests',
'bs4',
'colorama'
],
entry_points={
'console_scripts': ['tickets=run:cli']
},
license='MIT',
zip_safe=False,
classifiers=[
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython'
]
)
|
#!/usr/bin/env python3
from codecs import open
from tickets import __version__
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(
name='tickets',
version=__version__,
description='Train tickets query via command line.',
long_description=read('README.rst') + '\n\n' + read('HISTORY.rst'),
author='protream',
author_email='[email protected]',
url='https://github.com/protream/tickets',
packages=[
'tickets'
],
py_modules=['run'],
include_package_data=True,
platforms='any',
install_requires=[
'prettytable',
'requests',
'bs4'
],
entry_points={
'console_scripts': ['tickets=run:cli']
},
license='MIT',
zip_safe=False,
classifiers=[
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython'
]
)
|
mit
|
Python
|
901b608e9ea9e03ab3755fb746bfcd4b2bebf399
|
increment version
|
Ichindar/dsts,Ichindar/dsts,Ichindar/dsts
|
setup.py
|
setup.py
|
#from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'dsts/external/dstsc/SAIS-SK/src/fileopen.cpp', 'dsts/external/dstsc/SAIS-SK/src/gt-alloc.cpp',
'dsts/external/dstsc/SAIS-SK/src/sk-sain.cpp'])
lz = Extension('dsts.lz', include_dirs=['dsts/external/dstc/lzOG/src/', 'dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/lzmodule.cpp', 'dsts/external/dstsc/lzOG/src/lzOG.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'dsts/external/dstsc/SAIS-SK/src/fileopen.cpp', 'dsts/external/dstsc/SAIS-SK/src/gt-alloc.cpp',
'dsts/external/dstsc/SAIS-SK/src/sk-sain.cpp'])
# When this script is run, we want to unsure that the distc package is installed
# The distc package has C++ code that is required when building the lz extension
if not exists("dsts/external/dstsc/SAIS-SK/") or not exists("dsts/external/dstsc/lzOG/"):
call(["git", "submodule", "update", "--init"])
setup(name="dsts",
version="0.7",
description="Python data structures.",
author="Angelos Molfetas",
author_email="[email protected]",
packages=['dsts'],
long_description="Python data structures. Suffix array Construction Algorithm, Rabin & Karp fingerprint generator, LZ factorisor.",
ext_modules=[lz, sa],
)
|
#from distutils.core import setup
from setuptools import setup, Extension
from os.path import exists
from subprocess import call
sa = Extension('dsts.sa', include_dirs=['dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/samodule.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'dsts/external/dstsc/SAIS-SK/src/fileopen.cpp', 'dsts/external/dstsc/SAIS-SK/src/gt-alloc.cpp',
'dsts/external/dstsc/SAIS-SK/src/sk-sain.cpp'])
lz = Extension('dsts.lz', include_dirs=['dsts/external/dstc/lzOG/src/', 'dsts/external/dstc/SAIS-SK/src/'],
sources=['dsts/lzmodule.cpp', 'dsts/external/dstsc/lzOG/src/lzOG.cpp', 'dsts/external/dstsc/SAIS-SK/src/mmap.cpp',
'dsts/external/dstsc/SAIS-SK/src/fileopen.cpp', 'dsts/external/dstsc/SAIS-SK/src/gt-alloc.cpp',
'dsts/external/dstsc/SAIS-SK/src/sk-sain.cpp'])
# When this script is run, we want to unsure that the distc package is installed
# The distc package has C++ code that is required when building the lz extension
if not exists("dsts/external/dstsc/SAIS-SK/") or not exists("dsts/external/dstsc/lzOG/"):
call(["git", "submodule", "update", "--init"])
setup(name="dsts",
version="0.6",
description="Python data structures.",
author="Angelos Molfetas",
author_email="[email protected]",
packages=['dsts'],
long_description="Python data structures. Suffix array Construction Algorithm, Rabin & Karp fingerprint generator, LZ factorisor.",
ext_modules=[lz, sa],
)
|
bsd-3-clause
|
Python
|
ab99c1a57a7b87c2a920b33348bac228dbd632bd
|
update version
|
usc-isi-i2/etk,usc-isi-i2/etk,usc-isi-i2/etk
|
setup.py
|
setup.py
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
install_requires = list()
for line in f:
re = line.strip()
if re:
install_requires.append(re)
setuptools.setup(
name="etk",
version="2.2.6",
author="Amandeep Singh",
author_email="[email protected]",
description="extraction toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/usc-isi-i2/etk",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'etk = etk.cli_entry:cli_entry',
],
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
),
install_requires=install_requires
)
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
install_requires = list()
for line in f:
re = line.strip()
if re:
install_requires.append(re)
setuptools.setup(
name="etk",
version="2.2.5",
author="Amandeep Singh",
author_email="[email protected]",
description="extraction toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/usc-isi-i2/etk",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'etk = etk.cli_entry:cli_entry',
],
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
),
install_requires=install_requires
)
|
mit
|
Python
|
b141e55b4b302348a599a3ea568e6409dcc27f5a
|
Improve setup.py
|
chronossc/django-ldapdb,mejiaa/django-ldapdb,jlaine/django-ldapdb,django-ldapdb/django-ldapdb,randuhmm/django-ldapdb
|
setup.py
|
setup.py
|
#!/usr/bin/env python
from setuptools import setup
setup(
name="django-ldapdb",
version="0.1.0",
description=u"An LDAP database backend for Django",
long_description=open('README.md').read(),
#license = ldapdb.__license__,
url="https://github.com/jlaine/django-ldapdb",
author="Jeremy Laine",
author_email="[email protected]",
packages=['ldapdb', 'ldapdb.backends', 'ldapdb.backends.ldap', 'ldapdb.models'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=['django', 'ldap', 'database'],
install_requires=[
'django>=1.2',
'python-ldap>=2.0',
],
setup_requires=[
'setuptools>=0.6c11',
]
)
|
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "django-ldapdb",
version = "0.1.0",
#license = ldapdb.__license__,
url = "http://opensource.bolloretelecom.eu/projects/django-ldapdb/",
author = "Jeremy Laine",
author_email = "[email protected]",
packages = ['ldapdb', 'ldapdb.backends', 'ldapdb.backends.ldap', 'ldapdb.models'],
)
|
bsd-2-clause
|
Python
|
a8d94e131bcc2ebcbf7d9a92f84c81de7e59d784
|
switch to setuptools
|
pholanda/pymonetdb,pholanda/pymonetdb
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# The contents of this file are subject to the MonetDB Public License
# Version 1.1 (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.monetdb.org/Legal/MonetDBLicense
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is the MonetDB Database System.
#
# The Initial Developer of the Original Code is CWI.
# Portions created by CWI are Copyright (C) 1997-July 2008 CWI.
# Copyright August 2008-2014 MonetDB B.V.
# All Rights Reserved.
import os
from setuptools import setup
from pymonetdb import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pymonetdb',
version=__version__,
description='Native MonetDB client Python API',
long_description=read('README.rst'),
author='MonetDB BV',
author_email='[email protected]',
url='http://www.monetdb.org/',
packages=['pymonetdb', 'pymonetdb.sql'],
download_url='https://github.com/gijzelaerr/pymonetdb',
classifiers=[
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
]
)
|
#!/usr/bin/env python
# The contents of this file are subject to the MonetDB Public License
# Version 1.1 (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.monetdb.org/Legal/MonetDBLicense
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is the MonetDB Database System.
#
# The Initial Developer of the Original Code is CWI.
# Portions created by CWI are Copyright (C) 1997-July 2008 CWI.
# Copyright August 2008-2014 MonetDB B.V.
# All Rights Reserved.
import os
from distutils.core import setup
from pymonetdb import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pymonetdb',
version=__version__,
description='Native MonetDB client Python API',
long_description=read('README.rst'),
author='MonetDB BV',
author_email='[email protected]',
url='http://www.monetdb.org/',
packages=['pymonetdb', 'pymonetdb.sql'],
download_url='https://github.com/gijzelaerr/pymonetdb',
classifiers=[
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
]
)
|
mpl-2.0
|
Python
|
79421c1c0b1480da70c426f782585fa66416eed0
|
add setuptools_scm to setup_requires
|
rauc/rauc-hawkbit
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rauc-hawkbit',
description='hawkBit client for RAUC',
author='Bastian Stender and Enrico Joerns',
author_email='[email protected]',
license='LGPL-2.1',
use_scm_version=True,
url='https://github.com/rauc/rauc-hawkbit',
setup_requires=['setuptools_scm'],
install_requires=[
'aiohttp>=2.0.0',
'gbulb>=0.5'
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
scripts=[
'bin/rauc-hawkbit-client'
]
)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rauc-hawkbit',
description='hawkBit client for RAUC',
author='Bastian Stender and Enrico Joerns',
author_email='[email protected]',
license='LGPL-2.1',
use_scm_version=True,
url='https://github.com/rauc/rauc-hawkbit',
install_requires=[
'aiohttp>=2.0.0',
'gbulb>=0.5'
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
scripts=[
'bin/rauc-hawkbit-client'
]
)
|
lgpl-2.1
|
Python
|
684603543f1e056693acf0288b71232395b3a8f5
|
Bump package version to 0.4.9
|
edx/XBlock,mitodl/XBlock,mitodl/XBlock,edx/XBlock
|
setup.py
|
setup.py
|
"""Set up for XBlock"""
from setuptools import setup
setup(
name='XBlock',
version='0.4.9',
description='XBlock Core Library',
packages=[
'xblock',
'xblock.django',
'xblock.reference',
'xblock.test',
'xblock.test.django',
],
install_requires=[
'lxml',
'markupsafe',
'python-dateutil',
'pytz',
'webob',
'fs',
],
extras_require={
'django': ['django-pyfs']
},
license='Apache 2.0',
classifiers=(
"License :: OSI Approved :: Apache Software License 2.0",
)
)
|
"""Set up for XBlock"""
from setuptools import setup
setup(
name='XBlock',
version='0.4.8',
description='XBlock Core Library',
packages=[
'xblock',
'xblock.django',
'xblock.reference',
'xblock.test',
'xblock.test.django',
],
install_requires=[
'lxml',
'markupsafe',
'python-dateutil',
'pytz',
'webob',
'fs',
],
extras_require={
'django': ['django-pyfs']
},
license='Apache 2.0',
classifiers=(
"License :: OSI Approved :: Apache Software License 2.0",
)
)
|
apache-2.0
|
Python
|
17adf1d0e0947637511f5babbed704ed77bec1cd
|
remove unneded dependency link
|
GreyRook/madmin,GreyRook/madmin,GreyRook/madmin
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
setup(
name='madmin',
version='0.0.1',
install_requires=['rueckenwind==0.2.0', 'motor==0.1.1', 'PyMongo==2.5.0'],
packages=find_packages(),
include_package_data=True,
)
|
from setuptools import setup, find_packages
setup(
name='madmin',
version='0.0.1',
install_requires=['rueckenwind==0.2.0', 'motor==0.1.1', 'PyMongo==2.5.0'],
packages=find_packages(),
include_package_data=True,
dependency_links=['git+ssh://[email protected]/lib/rueckenwind.git@master#egg=rueckenwind-dev']
)
|
apache-2.0
|
Python
|
f9fa797ddf5d5539402d3aa07340c39e7bccc152
|
Create a pypi library
|
ArthurFortes/CaseRecommender
|
setup.py
|
setup.py
|
from distutils.core import setup
__author__ = "Arthur Fortes"
setup(
name='CaseRecommender',
packages=['framework'],
version='0.0.3',
description='A recommender systems framework for python',
author='Arthur Fortes da Costa',
author_email='[email protected]',
url='https://github.com/ArthurFortes/CaseRecommender',
download_url='https://github.com/ArthurFortes/CaseRecommender/tarball/0.0.3',
keywords=['recommender systems', 'framework', 'collaborative filtering', 'content-based filtering'],
classifiers=[],
)
|
from distutils.core import setup
__author__ = "Arthur Fortes"
setup(
name='CaseRecommender',
packages=['CaseRecommender'],
version='0.0.3',
description='A recommender systems framework for python',
author='Arthur Fortes da Costa',
author_email='[email protected]',
url='https://github.com/ArthurFortes/CaseRecommender',
download_url='https://github.com/ArthurFortes/CaseRecommender/tarball/0.0.3',
keywords=['recommender systems', 'framework', 'collaborative filtering', 'content-based filtering'],
classifiers=[],
)
|
mit
|
Python
|
44694af0d60a1daee6bc1dea95b75ffe4be1d7f5
|
Bump version to 0.1.14
|
mwilliamson/stickytape
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='stickytape',
version='0.1.14',
description='Convert Python packages into a single script',
long_description=read("README.rst"),
author='Michael Williamson',
author_email='[email protected]',
url='http://github.com/mwilliamson/stickytape',
packages=['stickytape'],
entry_points={
"console_scripts": [
"stickytape=stickytape.main:main"
]
},
)
|
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='stickytape',
version='0.1.13',
description='Convert Python packages into a single script',
long_description=read("README.rst"),
author='Michael Williamson',
author_email='[email protected]',
url='http://github.com/mwilliamson/stickytape',
packages=['stickytape'],
entry_points={
"console_scripts": [
"stickytape=stickytape.main:main"
]
},
)
|
bsd-2-clause
|
Python
|
bb1c07877249f4d0ccaeb06b96e7e1ae3e622473
|
Fix URL
|
tldr-pages/tldr-python-client,Anmol-Singh-Jaggi/tldr-python-client
|
setup.py
|
setup.py
|
import sys
from setuptools import setup
if sys.argv[-1] in ('sdist', 'bdist_wheel'):
setup_requires = ['setuptools-markdown']
else:
setup_requires = []
setup(
name='tldr',
version="0.1.3.1",
author='Felix Yan',
author_email='[email protected]',
url='https://github.com/tldr-pages/tldr-python-client',
description='command line client for tldr',
long_description_markdown_filename='README.md',
license='MIT',
py_modules=['tldr'],
scripts=['tldr.py'],
install_requires=['six', 'termcolor', 'colorama'],
tests_require=[
'pytest-runner',
],
setup_requires=setup_requires,
entry_points={
'console_scripts': ['tldr = tldr:main']
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: SunOS/Solaris",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Utilities",
"Topic :: System"
]
)
|
import sys
from setuptools import setup
if sys.argv[-1] in ('sdist', 'bdist_wheel'):
setup_requires = ['setuptools-markdown']
else:
setup_requires = []
setup(
name='tldr',
version="0.1.3.1",
author='Felix Yan',
author_email='[email protected]',
url='https://github.com/felixonmars/tldr-python-client',
description='command line client for tldr',
long_description_markdown_filename='README.md',
license='MIT',
py_modules=['tldr'],
scripts=['tldr.py'],
install_requires=['six', 'termcolor', 'colorama'],
tests_require=[
'pytest-runner',
],
setup_requires=setup_requires,
entry_points={
'console_scripts': ['tldr = tldr:main']
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: SunOS/Solaris",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Utilities",
"Topic :: System"
]
)
|
mit
|
Python
|
d3537cf1ab18cf813c5bfd957e51ca6699e3e0a3
|
Update eth-utils version requirement
|
pipermerriam/ethereum-abi-utils
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
"pytest==3.3.2",
"pytest-xdist",
"tox>=2.9.1,<3",
],
'lint': [
"flake8==3.4.1",
"isort>=4.2.15,<5",
],
'doc': [
"Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9",
],
'dev': [
"bumpversion>=0.5.3,<1",
"pytest-watch>=4.1.0,<5",
"wheel",
"ipython",
],
}
extras_require['dev'] = (
extras_require['dev'] +
extras_require['test'] +
extras_require['lint'] +
extras_require['doc']
)
setup(
name='<PYPI_NAME>',
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
version='0.1.0-alpha.0',
description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""",
long_description_markdown_filename='README.md',
author='Jason Carver',
author_email='[email protected]',
url='https://github.com/ethereum/<REPO_NAME>',
include_package_data=True,
install_requires=[
"eth-utils>=1,<2",
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.5, <4',
extras_require=extras_require,
py_modules=['<MODULE_NAME>'],
license="MIT",
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
"pytest==3.3.2",
"pytest-xdist",
"tox>=2.9.1,<3",
],
'lint': [
"flake8==3.4.1",
"isort>=4.2.15,<5",
],
'doc': [
"Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9",
],
'dev': [
"bumpversion>=0.5.3,<1",
"pytest-watch>=4.1.0,<5",
"wheel",
"ipython",
],
}
extras_require['dev'] = (
extras_require['dev'] +
extras_require['test'] +
extras_require['lint'] +
extras_require['doc']
)
setup(
name='<PYPI_NAME>',
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
version='0.1.0-alpha.0',
description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""",
long_description_markdown_filename='README.md',
author='Jason Carver',
author_email='[email protected]',
url='https://github.com/ethereum/<REPO_NAME>',
include_package_data=True,
install_requires=[
"eth-utils>=0.7.4,<1.0.0",
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.5, <4',
extras_require=extras_require,
py_modules=['<MODULE_NAME>'],
license="MIT",
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
)
|
mit
|
Python
|
fe46c864b625519f90f23502da520a7fcaada972
|
Bump version
|
voltgrid/django-webhooks
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
VERSION = '0.0.4'
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("Warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='django-webhooks',
version=VERSION,
description='Reusable Django app that provides webhooks',
long_description=read_md('README.md'),
author='Andrew Cutler',
author_email='[email protected]',
url='https://github.com/voltgrid/django-webhooks',
package_dir={'webhooks': 'webhooks'},
packages=find_packages(),
package_data = {
# If any package contains *.txt etc include
'': ['*.txt', '*.html', '*.md'],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
install_requires=[
'Django',
'django-uuidfield'
],
)
|
from setuptools import setup, find_packages
VERSION = '0.0.3'
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("Warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='django-webhooks',
version=VERSION,
description='Reusable Django app that provides webhooks',
long_description=read_md('README.md'),
author='Andrew Cutler',
author_email='[email protected]',
url='https://github.com/voltgrid/django-webhooks',
package_dir={'webhooks': 'webhooks'},
packages=find_packages(),
package_data = {
# If any package contains *.txt etc include
'': ['*.txt', '*.html', '*.md'],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
install_requires=[
'Django',
'django-uuidfield'
],
)
|
bsd-3-clause
|
Python
|
c7994b2e8b8dfdd5ad60850ed56afd7e1c69646a
|
fix typo in setup.py
|
paulvangentcom/heartrate_analysis_python
|
setup.py
|
setup.py
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="heartpy",
version="1.2.3",
author="Paul van Gent",
author_email="[email protected]",
description="Heart Rate Analysis Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/paulvangentcom/heartrate_analysis_python",
packages=["heartpy"],
install_requires=[
"numpy<=1.15;python_version=='2.7'",
"numpy<=1.15;python_version=='3.4'",
"numpy;python_version>='3.5'",
"scipy<=1.1.0;python_version=='2.7'",
"scipy<=1.2.0;python_version=='3.4'",
"scipy;python_version>='3.5'",
"matplotlib<=2.2.3;python_version=='2.7'",
"matplotlib<=2.2.3;python_version=='3.4'",
"matplotlib<=3.0.0;python_version=='3.5'",
'matplotlib;python_version>="3.6"'],
include_package_data=True,
package_data={
'': ['data/*.csv', 'data/*.mat', 'data/*.log']
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
)
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="heartpy",
version="1.2.3",
author="Paul van Gent",
author_email="[email protected]",
description="Heart Rate Analysis Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/paulvangentcom/heartrate_analysis_python",
packages=["heartpy"],
install_requires=[
"numpy<=1.15;python_version=='2.7'",
"numpy<=1.15;python_version=='3.4'",
"numpy;python_version>='3.5'",
"scipy<=1.1.0;python_version=='2.7'",
"scipy<=1.2.0;python_version=='3.4'",
"scipy;python_version>='3.5'",
"matplotlib<=2.2.3;python_version=='2.7'",
"matplotlib<=2.2.3;python_version=='3.4'",
"matplotlib<=3.0.0;python_version=='3.5'",
'matplotlib;python_version>="3.6"'],
include_package_data=True,
package_data={
'': ['data/*.csv', 'data/*.mat', 'data/*.log']
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
)
|
mit
|
Python
|
c1d111ab00cdc916412cc2985ef4bbc184166f20
|
Change contact field and author field for PyPI.
|
onecodex/onecodex,refgenomics/onecodex,refgenomics/onecodex,onecodex/onecodex
|
setup.py
|
setup.py
|
"""
``onecodex``
------------
``onecodex`` provides a command line client for interaction with the
One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup
setup(
name='onecodex',
version='0.0.1',
url='https://www.onecodex.com/',
license='MIT',
author='Reference Genomics, Inc.',
author_email='[email protected]',
description='One Codex Command Line Client',
long_description=__doc__,
packages=['onecodex'],
zip_safe=True,
platforms='any',
install_requires=[
'requests>=2.4.3',
],
test_suite='nose.collector',
entry_points={
'console_scripts': ['onecodex = onecodex.cli:main']
},
)
|
"""
``onecodex``
------------
``onecodex`` provides a command line client for interaction with the
One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup
setup(
name='onecodex',
version='0.0.1',
url='https://www.onecodex.com/',
license='MIT',
author='Nick Boyd Greenfield',
author_email='[email protected]',
description='One Codex Command Line Client',
long_description=__doc__,
packages=['onecodex'],
zip_safe=True,
platforms='any',
install_requires=[
'requests>=2.4.3',
],
test_suite='nose.collector',
entry_points={
'console_scripts': ['onecodex = onecodex.cli:main']
},
)
|
mit
|
Python
|
c3fe1e939708dad0628cae57a4249b5ab2a44dd7
|
Bump to 0.7.0, beta. (#105)
|
googleapis/gapic-generator-python,googleapis/gapic-generator-python
|
setup.py
|
setup.py
|
# 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 or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import io
import os
from setuptools import find_packages, setup
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj:
README = file_obj.read()
setup(
name='gapic-generator',
version='0.7.0',
license='Apache 2.0',
author='Luke Sneeringer',
author_email='[email protected]',
url='https://github.com/googleapis/gapic-generator-python.git',
packages=find_packages(exclude=['docs', 'tests']),
description='Python client library generator for APIs defined by protocol'
'buffers',
long_description=README,
entry_points="""[console_scripts]
protoc-gen-dump=gapic.cli.dump:dump
protoc-gen-python_gapic=gapic.cli.generate:generate
""",
platforms='Posix; MacOS X',
include_package_data=True,
install_requires=(
'click >= 6.7',
'googleapis-common-protos >= 1.6.0b8',
'jinja2 >= 2.10',
'protobuf >= 3.5.1',
'pypandoc >= 1.4',
),
extras_require={
':python_version<"3.7"': ('dataclasses >= 0.4',),
},
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
),
zip_safe=False,
)
|
# 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 or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import io
import os
from setuptools import find_packages, setup
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj:
README = file_obj.read()
setup(
name='gapic-generator',
version='0.6.0',
license='Apache 2.0',
author='Luke Sneeringer',
author_email='[email protected]',
url='https://github.com/googleapis/gapic-generator-python.git',
packages=find_packages(exclude=['docs', 'tests']),
description='Python client library generator for APIs defined by protocol'
'buffers',
long_description=README,
entry_points="""[console_scripts]
protoc-gen-dump=gapic.cli.dump:dump
protoc-gen-python_gapic=gapic.cli.generate:generate
""",
platforms='Posix; MacOS X',
include_package_data=True,
install_requires=(
'click >= 6.7',
'googleapis-common-protos >= 1.6.0b8',
'jinja2 >= 2.10',
'protobuf >= 3.5.1',
'pypandoc >= 1.4',
),
extras_require={
':python_version<"3.7"': ('dataclasses >= 0.4',),
},
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
),
zip_safe=False,
)
|
apache-2.0
|
Python
|
c3294f7ec5e1d91196d53ccc84c38511941ff7c7
|
update version
|
AfricasTalkingLtd/africastalking-python,AfricasTalkingLtd/africastalking-python,AfricasTalkingLtd/africastalking-python
|
setup.py
|
setup.py
|
#!/usr/bin/env python
from setuptools import setup
import sys
import os
version = '1.2.3'
long_description = open('README.md').read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='africastalking',
version=version,
packages=['africastalking'],
description='Official Africa\'s Talking Python SDK',
data_files=[('', ['README.md'])],
license='MIT',
author='Africa\'s Talking',
install_requires=[
'requests>=v2.18.4',
'schema>=0.6.7'
],
python_requires=">=2.7.10",
author_email='[email protected]',
url='https://github.com/AfricasTalkingLtd/africastalking-python',
download_url='https://codeload.github.com/AfricasTalkingLtd/africastalking-python/tar.gz/' + version,
keywords='ussd voice sms mpesa card bank b2b b2c sender_id payments airtime africastalking',
classifiers=[],
long_description=long_description,
long_description_content_type='text/markdown'
)
|
#!/usr/bin/env python
from setuptools import setup
import sys
import os
version = '1.2.2'
long_description = open('README.md').read()
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='africastalking',
version=version,
packages=['africastalking'],
description='Official Africa\'s Talking Python SDK',
data_files=[('', ['README.md'])],
license='MIT',
author='Africa\'s Talking',
install_requires=[
'requests>=v2.18.4',
'schema>=0.6.7'
],
python_requires=">=2.7.10",
author_email='[email protected]',
url='https://github.com/AfricasTalkingLtd/africastalking-python',
download_url='https://codeload.github.com/AfricasTalkingLtd/africastalking-python/tar.gz/' + version,
keywords='ussd voice sms mpesa card bank b2b b2c sender_id payments airtime africastalking',
classifiers=[],
long_description=long_description,
long_description_content_type='text/markdown'
)
|
mit
|
Python
|
8243a52b7db8962ae381cc1b565c5c519f32bb9d
|
Bump version
|
lightning-viz/lightning-python,garretstuber/lightning-python,peterkshultz/lightning-python,peterkshultz/lightning-python,garretstuber/lightning-python,lightning-viz/lightning-python,peterkshultz/lightning-python,garretstuber/lightning-python
|
setup.py
|
setup.py
|
#!/usr/bin/env python
'''The setup and build script for the lightning-python library.'''
__author__ = '[email protected]'
__version__ = '1.0.8'
# The base package metadata to be used by both distutils and setuptools
METADATA = dict(
name = "lightning-python",
version = __version__,
packages = ['lightning','lightning.types'],
author='Matthew Conlen',
author_email='[email protected]',
description='A Python client library for Lightning data vizualization notebooks',
license='MIT',
url='https://github.com/lightning-viz/lightning-python',
keywords='lightning data data-viz',
)
# Extra package metadata to be used only if setuptools is installed
SETUPTOOLS_METADATA = dict(
install_requires = open('requirements.txt').read().split(),
include_package_data = True
)
def Read(file):
return open(file).read()
def BuildLongDescription():
return '\n'.join([Read('README.md')])
def Main():
# Build the long_description from the README and CHANGES
# METADATA['long_description'] = BuildLongDescription()
# Use setuptools if available, otherwise fallback and use distutils
try:
import setuptools
METADATA.update(SETUPTOOLS_METADATA)
setuptools.setup(**METADATA)
except ImportError:
print("Could not import setuptools, using distutils")
print("NOTE: You will need to install dependencies manualy")
import distutils.core
distutils.core.setup(**METADATA)
if __name__ == '__main__':
Main()
|
#!/usr/bin/env python
'''The setup and build script for the lightning-python library.'''
__author__ = '[email protected]'
__version__ = '1.0.7'
# The base package metadata to be used by both distutils and setuptools
METADATA = dict(
name = "lightning-python",
version = __version__,
packages = ['lightning','lightning.types'],
author='Matthew Conlen',
author_email='[email protected]',
description='A Python client library for Lightning data vizualization notebooks',
license='MIT',
url='https://github.com/lightning-viz/lightning-python',
keywords='lightning data data-viz',
)
# Extra package metadata to be used only if setuptools is installed
SETUPTOOLS_METADATA = dict(
install_requires = open('requirements.txt').read().split(),
include_package_data = True
)
def Read(file):
return open(file).read()
def BuildLongDescription():
return '\n'.join([Read('README.md')])
def Main():
# Build the long_description from the README and CHANGES
# METADATA['long_description'] = BuildLongDescription()
# Use setuptools if available, otherwise fallback and use distutils
try:
import setuptools
METADATA.update(SETUPTOOLS_METADATA)
setuptools.setup(**METADATA)
except ImportError:
print("Could not import setuptools, using distutils")
print("NOTE: You will need to install dependencies manualy")
import distutils.core
distutils.core.setup(**METADATA)
if __name__ == '__main__':
Main()
|
mit
|
Python
|
66a148f9240133ead3b74a50fb0b6d43f1903de7
|
Update to next dev version
|
SophieIPP/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,adrienpacifico/openfisca-france,adrienpacifico/openfisca-france,SophieIPP/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,antoinearnoud/openfisca-france,antoinearnoud/openfisca-france
|
setup.py
|
setup.py
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <[email protected]>
#
# Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# OpenFisca is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
""" -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '0.5.2.dev0',
author = 'OpenFisca Team',
author_email = '[email protected]',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = u'France specific model for OpenFisca',
keywords = 'benefit france microsimulation social tax',
license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url = 'https://github.com/openfisca/openfisca-france',
data_files = [
('share/locale/fr/LC_MESSAGES', ['openfisca_france/i18n/fr/LC_MESSAGES/openfisca-france.mo']),
],
install_requires = [
'Babel >= 0.9.4',
'Biryani >= 0.10.4',
'numpy',
'OpenFisca-Core >= 0.5dev',
'PyYAML',
# 'scipy >= 0.12', # Only for inversion_revenus reform
# 'pandas >= 0.13', # Only for taxipp_utils.py which is ignored in Makefile
],
message_extractors = {'openfisca_france': [
('**.py', 'python', None),
]},
packages = find_packages(),
test_suite = 'nose.collector',
)
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# OpenFisca -- A versatile microsimulation software
# By: OpenFisca Team <[email protected]>
#
# Copyright (C) 2011, 2012, 2013, 2014, 2015 OpenFisca Team
# https://github.com/openfisca
#
# This file is part of OpenFisca.
#
# OpenFisca is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# OpenFisca is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
""" -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '0.5.1',
author = 'OpenFisca Team',
author_email = '[email protected]',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = u'France specific model for OpenFisca',
keywords = 'benefit france microsimulation social tax',
license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url = 'https://github.com/openfisca/openfisca-france',
data_files = [
('share/locale/fr/LC_MESSAGES', ['openfisca_france/i18n/fr/LC_MESSAGES/openfisca-france.mo']),
],
install_requires = [
'Babel >= 0.9.4',
'Biryani >= 0.10.4',
'numpy',
'OpenFisca-Core >= 0.5dev',
'PyYAML',
# 'scipy >= 0.12', # Only for inversion_revenus reform
# 'pandas >= 0.13', # Only for taxipp_utils.py which is ignored in Makefile
],
message_extractors = {'openfisca_france': [
('**.py', 'python', None),
]},
packages = find_packages(),
test_suite = 'nose.collector',
)
|
agpl-3.0
|
Python
|
afdbc1a8200e47be78f81947349372e1a846b1eb
|
update requirements
|
legnaleurc/wcpan.worker
|
setup.py
|
setup.py
|
import os.path as op
from setuptools import setup
with open(op.join(op.dirname(__file__), './README.rst')) as fin:
long_description = fin.read()
setup(
name='wcpan.worker',
version='3.0.1',
description='An asynchronous task queue with priority support.',
long_description=long_description,
author='Wei-Cheng Pan',
author_email='[email protected]',
url='https://github.com/legnaleurc/wcpan.worker',
packages=[
'wcpan.worker',
],
python_requires='>= 3.6',
install_requires=[
'async-timeout ~= 3.0.0',
'wcpan.logger ~= 1.2.3',
],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
])
|
import os.path as op
from setuptools import setup
with open(op.join(op.dirname(__file__), './README.rst')) as fin:
long_description = fin.read()
setup(
name='wcpan.worker',
version='3.0.1',
description='An asynchronous task queue with priority support.',
long_description=long_description,
author='Wei-Cheng Pan',
author_email='[email protected]',
url='https://github.com/legnaleurc/wcpan.worker',
packages=[
'wcpan.worker',
],
python_requires='>= 3.6',
install_requires=[
'wcpan.logger ~= 1.2.3',
],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
])
|
mit
|
Python
|
493d73bea7d7a6b1b3c5be11fe47f3aa39fa4a49
|
Upgrade version to 1.0.0
|
hubo1016/vlcp,hubo1016/vlcp,hubo1016/vlcp,hubo1016/vlcp
|
setup.py
|
setup.py
|
#!/usr/bin/env python
'''
Created on 2015/11/17
:author: hubo
'''
try:
import ez_setup
ez_setup.use_setuptools()
except:
pass
from setuptools import setup, find_packages
VERSION = '1.0.0'
setup(name='vlcp',
version=VERSION,
description='Full stack framework for SDN Controller, support Openflow 1.0, Openflow 1.3, and Nicira extensions. Also a powerful coroutine-based web server.',
author='Hu Bo',
author_email='[email protected]',
license="http://www.apache.org/licenses/LICENSE-2.0",
url='http://github.com/hubo1016/vlcp',
keywords=['SDN', 'VLCP', 'Openflow'],
test_suite = 'tests',
use_2to3=False,
install_requires = ["nstruct>=1.0.10"],
packages=find_packages(exclude=("tests","tests.*","misc","misc.*")))
|
#!/usr/bin/env python
'''
Created on 2015/11/17
:author: hubo
'''
try:
import ez_setup
ez_setup.use_setuptools()
except:
pass
from setuptools import setup, find_packages
VERSION = '0.11.1'
setup(name='vlcp',
version=VERSION,
description='Full stack framework for SDN Controller, support Openflow 1.0, Openflow 1.3, and Nicira extensions. Also a powerful coroutine-based web server.',
author='Hu Bo',
author_email='[email protected]',
license="http://www.apache.org/licenses/LICENSE-2.0",
url='http://github.com/hubo1016/vlcp',
keywords=['SDN', 'VLCP', 'Openflow'],
test_suite = 'tests',
use_2to3=False,
install_requires = ["nstruct>=1.0.10"],
packages=find_packages(exclude=("tests","tests.*","misc","misc.*")))
|
apache-2.0
|
Python
|
99f82543bd97c54ee0850a154e1cb97957c33ea9
|
Swap pycrypto for pycryptodome
|
kylemacfarlane/django-cb-storage-s3
|
setup.py
|
setup.py
|
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'setuptools',
'pycryptodome'
]
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
setup(
name = 'django-cuddlybuddly-storage-s3',
version = '3.3',
license = 'BSD',
description = 'Updated Amazon S3 storage from django-storages. Adds more ' \
'fixes than I can remember, a metadata cache system and ' \
'some extra utilities for dealing with MEDIA_URL and HTTPS, ' \
'CloudFront and for creating signed URLs.',
long_description = read('README.rst'),
author = 'Kyle MacFarlane',
author_email = '[email protected]',
package_dir = {'': 'src'},
packages = find_packages('src'),
namespace_packages = ['cuddlybuddly'],
include_package_data = True,
zip_safe = False,
install_requires = install_requires,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
],
)
|
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'setuptools',
'pycrypto'
]
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
setup(
name = 'django-cuddlybuddly-storage-s3',
version = '3.2',
license = 'BSD',
description = 'Updated Amazon S3 storage from django-storages. Adds more ' \
'fixes than I can remember, a metadata cache system and ' \
'some extra utilities for dealing with MEDIA_URL and HTTPS, ' \
'CloudFront and for creating signed URLs.',
long_description = read('README.rst'),
author = 'Kyle MacFarlane',
author_email = '[email protected]',
package_dir = {'': 'src'},
packages = find_packages('src'),
namespace_packages = ['cuddlybuddly'],
include_package_data = True,
zip_safe = False,
install_requires = install_requires,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
],
)
|
bsd-3-clause
|
Python
|
197dca6e5c81dc1437f65af192e2b590a575bf53
|
Bump to next dev 0.1.1.dev1
|
postlund/pyatv,postlund/pyatv
|
setup.py
|
setup.py
|
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='pyatv',
version='0.1.1.dev1',
license='MIT',
url='https://github.com/postlund/pyatv',
author='Pierre Ståhl',
author_email='[email protected]',
description='Library for controlling an Apple TV',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'aiohttp==1.2.0',
'zeroconf==0.18.0',
],
test_suite='tests',
keywords=['apple', 'tv'],
tests_require=['tox'],
entry_points={
'console_scripts': [
'atvremote = pyatv.__main__:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Home Automation',
],
)
|
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='pyatv',
version='0.1.0',
license='MIT',
url='https://github.com/postlund/pyatv',
author='Pierre Ståhl',
author_email='[email protected]',
description='Library for controlling an Apple TV',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'aiohttp==1.2.0',
'zeroconf==0.18.0',
],
test_suite='tests',
keywords=['apple', 'tv'],
tests_require=['tox'],
entry_points={
'console_scripts': [
'atvremote = pyatv.__main__:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Home Automation',
],
)
|
mit
|
Python
|
1c2881332fb12389b161b9bf7c79248f36dc9b07
|
Bump version
|
thombashi/pathvalidate
|
setup.py
|
setup.py
|
from __future__ import with_statement
import sys
import os.path
import setuptools
needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join("docs", "pages", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pathvalidate",
version="0.4.2",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
url="https://github.com/thombashi/pathvalidate",
keywords=["path", "validation"],
license="MIT License",
description=summary,
long_description=long_description,
include_package_data=True,
install_requires=install_requires,
packages=setuptools.find_packages(exclude=['test*']),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
from __future__ import with_statement
import sys
import os.path
import setuptools
needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
REQUIREMENT_DIR = "requirements"
with open("README.rst") as fp:
long_description = fp.read()
with open(os.path.join("docs", "pages", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pathvalidate",
version="0.4.1",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
url="https://github.com/thombashi/pathvalidate",
keywords=["path", "validation"],
license="MIT License",
description=summary,
long_description=long_description,
include_package_data=True,
install_requires=install_requires,
packages=setuptools.find_packages(exclude=['test*']),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
mit
|
Python
|
79c4d0f19ffb569919b1d210674884a22fd80c0b
|
Fix up setup.py
|
ping/instagram_private_api
|
setup.py
|
setup.py
|
from os import path
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import unittest.mock
has_mock = True
except ImportError:
has_mock = False
__author__ = 'ping <[email protected]>'
__version__ = '1.6.0'
packages = [
'instagram_private_api',
'instagram_private_api.endpoints',
'instagram_web_api'
]
test_reqs = [] if has_mock else ['mock']
with io.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='instagram_private_api',
version=__version__,
author='ping',
author_email='[email protected]',
license='MIT',
url='https://github.com/ping/instagram_private_api/tree/master',
install_requires=[],
test_requires=test_reqs,
keywords='instagram private api',
description='A client interface for the private Instagram API.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=packages,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import unittest.mock
has_mock = True
except ImportError:
has_mock = False
__author__ = 'ping <[email protected]>'
__version__ = '1.6.0'
packages = [
'instagram_private_api',
'instagram_private_api.endpoints',
'instagram_web_api'
]
test_reqs = [] if has_mock else ['mock']
setup(
name='instagram_private_api',
version=__version__,
author='ping',
author_email='[email protected]>',
license='MIT',
url='https://github.com/ping/instagram_private_api/tree/master',
install_requires=[],
test_requires=test_reqs,
keywords='instagram private api',
description='A client interface for the private Instagram API.',
packages=packages,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
]
)
|
mit
|
Python
|
51e4a9eb5708b7f35784f4a4a704f72ac5e00e6f
|
remove package stuff
|
abonaca/gary,abonaca/gary,abonaca/gary
|
setup.py
|
setup.py
|
# coding: utf-8
from __future__ import division, print_function
__author__ = "adrn <[email protected]>"
# Standard library
import os, sys
from distutils.core import setup
from distutils.extension import Extension
# Third-party
import numpy as np
from Cython.Distutils import build_ext
# Get numpy path
numpy_base_path = os.path.split(np.__file__)[0]
numpy_incl_path = os.path.join(numpy_base_path, "core", "include")
cpotential = Extension("streamteam.potential.cpotential",
["streamteam/potential/cpotential.pyx"],
include_dirs=[numpy_incl_path])
cbuiltin = Extension("streamteam.potential.cbuiltin",
["streamteam/potential/cbuiltin.pyx"],
include_dirs=[numpy_incl_path])
setup(
name="streamteam",
version="0.1",
author="Adrian M. Price-Whelan",
author_email="[email protected]",
license="BSD",
cmdclass = {'build_ext': build_ext},
ext_modules=[cpotential, cbuiltin]
)
# packages=["streamteam", "streamteam.coordinates", "streamteam.io",
# "streamteam.observation", "streamteam.integrate",
# "streamteam.dynamics", "streamteam.inference",
# "streamteam.potential"],
|
# coding: utf-8
from __future__ import division, print_function
__author__ = "adrn <[email protected]>"
# Standard library
import os, sys
from distutils.core import setup
from distutils.extension import Extension
# Third-party
import numpy as np
from Cython.Distutils import build_ext
# Get numpy path
numpy_base_path = os.path.split(np.__file__)[0]
numpy_incl_path = os.path.join(numpy_base_path, "core", "include")
cpotential = Extension("streamteam.potential.cpotential",
["streamteam/potential/cpotential.pyx"],
include_dirs=[numpy_incl_path])
cbuiltin = Extension("streamteam.potential.cbuiltin",
["streamteam/potential/cbuiltin.pyx"],
include_dirs=[numpy_incl_path])
setup(
name="streamteam",
version="0.1",
author="Adrian M. Price-Whelan",
author_email="[email protected]",
license="BSD",
packages=["streamteam", "streamteam.coordinates", "streamteam.io",
"streamteam.observation", "streamteam.integrate",
"streamteam.dynamics", "streamteam.inference",
"streamteam.potential"],
cmdclass = {'build_ext': build_ext},
ext_modules=[cpotential, cbuiltin]
)
|
mit
|
Python
|
ccd45d35b05c4f3e2a134d285e485523c08298cf
|
Add misc package to setup.py
|
hips/autograd,HIPS/autograd,hips/autograd,HIPS/autograd
|
setup.py
|
setup.py
|
from setuptools import setup
setup(
name='autograd',
version='1.1.11',
description='Efficiently computes derivatives of numpy code.',
author='Dougal Maclaurin and David Duvenaud and Matthew Johnson',
author_email="[email protected], [email protected], [email protected]",
packages=['autograd', 'autograd.numpy', 'autograd.scipy', 'autograd.scipy.stats', 'autograd.misc'],
install_requires=['numpy>=1.12', 'scipy>=0.17', 'future>=0.15.2'],
keywords=['Automatic differentiation', 'backpropagation', 'gradients',
'machine learning', 'optimization', 'neural networks',
'Python', 'Numpy', 'Scipy'],
url='https://github.com/HIPS/autograd',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'],
)
|
from setuptools import setup
setup(
name='autograd',
version='1.1.11',
description='Efficiently computes derivatives of numpy code.',
author='Dougal Maclaurin and David Duvenaud and Matthew Johnson',
author_email="[email protected], [email protected], [email protected]",
packages=['autograd', 'autograd.numpy', 'autograd.scipy', 'autograd.scipy.stats'],
install_requires=['numpy>=1.12', 'scipy>=0.17', 'future>=0.15.2'],
keywords=['Automatic differentiation', 'backpropagation', 'gradients',
'machine learning', 'optimization', 'neural networks',
'Python', 'Numpy', 'Scipy'],
url='https://github.com/HIPS/autograd',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'],
)
|
mit
|
Python
|
a30ed634f641c3c62dc0d4501ed4cb852c9930d0
|
Update TreeTime dep link now that the py3 branch is merged
|
nextstrain/augur,blab/nextstrain-augur,nextstrain/augur,nextstrain/augur
|
setup.py
|
setup.py
|
import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "[email protected], [email protected]",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywords = "nextstrain, molecular epidemiology",
url = "https://github.com/nextstrain/augur",
packages=['augur'],
install_requires = [
"biopython >=1.69, ==1.*",
"boto >=2.38, ==2.*",
"cvxopt >=1.1.8, ==1.1.*",
"ipdb >=0.10.1, ==0.10.*",
"matplotlib >=2.0, ==2.*",
"pandas >=0.16.2, <0.18.0",
"pytest >=3.2.1, ==3.*",
"seaborn >=0.6.0, ==0.6.*",
"tox >=2.8.2, ==2.*",
"treetime ==0.4.0"
],
dependency_links = [
"https://api.github.com/repos/neherlab/treetime/tarball/v0.4.0#egg=treetime-0.4.0"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Science",
"License :: OSI Approved :: MIT License",
],
scripts=['bin/augur']
)
|
import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "[email protected], [email protected]",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywords = "nextstrain, molecular epidemiology",
url = "https://github.com/nextstrain/augur",
packages=['augur'],
install_requires = [
"biopython >=1.69, ==1.*",
"boto >=2.38, ==2.*",
"cvxopt >=1.1.8, ==1.1.*",
"ipdb >=0.10.1, ==0.10.*",
"matplotlib >=2.0, ==2.*",
"pandas >=0.16.2, <0.18.0",
"pytest >=3.2.1, ==3.*",
"seaborn >=0.6.0, ==0.6.*",
"tox >=2.8.2, ==2.*",
"treetime ==0.4.0"
],
dependency_links = [
"https://api.github.com/repos/neherlab/treetime/tarball/py3#egg=treetime-0.4.0"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Science",
"License :: OSI Approved :: MIT License",
],
scripts=['bin/augur']
)
|
agpl-3.0
|
Python
|
0ad4eadaeca3e442b85bb29d530b791e06c6c07f
|
Bump version number
|
nocarryr/AWS-Identity-Manager
|
setup.py
|
setup.py
|
from setuptools import setup
setup(
name = "aws-identity-manager",
version = "0.0.2",
author = "Matthew Reid",
author_email = "[email protected]",
description = ("Manage credentials for multiple AWS accounts"),
url='https://github.com/nocarryr/AWS-Identity-Manager',
license='MIT',
keywords = "aws",
packages=['awsident'],
include_package_data=True,
scripts=['main.py'],
entry_points={
'console_scripts':[
'awsidentity = main:main',
],
},
install_requires=['cmd2'],
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)
|
from setuptools import setup
setup(
name = "aws-identity-manager",
version = "0.0.1",
author = "Matthew Reid",
author_email = "[email protected]",
description = ("Manage credentials for multiple AWS accounts"),
url='https://github.com/nocarryr/AWS-Identity-Manager',
license='MIT',
keywords = "aws",
packages=['awsident'],
include_package_data=True,
scripts=['main.py'],
entry_points={
'console_scripts':[
'awsidentity = main:main',
],
},
install_requires=['cmd2'],
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)
|
mit
|
Python
|
776663716437e3d6e255046a04bd301c697a020f
|
Drop declared support for Python 3.6 - breaks on upload to PyPI
|
jaraco/keyring
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# Generated by jaraco.develop 2.27.1
# https://pypi.python.org/pypi/jaraco.develop
import io
import sys
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
test_requirements = [
'pytest>=2.8',
'gdata',
'python-keyczar',
'fs>=0.5',
'mock',
'pycrypto',
]
"dependencies for running tests"
if sys.version_info >= (3, 0):
# gdata doesn't currently install on Python 3. Omit it also.
# http://code.google.com/p/gdata-python-client/issues/detail?id=229
test_requirements.remove('gdata')
# keyczar doesn't currently install on Python 3. Omit it also.
# http://code.google.com/p/keyczar/issues/detail?id=125
test_requirements.remove('python-keyczar')
setup_params = dict(
name='keyring',
use_scm_version=True,
author="Kang Zhang",
author_email="[email protected]",
maintainer='Jason R. Coombs',
maintainer_email='[email protected]',
description="Store and access your passwords safely.",
long_description=long_description,
url="https://github.com/jaraco/keyring",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
],
extras_require={
'test': test_requirements,
},
setup_requires=[
'setuptools_scm>=1.9',
] + pytest_runner + sphinx + wheel,
tests_require=[
] + test_requirements,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
entry_points={
'console_scripts': [
'keyring=keyring.cli:main',
],
},
keywords="keyring Keychain GnomeKeyring Kwallet password storage",
)
if __name__ == '__main__':
setuptools.setup(**setup_params)
|
#!/usr/bin/env python
# Generated by jaraco.develop 2.27.1
# https://pypi.python.org/pypi/jaraco.develop
import io
import sys
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
test_requirements = [
'pytest>=2.8',
'gdata',
'python-keyczar',
'fs>=0.5',
'mock',
'pycrypto',
]
"dependencies for running tests"
if sys.version_info >= (3, 0):
# gdata doesn't currently install on Python 3. Omit it also.
# http://code.google.com/p/gdata-python-client/issues/detail?id=229
test_requirements.remove('gdata')
# keyczar doesn't currently install on Python 3. Omit it also.
# http://code.google.com/p/keyczar/issues/detail?id=125
test_requirements.remove('python-keyczar')
setup_params = dict(
name='keyring',
use_scm_version=True,
author="Kang Zhang",
author_email="[email protected]",
maintainer='Jason R. Coombs',
maintainer_email='[email protected]',
description="Store and access your passwords safely.",
long_description=long_description,
url="https://github.com/jaraco/keyring",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
],
extras_require={
'test': test_requirements,
},
setup_requires=[
'setuptools_scm>=1.9',
] + pytest_runner + sphinx + wheel,
tests_require=[
] + test_requirements,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
entry_points={
'console_scripts': [
'keyring=keyring.cli:main',
],
},
keywords="keyring Keychain GnomeKeyring Kwallet password storage",
)
if __name__ == '__main__':
setuptools.setup(**setup_params)
|
mit
|
Python
|
e47d69382863438b9506f2b153fec2c38a7707dd
|
fix setup.py
|
mathause/netCDF4p
|
setup.py
|
setup.py
|
from setuptools import setup
setup(name='netCDF4p',
version='0.9',
description='Addition to netCDF4 to select by dimension',
url='',
author='Mathias Hauser',
author_email='[email protected]',
license='MIT',
packages=['netCDF4p'],
install_requires=['collections',
'functools',
'glob'
'numpy',
'netCDF4'],
zip_safe=False)
|
from setuptools import setup
setup(name='netCDF4p',
version='0.9',
description='Addition to netCDF4 to select by dimension',
url='',
author='Mathias Hauser',
author_email='[email protected]',
license='MIT',
packages=['netCDF4p'],
install_requires=[
<<<<<<< HEAD
=======
'collections',
'functools',
'glob'
>>>>>>> f828117fff5a54e89135b579ad9c70c60b6d6e53
'numpy',
'netCDF4'
],
zip_safe=False)
|
mit
|
Python
|
fb762b21947c5c3116c6deac394e2e47fbfc880f
|
Bump version to 0.5.0
|
mwilliamson/funk
|
setup.py
|
setup.py
|
import os
from setuptools import setup
def read(path):
with open(os.path.join(os.path.dirname(__file__), path)) as fileobj:
return fileobj.read()
setup(
name='Funk',
version='0.5.0',
description='A mocking framework for Python',
long_description=read("README.rst"),
author='Michael Williamson',
author_email='[email protected]',
url='https://github.com/mwilliamson/funk',
packages=['funk'],
keywords="mock",
install_requires=["precisely>=0.1.1"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
license='BSD License'
)
|
import os
from setuptools import setup
def read(path):
with open(os.path.join(os.path.dirname(__file__), path)) as fileobj:
return fileobj.read()
setup(
name='Funk',
version='0.4.0',
description='A mocking framework for Python',
long_description=read("README.rst"),
author='Michael Williamson',
author_email='[email protected]',
url='https://github.com/mwilliamson/funk',
packages=['funk'],
keywords="mock",
install_requires=["precisely>=0.1.1"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
license='BSD License'
)
|
bsd-2-clause
|
Python
|
2842771b78f8452de5515dccf879eb63060ec620
|
comment README
|
Akagi201/xor-string,Akagi201/xor_string
|
setup.py
|
setup.py
|
# import os
from setuptools import setup
# here = os.path.abspath(os.path.dirname(__file__))
# README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor-string',
packages=['xor-string',],
version='0.1.2',
url='https://github.com/Akagi201/xor-string',
download_url='https://github.com/Akagi201/xor-string/tarball/0.1.2',
description='Elegant xor encryption in Python',
# long_description=README,
license='MIT',
author='Akagi201',
author_email='[email protected]',
keywords=['xor', 'string', 'itertools', 'python'],
classifiers=[],
)
|
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
requires = [
'itertools',
]
setup(
name='xor-string',
packages=['xor-string',],
version='0.1.2',
url='https://github.com/Akagi201/xor-string',
download_url='https://github.com/Akagi201/xor-string/tarball/0.1.2',
description='Elegant xor encryption in Python',
long_description=README,
license='MIT',
author='Akagi201',
author_email='[email protected]',
keywords=['xor', 'string', 'itertools', 'python'],
classifiers=[],
)
|
mit
|
Python
|
fc245f061bc185d465218a9af36f926045a6ca3b
|
Bump version
|
SUNET/eduid-dashboard-amp
|
setup.py
|
setup.py
|
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
version = '0.3.3b1'
requires = [
'pymongo >= 2.8,<3', # CI fails to build unless a version (same as in eduid_am) is required here :(
'eduid_am >= 0.6.0, < 0.7.0',
'eduid_userdb >= 0.0.4',
]
testing_extras = [
'nose==1.2.1',
'nosexcover==1.0.8',
'coverage==3.6',
]
setup(name='eduid-dashboard-amp',
version=version,
description='eduID Dashboard Attribute Manager Plugin',
long_description=README + '\n\n' + CHANGES,
# TODO: add classifiers
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='',
author='SUNET',
url='https://github.com/SUNET/eduid-dashboard-amp',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={
'testing': testing_extras,
},
test_suite='eduid_dashboard_amp',
entry_points="""
[eduid_am.attribute_fetcher]
eduid_dashboard = eduid_dashboard_amp:attribute_fetcher
[eduid_am.plugin_init]
eduid_dashboard = eduid_dashboard_amp:plugin_init
""",
)
|
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
version = '0.3.3b0'
requires = [
'pymongo >= 2.8,<3', # CI fails to build unless a version (same as in eduid_am) is required here :(
'eduid_am >= 0.6.0, < 0.7.0',
'eduid_userdb >= 0.0.4',
]
testing_extras = [
'nose==1.2.1',
'nosexcover==1.0.8',
'coverage==3.6',
]
setup(name='eduid-dashboard-amp',
version=version,
description='eduID Dashboard Attribute Manager Plugin',
long_description=README + '\n\n' + CHANGES,
# TODO: add classifiers
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='',
author='SUNET',
url='https://github.com/SUNET/eduid-dashboard-amp',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={
'testing': testing_extras,
},
test_suite='eduid_dashboard_amp',
entry_points="""
[eduid_am.attribute_fetcher]
eduid_dashboard = eduid_dashboard_amp:attribute_fetcher
[eduid_am.plugin_init]
eduid_dashboard = eduid_dashboard_amp:plugin_init
""",
)
|
bsd-3-clause
|
Python
|
8e3c0d3794a65e10000da68495ea84771f663016
|
Improve Python package information.
|
KitwareMedical/MorphologicalContourInterpolation,KitwareMedical/MorphologicalContourInterpolation,KitwareMedical/ITKMorphologicalContourInterpolation,dzenanz/MorphologicalContourInterpolation,KitwareMedical/ITKMorphologicalContourInterpolation,dzenanz/MorphologicalContourInterpolation
|
setup.py
|
setup.py
|
# -*- coding: utf-8 -*-
from __future__ import print_function
from os import sys
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
sys.exit(1)
setup(
name='itk-morphologicalcontourinterpolation',
version='1.0.0',
author='Dženan Zukić',
author_email='[email protected]',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMedical/ITKMorphologicalContourInterpolation',
description=r'Image morphological contour interpolation.',
long_description='itk-morphologicalcontourinterpolation provides classes '
'to perform image morphological contour interpolation.\n'
'Please refer to:\n'
'Zukić Dž., Vicory J., McCormick M., Wisse L., Gerig G., Yushkevich P., Aylward S. '
'"nD Morphological Contour Interpolation", '
'Insight Journal, January-December 2016, http://hdl.handle.net/10380/3563.',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: C++",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
license='Apache',
keywords='ITK InsightToolkit Segmentation Interpolation-methods',
url=r'https://github.com/KitwareMedical/ITKMorphologicalContourInterpolation',
install_requires=[
r'itk'
]
)
|
# -*- coding: utf-8 -*-
from __future__ import print_function
from os import sys
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
sys.exit(1)
setup(
name='itk-morphologicalcontourinterpolation',
version='1.0.0',
author='Dženan Zukić',
author_email='[email protected]',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMedical/ITKMorphologicalContourInterpolation',
description=r'Interslice interpolations of label images based on their morphology .',
long_description='ITK is an open-source, cross-platform library that '
'provides developers with an extensive suite of software '
'tools for image analysis. This package implements morphological contour interpolation. '
'For more information, see '
'Zukić D., Vicory J., McCormick M., Wisse L., Gerig G., Yushkevich P., Aylward S. '
'"ND Morphological Contour Interpolation" '
'http://insight-journal.org/browse/publication/977 '
'http://hdl.handle.net/10380/3563 ',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: C++",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
license='Apache',
keywords='ITK InsightToolkit',
url=r'https://itk.org/',
install_requires=[
r'itk'
]
)
|
apache-2.0
|
Python
|
efadb71c0598f50d2f5966a0e0eeef33779d72fc
|
Bump version to 0.2.0-alpha5 (#36)
|
Patreon/cartographer,Patreon/cartographer
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
setup(name='cartographer',
version='0.2.0-alpha5',
description='Python library for using JSON API, especially with Flask.',
url='http://github.com/Patreon/cartographer',
author='Patreon',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['example', 'example.*', 'test', 'test.*']),
install_requires=[
'python-dateutil>=2.4.2',
'ciso8601>=1.0.1'
],
zip_safe=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|
from setuptools import setup, find_packages
setup(name='cartographer',
version='0.2.0-alpha4',
description='Python library for using JSON API, especially with Flask.',
url='http://github.com/Patreon/cartographer',
author='Patreon',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['example', 'example.*', 'test', 'test.*']),
install_requires=[
'python-dateutil>=2.4.2',
'ciso8601>=1.0.1'
],
zip_safe=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|
apache-2.0
|
Python
|
5ba4c4b572d0ef569e536c1153dab4af40be8725
|
add conf to datafiles in setup
|
internetfett/newrelic-nfsmond,internetfett/newrelic-nfsmond
|
setup.py
|
setup.py
|
import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
exec(open('src/__init__.py').read())
setup(
name='newrelicnfsmond',
version=__version__,
license='MIT License',
description='NFS disk monitoring plugin for New Relic',
author='Cody Kinsey',
author_email='[email protected]',
url='https://github.com/internetfett/newrelic-nfsmond',
long_description='A plugin for New Relic to gather information on NFS disk space',
packages=['newrelicnfsmond'],
package_dir={'newrelicnfsmond': 'src'},
scripts=['scripts/newrelic-nfsmond'],
data_files=[
('/etc', ['conf/newrelic-nfsmond.conf']),
('/etc/init.d', ['scripts/init/newrelic-nfsmond']),
],
install_requires=['python-daemon'],
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)
|
import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
exec(open('src/__init__.py').read())
setup(
name='newrelicnfsmond',
version=__version__,
license='MIT License',
description='NFS disk monitoring plugin for New Relic',
author='Cody Kinsey',
author_email='[email protected]',
url='https://github.com/internetfett/newrelic-nfsmond',
long_description='A plugin for New Relic to gather information on NFS disk space',
packages=['newrelicnfsmond'],
package_dir={'newrelicnfsmond': 'src'},
scripts=['scripts/newrelic-nfsmond'],
data_files=[('/etc/init.d', ['scripts/init/newrelic-nfsmond'])],
install_requires=['python-daemon'],
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)
|
mit
|
Python
|
5a4c9ec51061241ce091b1dd4759c0817b1db9ef
|
bump version to 0.1.10
|
nimbis/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder,niceguydave/cmsplugin-forms-builder
|
setup.py
|
setup.py
|
#!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
from uuid import uuid1
# parse requirements
reqs = parse_requirements("requirements/common.txt", session=uuid1())
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.10',
description='django-cms plugin for cmsplugin-forms-builder',
long_description=open('README.rst').read(),
author='Nimbis Services, Inc.',
author_email='[email protected]',
url='https://github.com/nimbis/cmsplugin-forms-builder/',
packages=find_packages(exclude=["tests", ]),
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
install_requires=[str(x).split(' ')[0] for x in reqs],
zip_safe=False
)
|
#!/usr/bin/env python
from setuptools import find_packages, setup
from pip.req import parse_requirements
from uuid import uuid1
# parse requirements
reqs = parse_requirements("requirements/common.txt", session=uuid1())
# setup the project
setup(
name='cmsplugin-forms-builder',
version='0.1.9',
description='django-cms plugin for cmsplugin-forms-builder',
long_description=open('README.rst').read(),
author='Nimbis Services, Inc.',
author_email='[email protected]',
url='https://github.com/nimbis/cmsplugin-forms-builder/',
packages=find_packages(exclude=["tests", ]),
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
install_requires=[str(x).split(' ')[0] for x in reqs],
zip_safe=False
)
|
bsd-3-clause
|
Python
|
2dd096cfab529f33d6d132795c7706d2bed92f68
|
bump version to v0.1.2
|
Telecominfraproject/gnpy
|
setup.py
|
setup.py
|
#!/usr/bin/python3
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gnpy',
version='0.1.2',
description='route planning and optimization tool for mesh optical networks',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/Telecominfraproject/gnpy',
author='Telecom Infra Project',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
keywords='optics network fiber communication route planning optimization',
packages=find_packages(exclude=['examples', 'docs', 'tests']), # Required
install_requires=list(open('requirements.txt'))
)
|
#!/usr/bin/python3
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gnpy',
version='0.1.1',
description='route planning and optimization tool for mesh optical networks',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/Telecominfraproject/gnpy',
author='Telecom Infra Project',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
keywords='optics network fiber communication route planning optimization',
packages=find_packages(exclude=['examples', 'docs', 'tests']), # Required
install_requires=list(open('requirements.txt'))
)
|
bsd-3-clause
|
Python
|
1f793daf03f821f993b0920256652185f0445a78
|
Add more metadata info to the setup.py file.
|
wglass/rotterdam
|
setup.py
|
setup.py
|
from setuptools import setup
setup(
name="rotterdam",
version="0.0.7",
description=(
"Simple distributed job queue via redis."
),
author="William Glass",
author_email="[email protected]",
url="http://github.com/wglass/rotterdam",
packages=["rotterdam"],
include_package_data=True,
package_data={
'rotterdam': ['lua/*.lua']
},
scripts=[
"bin/rotterdam",
"bin/rotterdamctl"
],
install_requires=[
"cython==0.19.1",
"setproctitle",
"gevent>=1.0dev",
"redis==2.7.6"
],
dependency_links=[
"http://github.com/surfly/gevent/tarball/1.0rc3#egg=gevent-1.0dev"
],
tests_require=[
"mock==1.0.1",
"nose==1.3.0"
]
)
|
from setuptools import setup
setup(
name="rotterdam",
version="0.0.6",
packages=["rotterdam"],
include_package_data=True,
package_data={
'rotterdam': ['lua/*.lua']
},
scripts=[
"bin/rotterdam",
"bin/rotterdamctl"
],
install_requires=[
"cython==0.19.1",
"setproctitle",
"gevent>=1.0dev",
"redis==2.7.6"
],
dependency_links=[
"http://github.com/surfly/gevent/tarball/1.0rc3#egg=gevent-1.0dev"
],
tests_require=[
"mock==1.0.1",
"nose==1.3.0"
]
)
|
mit
|
Python
|
47c347e8277c63d8e157d44084604408fb8cdcc7
|
Comment on git submodules
|
rgbkrk/bookstore
|
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()
requires = ['pyrax>=1.4.7',
'ipython==1.0.0a',
'tornado>=3.1',
'pyzmq>=13.1.0',
'Jinja2>=2.7',
]
setup(name='ipynb_swiftstore',
version='0.0.0',
description='IPython notebook storage for OpenStack Swift',
author='Kyle Kelley',
author_email='[email protected]',
url='http://github.com/rgbkrk/ipynb-swiftstore',
py_modules=['ipynb_swiftstore'],
package_data={'': ['LICENSE']},
include_package_data=False,
install_requires=requires,
# Can't pull from the zip file as IPython uses git submodules
#dependency_links=["https://github.com/ipython/ipython/archive/c74db3ba79170c30e6875e8c2960c3bfe1f06ec8.zip#egg=ipython-1.0.0a"],
license=open('LICENSE').read(),
zip_safe=True,
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: OpenStack',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Distributed Computing',
),
)
|
#!/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()
requires = ['pyrax>=1.4.7',
'ipython==1.0.0a',
'tornado>=3.1',
'pyzmq>=13.1.0',
'Jinja2>=2.7',
]
setup(name='ipynb_swiftstore',
version='0.0.0',
description='IPython notebook storage for OpenStack Swift',
author='Kyle Kelley',
author_email='[email protected]',
url='http://github.com/rgbkrk/ipynb-swiftstore',
py_modules=['ipynb_swiftstore'],
package_data={'': ['LICENSE']},
include_package_data=False,
install_requires=requires,
#dependency_links=["https://github.com/ipython/ipython/archive/c74db3ba79170c30e6875e8c2960c3bfe1f06ec8.zip#egg=ipython-1.0.0a"],
license=open('LICENSE').read(),
zip_safe=True,
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: OpenStack',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Distributed Computing',
),
)
|
apache-2.0
|
Python
|
023c0f17652037c80c9513a8ab522373d7ccae9d
|
Add download_url to setup.py
|
goldmann/docker-scripts,jpopelka/docker-scripts,lichia/docker-scripts,TomasTomecek/docker-scripts,goldmann/docker-squash
|
setup.py
|
setup.py
|
#!/usr/bin/python
from setuptools import setup, find_packages
version = "0.3.1"
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-scripts",
version = version,
packages = find_packages(),
url = 'https://github.com/goldmann/docker-scripts',
download_url = "https://github.com/goldmann/docker-scripts/archive/%s.tar.gz" % version,
author = 'Marek Goldmann',
author_email = '[email protected]',
description = 'A swiss-knife tool that could be useful for people working with Docker',
license='MIT',
keywords = 'docker',
long_description = open('README.rst').read(),
entry_points = {
'console_scripts': ['docker-scripts=docker_scripts.cli:run'],
},
install_requires=requirements
)
|
#!/usr/bin/python
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-scripts",
version = "0.3.1",
packages = find_packages(),
url='https://github.com/goldmann/docker-scripts',
author='Marek Goldmann',
author_email='[email protected]',
description = 'A swiss-knife tool that could be useful for people working with Docker',
license='MIT',
keywords = 'docker',
long_description=open('README.rst').read(),
entry_points={
'console_scripts': ['docker-scripts=docker_scripts.cli:run'],
},
install_requires=requirements
)
|
mit
|
Python
|
b90ff6c5c1dcc36e9da1255c753e0ffbec73f15a
|
Update homepage.
|
djc/fixlib
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 KenTyde
# All rights reserved.
#
# This software is licensed as described in the file LICENSE,
# which you should have received as part of this distribution.
from setuptools import setup
import os
desc = open(os.path.join(os.path.dirname(__file__), 'README')).read()
setup(
name='fixlib',
version='0.5',
description='Pythonic library for dealing with the FIX protocol',
long_description=desc,
author='Dirkjan Ochtman',
author_email='[email protected]',
license='BSD',
url='http://source.kentyde.com/fixlib',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['fixlib'],
test_suite='fixlib.tests.suite',
)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 KenTyde
# All rights reserved.
#
# This software is licensed as described in the file LICENSE,
# which you should have received as part of this distribution.
from setuptools import setup
import os
desc = open(os.path.join(os.path.dirname(__file__), 'README')).read()
setup(
name='fixlib',
version='0.5',
description='Pythonic library for dealing with the FIX protocol',
long_description=desc,
author='Dirkjan Ochtman',
author_email='[email protected]',
license='BSD',
url='http://bitbucket.org/kentyde/fixlib',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['fixlib'],
test_suite='fixlib.tests.suite',
)
|
bsd-3-clause
|
Python
|
cf9eaa922dfd0b853090d24a2a7571f0301925a1
|
bump version number
|
kindy61/mako,bdoms/mako
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
version = '0.2.1'
setup(name='Mako',
version=version,
description="A super-fast templating language that borrows the \
best ideas from the existing templating languages.",
long_description="""\
Mako is a template library written in Python. It provides a familiar, non-XML
syntax which compiles into Python modules for maximum performance. Mako's
syntax and API borrows from the best ideas of many others, including Django
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
Python (i.e. Python Server Page) language, which refines the familiar ideas
of componentized layout and inheritance to produce one of the most
straightforward and flexible models available, while also maintaining close
ties to Python calling and scoping semantics.
SVN version:
<http://svn.makotemplates.org/mako/trunk#egg=Mako-dev>
""",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='wsgi myghty mako',
author='Mike Bayer',
author_email='[email protected]',
url='http://www.makotemplates.org/',
license='MIT',
package_dir={'':'lib'},
packages=find_packages('lib', exclude=['ez_setup', 'examples', 'tests']),
scripts=['scripts/mako-render'],
zip_safe=False,
install_requires=[
'Beaker',
],
entry_points="""
[python.templating.engines]
mako = mako.ext.turbogears:TGPlugin
[pygments.lexers]
mako = mako.ext.pygmentplugin:MakoLexer
html+mako = mako.ext.pygmentplugin:MakoHtmlLexer
xml+mako = mako.ext.pygmentplugin:MakoXmlLexer
js+mako = mako.ext.pygmentplugin:MakoJavascriptLexer
css+mako = mako.ext.pygmentplugin:MakoCssLexer
[babel.extractors]
mako = mako.ext.babelplugin:extract
""",
)
|
from setuptools import setup, find_packages
version = '0.2.0'
setup(name='Mako',
version=version,
description="A super-fast templating language that borrows the \
best ideas from the existing templating languages.",
long_description="""\
Mako is a template library written in Python. It provides a familiar, non-XML
syntax which compiles into Python modules for maximum performance. Mako's
syntax and API borrows from the best ideas of many others, including Django
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
Python (i.e. Python Server Page) language, which refines the familiar ideas
of componentized layout and inheritance to produce one of the most
straightforward and flexible models available, while also maintaining close
ties to Python calling and scoping semantics.
SVN version:
<http://svn.makotemplates.org/mako/trunk#egg=Mako-dev>
""",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='wsgi myghty mako',
author='Mike Bayer',
author_email='[email protected]',
url='http://www.makotemplates.org/',
license='MIT',
package_dir={'':'lib'},
packages=find_packages('lib', exclude=['ez_setup', 'examples', 'tests']),
scripts=['scripts/mako-render'],
zip_safe=False,
install_requires=[
'Beaker',
],
entry_points="""
[python.templating.engines]
mako = mako.ext.turbogears:TGPlugin
[pygments.lexers]
mako = mako.ext.pygmentplugin:MakoLexer
html+mako = mako.ext.pygmentplugin:MakoHtmlLexer
xml+mako = mako.ext.pygmentplugin:MakoXmlLexer
js+mako = mako.ext.pygmentplugin:MakoJavascriptLexer
css+mako = mako.ext.pygmentplugin:MakoCssLexer
[babel.extractors]
mako = mako.ext.babelplugin:extract
""",
)
|
mit
|
Python
|
a013ab75809a630b88ee996486098b36977553f1
|
Bump version to 0.1.18.
|
hq6/smux
|
setup.py
|
setup.py
|
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
short_description = "Simple tmux launcher that will take less than 2 minutes to learn."
setup(
name="smux.py",
version='0.1.18',
author="Henry Qin",
author_email="[email protected]",
description=short_description,
long_description=long_description,
long_description_content_type='text/markdown',
platforms=["All platforms that tmux runs on."],
license="MIT",
url="https://github.com/hq6/smux",
py_modules=['smux'],
scripts=['smux.py']
)
|
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
short_description = "Simple tmux launcher that will take less than 2 minutes to learn."
setup(
name="smux.py",
version='0.1.17',
author="Henry Qin",
author_email="[email protected]",
description=short_description,
long_description=long_description,
long_description_content_type='text/markdown',
platforms=["All platforms that tmux runs on."],
license="MIT",
url="https://github.com/hq6/smux",
py_modules=['smux'],
scripts=['smux.py']
)
|
mit
|
Python
|
5d53bd04783edc49558262d24b3c0c5a5b5b8e76
|
Bump version to 1.5
|
seemethere/retry.it
|
setup.py
|
setup.py
|
from setuptools import setup
__version__ = '1.5'
__author__ = 'Eli Uriegas'
retry_classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
description = 'A small and simple library to retry functions'
setup(
name='retry.it',
version=__version__,
author=__author__,
author_email='[email protected]',
url='https://github.com/seemethere/retry',
py_modules=['retry'],
description=description,
long_description=description,
license='MIT',
classifiers=retry_classifiers,
install_requires=['decorator'],
setup_requires=['pytest-runner'],
tests_requires=['pytest'],
)
|
from setuptools import setup
__version__ = '1.4'
__author__ = 'Eli Uriegas'
retry_classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
description = 'A small and simple library to retry functions'
setup(
name='retry.it',
version=__version__,
author=__author__,
author_email='[email protected]',
url='https://github.com/seemethere/retry',
py_modules=['retry'],
description=description,
long_description=description,
license='MIT',
classifiers=retry_classifiers,
install_requires=['decorator'],
setup_requires=['pytest-runner'],
tests_requires=['pytest'],
)
|
mit
|
Python
|
d61733eed29923ae1f7db6e38bba181e3581051f
|
Bump version number
|
mwilliamson/whack
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='whack',
version='0.3.0',
description='Utility for installing binaries from source with a single command',
long_description=read("README"),
author='Michael Williamson',
url='http://github.com/mwilliamson/whack',
scripts=["scripts/whack"],
packages=['whack'],
install_requires=['blah>=0.1.10,<0.2', 'requests', "catchy==0.1.0"],
)
|
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='whack',
version='0.2.5',
description='Utility for installing binaries from source with a single command',
long_description=read("README"),
author='Michael Williamson',
url='http://github.com/mwilliamson/whack',
scripts=["scripts/whack"],
packages=['whack'],
install_requires=['blah>=0.1.10,<0.2', 'requests', "catchy==0.1.0"],
)
|
bsd-2-clause
|
Python
|
0fdd77907ef09fbdae6647b177c9ba4cf8c3de9c
|
Bump version to 0.9.1
|
thombashi/pytablereader,thombashi/pytablereader,thombashi/pytablereader
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""
import os.path
import sys
import setuptools
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", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pytablereader",
version="0.9.1",
url="https://github.com/thombashi/pytablereader",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
description=summary,
include_package_data=True,
install_requires=install_requires,
keywords=[
"table", "reader", "pandas",
"CSV", "Excel", "HTML", "JSON", "LTSV", "Markdown", "MediaWiki", "TSV",
"SQLite",
],
long_description=long_description,
license="MIT License",
packages=setuptools.find_packages(exclude=["test*"]),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
#!/usr/bin/env python
# encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""
import os.path
import sys
import setuptools
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", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pytablereader",
version="0.9.0",
url="https://github.com/thombashi/pytablereader",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
description=summary,
include_package_data=True,
install_requires=install_requires,
keywords=[
"table", "reader", "pandas",
"CSV", "Excel", "HTML", "JSON", "LTSV", "Markdown", "MediaWiki", "TSV",
"SQLite",
],
long_description=long_description,
license="MIT License",
packages=setuptools.find_packages(exclude=["test*"]),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
mit
|
Python
|
39a42a6b013ecb57457559810e6a48c9e76fe474
|
update to setup.py
|
ThaWeatherman/trackopy
|
setup.py
|
setup.py
|
"""
"""
from setuptools import setup
import trackopy
with open('README.md') as r:
readme = r.read()
setup(
name=trackopy.__title__,
version=trackopy.__version__,
url='https://github.com/ThaWeatherman/trackopy',
license='MIT',
author='Sean Beck',
author_email='[email protected]',
description='Python wrapper for the Trackobot API',
long_description=readme,
packages=['trackopy'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'requests'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3'
],
test_suite='tests',
keywords='trackobot hearthstone'
)
|
"""
"""
from setuptools import setup
import trackopy
with open('README.md') as r:
readme = r.read()
setup(
name=trackopy.__title__,
version=trackopy.__version__,
url='https://github.com/ThaWeatherman/trackopy',
license='MIT',
author='Sean Beck',
author_email='[email protected]',
description='Python wrapper for the Trackobot API',
long_description=readme,
packages=['trackopy'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'requests'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='tests'
)
|
mit
|
Python
|
b4b968af6bbd6c94e23ece02dbe33c1ee9475868
|
Fix setuptools v38.0+ compatbility
|
RazerM/bucketcache
|
setup.py
|
setup.py
|
import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
INIT_FILE = 'bucketcache/__init__.py'
init_data = open(INIT_FILE).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_data))
AUTHOR_EMAIL = metadata['author']
VERSION = metadata['version']
LICENSE = metadata['license']
DESCRIPTION = metadata['description']
AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
requires = [
'boltons',
'decorator>=4.0.2',
'logbook>=0.12.5',
'python-dateutil',
'represent>=1.5.1',
'six>=1.9.0',
]
extras_require = dict()
extras_require[':python_version<"3.4"'] = ['pathlib']
extras_require['test'] = [
'msgpack-python',
'pytest>=3',
'pytest-benchmark',
'pytest-cov',
'pytest-xdist',
]
extras_require['test:python_version<"3.3"'] = ['mock']
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(
name='BucketCache',
version=VERSION,
description=DESCRIPTION,
long_description=open('README').read(),
author=AUTHOR,
author_email=EMAIL,
url='https://github.com/RazerM/bucketcache',
packages=find_packages(exclude=['tests']),
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
license=LICENSE,
install_requires=requires,
extras_require=extras_require)
|
import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
INIT_FILE = 'bucketcache/__init__.py'
init_data = open(INIT_FILE).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_data))
AUTHOR_EMAIL = metadata['author']
VERSION = metadata['version']
LICENSE = metadata['license']
DESCRIPTION = metadata['description']
AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
requires = {
'boltons',
'decorator>=4.0.2',
'logbook>=0.12.5',
'python-dateutil',
'represent>=1.5.1',
'six>=1.9.0',
}
extras_require = dict()
extras_require[':python_version<"3.4"'] = {'pathlib'}
extras_require['test'] = {
'msgpack-python',
'pytest>=3',
'pytest-benchmark',
'pytest-cov',
'pytest-xdist',
}
extras_require['test:python_version<"3.3"'] = {'mock'}
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(
name='BucketCache',
version=VERSION,
description=DESCRIPTION,
long_description=open('README').read(),
author=AUTHOR,
author_email=EMAIL,
url='https://github.com/RazerM/bucketcache',
packages=find_packages(exclude=['tests']),
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
license=LICENSE,
install_requires=requires,
extras_require=extras_require)
|
mit
|
Python
|
0f18b3ff63bf6183247e7bce25160547f8cfc21d
|
Change PyPI trove classifier for license terms.
|
devinmcgloin/advent,devinmcgloin/advent
|
setup.py
|
setup.py
|
import os
import sys
from distutils.core import setup
if sys.version_info < (3,):
print('\nSorry, but Adventure can only be installed under Python 3.\n')
sys.exit(1)
README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt')
with open(README_PATH, encoding="utf-8") as f:
README_TEXT = f.read()
setup(
name='adventure',
version='1.3',
description='Colossal Cave adventure game at the Python prompt',
long_description=README_TEXT,
author='Brandon Craig Rhodes',
author_email='[email protected]',
url='https://bitbucket.org/brandon/adventure/overview',
packages=['adventure', 'adventure/tests'],
package_data={'adventure': ['README.txt', '*.dat', 'tests/*.txt']},
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Games/Entertainment',
],
)
|
import os
import sys
from distutils.core import setup
if sys.version_info < (3,):
print('\nSorry, but Adventure can only be installed under Python 3.\n')
sys.exit(1)
README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt')
with open(README_PATH, encoding="utf-8") as f:
README_TEXT = f.read()
setup(
name='adventure',
version='1.3',
description='Colossal Cave adventure game at the Python prompt',
long_description=README_TEXT,
author='Brandon Craig Rhodes',
author_email='[email protected]',
url='https://bitbucket.org/brandon/adventure/overview',
packages=['adventure', 'adventure/tests'],
package_data={'adventure': ['README.txt', '*.dat', 'tests/*.txt']},
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Games/Entertainment',
],
)
|
apache-2.0
|
Python
|
0b77331cba0b23b9d8498860dee5fdd3fe8baf93
|
Bump version
|
thombashi/pytablewriter
|
setup.py
|
setup.py
|
import sys
import os.path
import setuptools
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", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pytablewriter",
version="0.10.2",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
url="https://github.com/thombashi/pytablewriter",
license="MIT License",
description=summary,
include_package_data=True,
install_requires=install_requires,
keywords=[
"table", "CSV", "Excel", "JavaScript", "JSON",
"Markdown", "MediaWiki", "HTML", "Pandas", "reStructuredText",
],
long_description=long_description,
packages=setuptools.find_packages(exclude=['test*']),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
import sys
import os.path
import setuptools
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", "introduction", "summary.txt")) as f:
summary = f.read()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_require = [line.strip() for line in f if line.strip()]
setuptools.setup(
name="pytablewriter",
version="0.10.1",
author="Tsuyoshi Hombashi",
author_email="[email protected]",
url="https://github.com/thombashi/pytablewriter",
license="MIT License",
description=summary,
include_package_data=True,
install_requires=install_requires,
keywords=[
"table", "CSV", "Excel", "JavaScript", "JSON",
"Markdown", "MediaWiki", "HTML", "Pandas", "reStructuredText",
],
long_description=long_description,
packages=setuptools.find_packages(exclude=['test*']),
setup_requires=pytest_runner,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|
mit
|
Python
|
05a414230aad6bd6d7eefb82c5900228436ddd99
|
bump mpl version
|
wright-group/WrightTools,wright-group/WrightTools
|
setup.py
|
setup.py
|
#! /usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
with open(os.path.join(here, fname)) as f:
return f.read()
extra_files = {
"WrightTools": [
"datasets",
"datasets/*",
"datasets/*/*",
"datasets/*/*/*",
"datasets/*/*/*/*",
"CITATION",
"VERSION",
"WT5_VERSION",
]
}
with open(os.path.join(here, "WrightTools", "VERSION")) as version_file:
version = version_file.read().strip()
docs_require = ["sphinx", "sphinx-gallery==0.8.2", "sphinx-rtd-theme"]
setup(
name="WrightTools",
packages=find_packages(exclude=("tests", "tests.*")),
package_data=extra_files,
python_requires=">=3.6",
install_requires=[
"h5py",
"imageio",
"matplotlib>=3.4.0",
"numexpr",
"numpy>=1.15.0",
"pint",
"python-dateutil",
"scipy",
"tidy_headers>=1.0.0",
],
extras_require={
"docs": docs_require,
"dev": [
"black",
"pre-commit",
"pydocstyle",
"pytest",
"pytest-cov",
"databroker>=1.2",
"msgpack",
]
+ docs_require,
},
version=version,
description="Tools for loading, processing, and plotting multidimensional spectroscopy data.",
long_description=read("README.rst"),
author="WrightTools Developers",
license="MIT",
url="http://wright.tools",
keywords="spectroscopy science multidimensional visualization",
entry_points={"console_scripts": ["wt-tree=WrightTools.__main__:wt_tree"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Framework :: Matplotlib",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
)
|
#! /usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
with open(os.path.join(here, fname)) as f:
return f.read()
extra_files = {
"WrightTools": [
"datasets",
"datasets/*",
"datasets/*/*",
"datasets/*/*/*",
"datasets/*/*/*/*",
"CITATION",
"VERSION",
"WT5_VERSION",
]
}
with open(os.path.join(here, "WrightTools", "VERSION")) as version_file:
version = version_file.read().strip()
docs_require = ["sphinx", "sphinx-gallery==0.8.2", "sphinx-rtd-theme"]
setup(
name="WrightTools",
packages=find_packages(exclude=("tests", "tests.*")),
package_data=extra_files,
python_requires=">=3.6",
install_requires=[
"h5py",
"imageio",
"matplotlib>=3.3.0",
"numexpr",
"numpy>=1.15.0",
"pint",
"python-dateutil",
"scipy",
"tidy_headers>=1.0.0",
],
extras_require={
"docs": docs_require,
"dev": [
"black",
"pre-commit",
"pydocstyle",
"pytest",
"pytest-cov",
"databroker>=1.2",
"msgpack",
]
+ docs_require,
},
version=version,
description="Tools for loading, processing, and plotting multidimensional spectroscopy data.",
long_description=read("README.rst"),
author="WrightTools Developers",
license="MIT",
url="http://wright.tools",
keywords="spectroscopy science multidimensional visualization",
entry_points={"console_scripts": ["wt-tree=WrightTools.__main__:wt_tree"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Framework :: Matplotlib",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
)
|
mit
|
Python
|
8be643093a47e15e8e21aff2358bd2382363660a
|
Adjust setup.py dependencies
|
ZeroCater/zc_common,ZeroCater/zc_common
|
setup.py
|
setup.py
|
import os
from setuptools import setup
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='zc_common',
version='0.4.15',
description="Shared code for ZeroCater microservices",
long_description='',
keywords='zerocater python util',
author='ZeroCater',
author_email='[email protected]',
url='https://github.com/ZeroCater/zc_common',
download_url='https://github.com/ZeroCater/zc_common/tarball/0.4.15',
license='MIT',
packages=get_packages('zc_common'),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=[
'python-dateutil>=2.6.1',
'ujson>=1.35,<1.36',
'PyJWT>=1.6.4',
'inflection>=0.3.1',
'pytz>=2014.2',
'python-dateutil>=2.7.3'
]
)
|
import os
from setuptools import setup
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='zc_common',
version='0.4.15',
description="Shared code for ZeroCater microservices",
long_description='',
keywords='zerocater python util',
author='ZeroCater',
author_email='[email protected]',
url='https://github.com/ZeroCater/zc_common',
download_url='https://github.com/ZeroCater/zc_common/tarball/0.4.15',
license='MIT',
packages=get_packages('zc_common'),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=[
'python-dateutil>=2.6.1,<2.6.2',
'ujson>=1.35,<1.36',
'PyJWT>=1.6.4',
'inflection>=0.3.1',
'pytz>=2018.9',
'python-dateutil>=2.7.3'
]
)
|
mit
|
Python
|
3c952110aef7f94766fe69e6ee2cb6ff3a0be15a
|
Bump version to 2.0.34
|
UCBerkeleySETI/blimpy,UCBerkeleySETI/blimpy
|
setup.py
|
setup.py
|
"""
setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
__version__ = '2.0.34'
with open("README.md", "r") as fh:
long_description = fh.read()
# create entry points
# see http://astropy.readthedocs.org/en/latest/development/scripts.html
entry_points = {
'console_scripts' : [
'watutil = blimpy.waterfall:cmd_tool',
'rawutil = blimpy.guppi:cmd_tool',
'fil2h5 = blimpy.fil2h5:cmd_tool',
'h52fil = blimpy.h52fil:cmd_tool',
'h5diag = blimpy.h5diag:cmd_tool',
'bl_scrunch = blimpy.bl_scrunch:cmd_tool',
'matchfils = blimpy.match_fils:cmd_tool',
'bldice = blimpy.dice:cmd_tool',
'calcload = blimpy.calcload:cmd_tool',
'rawhdr = blimpy.rawhdr:cmd_tool',
'stax = blimpy.stax:cmd_tool',
'stix = blimpy.stix:cmd_tool',
'peek = blimpy.peek:cmd_tool',
'srcname = blimpy.srcname:cmd_tool',
]
}
with open("requirements.txt", "r") as fh:
install_requires = fh.readlines()
extras_require = {
'full': [
'pyslalib',
]
}
setup(name='blimpy',
version=__version__,
description='Python utilities for Breakthrough Listen SETI observations',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD',
install_requires=install_requires,
url='https://github.com/ucberkeleyseti/blimpy',
author='Danny Price, Emilio Enriquez, Yuhong Chen, Mark Siebert, and BL contributors',
author_email='[email protected]',
entry_points=entry_points,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Astronomy',
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pyslalib'],
test_suite="blimpytests",
)
|
"""
setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
__version__ = '2.0.33'
with open("README.md", "r") as fh:
long_description = fh.read()
# create entry points
# see http://astropy.readthedocs.org/en/latest/development/scripts.html
entry_points = {
'console_scripts' : [
'watutil = blimpy.waterfall:cmd_tool',
'rawutil = blimpy.guppi:cmd_tool',
'fil2h5 = blimpy.fil2h5:cmd_tool',
'h52fil = blimpy.h52fil:cmd_tool',
'h5diag = blimpy.h5diag:cmd_tool',
'bl_scrunch = blimpy.bl_scrunch:cmd_tool',
'matchfils = blimpy.match_fils:cmd_tool',
'bldice = blimpy.dice:cmd_tool',
'calcload = blimpy.calcload:cmd_tool',
'rawhdr = blimpy.rawhdr:cmd_tool',
'stax = blimpy.stax:cmd_tool',
'stix = blimpy.stix:cmd_tool',
'peek = blimpy.peek:cmd_tool',
'srcname = blimpy.srcname:cmd_tool',
]
}
with open("requirements.txt", "r") as fh:
install_requires = fh.readlines()
extras_require = {
'full': [
'pyslalib',
]
}
setup(name='blimpy',
version=__version__,
description='Python utilities for Breakthrough Listen SETI observations',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD',
install_requires=install_requires,
url='https://github.com/ucberkeleyseti/blimpy',
author='Danny Price, Emilio Enriquez, Yuhong Chen, Mark Siebert, and BL contributors',
author_email='[email protected]',
entry_points=entry_points,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Astronomy',
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pyslalib'],
test_suite="blimpytests",
)
|
bsd-3-clause
|
Python
|
6263930e5870c938b431967869e8b45f2c343d1b
|
bump version to 2.3.0 in setup
|
EBIvariation/eva-cttv-pipeline
|
setup.py
|
setup.py
|
import os
import os.path
from setuptools import setup, find_packages
def get_package_data():
package_data = []
for root, dirnames, filenames in os.walk('./eva_cttv_pipeline/evidence_string_generation/resources'):
root = root.replace("./eva_cttv_pipeline/", "")
for filename in filenames:
new_fn = os.path.join(root, filename)
package_data.append(new_fn)
return package_data
def get_requires():
requires = []
with open("requirements.txt", "rt") as req_file:
for line in req_file:
requires.append(line.rstrip())
return requires
setup(name='eva_cttv_pipeline',
version='2.3.0',
packages=find_packages(),
install_requires=get_requires(),
package_data={
'eva_cttv_pipeline': get_package_data()
},
tests_require=get_requires(),
setup_requires=get_requires(),
test_suite='tests'
)
|
import os
import os.path
from setuptools import setup, find_packages
def get_package_data():
package_data = []
for root, dirnames, filenames in os.walk('./eva_cttv_pipeline/evidence_string_generation/resources'):
root = root.replace("./eva_cttv_pipeline/", "")
for filename in filenames:
new_fn = os.path.join(root, filename)
package_data.append(new_fn)
return package_data
def get_requires():
requires = []
with open("requirements.txt", "rt") as req_file:
for line in req_file:
requires.append(line.rstrip())
return requires
setup(name='eva_cttv_pipeline',
version='2.2.1',
packages=find_packages(),
install_requires=get_requires(),
package_data={
'eva_cttv_pipeline': get_package_data()
},
tests_require=get_requires(),
setup_requires=get_requires(),
test_suite='tests'
)
|
apache-2.0
|
Python
|
782bfa8f716d60c402b944d381dd40fa23486544
|
Bump pypi version
|
massard-t/etnawrapper
|
setup.py
|
setup.py
|
from distutils.core import setup
__version__ = '0.4'
setup(
name='etnawrapper',
packages=['etnawrapper'],
version=__version__,
description='API wrapper for ETNA\' APIs',
author='Theo Massard',
author_email='[email protected]',
url='https://github.com/massard-t/etnawrapper',
download_url='https://github.com/massard-t/etnawrapper/archive/{}.tar.gz'.format(__version__),
keywords=['school', 'wrapper', 'APIs'],
classifiers=[],
)
|
from distutils.core import setup
__version__ = '0.3'
setup(
name='etnawrapper',
packages=['etnawrapper'],
version=__version__,
description='API wrapper for ETNA\' APIs',
author='Theo Massard',
author_email='[email protected]',
url='https://github.com/massard-t/etnawrapper',
download_url='https://github.com/massard-t/etnawrapper/archive/{}.tar.gz'.format(__version__),
keywords=['testing', 'logging', 'example'],
classifiers=[],
)
|
mit
|
Python
|
8fd65ff32118c453eb655bd88140f4a3fd81a4b0
|
fix py.typed path
|
ahawker/ulid
|
setup.py
|
setup.py
|
"""
ulid
~~~~
Universally Unique Lexicographically Sortable Identifier
:copyright: (c) 2017 Andrew Hawker.
:license: Apache 2.0, see LICENSE for more details.
"""
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version_regex = re.compile(r'__version__\s+=\s+(.*)')
def get_version():
with open('ulid/__init__.py', 'r') as f:
return str(ast.literal_eval(version_regex.search(f.read()).group(1)))
def get_long_description():
with open('README.md') as f:
return f.read()
setup(
name='ulid-py',
version=get_version(),
author='Andrew Hawker',
author_email='[email protected]',
url='https://github.com/ahawker/ulid',
license='Apache 2.0',
description='Universally Unique Lexicographically Sortable Identifier',
long_description=get_long_description(),
long_description_content_type='text/markdown',
packages=['ulid'],
package_data={'ulid': ['py.typed']},
zip_safe=False,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
)
)
|
"""
ulid
~~~~
Universally Unique Lexicographically Sortable Identifier
:copyright: (c) 2017 Andrew Hawker.
:license: Apache 2.0, see LICENSE for more details.
"""
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version_regex = re.compile(r'__version__\s+=\s+(.*)')
def get_version():
with open('ulid/__init__.py', 'r') as f:
return str(ast.literal_eval(version_regex.search(f.read()).group(1)))
def get_long_description():
with open('README.md') as f:
return f.read()
setup(
name='ulid-py',
version=get_version(),
author='Andrew Hawker',
author_email='[email protected]',
url='https://github.com/ahawker/ulid',
license='Apache 2.0',
description='Universally Unique Lexicographically Sortable Identifier',
long_description=get_long_description(),
long_description_content_type='text/markdown',
packages=['ulid'],
package_data={'ulid': ['ulid/py.typed']},
zip_safe=False,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
)
)
|
apache-2.0
|
Python
|
853a3f689850f906871ecca0d5db72e51e93d367
|
Increment patch version number
|
danijar/layered
|
setup.py
|
setup.py
|
import sys
import subprocess
import setuptools
from setuptools.command.build_ext import build_ext
from setuptools.command.test import test
class TestCommand(test):
description = 'run tests, linters and create a coverage report'
user_options = []
def run(self):
super().run()
self._call(['pep8', 'layered', 'test', 'setup.py'])
def run_tests(self):
import pytest
errno = pytest.main(['--cov=layered', 'test'])
sys.exit(errno)
def _call(self, command):
try:
subprocess.check_call(command)
except subprocess.CalledProcessError as error:
print('Command failed with exit code', error.returncode)
sys.exit(error.returncode)
class BuildExtCommand(build_ext):
"""
Fix Numpy build error when bundled as a dependency.
From http://stackoverflow.com/a/21621689/1079110
"""
def finalize_options(self):
super().finalize_options()
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
def parse_requirements(filename):
with open(filename) as file_:
lines = map(lambda x: x.strip('\n'), file_.readlines())
lines = filter(lambda x: x and not x.startswith('#'), lines)
return list(lines)
DESCRIPTION = 'Clean reference implementation of feed forward neural networks'
if __name__ == '__main__':
setuptools.setup(
name='layered',
version='0.1.1',
description=DESCRIPTION,
url='http://github.com/danijar/layered',
author='Danijar Hafner',
author_email='[email protected]',
license='MIT',
packages=['layered'],
setup_requires=parse_requirements('requirement/core.txt'),
install_requires=parse_requirements('requirement/user.txt'),
tests_require=parse_requirements('requirement/test.txt'),
entry_points={'console_scripts': ['layered=layered.__main__:main']},
cmdclass={'test': TestCommand, 'build_ext': BuildExtCommand},
)
|
import sys
import subprocess
import setuptools
from setuptools.command.build_ext import build_ext
from setuptools.command.test import test
class TestCommand(test):
description = 'run tests, linters and create a coverage report'
user_options = []
def run(self):
super().run()
self._call(['pep8', 'layered', 'test', 'setup.py'])
def run_tests(self):
import pytest
errno = pytest.main(['--cov=layered', 'test'])
sys.exit(errno)
def _call(self, command):
try:
subprocess.check_call(command)
except subprocess.CalledProcessError as error:
print('Command failed with exit code', error.returncode)
sys.exit(error.returncode)
class BuildExtCommand(build_ext):
"""
Fix Numpy build error when bundled as a dependency.
From http://stackoverflow.com/a/21621689/1079110
"""
def finalize_options(self):
super().finalize_options()
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
def parse_requirements(filename):
with open(filename) as file_:
lines = map(lambda x: x.strip('\n'), file_.readlines())
lines = filter(lambda x: x and not x.startswith('#'), lines)
return list(lines)
DESCRIPTION = 'Clean reference implementation of feed forward neural networks'
if __name__ == '__main__':
setuptools.setup(
name='layered',
version='0.1.0',
description=DESCRIPTION,
url='http://github.com/danijar/layered',
author='Danijar Hafner',
author_email='[email protected]',
license='MIT',
packages=['layered'],
setup_requires=parse_requirements('requirement/core.txt'),
install_requires=parse_requirements('requirement/user.txt'),
tests_require=parse_requirements('requirement/test.txt'),
entry_points={'console_scripts': ['layered=layered.__main__:main']},
cmdclass={'test': TestCommand, 'build_ext': BuildExtCommand},
)
|
mit
|
Python
|
288c01a3e653103f2fd1310aa9dd227afda2a7f4
|
Read version from infinity.py in setup.py
|
kvesteri/infinity
|
setup.py
|
setup.py
|
"""
infinity
--------
All-in-one infinity value for Python. Can be compared to any object.
"""
from setuptools import setup, find_packages
import os
import re
import sys
HERE = os.path.dirname(os.path.abspath(__file__))
PY3 = sys.version_info[0] == 3
def get_version():
filename = os.path.join(HERE, 'infinity.py')
with open(filename) as f:
contents = f.read()
pattern = r"^__version__ = '(.*?)'$"
return re.search(pattern, contents, re.MULTILINE).group(1)
extras_require = {
'test': [
'pytest>=2.2.3',
'Pygments>=1.2',
'six>=1.4.1'
],
}
setup(
name='infinity',
version=get_version(),
url='https://github.com/kvesteri/infinity',
license='BSD',
author='Konsta Vesterinen',
author_email='[email protected]',
description=(
'All-in-one infinity value for Python. Can be compared to any object.'
),
long_description=__doc__,
packages=find_packages('.'),
py_modules=['infinity'],
zip_safe=False,
include_package_data=True,
platforms='any',
dependency_links=[],
install_requires=[
'total_ordering>=0.1'
if sys.version_info[0] == 2 and sys.version_info[1] < 7 else ''
],
extras_require=extras_require,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
|
"""
infinity
--------
All-in-one infinity value for Python. Can be compared to any object.
"""
from setuptools import setup, find_packages
import sys
PY3 = sys.version_info[0] == 3
extras_require = {
'test': [
'pytest>=2.2.3',
'Pygments>=1.2',
'six>=1.4.1'
],
}
setup(
name='infinity',
version='1.3',
url='https://github.com/kvesteri/infinity',
license='BSD',
author='Konsta Vesterinen',
author_email='[email protected]',
description=(
'All-in-one infinity value for Python. Can be compared to any object.'
),
long_description=__doc__,
packages=find_packages('.'),
py_modules=['infinity'],
zip_safe=False,
include_package_data=True,
platforms='any',
dependency_links=[],
install_requires=[
'total_ordering>=0.1'
if sys.version_info[0] == 2 and sys.version_info[1] < 7 else ''
],
extras_require=extras_require,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
|
bsd-3-clause
|
Python
|
44dedbe4152f0e6fd308783672f9e277929a7bae
|
bump version
|
daytonb/webdiff,danvk/webdiff,daytonb/webdiff,danvk/webdiff,danvk/webdiff,danvk/webdiff,daytonb/webdiff,danvk/webdiff,daytonb/webdiff
|
setup.py
|
setup.py
|
from setuptools import setup, find_packages
setup(name='webdiff',
version='0.6.2',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='[email protected]',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
'webdiff = webdiff.app:run',
'git-webdiff = webdiff.gitwebdiff:run'
],
},
packages=find_packages(exclude=['tests*']),
install_requires=['flask'],
include_package_data=True,
package_data = {
'static': 'webdiff/static/*',
'templates': 'webdiff/templates/*'
},
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Version Control'
],
)
|
from setuptools import setup, find_packages
setup(name='webdiff',
version='0.6.1',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='[email protected]',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
'webdiff = webdiff.app:run',
'git-webdiff = webdiff.gitwebdiff:run'
],
},
packages=find_packages(exclude=['tests*']),
install_requires=['flask'],
include_package_data=True,
package_data = {
'static': 'webdiff/static/*',
'templates': 'webdiff/templates/*'
},
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Version Control'
],
)
|
apache-2.0
|
Python
|
e9b3b2a067e31f73596cff0140ba27b6a5745b1e
|
fix setup
|
openprocurement/restkit,benoitc/restkit
|
setup.py
|
setup.py
|
#!/usr/bin/env python
# -*- coding: utf-8 -
#
# Copyright (c) 2008 Benoit Chesneau <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
setup(
name = 'py-restclient',
version = '1.1.4',
description = 'Python REST client',
long_description = \
"""A simple REST client for Python, inspired by the microframework (Camping, Sinatra) style of specifying actions: get, put, post, delete.""",
author = 'Benoit Chesneau',
author_email = '[email protected]',
license = 'BSD',
url = 'http://py-restclient.e-engura.org',
zip_safe = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
packages = ['restclient'],
setup_requires = [
'setuptools>=0.6b1',
],
install_requires = ['httplib2'],
)
|
#!/usr/bin/env python
# -*- coding: utf-8 -
#
# Copyright (c) 2008 Benoit Chesneau <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
setup(
name = 'py-restclient',
version = '1.1.4',
description = 'Python REST client',
long_description = \
"""A simple REST client for Python, inspired by the microframework (Camping, Sinatra) style of specifying actions: get, put, post, delete.""",
author = 'Benoit Chesneau',
author_email = '[email protected]',
license = 'BSD',
url = 'http://py-restclient.e-engura.org',
zip_safe = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
packages = ['restclient'],
setup_requires = [
'setuptools>=0.6b1',
'httplib2'
],
)
|
apache-2.0
|
Python
|
d366be9d552209e1e5e9c7ac789d2dc832b9f39a
|
Update setup file.
|
AdamGagorik/pydarkstar,LegionXI/pydarkstar
|
setup.py
|
setup.py
|
from distutils.core import setup
setup(
name='pydarkstar',
version='0.1',
packages=['pydarkstar'],
url='[email protected]:AdamGagorik/pydarkstar.git',
license='MIT',
author='Adam Gagorik',
author_email='[email protected]',
description='A python module for interacting with a darkstar server.'
)
|
from distutils.core import setup
setup(
name='pydarkstar',
version='0.1',
packages=['tests', 'pydarkstar'],
url='[email protected]:AdamGagorik/pydarkstar.git',
license='MIT',
author='Adam Gagorik',
author_email='[email protected]',
description='A python module for interacting with a darkstar server.'
)
|
mit
|
Python
|
6cdc906b3cb6d49eb5a1994c9e30549106f1ad78
|
fix minimal version
|
go1dshtein/selectel-api
|
setup.py
|
setup.py
|
#!/usr/bin/python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import tox
import shlex
if self.tox_args:
errno = tox.cmdline(args=shlex.split(self.tox_args))
else:
errno = tox.cmdline()
sys.exit(errno)
setup(name='selectel-api',
version='0.1.1',
description='Simple selectel API',
author='Kirill Goldshtein',
author_email='[email protected]',
url='https://github.com/go1dshtein/selectel-api',
packages=['selectel'],
install_requires=['requests >= 1.2.1'],
license='GPLv2',
tests_require=['tox', 'discover'],
cmdclass={'test': Tox},
classifiers=['Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3'])
|
#!/usr/bin/python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import tox
import shlex
if self.tox_args:
errno = tox.cmdline(args=shlex.split(self.tox_args))
else:
errno = tox.cmdline()
sys.exit(errno)
setup(name='selectel-api',
version='0.1.1',
description='Simple selectel API',
author='Kirill Goldshtein',
author_email='[email protected]',
url='https://github.com/go1dshtein/selectel-api',
packages=['selectel'],
requires=['requests'],
install_requires=['requests'],
license='GPLv2',
tests_require=['tox'],
cmdclass={'test': Tox},
classifiers=['Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3'])
|
mit
|
Python
|
1641243682f080257b7f79b35503985d3d72aa44
|
Fix requirement for diff tool
|
ethan-nelson/osm_hall_monitor
|
setup.py
|
setup.py
|
from setuptools import setup
setup(name='osm_hall_monitor',
version='0.2',
description='Passive changeset monitoring for OpenStreetMap.',
url='http://github.com/ethan-nelson/osm_hall_monitor',
author='Ethan Nelson',
author_email='[email protected]',
install_requires = ['psycopg2','osm_diff_tool'],
packages=['osmhm'],
zip_safe=False)
|
from setuptools import setup
setup(name='osm_hall_monitor',
version='0.2',
description='Passive changeset monitoring for OpenStreetMap.',
url='http://github.com/ethan-nelson/osm_hall_monitor',
author='Ethan Nelson',
author_email='[email protected]',
install_requires = ['psycopg2','osmdt'],
packages=['osmhm'],
zip_safe=False)
|
mit
|
Python
|
c0155f59f52696e178def437f712f22c610c333a
|
Add classifiers for Python 3.3 and PyPy
|
faassen/morepath,taschini/morepath,morepath/morepath
|
setup.py
|
setup.py
|
import io
from setuptools import setup, find_packages
long_description = '\n'.join((
io.open('README.rst', encoding='utf-8').read(),
io.open('CHANGES.txt', encoding='utf-8').read()
))
setup(
name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_description=long_description,
author="Morepath developers",
author_email="[email protected]",
url='http://morepath.readthedocs.io',
license="BSD",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Development Status :: 5 - Production/Stable'
],
keywords="web wsgi routing morepath",
install_requires=[
'setuptools',
'webob >= 1.3.1',
'reg >= 0.9.2',
'dectate >= 0.10.1',
'importscan',
],
extras_require=dict(
test=[
'pytest >= 2.9.0',
'py >= 1.4.20',
'pytest-cov',
'pytest-remove-stale-bytecode',
'WebTest >= 2.0.14',
'pyyaml',
],
),
)
|
import io
from setuptools import setup, find_packages
long_description = '\n'.join((
io.open('README.rst', encoding='utf-8').read(),
io.open('CHANGES.txt', encoding='utf-8').read()
))
setup(
name='morepath',
version='0.15.dev0',
description="A micro web-framework with superpowers",
long_description=long_description,
author="Morepath developers",
author_email="[email protected]",
url='http://morepath.readthedocs.io',
license="BSD",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Development Status :: 5 - Production/Stable'
],
keywords="web wsgi routing morepath",
install_requires=[
'setuptools',
'webob >= 1.3.1',
'reg >= 0.9.2',
'dectate >= 0.10.1',
'importscan',
],
extras_require=dict(
test=[
'pytest >= 2.9.0',
'py >= 1.4.20',
'pytest-cov',
'pytest-remove-stale-bytecode',
'WebTest >= 2.0.14',
'pyyaml',
],
),
)
|
bsd-3-clause
|
Python
|
97f03ffd2a309340bf41d381b35703272be600cc
|
Bump version.
|
grokcode/django-email-analytics
|
setup.py
|
setup.py
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'django-email-analytics',
'version': '0.4',
'author': 'Jess Johnson',
'author_email': '[email protected]',
'packages': ['emailanalytics'],
'scripts': [],
'url': 'https://github.com/grokcode/django-email-analytics',
'license': 'LICENSE.txt',
'description': 'Adds Google Analytics tracking to emails sent with Django.',
'long_description': open('docs/README.rst').read(),
'install_requires': ['beautifulsoup4'],
}
setup(**config)
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'django-email-analytics',
'version': '0.3',
'author': 'Jess Johnson',
'author_email': '[email protected]',
'packages': ['emailanalytics'],
'scripts': [],
'url': 'https://github.com/grokcode/django-email-analytics',
'license': 'LICENSE.txt',
'description': 'Adds Google Analytics tracking to emails sent with Django.',
'long_description': open('docs/README.rst').read(),
'install_requires': ['beautifulsoup4'],
}
setup(**config)
|
mit
|
Python
|
024878fc913097364123d28a99ab7cb5501b0af5
|
Set permission mask to allow read/exec for all users
|
rinodung/udemy-dl
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import os
import subprocess
from distutils.core import setup
requirements = [pkg.split('=')[0] for pkg in open('requirements.txt').readlines()]
description = 'Download videos from Udemy for personal offline use'
try:
subprocess.call(["pandoc", "README.md", "-f", "markdown", "-t", "rst", "-o", "README.rst"])
long_description = open("README.rst").read()
except OSError:
print("Pandoc not installed")
long_description = description
classifiers = ['Environment :: Console',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
]
version = open('CHANGES.txt').readlines()[0][1:].strip()
# if installed as root or with sudo, set permission mask to allow read/exec for all users
if os.getuid() == 0:
os.umask(int('022', 8))
setup(name='udemy-dl',
version=version,
description=description,
author='Gaganpreet Singh Arora',
author_email='[email protected]',
url='https://github.com/gaganpreet/udemy-dl',
scripts=['src/udemy-dl',],
install_requires=requirements,
long_description=long_description,
packages=['udemy_dl'],
package_dir = {'udemy_dl': 'src/udemy_dl'},
classifiers=classifiers
)
|
#!/usr/bin/env python
import subprocess
from distutils.core import setup
requirements = [pkg.split('=')[0] for pkg in open('requirements.txt').readlines()]
description = 'Download videos from Udemy for personal offline use'
try:
subprocess.call(["pandoc", "README.md", "-f", "markdown", "-t", "rst", "-o", "README.rst"])
long_description = open("README.rst").read()
except OSError:
print("Pandoc not installed")
long_description = description
classifiers = ['Environment :: Console',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
]
version = open('CHANGES.txt').readlines()[0][1:].strip()
setup(name='udemy-dl',
version=version,
description=description,
author='Gaganpreet Singh Arora',
author_email='[email protected]',
url='https://github.com/gaganpreet/udemy-dl',
scripts=['src/udemy-dl',],
install_requires=requirements,
long_description=long_description,
packages=['udemy_dl'],
package_dir = {'udemy_dl': 'src/udemy_dl'},
classifiers=classifiers
)
|
unlicense
|
Python
|
a1a0de9e1f290161d83165f2983335844a5c17f9
|
fix tests_require
|
a358003542/skeleton,a358003542/skeleton
|
setup.py
|
setup.py
|
#!/usr/bin/env python
#-*-coding:utf-8-*-
from setuptools import setup, find_packages
#+BEGIN_DELETE
import os.path
# anditional to make a tar.gz file
import tarfile
with tarfile.open("skeleton.tar.gz", "w:gz") as tar:
for name in ["setup.py", "LICENSE", "README.md", "requirements.txt",
"pyskeleton", "tests","setup.cfg","pytest.ini","MANIFEST.in"]:
tar.add(name)
from pyskeleton.compat import replace
replace('skeleton.tar.gz', 'pyskeleton/skeleton.tar.gz')
#+END_DELETE
import pyskeleton
import codecs
def long_description():
with codecs.open('README.md', encoding='utf-8') as f:
return f.read()
REQUIREMENTS = ['pytest-runner']
import sys
if sys.platform == "win32":
REQUIREMENTS.append('pyosreplace')
setup(
name='pyskeleton',
version=pyskeleton.__version__,
description='quickly create a python module, have some other good concern.',
url='https://github.com/a358003542/pyskeleton',
long_description=long_description(),
author='wanze',
author_email='[email protected]',
maintainer='wanze',
maintainer_email='[email protected]',
license='GPL 2',
platforms='Linux',
keywords=['skeleton', 'python'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
package_data={"pyskeleton": ['skeleton.tar.gz'], },
setup_requires=REQUIREMENTS,
install_requires=REQUIREMENTS,
tests_require=['pytest'],
entry_points={
'console_scripts': ['pyskeleton=pyskeleton.__main__:main', ],
}
)
|
#!/usr/bin/env python
#-*-coding:utf-8-*-
from setuptools import setup, find_packages
#+BEGIN_DELETE
import os.path
# anditional to make a tar.gz file
import tarfile
with tarfile.open("skeleton.tar.gz", "w:gz") as tar:
for name in ["setup.py", "LICENSE", "README.md", "requirements.txt",
"pyskeleton", "tests","setup.cfg","pytest.ini","MANIFEST.in"]:
tar.add(name)
from pyskeleton.compat import replace
replace('skeleton.tar.gz', 'pyskeleton/skeleton.tar.gz')
#+END_DELETE
import pyskeleton
import codecs
def long_description():
with codecs.open('README.md', encoding='utf-8') as f:
return f.read()
REQUIREMENTS = ['pytest-runner']
import sys
if sys.platform == "win32":
REQUIREMENTS.append('pyosreplace')
setup(
name='pyskeleton',
version=pyskeleton.__version__,
description='quickly create a python module, have some other good concern.',
url='https://github.com/a358003542/pyskeleton',
long_description=long_description(),
author='wanze',
author_email='[email protected]',
maintainer='wanze',
maintainer_email='[email protected]',
license='GPL 2',
platforms='Linux',
keywords=['skeleton', 'python'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
package_data={"pyskeleton": ['skeleton.tar.gz'], },
setup_requires=REQUIREMENTS,
install_requires=REQUIREMENTS,
test_require=['pytest'],
entry_points={
'console_scripts': ['pyskeleton=pyskeleton.__main__:main', ],
}
)
|
mit
|
Python
|
a6d27ef03438133e7dd38f4a26208dc7d3904f6e
|
Fix url in setup.py file.
|
heynemann/webassets,JDeuce/webassets,heynemann/webassets,aconrad/webassets,john2x/webassets,scorphus/webassets,rs/webassets,glorpen/webassets,scorphus/webassets,JDeuce/webassets,glorpen/webassets,florianjacob/webassets,0x1997/webassets,aconrad/webassets,glorpen/webassets,florianjacob/webassets,heynemann/webassets,aconrad/webassets,0x1997/webassets,wijerasa/webassets,wijerasa/webassets,john2x/webassets
|
setup.py
|
setup.py
|
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
print "Sphinx not installed - needed to build documentation"
cmdclass = {}
# Figure out the version; this could be done by importing the
# module, though that requires Django to be already installed,
# which may not be the case when processing a pip requirements
# file, for example.
import re
here = os.path.dirname(os.path.abspath(__file__))
version_re = re.compile(
r'__version__ = (\(.*?\))')
fp = open(os.path.join(here, 'src/webassets', '__init__.py'))
version = None
for line in fp:
match = version_re.search(line)
if match:
version = eval(match.group(1))
break
else:
raise Exception("Cannot find version in __init__.py")
fp.close()
setup(
name = 'webassets',
version = ".".join(map(str, version)),
description = 'Media asset management for Python, with glue code for '+\
'various web frameworks',
long_description = 'Merges, minifies and compresses Javascript and '
'CSS files, supporting a variety of different filters, including '
'YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting '
'in CSS files.',
author = 'Michael Elsdoerfer',
author_email = '[email protected]',
license = 'BSD',
url = 'http://github.com/miracle2k/webassets/',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
entry_points = """[console_scripts]\nwebassets = webassets.script:run\n""",
packages = find_packages('src'),
package_dir = {'': 'src'},
cmdclass = cmdclass,
)
|
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
print "Sphinx not installed - needed to build documentation"
cmdclass = {}
# Figure out the version; this could be done by importing the
# module, though that requires Django to be already installed,
# which may not be the case when processing a pip requirements
# file, for example.
import re
here = os.path.dirname(os.path.abspath(__file__))
version_re = re.compile(
r'__version__ = (\(.*?\))')
fp = open(os.path.join(here, 'src/webassets', '__init__.py'))
version = None
for line in fp:
match = version_re.search(line)
if match:
version = eval(match.group(1))
break
else:
raise Exception("Cannot find version in __init__.py")
fp.close()
setup(
name = 'webassets',
version = ".".join(map(str, version)),
description = 'Media asset management for Python, with glue code for '+\
'various web frameworks',
long_description = 'Merges, minifies and compresses Javascript and '
'CSS files, supporting a variety of different filters, including '
'YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting '
'in CSS files.',
author = 'Michael Elsdoerfer',
author_email = '[email protected]',
license = 'BSD',
url = 'github.com/miracle2k/webassets/',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
entry_points = """[console_scripts]\nwebassets = webassets.script:run\n""",
packages = find_packages('src'),
package_dir = {'': 'src'},
cmdclass = cmdclass,
)
|
bsd-2-clause
|
Python
|
c18bbf109a19eb0a5ee65be61030a1c3dd54a6d4
|
Bump version
|
ericsomdahl/python-bittrex
|
setup.py
|
setup.py
|
#!/usr/bin/env python
from setuptools import setup
setup(name='python-bittrex',
version='0.2.2',
url="https://github.com/ericsomdahl/python-bittrex",
packages=['bittrex'],
modules=['bittrex'],
install_requires=['requests'],
description='Python bindings for bittrex API.',
author='Eric Somdahl',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Topic :: Office/Business :: Financial',
])
|
#!/usr/bin/env python
from setuptools import setup
setup(name='python-bittrex',
version='0.2.1',
url="https://github.com/ericsomdahl/python-bittrex",
packages=['bittrex'],
modules=['bittrex'],
install_requires=['requests'],
description='Python bindings for bittrex API.',
author='Eric Somdahl',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Topic :: Office/Business :: Financial',
])
|
mit
|
Python
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.