コード例 #1
0
ファイル: setup.py プロジェクト: BCJongbloets/d_code
#!/usr/bin/env python

from distutils.core import setup, find_packages

setup(name='CellPickerpacage',
      version='1.0',
      description='Cell Picker GUI',
      author='Andrew, Konti',
      author_email='[email protected], [email protected]',
      url='https://github.com/dattalab/dattacode/tree/master/imaging/segmentation',
      packages=find_packages(),
      install_requires=[
       "PySide >= 1.1.1",
       "numpy >= 1.7.1",
       "matplotlib >= 1.2.1",
       "scipy >= 0.12.0",
       "pymorph >= 0.96",
       "mahotas >= 1.0",
       "sklearn >= 0.13.1",
      ],
     )
コード例 #2
0
ファイル: setup.py プロジェクト: Chipsterjulien/surveillance
# https://packaging.python.org/tutorials/packaging-projects/
# https://wiki.labomedia.org/index.php/Cr%C3%A9er_son_propre_package_python
# https://medium.com/38th-street-studios/creating-your-first-python-package-181c5e31f3f8

# Test unitaire:
# https://docs.python.org/3.7/library/test.html#writing-unit-tests-for-the-test-package


# from setuptools import setup, find_packages
from distutils.core import setup, find_packages


setup(
    name='surveillance',
    version='0.0.1',
    author='Freyermuth Julien',
    author_email="",
    description="A basic motion's detector",
    url='',
    download_url='',
    license='BSD',
    keywords=["motion", "opencv"],
    classifiers=[],
    py_modules=[],
    DATA_FILES=[('/etc/surveillance', ['cfg/surveillance_sample.conf'])],
    SCRIPTS=['surveillance'],
    include_package_data=True,
    requires=['imutils', 'opencv-python'],
    packages=find_packages(),
)
コード例 #3
0
ファイル: setup.py プロジェクト: florentin/django-niftyurls
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup, find_packages

setup(
    name='django-niftyurls',
    version='1.0.0-alpha',
    description='A popurls style Django application.',
    author='Florentin Sardan',
    author_email='*****@*****.**',
    long_description=open('README.md', 'r').read(),
    url='http://www.betterprogramming.com/',
	packages=find_packages(exclude=('demo_project')),
    packages=[
        'niftyurls',
    ],
	install_requires = [
        'Django>=1.2.1',
        'PIL',
        'feedparser',
    ],
    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 :: Utilities'
    ],
コード例 #4
0
        include_dirs=include_dirs,
        libraries=libraries)

ext_modules = [
    iwconfig,
    iwlist,
]

settings = {
    'name': 'iwlib',
    'version': '1.3.1',
    'description': "Python module to interface with iwlib",
    'long_description': open('README.rst').read(),
    'author': 'Nathan Hoad',
    'author_email': '*****@*****.**',
    'url': 'https://bitbucket.org/getoffmalawn/python-iwlib',
    'license': 'GPLv2',
    'classifiers': (
        # 'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'Natural Language :: English',
        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.7',
    ),
    'ext_modules': ext_modules,
    'packages': find_packages(),
}

setup(**settings)
コード例 #5
0
ファイル: setup.py プロジェクト: slevin886/ebaydata
#!/usr/bin/env python

from distutils.core import setup, find_packages

setup(name='ebaydata',
      version='1.0',
      description='Pulls ebay data for given keywords and returns an easily analysed csv or dataframe with no embedded objects',
      author='Scott Levin',
      author_email='*****@*****.**',
      keywords='ebay data analysis analyze shop shopping product info easy',
      url='https://github.com/slevin886/ebaydata',
      packages=[find_packages()],
      include_package_data=True,
      zip_safe=False,
      install_requires=['ebaysdk==2.1.5', 'pandas==0.24.2', 'tqdm==4.31.1']
      license='MIT'
      )
コード例 #6
0
ファイル: setup.py プロジェクト: nathan-hoad/python-iwlib
    ),
    Extension(
        "iwlib.iwlist", sources=["iwlib/iwlist.c", "iwlib/utils.c"], include_dirs=include_dirs, libraries=libraries
    ),
    Extension("iwlib.utils", sources=["iwlib/utils.c"], include_dirs=include_dirs, libraries=libraries),
]

settings = {
    "name": "iwlib",
    "version": "1.5",
    "description": "Python module to interface with iwlib",
    "long_description": open("README.rst").read(),
    "author": "Nathan Hoad",
    "author_email": "*****@*****.**",
    "url": "https://github.com/nathan-hoad/python-iwlib",
    "license": "GPLv2",
    "classifiers": (
        # 'Development Status :: 5 - Production/Stable',
        "Intended Audience :: Developers",
        "Natural Language :: English",
        "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
    ),
    "ext_modules": ext_modules,
    "packages": find_packages(),
}

setup(**settings)
コード例 #7
0
# !/usr/bin/env python

from distutils.core import setup, find_packages

setup(
    name='Template',
    version='0.1dev',
    packages=['template', find_packages()],
    license='',
    long_description=open('README.md').read(),
)
コード例 #8
0
ファイル: setup.py プロジェクト: dareljohnson/checkexpect-py
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
    long_description = f.read()

setup(
  # Your Package name
  name = 'checkexpect',

  # You can just specify the packages manually here if your project is
  # simple. Or you can use find_packages().
  # Your Included Package name, must be the same as the name above
  packages=find_packages(exclude=['contrib', 'docs', 'tests*']),

  # List run-time dependencies here.  These will be installed by pip when
  # your project is installed. For an analysis of "install_requires" vs pip's
  # requirements files see:
  # https://packaging.python.org/en/latest/requirements.html
  install_requires=['colorama'],

  # Versions should comply with PEP440.  For a discussion on single-sourcing
  # the version across setup.py and the project code, see
  # https://packaging.python.org/en/latest/single_source_version.html
  version = '1.0.19',

  # Project's description
  description = 'checkexpect is a simple unit testing framework for python development',
  long_description=long_description,
コード例 #9
0
ファイル: setup.py プロジェクト: seamustuohy/curator
#
# This file is part of curator
# Copyright © 2016 seamus tuohy, <*****@*****.**>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# This program 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 included LICENSE file for details.

from distutils.core import setup, find_packages

setup(name='curator',
      version='0.0.1',
      description='A linked resource viewer.',
      author='Seamus Tuohy',
      author_email='*****@*****.**',
      url='https://github.com/elationfoundation/curator',
      packages=find_packages(exclude=['docs']),
      keywords='archive search',
      classifiers=[
          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
          'Development Status :: 2 - Pre-Alpha',
          'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
          'Operating System :: OS Independent',
          'Programming Language :: Python :: 3']
)