-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 877 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation and deployment script."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='lore',
version='20200920',
description='Documentation about developing Open Source DFIR tools',
long_description=(
'Documentation about developing Open Source DFIR tools'),
license='CC-BY-4.0 License',
url='https://github.com/open-source-dfir/lore',
maintainer='Open Source DFIR maintainers',
maintainer_email='open-source-dfir-maintainers@googlegroups.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
data_files=[
('share/doc/lore', [
'LICENSE', 'README.md']),
],
)