-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (24 loc) · 839 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (24 loc) · 839 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
#!/usr/bin/env python3
import os
from setuptools import setup
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
setup(
name='libvmi',
version='3.7.1',
description='Python interface to LibVMI',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='Mathieu Tarral',
author_email='mathieu.tarral@protonmail.com',
url='https://github.com/libvmi/python',
setup_requires=["cffi>=1.6.0", "pkgconfig", "pytest-runner"],
install_requires=["cffi>=1.6.0", "future", "enum34;python_version<'3.4'"],
tests_require=["pytest", "pytest-pep8", "libvirt-python"],
cffi_modules=['libvmi/libvmi_build.py:ffi'],
packages=['libvmi'],
package_data={
'libvmi': ['*_cdef.h']
}
)