forked from fox-it/dissect.cstruct_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 861 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="dissect.cstruct",
version="1.0.0",
author="Fox-IT",
description="Structure parsing in Python made easy.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="cstruct struct dissect structure binary pack packer unpack unpacker parser parsing",
url="https://github.com/fox-it/dissect.cstruct",
namespace_packages=['dissect'],
packages=['dissect.cstruct'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
)