165 lines
6.5 KiB
Python
165 lines
6.5 KiB
Python
|
from setuptools import setup, find_packages
|
||
|
import pathlib
|
||
|
|
||
|
here = pathlib.Path(__file__).parent.resolve()
|
||
|
|
||
|
long_description = (here / 'README.md').read_text(encoding='utf-8')
|
||
|
|
||
|
|
||
|
def get_version(rel_path):
|
||
|
init_content = (here / rel_path).read_text(encoding='utf-8')
|
||
|
for line in init_content.split('\n'):
|
||
|
if line.startswith('__version__'):
|
||
|
delim = '"' if '"' in line else "'"
|
||
|
return line.split(delim)[1]
|
||
|
else:
|
||
|
raise RuntimeError("Unable to find version string.")
|
||
|
# Arguments marked as "Required" below must be included for upload to PyPI.
|
||
|
# Fields marked as "Optional" may be commented out.
|
||
|
|
||
|
setup(
|
||
|
# This is the name of your project. The first time you publish this
|
||
|
# package, this name will be registered for you. It will determine how
|
||
|
# users can install this project, e.g.:
|
||
|
#
|
||
|
# $ pip install sampleproject
|
||
|
#
|
||
|
# And where it will live on PyPI: https://pypi.org/project/sampleproject/
|
||
|
#
|
||
|
# There are some restrictions on what makes a valid project name
|
||
|
# specification here:
|
||
|
# https://packaging.python.org/specifications/core-metadata/#name
|
||
|
name='QuaPy', # Required
|
||
|
|
||
|
# Versions should comply with PEP 440:
|
||
|
# https://www.python.org/dev/peps/pep-0440/
|
||
|
#
|
||
|
# 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=get_version("quapy/__init__.py"), # Required
|
||
|
|
||
|
# This is a one-line description or tagline of what your project does. This
|
||
|
# corresponds to the "Summary" metadata field:
|
||
|
# https://packaging.python.org/specifications/core-metadata/#summary
|
||
|
description='QuaPy: a framework for Quantification in Python', # Optional
|
||
|
|
||
|
# This is an optional longer description of your project that represents
|
||
|
# the body of text which users will see when they visit PyPI.
|
||
|
#
|
||
|
# Often, this is the same as your README, so you can just read it in from
|
||
|
# that file directly (as we have already done above)
|
||
|
#
|
||
|
# This field corresponds to the "Description" metadata field:
|
||
|
# https://packaging.python.org/specifications/core-metadata/#description-optional
|
||
|
long_description=long_description, # Optional
|
||
|
|
||
|
# Denotes that our long_description is in Markdown; valid values are
|
||
|
# text/plain, text/x-rst, and text/markdown
|
||
|
#
|
||
|
# Optional if long_description is written in reStructuredText (rst) but
|
||
|
# required for plain-text or Markdown; if unspecified, "applications should
|
||
|
# attempt to render [the long_description] as text/x-rst; charset=UTF-8 and
|
||
|
# fall back to text/plain if it is not valid rst" (see link below)
|
||
|
#
|
||
|
# This field corresponds to the "Description-Content-Type" metadata field:
|
||
|
# https://packaging.python.org/specifications/core-metadata/#description-content-type-optional
|
||
|
long_description_content_type='text/markdown', # Optional (see note above)
|
||
|
|
||
|
# This should be a valid link to your project's main homepage.
|
||
|
#
|
||
|
# This field corresponds to the "Home-Page" metadata field:
|
||
|
# https://packaging.python.org/specifications/core-metadata/#home-page-optional
|
||
|
url='https://github.com/HLT-ISTI/QuaPy', # Optional
|
||
|
|
||
|
maintainer='Alejandro Moreo',
|
||
|
|
||
|
maintainer_email='alejandro.moreo@isti.cnr.it',
|
||
|
|
||
|
classifiers=[
|
||
|
'Development Status :: 4 - Beta',
|
||
|
|
||
|
'Intended Audience :: Developers',
|
||
|
'Intended Audience :: Science/Research',
|
||
|
'Programming Language :: Python',
|
||
|
'Topic :: Software Development',
|
||
|
'Topic :: Scientific/Engineering',
|
||
|
|
||
|
'License :: OSI Approved :: BSD License',
|
||
|
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Programming Language :: Python :: 3.7',
|
||
|
'Programming Language :: Python :: 3.8',
|
||
|
'Programming Language :: Python :: 3.9',
|
||
|
'Programming Language :: Python :: 3 :: Only',
|
||
|
],
|
||
|
|
||
|
keywords='machine learning, quantification, classification, prevalence estimation, priors estimate',
|
||
|
|
||
|
# When your source code is in a subdirectory under the project root, e.g.
|
||
|
# `src/`, it is necessary to specify the `package_dir` argument.
|
||
|
#package_dir={'': 'src'}, # 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=find_packages(include=['quapy', 'quapy.*']), # Required
|
||
|
|
||
|
python_requires='>=3.6, <4',
|
||
|
|
||
|
install_requires=['scikit-learn', 'pandas', 'tqdm', 'matplotlib'],
|
||
|
|
||
|
# List additional groups of dependencies here (e.g. development
|
||
|
# dependencies). Users will be able to install these using the "extras"
|
||
|
# syntax, for example:
|
||
|
#
|
||
|
# $ pip install sampleproject[dev]
|
||
|
#
|
||
|
# Similar to `install_requires` above, these must be valid existing
|
||
|
# projects.
|
||
|
# extras_require={ # Optional
|
||
|
# 'dev': ['check-manifest'],
|
||
|
# 'test': ['coverage'],
|
||
|
# },
|
||
|
|
||
|
# If there are data files included in your packages that need to be
|
||
|
# installed, specify them here.
|
||
|
# package_data={ # Optional
|
||
|
# 'sample': ['package_data.dat'],
|
||
|
# },
|
||
|
|
||
|
# Although 'package_data' is the preferred approach, in some case you may
|
||
|
# need to place data files outside of your packages. See:
|
||
|
# http://docs.python.org/distutils/setupscript.html#installing-additional-files
|
||
|
#
|
||
|
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
|
||
|
# data_files=[('my_data', ['data/data_file'])], # Optional
|
||
|
|
||
|
# To provide executable scripts, use entry points in preference to the
|
||
|
# "scripts" keyword. Entry points provide cross-platform support and allow
|
||
|
# `pip` to create the appropriate form of executable for the target
|
||
|
# platform.
|
||
|
#
|
||
|
# For example, the following would provide a command called `sample` which
|
||
|
# executes the function `main` from this package when invoked:
|
||
|
# entry_points={ # Optional
|
||
|
# 'console_scripts': [
|
||
|
# 'sample=sample:main',
|
||
|
# ],
|
||
|
# },
|
||
|
|
||
|
project_urls={ # Optional
|
||
|
'Contributors': 'https://github.com/HLT-ISTI/QuaPy/graphs/contributors',
|
||
|
'Bug Reports': 'https://github.com/HLT-ISTI/QuaPy/issues',
|
||
|
'Documentation': 'https://github.com/HLT-ISTI/QuaPy/wiki',
|
||
|
'Source': 'https://github.com/HLT-ISTI/QuaPy/',
|
||
|
},
|
||
|
)
|