aa56efd9c9e3e24d4e927b9a558d50e295059fa1
[csit.git] / PyPI / jumpavg / 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="jumpavg",
17     version="0.1.2",  # This is currently the only place listing the version.
18     description="Library for finding changes in time series by grouping results.",
19     long_description=long_description,
20     long_description_content_type="text/x-rst",
21     # TODO: Create a separate webpage for jumpavg library.
22     url="https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg;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         # Pick your license as you wish
29         "License :: OSI Approved :: Apache Software License",
30         "Natural Language :: English",
31         # TODO: Test which Python versions is the code compatible with.
32         "Programming Language :: Python :: 2.7",
33         "Topic :: Scientific/Engineering :: Information Analysis"
34     ],
35     keywords="progression regression anomaly detection",
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/jumpavg;hb=refs/heads/master",
51     },
52 )