-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (53 loc) · 2.02 KB
/
setup.py
File metadata and controls
64 lines (53 loc) · 2.02 KB
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
#!/usr/bin/env python
import sys
import os
import re
from setuptools import setup
def load_readme():
with open('README.rst', 'r') as fd:
return fd.read()
def load_requirements():
"""Parse requirements.txt"""
reqs_path = os.path.join('.', 'requirements.txt')
with open(reqs_path, 'r') as fd:
requirements = [line.rstrip() for line in fd]
return requirements
sys.path.append("./tests")
package_name = 'logdag'
data_dir = "/".join((package_name, "data"))
data_files = ["/".join((data_dir, fn)) for fn in os.listdir(data_dir)]
package_name = 'logdag'
with open(os.path.join(os.path.dirname(__file__), package_name, '__init__.py')) as f:
version = re.search("__version__ = '([^']+)'", f.read()).group(1)
setup(name=package_name,
version=version,
description='A tool to generate causal DAGs from syslog time-series.',
long_description=load_readme(),
author='Satoru Kobayashi',
author_email='sat@nii.ac.jp',
url='https://github.com/cpflat/logdag/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
"Intended Audience :: Developers",
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules'],
license='The 3-Clause BSD License',
packages=['logdag'],
install_requires=load_requirements(),
package_data={'logdag': data_files},
entry_points={
'console_scripts': [
'logdag = logdag.__main__:main',
'logdag.source = logdag.source.__main__:main',
'logdag.eval = logdag.eval.__main__:main',
'logdag.visual = logdag.visual.__main__:main',
],
},
test_suite="tests"
)