CSIT-986: Use MLRsearch from pip
[csit.git] / PyPI / MLRsearch / setup.py
1 """A setup module for setuptools.
2
3 See:
4 https://packaging.python.org/en/latest/distributing.html
5 """
6
7 from setuptools import setup, find_packages
8 from os import path
9 from io import open
10
11 here = path.abspath(path.dirname(__file__))
12 with open(path.join(here, "README.rst"), encoding="utf-8") as f:
13     long_description = f.read()
14
15 setup(
16     name="MLRsearch",
17     version="0.1.2",  # This is currently the only place listing the version.
18     description="Library for speeding up binary search using shorter measurements.",
19     long_description=long_description,
20     long_description_content_type="text/x-rst",
21     # TODO: Create a separate webpage for MLRsearch library.
22     url="https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/MLRsearch;hb=refs/heads/master",
23     author="Cisco Systems Inc. and/or its affiliates",
24     author_email="csit-dev@lists.fd.io",
25     classifiers=[
26         "Development Status :: 3 - Alpha",
27         "Intended Audience :: Science/Research",
28         "Intended Audience :: Telecommunications Industry",
29         # Pick your license as you wish
30         "License :: OSI Approved :: Apache Software License",
31         # TODO: Test which Python versions is the code compatible with.
32         "Programming Language :: Python :: 2.7",
33         "Topic :: System :: Networking"
34     ],
35     keywords="binary search throughput networking",
36     packages=find_packages(exclude=[]),
37     # TODO: python_requires="~=2.7"
38     install_requires=[],
39     # TODO: Include simulator and tests.
40     extras_require={
41     },
42     package_data={
43     },
44     entry_points={
45         "console_scripts": [
46         ],
47     },
48     project_urls={
49         "Bug Reports": "https://jira.fd.io/projects/CSIT/issues",
50         "Source": "https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/MLRsearch;hb=refs/heads/master",
51     },
52 )