Skip to content

Commit

Permalink
Merge pull request #30 from juaduan/dev
Browse files Browse the repository at this point in the history
add long description
  • Loading branch information
juaduan authored Feb 20, 2024
2 parents 29b41fe + 7b42b2c commit b337a0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ recursive-include ./anomaly-detector/*.h
recursive-include ./anomaly-detector/*.py
recursive-include ./anomaly-detector/*.txt
recursive-include ./anomaly-detector/anomaly_detector/univariate *
include ./README.md
include ./LICENSE
include ./requirements.txt
include ./setup.py
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
if __name__ == "__main__":
import os

with Path(Path(__file__).parent, "README.md").open(encoding="utf-8") as file:
long_description = file.read()

def get_all_package_and_dir(directory):
all_package = {}
Expand Down Expand Up @@ -81,7 +83,8 @@ def run(self):
version="0.1.0",
license="MIT",
description="Anomaly Detection",
author="test",
long_description=long_description,
author="Microsoft",
author_email="[email protected]",
url="https://github.com/microsoft/anomaly-detector",
data_files=[
Expand Down

0 comments on commit b337a0d

Please sign in to comment.