-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 994 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 994 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
29
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst")) as f:
long_description = f.read()
setup(
name="binmap",
version="1.2.1",
author="Jimmy Hedman",
author_email="jimmy.hedman@gmail.com",
description="A base class for creating binary parsing and packing classes",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/HeMan/binmap",
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)