-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 856 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 856 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name="libclang-py3",
version="0.3",
description="Python3 bindings for libclang ",
url="https://bitbucket.org/Anteru/python3-libclang",
download_url="https://bitbucket.org/Anteru/python3-libclang/releases",
license="License :: OSI Approved :: University of Illinois/NCSA Open Source License",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Compilers"
],
keywords=["llvm", "clang", "libclang"],
author="Matthaeus G. Chajdas",
author_email="dev@anteru.net",
zip_safe=False,
packages=["clang"]
)