-
Notifications
You must be signed in to change notification settings - Fork 869
/
setup.py
72 lines (61 loc) · 1.77 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2014-2015 Numenta Inc.
#
# Copyright may exist in Contributors' modifications
# and/or contributions to the work.
#
# Use of this source code is governed by the MIT
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
import os
from setuptools import setup, find_packages
import site
import sys
site.ENABLE_USER_SITE = "--user" in sys.argv[1:]
REPO_DIR = os.path.dirname(os.path.realpath(__file__))
# Utility function to read the README file.
# Used for the long_description. It"s nice, because now 1) we have a top level
# README file and 2) it"s easier to type in the README file than to put a raw
# string in below ...
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
result = f.read()
return result
def parseFile(requirementFile):
"""
Parse requirement file.
:return: list of requirements.
"""
try:
return [
line.strip()
for line in open(requirementFile).readlines()
if not line.startswith("#")
]
except IOError:
return []
def findRequirements():
"""
Read the requirements.txt file and parse into requirements for setup's
install_requirements option.
"""
requirementsPath = os.path.join(REPO_DIR, "requirements.txt")
return parseFile(requirementsPath)
if __name__ == "__main__":
requirements = findRequirements()
setup(
name="nab",
version="1.1",
author="Alexander Lavin",
author_email="[email protected]",
description=(
"Numenta Anomaly Benchmark: A benchmark for streaming anomaly prediction"),
license="MIT",
packages=find_packages(),
long_description=read("README.md"),
install_requires=requirements,
entry_points={
"console_scripts": [
"nab-plot = nab.plot:main",
],
},
)