|
4 | 4 | # Distributed under the Boost Software License, Version 1.0. |
5 | 5 | # See http://www.boost.org/LICENSE_1_0.txt |
6 | 6 |
|
7 | | -from distutils.core import setup |
| 7 | +from setuptools import setup |
8 | 8 |
|
9 | 9 | setup(name="pygccxml", |
10 | | - version="v1.6.1", |
11 | | - description="GCC-XML generated file reader", |
12 | | - author="Insight Software Consortium.", |
13 | | - |
14 | | - packages=['pygccxml', |
15 | | - 'pygccxml.declarations', |
16 | | - 'pygccxml.parser', |
17 | | - 'pygccxml.binary_parsers', |
18 | | - 'pygccxml.utils'] |
| 10 | + version="v1.6.2", |
| 11 | + author="Roman Yakovenko", |
| 12 | + author_email="roman yakovenko at gmail com", |
| 13 | + maintainer="Michka Popoff and the Insight Software Consortium", |
| 14 | + maintainer_email="[email protected]", |
| 15 | + description="Python package for easy C++ declarations navigation.", |
| 16 | + url="https://github.com/gccxml/pygccxml", |
| 17 | + download_url="https://github.com/gccxml/pygccxml/archive/master.zip", |
| 18 | + license="Boost", |
| 19 | + keywords="C++, declaration parser, gccxml", |
| 20 | + packages=["pygccxml", |
| 21 | + "pygccxml.declarations", |
| 22 | + "pygccxml.parser", |
| 23 | + "pygccxml.binary_parsers", |
| 24 | + "pygccxml.utils"], |
| 25 | + classifiers=[ |
| 26 | + "Development Status :: 5 - Production/Stable", |
| 27 | + "Environment :: Console", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "Operating System :: MacOS :: MacOS X", |
| 30 | + "Operating System :: Microsoft :: Windows", |
| 31 | + "Operating System :: POSIX", |
| 32 | + "Programming Language :: Python", |
| 33 | + "Topic :: Software Development", |
| 34 | + ], |
19 | 35 | ) |
0 commit comments