c80e38f069c0d36defae05fe05bd4c21b367980e
[csit.git] / PyPI / jumpavg / setup.py
1 #!/usr/bin/env python3
2
3 """A setup module for setuptools.
4
5 See:
6 https://packaging.python.org/en/latest/distributing.html
7 """
8
9 from setuptools import (setup, find_packages)
10 from os import path
11 from io import open
12
13 here = path.abspath(path.dirname(__file__))
14 with open(path.join(here, u"README.rst"), encoding=u"utf-8") as f:
15     long_description = f.read()
16
17 setup(
18     name=u"jumpavg",
19     version=u"0.2.0",  # This is currently the only place listing the version.
20     description=(
21         u"Library for locating changes in time series by grouping results."
22     ),
23     long_description=long_description,
24     long_description_content_type=u"text/x-rst",
25     # TODO: Create a separate webpage for jumpavg library.
26     url=(
27         u"https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg"
28         u";hb=refs/heads/master"
29     ),
30     author=u"Cisco Systems Inc. and/or its affiliates",
31     author_email=u"csit-dev@lists.fd.io",
32     classifiers=[
33         u"Development Status :: 3 - Alpha",
34         u"Intended Audience :: Science/Research",
35         # Pick your license as you wish
36         u"License :: OSI Approved :: Apache Software License",
37         u"Natural Language :: English",
38         # TODO: Test which Python versions is the code compatible with.
39         u"Programming Language :: Python :: 2.7",
40         u"Topic :: Scientific/Engineering :: Information Analysis"
41     ],
42     keywords=u"progression regression anomaly detection statistics bits",
43     packages=find_packages(exclude=[]),
44     python_requires="~=3.6"
45     install_requires=[],
46     # TODO: Include simulator and tests.
47     extras_require={
48     },
49     package_data={
50     },
51     entry_points={
52         u"console_scripts": [
53         ],
54     },
55     project_urls={
56         u"Bug Reports": u"https://jira.fd.io/projects/CSIT/issues",
57         u"Source": (
58             u"https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg"
59             u";hb=refs/heads/master"
60         ),
61     },
62 )