forked from Equidamoid/dltpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 975 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 975 Bytes
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
#! /usr/bin/env python3
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='dltpy',
version='0.2.1',
description='Pyre-python reader for DLT log files',
long_description=Path('README.md').read_text(),
long_description_content_type="text/markdown",
author='Vladimir Shapranov',
author_email='equidamoid@gmail.com',
url='https://github.com/Equidamoid/dltpy',
packages=find_packages(),
scripts=['bin/dltpy-dump', 'bin/dltpy-filter'],
install_requires=['kaitaistruct>=0.7'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)