CSIT-1110: Add files for PyPI migration
[csit.git] / resources / tools / presentation / new / 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.0",  # 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     url="https://github.com/vrpolakatcisco/jumpavg",
22     author="Cisco Systems Inc. and/or its affiliates",
23     author_email="csit-dev@lists.fd.io",
24     classifiers=[
25         "Development Status :: 3 - Alpha",
26         "Intended Audience :: Science/Research",
27         # Pick your license as you wish
28         "License :: OSI Approved :: Apache Software License",
29         "Natural Language :: English"
30         # TODO: Test which Python versions is the code compatible with.
31         "Programming Language :: Python :: 2.7",
32         "Topic :: Scientific/Engineering :: Information Analysis"
33     ],
34     keywords="progression regression anomaly detection",
35     packages=find_packages(exclude=[]),
36     install_requires=[],
37     # TODO: Include simulator and tests.
38     extras_require={
39     },
40     package_data={
41     },
42     entry_points={
43         "console_scripts": [
44         ],
45     },
46     project_urls={
47         "Bug Reports": "https://github.com/vrpolakatcisco/jumpavg/issues",
48         "Source": "https://github.com/vrpolakatcisco/jumpavg/",
49     },
50 )