forked from CastXML/pygccxml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.41 KB
/
setup.py
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
#!/usr/bin/env python
# Copyright 2014-2017 Insight Software Consortium.
# Copyright 2004-2009 Roman Yakovenko.
# Distributed under the Boost Software License, Version 1.0.
# See http://www.boost.org/LICENSE_1_0.txt
from setuptools import setup
from release_utils import utils
version = utils.find_version("../pygccxml/__init__.py")
setup(name="pygccxml",
version=version,
author="Roman Yakovenko",
author_email="roman yakovenko at gmail com",
maintainer="Michka Popoff and the Insight Software Consortium",
maintainer_email="[email protected]",
description="Python package for easy C++ declarations navigation.",
url="https://github.com/gccxml/pygccxml",
download_url="https://github.com/gccxml/pygccxml/archive/v" +
version + ".tar.gz",
license="Boost",
keywords="C++, declaration parser, CastXML, gccxml",
packages=["pygccxml",
"pygccxml.declarations",
"pygccxml.parser",
"pygccxml.utils"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Software Development",
],
)