forked from bet4it/udbserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 813 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 813 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
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, Extension
rust_module = Extension('udbserver',
sources=['udbserver.c'],
libraries=['udbserver'],
)
setup (name = 'udbserver',
version = '0.1',
author = 'Bet4',
author_email = '0xbet4@gmail.com',
description = 'Python bindings of udbserver',
url = 'https://github.com/bet4it/udbserver',
license='MIT License',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Debuggers',
],
ext_modules = [rust_module],
py_modules = [],
)