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 |
|---|---|---|---|---|---|---|---|---|
05ff40c315aa4c5ce095186eb342caaa8065a5ad | add cli pkg to setup | gabstopper/smc-python | setup.py | setup.py | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='smc-py',
version='0.1',
description='Python based API to Stonesoft Security Management Center',
url='http://github.com/gabstopper/smc-python',
author='David LePage',
autho... | from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='smc-py',
version='0.1',
description='Python based API to Stonesoft Security Management Center',
url='http://github.com/gabstopper/smc-python',
author='David LePage',
autho... | apache-2.0 | Python |
c02277d8bc34f61061ea718341cc7876d01c06e9 | Add six dependency | pignacio/pignacio_scripts | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | lgpl-2.1 | Python |
1b664434108db82d6dd97e89e21a6d40bb5af631 | Embed function signatures into Python extension | jbaiter/clstm,jbaiter/clstm,jbaiter/clstm,jbaiter/clstm | setup.py | setup.py | import os
from distutils.core import setup, Extension
from Cython.Build import cythonize
def ensure_protobuf():
exists = os.path.exists("clstm.pb.cc")
stale = (exists and
os.path.getctime("clstm.pb.cc") < os.path.getctime("clstm.proto"))
if not exists or stale:
print "Generating prot... | import os
from distutils.core import setup, Extension
from Cython.Build import cythonize
def ensure_protobuf():
exists = os.path.exists("clstm.pb.cc")
stale = (exists and
os.path.getctime("clstm.pb.cc") < os.path.getctime("clstm.proto"))
if not exists or stale:
print "Generating prot... | apache-2.0 | Python |
9e1f7366fd20e1811a2ba21d98a1389996b75617 | Bump minimum cffi version required to 1.10 | ulikoehler/cv_algorithms,ulikoehler/cv_algorithms | setup.py | setup.py | #!/usr/bin/env python
import os
import sys
import io
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, Extension
from setuptools import find_packages
extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat... | #!/usr/bin/env python
import os
import sys
import io
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, Extension
from setuptools import find_packages
extra_compile_args = [] if os.name == 'nt' else ["-g", "-O2", "-march=nat... | apache-2.0 | Python |
4f3d9059100850db9259a413b56aafbf5f2ceded | Allow coverage 5.x | getsentry/responses,getsentry/responses | setup.py | setup.py | #!/usr/bin/env python
"""
responses
=========
A utility library for mocking out the `requests` Python library.
:copyright: (c) 2015 David Cramer
:license: Apache 2.0
"""
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
setup_requires = []
if "test" in sys.argv:
s... | #!/usr/bin/env python
"""
responses
=========
A utility library for mocking out the `requests` Python library.
:copyright: (c) 2015 David Cramer
:license: Apache 2.0
"""
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
setup_requires = []
if "test" in sys.argv:
s... | apache-2.0 | Python |
aec666b9d0ea3f34eb5dba2e7118d4ba0658ef32 | remove superfluous license tag | mlabbe/execmode | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name = 'execmode',
version = '1.0',
packages = find_packages(),
package_data = {
'': ['LICENSE', 'README.md'],
},
# PyPI metadata
description = 'verbose debug, succint release mode behaviors',
author = 'Michael Labbe',
aut... | from setuptools import setup, find_packages
setup(
name = 'execmode',
version = '1.0',
packages = find_packages(),
package_data = {
'': ['LICENSE', 'README.md'],
},
# PyPI metadata
description = 'verbose debug, succint release mode behaviors',
author = 'Michael Labbe',
aut... | mit | Python |
8781b1f7d0c338dc802a4d592c438629184bd797 | bump to 0.2.4 | juanpabloaj/slacker-cli | setup.py | setup.py | #!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
install_requires = read('requirements.txt').splitlines()
try:
import argparse
except ImportError:
in... | #!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
install_requires = read('requirements.txt').splitlines()
try:
import argparse
except ImportError:
in... | mit | Python |
a3494527c178b50fa835be0c0b7def11e2eb9961 | prepare new release | FZJ-IEK3-VSA/tsam | setup.py | setup.py | import os, setuptools
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, "requirements.txt")) as f:
required_packages = f.read().splitlines()
with open(os.path.join(dir_path, "README.md"), "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tsam",
vers... | import os, setuptools
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, "requirements.txt")) as f:
required_packages = f.read().splitlines()
with open(os.path.join(dir_path, "README.md"), "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tsam",
vers... | mit | Python |
727a0620e81c7a190fedecd168fc4fff8a268606 | Bump version to 1.0.0 | iCHAIT/whats-fresh-api,osu-cass/whats-fresh-api,osu-cass/whats-fresh-api,osu-cass/whats-fresh-api,iCHAIT/whats-fresh-api,osu-cass/whats-fresh-api,iCHAIT/whats-fresh-api,iCHAIT/whats-fresh-api | setup.py | setup.py | from distutils.core import setup
from setuptools import find_packages
dependencies = [
'Django==1.7.1',
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'Pillow==2.5.1',
'PyYAML==3.11',
'Pygments==1.6',
'Sphinx==1.2.2',
'argparse==1.2.1',
'django-phonenumber-field==0.6',
'docutils==0.12',
... | from distutils.core import setup
from setuptools import find_packages
dependencies = [
'Django==1.7.1',
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'Pillow==2.5.1',
'PyYAML==3.11',
'Pygments==1.6',
'Sphinx==1.2.2',
'argparse==1.2.1',
'django-phonenumber-field==0.6',
'docutils==0.12',
... | apache-2.0 | Python |
54d3f80e8f9abd6e0ee276bb1fa5b582e404998e | Remove sn and replace with full name | ritstudentgovernment/PawPrints,ritstudentgovernment/PawPrints,ritstudentgovernment/PawPrints,ritstudentgovernment/PawPrints | profile/models.py | profile/models.py | """
models.py
Peter Zujko (pxz3370)
Lukas Yelle (lxy5611)
10/20/16
Update: Nov 18 2016
"""
from django.db import models
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
# Extends User model. Defines sn and notifications for a User.
class Pr... | """
models.py
Peter Zujko (pxz3370)
Lukas Yelle (lxy5611)
10/20/16
"""
from django.db import models
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
# Extends User model. Defines sn and notifications for a User.
class Profile(models.Model):... | apache-2.0 | Python |
5c86838efbb00e24bac6abe6bcd79045f6f31023 | set version | OpenDataNode/odn-ckancommons | setup.py | setup.py | '''
@author: jmc
'''
from setuptools import setup, find_packages
version = '1.2.1'
setup(
name='odn-ckancommons',
version=version,
description="""
CKAN's commons for development of ODN related extensions
""",
long_description="""
""",
classifiers=[], # Get strings from http://pypi.pyth... | '''
@author: jmc
'''
from setuptools import setup, find_packages
version = '1.2.0'
setup(
name='odn-ckancommons',
version=version,
description="""
CKAN's commons for development of ODN related extensions
""",
long_description="""
""",
classifiers=[], # Get strings from http://pypi.pyth... | agpl-3.0 | Python |
0aa31e294ac8d3f238e317127b7d6f2ad70204d8 | add bogus 0 to version so pypi will accept | kata198/indexedredis,kata198/indexedredis | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
if __name__ == '__main__':
with open('README.rst', 'r') as f:
long_description = f.read()
setup(name='indexedredis',
version='2.8.0.0',
packages=['IndexedRedis'],
install_requires=['redis'],
requires=['redis'],
... | #!/usr/bin/env python
from setuptools import setup
if __name__ == '__main__':
with open('README.rst', 'r') as f:
long_description = f.read()
setup(name='indexedredis',
version='2.8.0',
packages=['IndexedRedis'],
install_requires=['redis'],
requires=['redis'],
... | lgpl-2.1 | Python |
fa8ee5d48ca231287593309337fd7b49c1cd3e21 | set url to fix invalid uri error | ARMmbed/valinor | setup.py | setup.py | # Copyright 2014-2015 ARM Limited
#
# Licensed under the Apache License, Version 2.0
# See LICENSE file for details.
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
return None
setup(
name = "va... | # Copyright 2014-2015 ARM Limited
#
# Licensed under the Apache License, Version 2.0
# See LICENSE file for details.
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
return None
setup(
name = "va... | apache-2.0 | Python |
89627d5587c4f89aa359523a48ad92cf1f08c010 | fix spelling | lancekindle/pymm | setup.py | setup.py | from distutils.core import setup
# thanks to http://www.diveintopython3.net/packaging.html
# for the excellent tutorial on packaging python modules
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language ::... | from distutils.core import setup
# thanks to http://www.diveintopython3.net/packaging.html
# for the excellent tutorial on packaging python modules
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language ::... | mit | Python |
c296d15b92b3a2a9a56033567b5fb880e80023cd | update common functions | LiGhT1EsS/npiss,LiGhT1EsS/npiss,LiGhT1EsS/npiss | utils/CommonFunc.py | utils/CommonFunc.py | #!/usr/bin/env python2
# coding: utf-8
# file: CommonFunc.py.py
# time: 16-11-26 下午11:25
import string
import random
__author__ = "lightless"
__email__ = "root@lightless.me"
def format_url(url):
if not url.startswith("http://") and not url.startswith("https://"):
return "http://" + url
else:
... | #!/usr/bin/env python2
# coding: utf-8
# file: CommonFunc.py.py
# time: 16-11-26 下午11:25
__author__ = "lightless"
__email__ = "root@lightless.me"
def format_url(url):
if not url.startswith("http://") and not url.startswith("https://"):
return "http://" + url
else:
return url
| mit | Python |
39b81450cf7074d972891bf0fcecb15705555e6c | Bump userdb version to >=0.3.0 | SUNET/eduid-common | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.3.1b6'
requires = [
'setuptools >= 2.2',
'eduid-userdb >= 0.3.0',
]
# Flavours
webapp_requires = [
'Flask>=0.12,<0.13',
'pysaml2 >= 4.0.3rc1', # version sync with dashboard to avoid pip catastrophes
'redis >= 2.10.5',
'pwgen == 0.4',
... | from setuptools import setup, find_packages
version = '0.3.1b6'
requires = [
'setuptools >= 2.2',
'eduid-userdb >= 0.0.5',
]
# Flavours
webapp_requires = [
'Flask>=0.12,<0.13',
'pysaml2 >= 4.0.3rc1', # version sync with dashboard to avoid pip catastrophes
'redis >= 2.10.5',
'pwgen == 0.4',
... | bsd-3-clause | Python |
f944faf2be75d3d43805753133a045f87f8bbadd | Fix setup.py typos | google/python-adb,maruel/python-adb,erock2112/python-adb,erock2112/python-adb | setup.py | setup.py | # Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | # Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | apache-2.0 | Python |
36f20228469ab43961c2200aac529af716eb51dd | Update version to 3.2.0.3 | ProcessOut/processout-python | setup.py | setup.py | from distutils.core import setup
setup(
name = 'processout',
packages = ['processout', 'processout/exceptions', 'processout/networking'],
version = '3.2.0.3',
description = 'ProcessOut API bindings.',
author = 'ProcessOut',
author_email = 'hi@processout.com',
url = 'https://github.com/processout/processo... | from distutils.core import setup
setup(
name = 'processout',
packages = ['processout', 'processout/exceptions', 'processout/networking'],
version = '3.2.0.2',
description = 'ProcessOut API bindings.',
author = 'ProcessOut',
author_email = 'hi@processout.com',
url = 'https://github.com/processout/processo... | mit | Python |
312af8a586b7238d77242acc7c0fcde934848b85 | Include *.yaml in distribution | jalanb/dotsite | setup.py | setup.py | """Set up the pysyte project"""
import os
from setuptools import find_packages
from setuptools import setup
import pysyte
description = """Pysyte extends Python
Available on github and pypi for ease of access
"""
def package_files(directory):
paths = []
extensions = ('.test', '.tests', '.yaml')
for (p... | """Set up the pysyte project"""
import os
from setuptools import find_packages
from setuptools import setup
import pysyte
description = """Pysyte extends Python
Available on github and pypi for ease of access
"""
def package_files(directory):
paths = []
test_extensions = ('.test', '.tests')
for (path,... | mit | Python |
21e68ba5caff3413f3e1f740b33b679b3ac6399b | BUMP version 0.4.2 | ddiazpinto/django-redsys,ddiazpinto/django-redsys | setup.py | setup.py | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='redsys_gateway',
ve... | import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='redsys_gateway',
ve... | mit | Python |
aa9e254ffd5177ba4168801df60498219c8309ee | Bump version number. | cwant/tessagon | setup.py | setup.py | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tessagon',
version='... | from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tessagon',
version='... | apache-2.0 | Python |
4c3660d176704077170002aa613c2716c68dfe8e | Update version | brianzq/att-bill-splitter | setup.py | setup.py | # -*- coding:utf-8 -*-
"""Setup for att-bill-splitter."""
from setuptools import find_packages, setup
setup(
name='att-bill-splitter',
# packages=['att-bill-splitter'],
version='0.2',
description='Parse AT&T bill and split wireless charges among users.',
author='Brian Zhang',
author_email='lea... | # -*- coding:utf-8 -*-
"""Setup for att-bill-splitter."""
from setuptools import find_packages, setup
setup(
name='att-bill-splitter',
# packages=['att-bill-splitter'],
version='0.1',
description='Parse AT&T bill and split wireless charges among users.',
author='Brian Zhang',
author_email='lea... | mit | Python |
0a5e8cb6b6287f1a6ea4066c83db66da520dd895 | Fix url | datacratic/pymldb | setup.py | setup.py | """setuptools based setup module for pymldb.
based on:
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the lon... | """setuptools based setup module for pymldb.
based on:
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the lon... | isc | Python |
ce81e7fab1ec26476efcfa516f98724760a34705 | add some classifiers for pypi | mixkorshun/django-antispam | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='django-antispam',
version='0.1.0',
description='Anti-spam protection tools for django applications.',
install_requires=[
'django',
'python-akismet',
],
packages=find_packages(exclude=['tests.*', 'tests']),
test_sui... | from setuptools import setup, find_packages
setup(
name='django-antispam',
version='0.1.0',
description='Anti-spam protection tools for django applications.',
install_requires=[
'django',
'python-akismet',
],
packages=find_packages(exclude=['tests.*', 'tests']),
test_sui... | mit | Python |
e9fdb1764a33fe5c81ea822ffc4714313922b162 | update dependency googleapis-common-protos to v1.57.0 (#424) | googleapis/storage-testbench | setup.py | setup.py | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | apache-2.0 | Python |
4d9804a96e448265925e24befa8f5874a0052047 | remove code left from testing | Uname-a/knife_scraper,Uname-a/knife_scraper,Uname-a/knife_scraper | setup.py | setup.py | #!/usr/bin/env python
# coding=utf8
from __future__ import unicode_literals
try:
from setuptools import setup
python_packaging = 'crap'
except ImportError:
from distutils.core import setup
python_packaging = 'shit'
from willie import __version__
import tempfile
import sys
import os
import shutil
requi... | #!/usr/bin/env python
# coding=utf8
from __future__ import unicode_literals
try:
from setuptools import setup
python_packaging = 'crap'
except ImportError:
from distutils.core import setup
python_packaging = 'shit'
from willie import __version__
import tempfile
import sys
import os
import shutil
requi... | mit | Python |
b5066435a5ce4ff0fd3831aa10edf699adc4967a | add rasterio optional 'test' dependency (needed in Python 2) | carlodef/s2p,MISS3D/s2p,mnhrdt/s2p,carlodef/s2p,MISS3D/s2p,MISS3D/s2p,mnhrdt/s2p,MISS3D/s2p | setup.py | setup.py | import subprocess
from setuptools import setup, find_packages
from setuptools.command import develop, build_py
def readme():
with open('README.md') as f:
return f.read()
class CustomDevelop(develop.develop, object):
"""
Class needed for "pip install -e ."
"""
def run(self):
subpr... | import subprocess
from setuptools import setup, find_packages
from setuptools.command import develop, build_py
def readme():
with open('README.md') as f:
return f.read()
class CustomDevelop(develop.develop, object):
"""
Class needed for "pip install -e ."
"""
def run(self):
subpr... | agpl-3.0 | Python |
09f9280b3c12287a257433e9185b936a431074ee | add encoding specification to setup.py | siznax/wptools | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst', encoding='utf8') as f:
readme = f.read()
with open('HISTORY.rst', encoding='utf8') as f:
history = f.read()
setup(
name='wptools',
version='0.4.17',
description='Wikipedia tools (for Humans)',
long_desc... | #!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('HISTORY.rst') as f:
history = f.read()
setup(
name='wptools',
version='0.4.17',
description='Wikipedia tools (for Humans)',
long_description=readme + '\n\n' + history,... | mit | Python |
c670b51e5b56db885ceb08ddaf323b2140b9c3f6 | Update trove classifiers | nickmeharry/django-mysql,adamchainz/django-mysql,arnau126/django-mysql,arnau126/django-mysql,nickmeharry/django-mysql | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import re
from setuptools import setup
import sys
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import re
from setuptools import setup
import sys
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()... | mit | Python |
09a08be45f861823cb08f95883ee1e092a618c37 | Bump version to 0.3.4 | ContinuumIO/flask-ldap-login,ContinuumIO/flask-ldap-login | setup.py | setup.py | from setuptools import setup, find_packages
setup(
name='flask-ldap-login',
version='0.3.4',
author='Continuum Analytics',
author_email='dev@continuum.io',
url='https://github.com/ContinuumIO/flask-ldap-login',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
... | from setuptools import setup, find_packages
setup(
name='flask-ldap-login',
version='0.3.3',
author='Continuum Analytics',
author_email='dev@continuum.io',
url='https://github.com/ContinuumIO/flask-ldap-login',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
... | bsd-2-clause | Python |
4d65095636d66036454678ae5fbeaad3b94b9281 | Bump version | bwarren2/django-basic-blog,bwarren2/django-basic-blog | setup.py | setup.py | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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-basic-blog',
version='0.13',... | import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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-basic-blog',
version='0.12',... | mit | Python |
ff5cd79506634d02f7d1c6e56df01540b6a30de8 | add find_packages() | kaczmarj/neurodocker,kaczmarj/neurodocker | setup.py | setup.py | #!/usr/bin/env python
from setuptools import find_packages, setup
setup(name='neurodocker',
version='dev',
url='https://github.com/kaczmarj/neurodocker',
author='Jakub Kaczmarzyk',
author_email='jakubk@mit.edu',
packages=find_packages(),
install_requires = ['docker>=2.2.0', 'request... | #!/usr/bin/env python
from setuptools import setup
setup(name='neurodocker',
version='dev',
url='https://github.com/kaczmarj/neurodocker',
author='Jakub Kaczmarzyk',
author_email='jakubk@mit.edu',
packages=['neurodocker'],
install_requires = ['docker>=2.2.0', 'requests>=2.0.0'],
... | apache-2.0 | Python |
9c29204c16c9bb1ab6fbcac47f5b8ae4f24ecc61 | use consistent quoting for dependencies | fedora-infra/fedimg,fedora-infra/fedimg | setup.py | setup.py | # This file is part of fedimg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedimg 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.
#
#... | # This file is part of fedimg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedimg 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.
#
#... | agpl-3.0 | Python |
dd4a8115d79d6f2f3530f0670c9f742cd1a1cd65 | Update setup.py (#155) | keras-team/autokeras,keras-team/autokeras,keras-team/autokeras | setup.py | setup.py | from distutils.core import setup
setup(
name='autokeras',
packages=['autokeras'], # this must be the same as the name above
install_requires=['torch==0.4.1', 'torchvision==0.2.1', 'numpy>=1.14.5', 'keras==2.2.2', 'scikit-learn==0.19.1',
'tensorflow>=1.10.0', 'tqdm==4.25.0'],
vers... | from distutils.core import setup
setup(
name='autokeras',
packages=['autokeras'], # this must be the same as the name above
install_requires=['torch==0.4.1', 'torchvision==0.2.1', 'numpy>=1.15.1', 'keras==2.2.2', 'scikit-learn==0.19.1',
'tensorflow>=1.10.1', 'tqdm==4.25.0'],
vers... | apache-2.0 | Python |
b7df3b4f22baece88ad74aaf8426c817c71f3b16 | add python-olm dependency | matrix-org/matrix-python-sdk | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
def read_file(names, encoding='utf-8'):
file_path = os.path.join(here, *names)
if encoding:
with codecs.open(file_path, encoding=encoding) as f:
return f.read()
... | #!/usr/bin/env python
from setuptools import setup
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
def read_file(names, encoding='utf-8'):
file_path = os.path.join(here, *names)
if encoding:
with codecs.open(file_path, encoding=encoding) as f:
return f.read()
... | apache-2.0 | Python |
c21b457eaaedcd5bd3b0b73ab4c70a0e0f14bc95 | Bump version number to 1.0. | aaugustin/django-resto | setup.py | setup.py | import distutils.core
import os
import os.path
# Avoid polluting the .tar.gz with ._* files under Mac OS X
os.putenv('COPYFILE_DISABLE', 'true')
description = ('REplicated STOrage for Django, a file backend '
'that mirrors media files to several servers over HTTP')
with open(os.path.join(os.path.dirna... | import distutils.core
import os
import os.path
# Avoid polluting the .tar.gz with ._* files under Mac OS X
os.putenv('COPYFILE_DISABLE', 'true')
description = ('REplicated STOrage for Django, a file backend '
'that mirrors media files to several servers over HTTP')
with open(os.path.join(os.path.dirna... | bsd-3-clause | Python |
be1d1645fd136d3857399e3527367ed33054853e | remove utf8 chars from setup.py | elemoine/papyrus | setup.py | setup.py | from setuptools import setup, find_packages
import sys, os
version = '0.1'
install_requires = [
'pyramid',
'geojson>=1.0,<=1.0.99'
]
tests_require = install_requires + ['WebTest']
setup(name='papyrus',
version=version,
description="Geospatial Extensions for Pyramid",
classifiers=[], #... | from setuptools import setup, find_packages
import sys, os
version = '0.1'
install_requires = [
'pyramid',
'geojson>=1.0,<=1.0.99'
]
tests_require = install_requires + ['WebTest']
setup(name='papyrus',
version=version,
description="Geospatial Extensions for Pyramid",
classifiers=[], #... | bsd-2-clause | Python |
aea8670bdb8be08bb3a246c7decba5d92d5217cf | Add the wtforms.ext.ssqlalchemy to setup.py. Fixes #9 | clones/wtforms | setup.py | setup.py | #!/usr/bin/env python
import wtforms
import os
import ez_setup
from inspect import getdoc
ez_setup.use_setuptools()
from setuptools import setup, Feature
setup(
name='WTForms',
version=wtforms.__version__,
url='http://wtforms.simplecodes.com/',
download_url='http://wtforms.simplecodes.com/',
lic... | #!/usr/bin/env python
import wtforms
import os
import ez_setup
from inspect import getdoc
ez_setup.use_setuptools()
from setuptools import setup, Feature
setup(
name='WTForms',
version=wtforms.__version__,
url='http://wtforms.simplecodes.com/',
download_url='http://wtforms.simplecodes.com/',
lic... | bsd-3-clause | Python |
240dd3febeb0e0048ad527c5d2ab1c5f6e619131 | fix package data | craigahobbs/chisel | setup.py | setup.py | # Licensed under the MIT License
# https://github.com/craigahobbs/chisel/blob/master/LICENSE
"""
TODO
"""
import re
import os
from setuptools import setup
PACKAGE_NAME = MODULE_NAME = 'chisel'
TESTS_REQUIRE = []
def main():
"""
TODO
"""
with open(os.path.join(os.path.abspath(os.path.dirname(__file... | # Licensed under the MIT License
# https://github.com/craigahobbs/chisel/blob/master/LICENSE
"""
TODO
"""
import re
import os
from setuptools import setup
PACKAGE_NAME = MODULE_NAME = 'chisel'
TESTS_REQUIRE = []
def main():
"""
TODO
"""
with open(os.path.join(os.path.abspath(os.path.dirname(__file... | mit | Python |
3089eae072bd2e871c11251961ec35a09b83dd38 | Change email address and home page. | geertj/python-ad,theatlantic/python-active-directory,sfu-rcg/python-ad,geertj/python-ad,theatlantic/python-active-directory,sfu-rcg/python-ad | setup.py | setup.py | #
# This file is part of Python-AD. Python-AD is free software that is made
# available under the MIT license. Consult the file "LICENSE" that is
# distributed together with this file for the exact licensing terms.
#
# Python-AD is copyright (c) 2007 by the Python-AD authors. See the file
# "AUTHORS" for a complete ove... | #
# This file is part of Python-AD. Python-AD is free software that is made
# available under the MIT license. Consult the file "LICENSE" that is
# distributed together with this file for the exact licensing terms.
#
# Python-AD is copyright (c) 2007 by the Python-AD authors. See the file
# "AUTHORS" for a complete ove... | mit | Python |
a55957996f3e6ae1b7b98bea477e14da2070733e | Update PyPI classifiers and test requirements | yvesalexandre/bandicoot,yvesalexandre/bandicoot,yvesalexandre/bandicoot | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(
name='bandicoot',
author='Yves-Alexandre de Montjoye',
author_email='yvesalexandre@demontjoye.com',
version="0.4",
url="https://github.com/yvesalexandre/bandicoot",
license="MIT",
packages=[
'bandicoot',
'bandicoot.h... | #!/usr/bin/env python
from setuptools import setup
setup(
name='bandicoot',
author='Yves-Alexandre de Montjoye',
author_email='yvesalexandre@demontjoye.com',
version="0.4",
url="https://github.com/yvesalexandre/bandicoot",
license="MIT",
packages=[
'bandicoot',
'bandicoot.h... | mit | Python |
d1182f48c086a1a875a6cf1b489a8aa172032141 | Add a fallback for when pypandoc is not present | Sidesplitter/SVN-Ignore | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
def get_long_description():
try:
import pypandoc
long_description = pypandoc.convert('README.md','rst',format='markdown')
except Exception:
print('WARNING: Failed to convert README.md to rst, pypandoc was not present')
f = open... | #!/usr/bin/env python
from setuptools import setup
import pypandoc
setup(
name='SVN-Ignore',
py_modules=['sr', 'src.cli', 'src.svn_ignore'],
version='1.1.1',
description='An utility that provides .svnignore functionality similar to GIT',
long_description=pypandoc.convert('README.md','rst',format=... | mit | Python |
b39380af3332b36689fa317cf66b526da3691b01 | Add classifiers | haavardp/templateman,haavardp/templateman | setup.py | setup.py | from setuptools import setup
setup(
name="templateman",
version="0.1",
description="Create new files from templates interactively.",
author="Håvard Pettersson",
author_email="mail@haavard.me",
url="https://github.com/haavardp/templateman",
classifiers=[
"License :: OSI Approved :: I... | from setuptools import setup
setup(
name="templateman",
version="0.1",
description="Create new files from templates interactively.",
author="Håvard Pettersson",
author_email="mail@haavard.me",
url="https://github.com/haavardp/templateman",
install_requires=[
"Click",
"Jinja... | isc | Python |
e45976be86c2c8a3fb49176d2281990f4bb9f5bf | Bump the version number | nsi-iff/fluidity | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.2.1'
readme = open('README.rst').read()
setup(name='fluidity-sm',
version=version,
description='Fluidity: state machine implementation for Python objects',
long_description=readme,
classifiers=[
'Develop... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.2.0'
readme = open('README.rst').read()
setup(name='fluidity-sm',
version=version,
description='Fluidity: state machine implementation for Python objects',
long_description=readme,
classifiers=[
'Develop... | mit | Python |
9c4d93e257242315b48e814449eb23f23e0b49bd | Bump version to 0.9.0 | PaulSchweizer/flowpipe | setup.py | setup.py | from setuptools import find_packages, setup
with open('README.md') as stream:
long_description = stream.read()
REQUIREMENTS = [
'ascii-canvas>=1.2.2',
'ordereddict>=1.1',
'strip-hints>=0.1.7',
'futures; python_version == "2.7"'
]
setup(name='flowpipe',
version='0.9.0',
author='Paul Sc... | from setuptools import setup
from setuptools import find_packages
with open('README.md') as stream:
long_description = stream.read()
REQUIREMENTS = [
'ascii-canvas>=1.2.2',
'ordereddict>=1.1',
'strip-hints>=0.1.7',
'futures; python_version == "2.7"'
]
setup(name='flowpipe',
version='0.8.2'... | mit | Python |
57b3bc0d78a800eab99c322e07e396d82174eb77 | change version | GrupoAndradeMartins/totvserprm | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='totvserprm',
version='1.2.0',
description... | # -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='totvserprm',
version='1.1.0',
description... | mit | Python |
4b914161b263ec07200ca6d980756606c3174a8e | Update version | openego/ego.io,openego/ego.io | setup.py | setup.py | #! /usr/bin/env python
# coding: utf-8
from setuptools import find_packages, setup
setup(name='egoio',
author='NEXT ENERGY, Reiner Lemoine Institut gGmbH, ZNES',
author_email='ulf.p.mueller@hs-flensburg.de',
description='ego input/output repository',
version='0.3.2',
url='https://github.... | #! /usr/bin/env python
# coding: utf-8
from setuptools import find_packages, setup
setup(name='egoio',
author='NEXT ENERGY, Reiner Lemoine Institut gGmbH, ZNES',
author_email='ulf.p.mueller@hs-flensburg.de',
description='ego input/output repository',
version='0.3.1',
url='https://github.... | agpl-3.0 | Python |
2e3c65d8240e6f97f55b9e8001a5f202e2f9bc05 | Bump version to 0.0.12 | bdupharm/falcon-autocrud | setup.py | setup.py | from setuptools import setup
version = '1.0.12'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | from setuptools import setup
version = '1.0.11'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='falcon-autocrud',
version=version,
description='Makes RESTful CRUD easier',
... | mit | Python |
58cdec31a38e5671abcc4afcd701ff601d04b7fb | Fix package data | Nikea/scikit-xray,scikit-xray/scikit-xray,giltis/scikit-xray,yugangzhang/scikit-beam,tacaswell/scikit-beam,tacaswell/scikit-xray,scikit-xray/scikit-xray,licode/scikit-beam,celiafish/scikit-xray,licode/scikit-xray,Nikea/scikit-xray,ericdill/scikit-xray,tacaswell/scikit-beam,giltis/scikit-xray,licode/scikit-beam,danielba... | setup.py | setup.py | #!/usr/bin/env python
import setuptools
from distutils.core import setup, Extension
from setupext import ext_modules
import numpy as np
import os
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the ... | #!/usr/bin/env python
import setuptools
from distutils.core import setup, Extension
from setupext import ext_modules
import numpy as np
import os
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the ... | bsd-3-clause | Python |
05196edc526d8843119ae0e8776ff1e02660251d | Prepare version 0.2.1 for merge | cjtapper/solcast-py | setup.py | setup.py | from setuptools import setup
setup(name='solcast',
version='0.2.1',
description='Client library for the Solcast API',
license='MIT',
url='https://github.com/cjtapper/solcast-py',
author='Chris Tapper',
author_email='cj.tapper@gmail.com',
packages=['solcast'],
install_requ... | from setuptools import setup
setup(name='solcast',
version='0.2.1a',
description='Client library for the Solcast API',
license='MIT',
url='https://github.com/cjtapper/solcast-py',
author='Chris Tapper',
author_email='cj.tapper@gmail.com',
packages=['solcast'],
install_req... | mit | Python |
89cd541746cba4bfa31023029d6b937a414f2616 | Install platforms individually | marcelm/xopen | setup.py | setup.py | from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='xopen',
use_scm_version={'write_to': 'src/xopen/_version.py'},
setup_requires=['setuptools_scm'], # Support pip versions that don't know about pyproject.toml
author='Marcel Martin et... | from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='xopen',
use_scm_version={'write_to': 'src/xopen/_version.py'},
setup_requires=['setuptools_scm'], # Support pip versions that don't know about pyproject.toml
author='Marcel Martin et... | mit | Python |
f259b423b6e91477ce4c9a03eaf879e157db9299 | update dependency protobuf to v3.18.1 (#143) | googleapis/storage-testbench | setup.py | setup.py | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | apache-2.0 | Python |
d782f2b4365b87e0d07340cbcb75df2f89cbce00 | update version for new release | janinko/pnc-cli,thauser/pnc-cli,thauser/pnc-cli,jianajavier/pnc-cli,janinko/pnc-cli,jianajavier/pnc-cli,project-ncl/pnc-cli,project-ncl/pnc-cli,thauser/pnc-cli,jianajavier/pnc-cli,janinko/pnc-cli,project-ncl/pnc-cli | setup.py | setup.py | from setuptools import setup
from setuptools import find_packages
import os
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='pnc-cli',
packages=find_packages(exclude=['test*']),
version='0.0.8',
description='CLI wrapper for PNC REST calls',
author = 'Tom Hauser... | from setuptools import setup
from setuptools import find_packages
import os
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='pnc-cli',
packages=find_packages(exclude=['test*']),
version='0.0.7',
description='CLI wrapper for PNC REST calls',
author = 'Tom Hauser... | apache-2.0 | Python |
fba23bcbc782d54e59202dc22a0707ed13f1b9dc | Verify minimum ply version. | calmjs/calmjs.parse | setup.py | setup.py | from setuptools import setup, find_packages
version = '0.0.0'
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: JavaScript
Programming Language :: Python :: 2.7
Programming Language :: Pyth... | from setuptools import setup, find_packages
version = '0.0.0'
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: JavaScript
Programming Language :: Python :: 2.7
Programming Language :: Pyth... | mit | Python |
68eda66724e2bed188780341da3eb65a580fa8ee | fix setup.py | trhura/python-myanmar | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = []
setup_requirements = [
'pytest-runner',
]
test_requirements = [
'pytest',
]
setup(
author="Thura H... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = []
setup_requirements = [
'pytest-runner',
]
test_requirements = [
'pytest',
]
setup(
author="Thura Hl... | mit | Python |
b7d44d8d377b97dd267dc97562425a76484c2649 | Move to v1.7.0 | controversial/livejson | setup.py | setup.py | from setuptools import setup
setup(
name="livejson",
py_modules=["livejson"],
version="1.7.0",
description="Bind Python objects to JSON files",
long_description=("An interface to transparently bind Python objects to "
"JSON files so that all changes made to the object are "
... | from setuptools import setup
setup(
name="livejson",
py_modules=["livejson"],
version="1.6.2",
description="Bind Python objects to JSON files",
long_description=("An interface to transparently bind Python objects to "
"JSON files so that all changes made to the object are "
... | mit | Python |
446d98f8154c0f1f465c94ba3eef20eecf98c88b | Use string, not list | jhamrick/bayesian-quadrature | setup.py | setup.py | #!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy as np
from numpy.distutils.system_info import get_info
# try to find LAPACK and BLAS
blas_info = get_info('blas_opt')
try:
# OS X
blas_include = blas_info['extra_com... | #!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy as np
from numpy.distutils.system_info import get_info
# try to find LAPACK and BLAS
blas_info = get_info('blas_opt')
try:
# OS X
blas_include = blas_info['extra_com... | mit | Python |
c798eb44742ddd9effd4ac24704250af3f8f3fa3 | fix setup script | dfdeshom/solrcloudpy,relwell/solrcloudpy,dfdeshom/solrcloudpy,relwell/solrcloudpy | setup.py | setup.py | try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "solrcloudpy",
version = "1.0",
description = "Solr4.0 client",
author = 'Didier Deshommes',
author_email = 'd... | try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "solrcloudpy",
version = "1.0",
description = "Solr4.0 client",
author = 'Didier Deshommes',
... | bsd-3-clause | Python |
49ce9e908c40da968537b8e87442fd4e503b958f | set version to 0.4.1-SNAPSHOT | OpenDataNode/odn-ckancommons | setup.py | setup.py | '''
@author: jmc
'''
from setuptools import setup, find_packages
version = '0.4.1-SNAPSHOT'
setup(
name='odn-ckancommons',
version=version,
description="""
CKAN's commons for development of ODN related extensions
""",
long_description="""
""",
classifiers=[], # Get strings from http://... | '''
@author: jmc
'''
from setuptools import setup, find_packages
version = '0.4.0-SNAPSHOT'
setup(
name='odn-ckancommons',
version=version,
description="""
CKAN's commons for development of ODN related extensions
""",
long_description="""
""",
classifiers=[], # Get strings from http://... | agpl-3.0 | Python |
085ad8285e795019909b7fe58fe1c67b2f7bd92a | Revert "version 0.7.3 - fix DateFields" | multmeio/django-hstore-flattenfields,multmeio/django-hstore-flattenfields | setup.py | setup.py | # encoding: utf-8
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
re... | # encoding: utf-8
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
re... | bsd-3-clause | Python |
a9d0eb1e618b984e3e2ff04eefd61f8a4f8126a8 | include files needed for testing | ardydedase/pycouchbase,ardydedase/pycouchbase | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', ... | bsd-3-clause | Python |
3f2319a5794fba204d57096efea8f027b4f05d39 | Update neo4j-driver to 1.6.0 | DLR-SC/prov-db-connector,DLR-SC/prov-db-connector | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
tests_require = [
'coverage',
'coveralls'
]
docs_require = [
'Sphinx>=1.3.5',
'recommonmark>=0.4.0',
'sphinx-rtd-theme>=0.1.9',
'sphinxcontrib-napo... | #!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
tests_require = [
'coverage',
'coveralls'
]
docs_require = [
'Sphinx>=1.3.5',
'recommonmark>=0.4.0',
'sphinx-rtd-theme>=0.1.9',
'sphinxcontrib-napo... | apache-2.0 | Python |
68cbeaa9805c2ecf40336bfc9c564d1cd8dadd8a | Update dateutil dependency | michaelkuty/django-oscar-accounts,michaelkuty/django-oscar-accounts,django-oscar/django-oscar-accounts,Jannes123/django-oscar-accounts,Jannes123/django-oscar-accounts,django-oscar/django-oscar-accounts | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
from accounts import VERSION
setup(name='django-oscar-accounts',
version=VERSION,
author="David Winterbottom",
author_email="david.winterbottom@tangentlabs.co.uk",
description="Managed accounts for django-oscar",
long_des... | #!/usr/bin/env python
from setuptools import setup, find_packages
from accounts import VERSION
setup(name='django-oscar-accounts',
version=VERSION,
author="David Winterbottom",
author_email="david.winterbottom@tangentlabs.co.uk",
description="Managed accounts for django-oscar",
long_des... | bsd-3-clause | Python |
13deb654b6a70c79ab43ac958b41e5700b6d8238 | use setuptools_scm | tldr-pages/tldr-python-client | setup.py | setup.py | import sys
from setuptools import setup
setup_requires = ['setuptools_scm']
if sys.argv[-1] in ('sdist', 'bdist_wheel'):
setup_requires.append('setuptools-markdown')
setup(
name='tldr',
author='Felix Yan',
author_email='felixonmars@gmail.com',
url='https://github.com/tldr-pages/tldr-python-client'... | 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='felixonmars@gmail.com',
url='https://github.com/tldr-pages/tldr-p... | mit | Python |
7b67d422caa539a840fcb65ed81849e988c1df6d | Prepare for release 0.1.0 | alphagov/dockdev | 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 = "dockdev",
version = "0.1.0",
author = "Ian Maddison",
author_email = "ian.maddison@digital.cabinet-office.gov.uk",
description = ("A simple development setu... | import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "dockdev",
version = "0.0.9",
author = "Ian Maddison",
author_email = "ian.maddison@digital.cabinet-office.gov.uk",
description = ("A simple development setu... | mit | Python |
6bb1da32748b26ec320dc3718f2f8a400a4e4d29 | Bump version to 0.1.3 | bwhmather/verktyg-server | setup.py | setup.py | """
Verktyg Server
==============
Simple WSGI server.
"""
from setuptools import setup, find_packages
extras_require = {
'SSL': [
'cryptography',
]
}
setup(
name='verktyg-server',
version='0.1.3',
url='https://github.com/bwhmather/verktyg-server',
license='BSD',
author='Ben Math... | """
Verktyg Server
==============
Simple WSGI server.
"""
from setuptools import setup, find_packages
extras_require = {
'SSL': [
'cryptography',
]
}
setup(
name='verktyg-server',
version='0.1.2',
url='https://github.com/bwhmather/verktyg-server',
license='BSD',
author='Ben Math... | bsd-3-clause | Python |
4975df993b4c05cf8108a278d941852fa959cd2c | Change qt5reactor-fork dependency to qt5reactor. | estan/gauges | setup.py | setup.py | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://github.com/... | from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass={'build_ui': build_ui}
except ImportError:
cmdclass={}
setup(
name='gauges',
version='0.1',
description='PyQt5 + Autobahn/Twisted version of Gauges Crossbar demo',
url='http://github.com/... | mit | Python |
42e5f3c3459a2934dac333b633d144ae8e57429a | enable testing reqs | TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro,TRI-AMDD/piro | setup.py | setup.py | from setuptools import setup, find_packages
import warnings
DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics"
LONG_DESCRIPTION = """
The piro software package enables prediction and planning of synthesis pathways
and determination of pareto-optimal frontiers for synt... | from setuptools import setup, find_packages
import warnings
DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics"
LONG_DESCRIPTION = """
The piro software package enables prediction and planning of synthesis pathways
and determination of pareto-optimal frontiers for synt... | apache-2.0 | Python |
02f1ece83332763951207e632efbe64fd03cc6d0 | set up correct version number | CodyKochmann/battle_tested,CodyKochmann/battle_tested | setup.py | setup.py | from distutils.core import setup
setup(
name = 'battle_tested',
packages = ['battle_tested'], # this must be the same as the name above
version = '2017.7.14.1',
install_requires=["hypothesis", "stricttuple"],
description = 'automated function fuzzer based on hypothesis to easily test production code',
autho... | from distutils.core import setup
setup(
name = 'battle_tested',
packages = ['battle_tested'], # this must be the same as the name above
version = '2017.7.13.1',
install_requires=["hypothesis", "stricttuple"],
description = 'automated function fuzzer based on hypothesis to easily test production code',
autho... | mit | Python |
37a66a34bf7341260408d496ff650a65098f6f79 | Use correct version format | crgwbr/django-oscar-api,regulusweb/django-oscar-api | setup.py | setup.py | from setuptools import setup, find_packages
__version__ = "1.0.0"
setup(
# package name in pypi
name='django-oscar-api',
# extract version from module.
version=__version__,
description="REST API module for django-oscar",
long_description=open('README.rst').read(),
classifiers=[
'D... | from setuptools import setup, find_packages
__version__ = "1.0"
setup(
# package name in pypi
name='django-oscar-api',
# extract version from module.
version=__version__,
description="REST API module for django-oscar",
long_description=open('README.rst').read(),
classifiers=[
'De... | bsd-3-clause | Python |
554a7d7281e84909c9fd69be6d4ae0a80ad8fc35 | update setup.py | mirnylab/cooler | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = """\
Development Status :: 4 - Beta
Operating System :: OS Independent
Programming Language :: Python
Programming La... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = """\
Development Status :: 2 - Pre-Alpha
Operating System :: OS Independent
Programming Language :: Python
Programmi... | bsd-3-clause | Python |
84cf39918e7c21fb1e1fbab06d782d38e283613a | update pandas version in setup.py (#109) | modin-project/modin,modin-project/modin | setup.py | setup.py | from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="modin",
version="0.1.2",
description="Modin: Pandas on Ray - Make your ... | from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="modin",
version="0.1.2",
description="Modin: Pandas on Ray - Make your ... | apache-2.0 | Python |
e139c2c6b477863fdfe359c4c40f423ba18fcfa0 | Remove unittest2, we have 2.7 now | ZeitOnline/zeit.content.cp,ZeitOnline/zeit.content.cp | setup.py | setup.py | # Copyright (c) 2009-2012 gocept gmbh & co. kg
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='zeit.content.cp',
version='2.1.2.dev0',
author='gocept',
author_email='mail@gocept.com',
url='https://intra.gocept.com/projects/projects/zeit-cms',
description="""\
"... | # Copyright (c) 2009-2012 gocept gmbh & co. kg
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name='zeit.content.cp',
version='2.1.2.dev0',
author='gocept',
author_email='mail@gocept.com',
url='https://intra.gocept.com/projects/projects/zeit-cms',
description="""\
"... | bsd-3-clause | Python |
42369618e97035645b7c4c92ada1e68c6e3b462c | add extra level of depth to dataset wildcard (#599) | 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):
return open(os.path.join(here, fname)).read()
extra_files = {'WrightTools': ['datasets', 'datasets/*', 'datasets/*/*', 'datasets/*/*/*',
... | #! /usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
return open(os.path.join(here, fname)).read()
extra_files = {'WrightTools': ['datasets', 'datasets/*', 'datasets/*/*', 'datasets/*/*/*',
... | mit | Python |
e2e9722bfee7f2b053453df865ceb10f82552de9 | Fix requirements for "setup.py test". | ajdavis/pymongo-mockup-tests | setup.py | setup.py | #!/usr/bin/env python
# Copyright 2015 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | #!/usr/bin/env python
# Copyright 2015 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | apache-2.0 | Python |
0436d3582a3399572faa5e01631c05fcd129d0a1 | Create Python packages for ITK 5.0.0.post1 | KitwareMedical/ITKUltrasound,thewtex/ITKUltrasound,thewtex/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,thewtex/ITKUltrasound | setup.py | setup.py | from __future__ import print_function
from os import sys
from skbuild import setup
setup(
name='itk-ultrasound',
version='0.2.3',
author='Matthew McCormick',
author_email='matt.mccormick@kitware.com',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMe... | from __future__ import print_function
from os import sys
from skbuild import setup
setup(
name='itk-ultrasound',
version='0.2.2',
author='Matthew McCormick',
author_email='matt.mccormick@kitware.com',
packages=['itk'],
package_dir={'itk': 'itk'},
download_url=r'https://github.com/KitwareMe... | apache-2.0 | Python |
cd70ca2deb17a8ad2c86a59b58512f1eca15ae0b | Bump version to 0.1.3. | serathius/sanic-sentry | setup.py | setup.py | #!/usr/bin/env python
from os import path as op
from setuptools import setup
def _read(fname):
try:
return open(op.join(op.dirname(__file__), fname)).read()
except IOError:
return ''
install_requires = [
l for l in _read('requirements.txt').split('\n')
if l and not l.startswith('#')... | #!/usr/bin/env python
from os import path as op
from setuptools import setup
def _read(fname):
try:
return open(op.join(op.dirname(__file__), fname)).read()
except IOError:
return ''
install_requires = [
l for l in _read('requirements.txt').split('\n')
if l and not l.startswith('#')... | mit | Python |
f62c32334e287cd09e1c0f5d4462bbb81268c187 | update to version 2.20 | finish06/unifi-api,finish06/pyunifi | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup
setup(name='pyunifi',
version='2.20.0',
description='API for Ubiquity Networks UniFi controller',
author='Caleb Dunn',
author_email='finish.06@gmail.com',
url='https://github.com/finish06/unifi-api',
packages=['pyunifi'],
scr... | #!/usr/bin/env python
from setuptools import setup
setup(name='pyunifi',
version='2.19.0',
description='API for Ubiquity Networks UniFi controller',
author='Caleb Dunn',
author_email='finish.06@gmail.com',
url='https://github.com/finish06/unifi-api',
packages=['pyunifi'],
scr... | mit | Python |
31fa283f7eddc9b1aae3730b97c861d74cc591ef | fix importing version in setup.py (#16) | mintar/ros-infrastructure-rosdistro | setup.py | setup.py | #!/usr/bin/env python
from setuptools import setup, find_packages
exec(open(os.path.join(os.path.dirname(__file__), 'src', 'rosdistro', '_version.py')).read())
setup(
name='rosdistro',
version=__version__,
install_requires=['argparse', 'catkin_pkg', 'distribute', 'rospkg', 'PyYAML'],
packages=find_pa... | #!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('src/rosdistro/_version.py').read())
setup(
name='rosdistro',
version=__version__,
install_requires=['argparse', 'catkin_pkg', 'distribute', 'rospkg', 'PyYAML'],
packages=find_packages('src'),
package_dir={'': 'src'},
... | bsd-3-clause | Python |
03e1e72b055bfe0c046b7b36033b761cdc204c86 | update setup | ryninho/session2s3 | setup.py | setup.py | from distutils.core import setup
setup(
name = 'session2s3',
packages = ['session2s3'],
version = '0.1a1',
description = 'Save your Python session to S3',
author = 'Eric Rynerson',
author_email = 'eric.rynerson@gmail.com',
license='MIT',
url = 'https://github.com/ryninho/session2s3',
download_url = 'h... | from distutils.core import setup
setup(
name = 'session2s3',
packages = ['session2s3'], # this must be the same as the name above
version = '0.1',
description = 'A random test lib',
author = 'Eric Rynerson',
author_email = 'eric.rynerson@gmail.com',
url = 'https://github.com/ryninho/session2s3',
downloa... | mit | Python |
1b8b20ca1360d812e54fa3cc66805ea9ef8a47f6 | Remove module from setup.py | markpasc/pywhich | setup.py | setup.py | from distutils.core import setup
setup(
name='pywhich',
version='1.1',
description='Find where Python modules are installed in the current Python',
scripts=['bin/pywhich'],
author='Mark Paschal',
author_email='markpasc@markpasc.org',
url='https://github.com/markpasc/pywhich',
classifier... | from distutils.core import setup
setup(
name='pywhich',
version='1.1',
description='Find where Python modules are installed in the current Python',
py_modules=['pywhich'],
scripts=['bin/pywhich'],
)
| mit | Python |
c35b22397fec8f78bf3660310c3f19bf471079a7 | correct name in setup.py (#2) | googleapis/python-media-translation,googleapis/python-media-translation | setup.py | setup.py | # -*- coding: utf-8 -*-
# Copyright (C) 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable ... | # -*- coding: utf-8 -*-
# Copyright (C) 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable ... | apache-2.0 | Python |
3bdc90e41934da62a1fd9dbc1d529c356b7d8232 | Bump version to 0.5.0 | djmitche/build-relengapi,mozilla-releng/services,lundjordan/build-relengapi,andrei987/services,mozilla/build-relengapi,lundjordan/services,La0/mozilla-relengapi,Callek/build-relengapi,djmitche/build-relengapi,garbas/mozilla-releng-services,andrei987/services,srfraser/services,andrei987/services,garbas/mozilla-releng-se... | setup.py | setup.py | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
data_patterns = [
'templates/**.html',
'static/**.html',
'static/**.jpg',
'static/**.css',
'static/**.js',
'static/**.txt',
]
setup(name='relengapi-clobberer',
version='0.5.0',
description='The RelengAPI clobb... | #!/usr/bin/env python
import os
from setuptools import setup, find_packages
data_patterns = [
'templates/**.html',
'static/**.html',
'static/**.jpg',
'static/**.css',
'static/**.js',
'static/**.txt',
]
setup(name='relengapi-clobberer',
version='0.4.1',
description='The RelengAPI clobb... | mpl-2.0 | Python |
9588186c3297cf684fcf97562797668efada9e9d | add description field | aio-libs/aiobotocore | setup.py | setup.py | import os
import re
import sys
from setuptools import setup, find_packages
install_requires = ['botocore==1.5.0', 'aiohttp>=1.2.0']
PY_VER = sys.version_info
if not PY_VER >= (3, 4, 1):
raise RuntimeError("aiobotocore doesn't support Python earlier than 3.4")
def read(f):
return open(os.path.join(os.path.... | import os
import re
import sys
from setuptools import setup, find_packages
install_requires = ['botocore==1.5.0', 'aiohttp>=1.2.0']
PY_VER = sys.version_info
if not PY_VER >= (3, 4, 1):
raise RuntimeError("aiobotocore doesn't support Python earlier than 3.4")
def read(f):
return open(os.path.join(os.path.... | apache-2.0 | Python |
a048d417f7cb8781e1a937ad87ec52a7b8084244 | update version number for PyPI | selik/xport,selik/xport | setup.py | setup.py | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='xport',
version='0.3.3',
author='Michael Selik',
author_email='michael.selik@gmail.com',
url='https://github.com/... | #!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='xport',
version='0.3.1',
author='Michael Selik',
author_email='michael.selik@gmail.com',
url='https://github.com/... | mit | Python |
462618c631000a4948efd771822a5810510b5b37 | Add 'cli' package in test_data. Holds items needed to test wr_hier cli | tanghaibao/goatools,tanghaibao/goatools | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""Setup for PyPI usage."""
import os.path as op
from glob import glob
from setuptools import setup
from setup_helper import SetupHelper
NAME = "goatools"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: ... | #!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""Setup for PyPI usage."""
import os.path as op
from glob import glob
from setuptools import setup
from setup_helper import SetupHelper
NAME = "goatools"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: ... | bsd-2-clause | Python |
11b9e2a04526e409006786407c7abc6d163c738b | Update setup.py to include bs4 | mopidy/mopidy-youtube,dz0ny/mopidy-youtube | setup.py | setup.py | from __future__ import unicode_literals
import re
from setuptools import find_packages, setup
def get_version(filename):
content = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content))
return metadata['version']
setup(
name='Mopidy-Youtube', # Casing as originally... | from __future__ import unicode_literals
import re
from setuptools import find_packages, setup
def get_version(filename):
content = open(filename).read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content))
return metadata['version']
setup(
name='Mopidy-Youtube', # Casing as originally... | apache-2.0 | Python |
00e37ad5a0ef2da6d78962e40cc95c421c5162e2 | Set version | duh386/django-filebrowser,duh386/django-filebrowser,duh386/django-filebrowser | setup.py | setup.py | import os
import codecs
from setuptools import setup, find_packages
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-filebrowser',
version='3.6.0a1',
description='Media-Management with Grappelli',
long_description = read('README.rst'),
... | import os
import codecs
from setuptools import setup, find_packages
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-filebrowser',
version='3.5.0',
description='Media-Management with Grappelli',
long_description = read('README.rst'),
... | bsd-3-clause | Python |
af62fff56c6504a0793ecd2ab5172fe34a8152cf | Bump version: 4.3.0 → 4.4.0 | davesque/django-rest-framework-simplejwt,davesque/django-rest-framework-simplejwt | setup.py | setup.py | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | #!/usr/bin/env python
from setuptools import (
setup,
find_packages,
)
extras_require = {
'test': [
'cryptography',
'pytest-cov',
'pytest-django',
'pytest-xdist',
'pytest',
'tox',
],
'lint': [
'flake8',
'pep8',
'isort',
],
... | mit | Python |
75228cef16a6f2e135757475632f25ce3ef447fb | Fix issue with PIP 10 | johnwheeler/flask-ask | setup.py | setup.py | """
Flask-Ask
-------------
Easy Alexa Skills Kit integration for Flask
"""
from setuptools import setup
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.star... | """
Flask-Ask
-------------
Easy Alexa Skills Kit integration for Flask
"""
from setuptools import setup
from pip.req import parse_requirements
setup(
name='Flask-Ask',
version='0.9.7',
url='https://github.com/johnwheeler/flask-ask',
license='Apache 2.0',
author='John Wheeler',
author_email='j... | apache-2.0 | Python |
3f67f0fe15b1bdd908942aaae8bd4dba15db30e1 | Remove unused class | NCI-Cloud/reporting-api,NeCTAR-RC/reporting-api,NCI-Cloud/reporting-api,NeCTAR-RC/reporting-api | swaggermapper.py | swaggermapper.py | #!/usr/bin/python
import json
from routes.middleware import RoutesMiddleware
from routes import Mapper
class SwaggerMapper(Mapper):
"""
A WSGI URL router middleware that automatically configures itself
using a Swagger JSON API specification.
"""
# The Swagger specification v2.0 mandates use of only these method... | #!/usr/bin/python
import json
from routes.middleware import RoutesMiddleware
from routes import Mapper
class SwaggerMapper(Mapper):
"""
A WSGI URL router middleware that automatically configures itself
using a Swagger JSON API specification.
"""
# The Swagger specification v2.0 mandates use of only these method... | apache-2.0 | Python |
ea07938a2e8e3da9d667d3c32ed796a6a216c485 | fix setup file infomation. | donilan/python-genthemall,donilan/python-genthemall | setup.py | setup.py | #!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
from genthemall.core import get_version
# Find template files and package them
data_files = []
for dirpath, dirnames, filenames in os.walk('genthemall'):
files = []
for f in filenames:
if f.endswith('.gt'):
... | #!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
from genthemall.core import get_version
# Find template files and package them
data_files = []
for dirpath, dirnames, filenames in os.walk('genthemall'):
files = []
for f in filenames:
if f.endswith('.gt'):
... | apache-2.0 | Python |
2a27dca8173408e78b536a3e955f736b7b696e15 | bump version | daytonb/webdiff,danvk/webdiff,daytonb/webdiff,daytonb/webdiff,daytonb/webdiff,danvk/webdiff,danvk/webdiff,danvk/webdiff,danvk/webdiff | setup.py | setup.py | from setuptools import setup, find_packages
setup(name='webdiff',
version='0.2.1',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='danvdk@gmail.com',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
... | from setuptools import setup, find_packages
setup(name='webdiff',
version='0.2',
description='Two-column web-based git difftool',
author='Dan Vanderkam',
author_email='danvdk@gmail.com',
url='https://github.com/danvk/webdiff/',
entry_points={
'console_scripts': [
... | apache-2.0 | Python |
45ae0f6b40262837f8648d310d8db04922805e39 | Bump version number. | markstory/lint-review,zoidbergwill/lint-review,adrianmoisey/lint-review,markstory/lint-review,zoidbergwill/lint-review,markstory/lint-review,zoidbergwill/lint-review,adrianmoisey/lint-review | setup.py | setup.py | from setuptools import setup, find_packages
PACKAGE_NAME = "lintreview"
VERSION = "0.0.18"
requirements = open('./requirements.txt', 'r')
setup(
name=PACKAGE_NAME,
version=VERSION,
description="""
Lint Review, an automated code review tool that integrates with github.
Integrates with the github A... | from setuptools import setup, find_packages
PACKAGE_NAME = "lintreview"
VERSION = "0.0.17"
requirements = open('./requirements.txt', 'r')
setup(
name=PACKAGE_NAME,
version=VERSION,
description="""
Lint Review, an automated code review tool that integrates with github.
Integrates with the github A... | mit | Python |
6781e48c466aa20810a0fa21144a6d4f3b709e92 | change name | legoktm/picasa | setup.py | setup.py | """
picasa
----------
subdown2 is a script that automatically downloads all images from a Picasa Web Album.
"""
from setuptools import setup, find_packages
setup(
name='picasa-downloader',
version='0.1',
author='Kunal Mehta',
author_email='legoktm@gmail.com',
packages=find_packages(),
url='ht... | """
picasa
----------
subdown2 is a script that automatically downloads all images from a Picasa Web Album.
"""
from setuptools import setup, find_packages
setup(
name='picasa',
version='0.1',
author='Kunal Mehta',
author_email='legoktm@gmail.com',
packages=find_packages(),
url='https://githu... | mit | Python |
c519deb1ead444a3e69b83beaa6e4d8b71251238 | add unipath to install_requires | zokis/zsplitjoin | setup.py | setup.py | #!/usr/bin/env python
# coding: utf-8
from distutils.core import setup
setup(
name='zsplitjoin',
version='0.1.0',
description='Simple split and join files.',
long_description=open('README.md').read(),
author='Marcelo Fonseca Tambalo',
author_email='marcelo.zokis@gmail.com',
url='https://gi... | #!/usr/bin/env python
# coding: utf-8
from distutils.core import setup
setup(
name='zsplitjoin',
version='0.1.0',
description='Simple split and join files.',
long_description=open('README.md').read(),
author='Marcelo Fonseca Tambalo',
author_email='marcelo.zokis@gmail.com',
url='https://gi... | mit | Python |
06f5f3b680a3626b9715d30b7ac8b58489765795 | Delete end of the prestation aeeh | antoinearnoud/openfisca-france,sgmap/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france | setup.py | setup.py | #! /usr/bin/env python
# -*- coding: utf-8 -*-
""" -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '3.0.1',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Developm... | #! /usr/bin/env python
# -*- coding: utf-8 -*-
""" -- a versatile microsimulation free software"""
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '3.0.0',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Developm... | agpl-3.0 | Python |
a39019b62a0281e7bd046fc614e42332fd3b92bd | Add MiniMock to the list of unittest dependencies. | jpvanhal/cloudsizzle,jpvanhal/cloudsizzle | setup.py | setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'cloudsizzle',
fullname = 'CloudSizzle',
version = '0.1',
author = '',
author_email = '',
license = 'MIT',
url = 'http://cloudsizzle.cs.hut.fi',
description = 'Social study... | mit | Python |
23d5e494d3e7a1448982e33e7865301db94571c0 | Bump to version 0.1.0 | nosamanuel/dj-queryset-manager | setup.py | setup.py | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dj-queryset-manager',
version='0.1.0',
url='https://github.com/nosamanuel/dj-queryset-manager',
license=open('LICENSE').read(),
author='Noah Seger',
author_email='nosamanuel@gmail.com.com',
description='Stop writing Django q... | # -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dj-queryset-manager',
version='0.1.0-alpha',
url='https://github.com/nosamanuel/dj-queryset-manager',
license=open('LICENSE').read(),
author='Noah Seger',
author_email='nosamanuel@gmail.com.com',
description='Stop writing Dj... | bsd-3-clause | Python |
bc61103e1335b44586d3518edb299876c05ebe6a | Update setup requirements. | ZeitOnline/zeit.retresco | setup.py | setup.py | from setuptools import setup, find_packages
import os.path
def project_path(*names):
return os.path.join(os.path.dirname(__file__), *names)
setup(
name='zeit.retresco',
version='1.7.4.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
desc... | from setuptools import setup, find_packages
import os.path
def project_path(*names):
return os.path.join(os.path.dirname(__file__), *names)
setup(
name='zeit.retresco',
version='1.7.4.dev0',
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
url='http://www.zeit.de/',
desc... | bsd-3-clause | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.