Beispiel #1
0
setup(
    name="napkinxc",
    version=get_version(),
    author="Marek Wydmuch",
    author_email="*****@*****.**",
    description=
    "napkinXC is an extremely simple and fast library for extreme multi-class and multi-label classification.",
    long_description=get_long_description(),
    long_description_content_type="text/markdown",
    url="https://github.com/mwydmuch/napkinXC",
    keywords=[
        'machine learning', 'extreme classification',
        'multi-class classification', 'multi-label classification',
        'classification'
    ],
    classifiers=[
        'Development Status :: 4 - Beta',
        #Development Status :: 5 - Production/Stable,
        'Operating System :: POSIX :: Linux',
        'Operating System :: MacOS',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'Topic :: Scientific/Engineering :: Artificial Intelligence',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
    ],
    license="MIT License",
    platforms=["Linux", "MacOS"],
    install_requires=['numpy', 'scipy', 'requests'],
    src_dir="python",
    packages=['napkinxc'],
    ext_module_hint=r"pybind11_add_module",
    configure_opts=['-DPYTHON=ON', '-DEXE=OFF'],
    include_package_data=True,
    #parallel=max(cpu_count(), 1) # Unknown distribution option: 'parallel'
)
Beispiel #2
0
from cmaketools import setup

setup(name="asyncio_uring",
      version="0.0.1",
      author="Reza Mahdi",
      author_email="*****@*****.**",
      description="asyncio loop based on liburing for CPython",
      url="https://github.com/python-cmaketools/cpython-example.git",
      license="MIT License",
      src_dir="src",
      ext_module_hint=r"Python3_add_library",
      has_package_data=False,
      install_requires=["cmaketools"])
Beispiel #3
0
from cmaketools import setup
import os, sys

setup(name="pycali",
      version="0.1.0",
      author="Yan-Rong Li",
      author_email="*****@*****.**",
      description="A Bayesian approach to intercalibrate light curves",
      url="https://github.com/LiyrAstroph/PyCALI",
      license="MIT License",
      src_dir="src",
      ext_module_hint=r"pybind11_add_module",
      has_package_data=False,
      install_requires=["cmaketools"])
Beispiel #4
0
from cmaketools import setup

setup(name="cpython_example",
      version="0.0.1",
      author="Takeshi (Kesh) Ikuma",
      author_email="*****@*****.**",
      description="A test package using CPython",
      url="https://github.com/python-cmaketools/cpython-example.git",
      license="MIT License",
      src_dir="src",
      ext_module_hint=r"Python3_add_library",
      has_package_data=False,
      install_requires=["cmaketools"])
Beispiel #5
0
from cmaketools import setup

setup(
    name="flacfile",
    version="0.0.1",
    author="Takeshi (Kesh) Ikuma",
    author_email="*****@*****.**",
    description="Read/write FLAC audio files.",
    url="https://github.com/hokiedsp/python-flacfile",
    license="BSD",
    src_dir="src",
    ext_module_hint=r"pybind11_add_module",
    has_package_data=False,
)
from cmaketools import setup

setup(
    name="boost_python_example",
    version="0.0.1",
    author="Takeshi (Kesh) Ikuma",
    author_email="*****@*****.**",
    description="A test package using Boost::python",
    url="https://github.com/python-cmaketools/boost-python-example.git",
    license="MIT License",
    src_dir="src",
    ext_module_hint=r"Python3_add_library",
    has_package_data=True,
    configure_opts = ['-DBOOST_ROOT=C:\\Users\\tikum\\AppData\\Local\\Programs\\boost_1_71_0']
)