Exemplo n.º 1
0

if sys.version_info < (3, 4, 1):
    sys.exit('Python < 3.4.1 is not supported!')

setup(
    name='mtcnn',
    version=__version__,
    description=
    'Multi-task Cascaded Convolutional Neural Networks for Face Detection, based on TensorFlow',
    long_description=readme(),
    url='http://github.com/ipazc/mtcnn',
    author='Iván de Paz Centeno',
    author_email='*****@*****.**',
    license='MIT',
    packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
    install_requires=["keras>=2.0.0", "pillow>=7.1.1"],
    classifiers=[
        'Environment :: Console',
        'Intended Audience :: Developers',
        'Intended Audience :: Education',
        'Intended Audience :: Science/Research',
        'Natural Language :: English',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
    ],
    test_suite='nose.collector',
    tests_require=['nose'],
    include_package_data=True,
Exemplo n.º 2
0
from distutils.core import setup
from setuptools import setup, setuptools
import os
with open(os.path.join(os.path.dirname(__file__),
                       'README.rst')) as readme_file:
    readme = readme_file.read()

os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
    name='django-picsum',
    version='1.1',
    url='https://github.com/VarthanV/django-picsum.git',
    packages=setuptools.find_packages(),
    include_package_data=True,
    long_description_content_type='text/markdown',
    long_description=open('README.rst').read(),
    author="Vishnu Varthan Rao",
    author_email="*****@*****.**",
    install_requires=["Django > 2.0", "requests"],
    license="MIT License",
    zip_safe=False,
    keywords='picsum,pixabay,django-pics,django image,django template',
    classifiers=[
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
Exemplo n.º 3
0
    # This field adds keywords for your project which will appear on the
    # project page. What does your project relate to?
    #
    # Note that this is a string of words separated by whitespace, not a list.
    keywords='dicom anonymizer medical',  # Optional

    # You can just specify package directories manually here if your project is
    # simple. Or you can use find_packages().
    #
    # Alternatively, if you just want to distribute a single Python file, use
    # the `py_modules` argument instead as follows, which will expect a file
    # called `my_module.py` to exist:
    #
    #   py_modules=["my_module"],
    #
    packages=setuptools.find_packages(),  # Required

    # Define an executable calls dicom-anonymizer from a specific file
    entry_points={
        'console_scripts':
        ['dicom-anonymizer = dicomanonymizer.anonymizer:main']
    },

    # This field lists other packages that your project depends on to run.
    # Any package you put here will be installed by pip when your project is
    # installed, so they must be valid existing projects.
    #
    # For an analysis of "install_requires" vs pip's requirements files see:
    # https://packaging.python.org/en/latest/requirements.html
    install_requires=['pydicom', 'tqdm'],  # Optional
)
Exemplo n.º 4
0
if sys.argv[-1] == 'test':
    os.system('pip install -U -r requirements.txt')
    os.system('pip install -U coverage')
    os.system('coverage run ./manage.py test && coverage report --include=./*')
    sys.exit()

setup(
    name='django-fa',
    version=version,
    description="""Charts for Django made simple""",
    long_description=readme + '\n\n' + history,
    author='Dylan Verheul',
    author_email='*****@*****.**',
    url='https://github.com/zostera/django-charts',
    packages=setuptools.find_packages(),
    include_package_data=True,
    install_requires=[
        "Django > 1.4",
    ],
    license="MIT License",
    zip_safe=False,
    keywords='django-fa',
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
Exemplo n.º 5
0
from setuptools import setup, setuptools

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="PyDapi2",
    version="0.1.6",
    author="Fabrice Voillat",
    author_email="*****@*****.**",
    keywords = ['Dassym', 'motor', 'api', 'dapi'],
    description="The PyDapi2 library offers a Python implementation of the Dassym API version 2.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    install_requires = ['lxml'],
    url="https://github.com/dassym/PyDapi2",
    classifiers=[
        "Programming Language :: Python :: 3",
        "Operating System :: OS Independent",
    ],
    package_dir={"": "src"},
    packages=setuptools.find_packages(where="src"),
    python_requires=">=3.8",
    include_package_data=True
)
Exemplo n.º 6
0
long_description = readme
with open('HISTORY.rst') as history_file:
    history = history_file.read()

requirements = ['Click>=7.0', 'selenium', 'BeautifulSoup4', 'lxml', 'Pillow']

setuptools.setup(
    name="badoo",  # Replace with your own username
    version="1.6.0",
    author="Matt Burke",
    author_email='*****@*****.**',
    description="Remotely control badoo",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://github.com/matttsb/badoo',
    packages=setuptools.find_packages(exclude=['tests*']),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
)
setup(
    author="Matt Burke",
    author_email='*****@*****.**',
    python_requires='>=3.5',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
Exemplo n.º 7
0
from setuptools import setup, setuptools

with open("README.md", "r") as fh:
    LONG_DESCRIPTION = fh.read()

setup(
    name='Chandelier',
    version='1.0',
    description=
    'Software to operate artistic installation in form of Chandelier',
    author='Arkadiusz Kotwica',
    author_email='*****@*****.**',
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: Raspbian Buster",
    ],
    packages=setuptools.find_packages(),  #same as name
    install_requires=[
        'retry', 'RPi.GPIO', 'pydub', 'evdev', 'asyncio', 'pexpect',
        'pulsectl', 'python-vlc'
    ],  #external packages as dependencies
    python_requires='>=3.7',
)