-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (40 loc) · 1.58 KB
/
setup.py
File metadata and controls
51 lines (40 loc) · 1.58 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
#!/usr/bin/env python
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
package_name = 'log2seq'
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 parse syslog-like messages into word sequences',
long_description=load_readme(),
author='Satoru Kobayashi',
author_email='sat@nii.ac.jp',
url='https://github.com/cpflat/log2seq/',
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.7',
"Programming Language :: Python :: 3.8",
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules'],
license='BSD 3-Clause "New" or "Revised" License',
packages=['log2seq'],
install_requires=load_requirements(),
test_suite="tests",
)