style(ipsec): add type hints to IPsecUtil
[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, u"README.rst"), encoding=u"utf-8") as f:
13     long_description = f.read()
14
15 setup(
16     name=u"MLRsearch",
17     version=u"0.3.0",  # This is currently the only place listing the version.
18     description=u"Library for speeding up binary search using shorter measurements.",
19     long_description=long_description,
20     long_description_content_type=u"text/x-rst",
21     # TODO: Create a separate webpage for MLRsearch library.
22     url=u"https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/MLRsearch;hb=refs/heads/master",
23     author=u"Cisco Systems Inc. and/or its affiliates",
24     author_email=u"csit-dev@lists.fd.io",
25     classifiers=[
26         u"Development Status :: 3 - Alpha",
27         u"Intended Audience :: Science/Research",
28         u"Intended Audience :: Telecommunications Industry",
29         u"License :: OSI Approved :: Apache Software License",
30         u"Programming Language :: Python :: 3.6",
31         u"Topic :: System :: Networking"
32     ],
33     keywords=u"binary search throughput networking",
34     packages=find_packages(exclude=[]),
35     python_requires=u"~=3.6",
36     install_requires=[],
37     # TODO: Include simulator and tests.
38     extras_require={
39     },
40     package_data={
41     },
42     entry_points={
43         u"console_scripts": [
44         ],
45     },
46     project_urls={
47         u"Bug Reports": u"https://jira.fd.io/projects/CSIT/issues",
48         u"Source": u"https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/MLRsearch;hb=refs/heads/master",
49     },
50 )