1 """A setup module for setuptools.
4 https://packaging.python.org/en/latest/distributing.html
7 from setuptools import setup, find_packages
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()
17 version="0.2.0", # 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",
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"
35 keywords="binary search throughput networking",
36 packages=find_packages(exclude=[]),
37 # TODO: python_requires="~=2.7"
39 # TODO: Include simulator and tests.
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",