X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=PyPI%2Fjumpavg%2Fsetup.py;h=a464adb5a534dd9d86360e5d14678571dc7a337b;hb=018660080bb9419dc658d6996be855e7219cf602;hp=018ab70392ea414c02bd613438cd33a6e4febe55;hpb=938a0c9cec6d2177e098653ad398372fb482c36f;p=csit.git diff --git a/PyPI/jumpavg/setup.py b/PyPI/jumpavg/setup.py index 018ab70392..a464adb5a5 100644 --- a/PyPI/jumpavg/setup.py +++ b/PyPI/jumpavg/setup.py @@ -1,25 +1,33 @@ +#!/usr/bin/env python3 + """A setup module for setuptools. See: https://packaging.python.org/en/latest/distributing.html """ -from setuptools import setup, find_packages from os import path from io import open +from setuptools import setup, find_packages + here = path.abspath(path.dirname(__file__)) with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( name="jumpavg", - version="0.1.3", # This is currently the only place listing the version. - description="Library for finding changes in time series by grouping results.", + version="0.4.0", # This is currently the only place listing the version. + description=( + "Library for locating changes in time series by grouping results." + ), long_description=long_description, long_description_content_type="text/x-rst", # TODO: Create a separate webpage for jumpavg library. - url="https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg;hb=refs/heads/master", + url=( + "https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg" + ";hb=refs/heads/master" + ), author="Cisco Systems Inc. and/or its affiliates", author_email="csit-dev@lists.fd.io", classifiers=[ @@ -29,24 +37,24 @@ setup( "License :: OSI Approved :: Apache Software License", "Natural Language :: English", # TODO: Test which Python versions is the code compatible with. - "Programming Language :: Python :: 2.7", - "Topic :: Scientific/Engineering :: Information Analysis" + "Programming Language :: Python :: 3.8", + "Topic :: Scientific/Engineering :: Information Analysis", ], - keywords="progression regression anomaly detection", + keywords="progression regression anomaly detection statistics bits", packages=find_packages(exclude=[]), - # TODO: python_requires="~=2.7" + python_requires="~=3.8", install_requires=[], # TODO: Include simulator and tests. - extras_require={ - }, - package_data={ - }, + extras_require={}, + package_data={}, entry_points={ - "console_scripts": [ - ], + "console_scripts": [], }, project_urls={ "Bug Reports": "https://jira.fd.io/projects/CSIT/issues", - "Source": "https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg;hb=refs/heads/master", + "Source": ( + "https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/jumpavg" + ";hb=refs/heads/master" + ), }, )