-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 1.06 KB
/
setup.py
File metadata and controls
25 lines (22 loc) · 1.06 KB
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
#########################################################
# ____ _ #
# | _ \ ___ __| |_ __ _ _ _ __ ___ #
# | |_) / _ \ / _` | '__| | | | '_ ` _ \ #
# | __/ (_) | (_| | | | |_| | | | | | | #
# |_| \___/ \__,_|_| \__,_|_| |_| |_| #
# #
# Copyright 2021 Podrum Team. #
# #
# This file is licensed under the GPL v2.0 license. #
# The license file is located in the root directory #
# of the source code. If not you may not use this file. #
# #
#########################################################
from setuptools import setup, Extension
module = Extension("chunk_utils", sources = ["chunk_utils.c", "binary_stream.c"])
setup(
name = "chunk_utils",
version = "0.2",
description = "Podrum's chunk utils",
ext_modules = [module]
)