forked from trolldbois/ctypeslib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (39 loc) · 1.4 KB
/
setup.py
File metadata and controls
executable file
·41 lines (39 loc) · 1.4 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="ctypeslib2",
version="2.3.1",
description="ctypeslib2 - FFI toolkit, relies on clang",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Loic Jaquemet",
author_email="loic.jaquemet+python@gmail.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/trolldbois/ctypeslib",
download_url="https://github.com/trolldbois/ctypeslib/releases",
license="License :: OSI Approved :: MIT License",
packages=['ctypeslib',
'ctypeslib.codegen',
],
package_data={'ctypeslib': ['data/fundamental_type_name.tpl',
'data/headers.tpl',
'data/pointer_type.tpl',
'data/string_cast.tpl',
'data/structure_type.tpl',
]},
entry_points={
'console_scripts': [
'clang2py = ctypeslib.clang2py:main',
]},
test_suite="test.alltests",
install_requires=[
'clang>=11',
]
)