-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 754 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 754 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
from setuptools import find_packages, setup
with open("README.md") as fh:
long_description = fh.read()
requirements = []
setup(
name="ByteOps",
version="0.1.0",
author="Felix Bilstein",
author_email="fxb@cocacoding.com",
description="A minimalistic library for doing unsigned integer operations when reversing x86 code.",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/fxb-cocacoding/byteops",
license="BSD 2-Clause",
packages=find_packages(exclude="tests"),
install_requires=requirements,
data_files=[
("", ["LICENSE"]),
],
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security"
],
)