forked from digitalsleuth/pyson4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 847 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", encoding='utf8') as readme:
long_description = readme.read()
setup(
name="pyson4",
version="1.0.0",
author="Corey Forman",
license="GNU General Public License v3.0",
url="https://github.com/digitalsleuth/pyson4",
description=("Firefox jsonlz4 parsing tool"),
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
"lz4",
],
scripts=['pyson4.py'],
package_data={'': ['README.md, LICENSE']},
include_package_data = True,
)