-
Notifications
You must be signed in to change notification settings - Fork 866
/
Copy pathsetup.py
104 lines (84 loc) · 2.51 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# 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
import pkg_resources
import warnings
from setuptools import setup, find_packages
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 nupicInstalled():
"""
Determine whether NuPIC is already installed.
:return: boolean
"""
try:
_ = pkg_resources.get_distribution("nupic")
return True
except pkg_resources.DistributionNotFound:
pass # Silently ignore. NuPIC will be installed later.
return False
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")
requirements = parseFile(requirementsPath)
if nupicInstalled():
# The user already has a version of NuPIC installed. We'll remove the entry
# in requirements.txt to not conflate the two and will issue a user warning.
reqs = []
for req in requirements:
if "nupic" != req.split("==")[0]:
reqs.append(req)
else:
warnings.warn("NuPIC is already installed so %s from requirements.txt "
"will be not be installed." % req)
else:
reqs = requirements
return reqs
if __name__ == "__main__":
requirements = findRequirements()
setup(
name="nab",
version="1.0",
author="Alexander Lavin",
author_email="nab@numenta.org",
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",
],
},
)