|
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 | 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'] |
| 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 | + install_requires=["Python >= 2.7"], |
| 21 | + packages=["pygccxml", |
| 22 | + "pygccxml.declarations", |
| 23 | + "pygccxml.parser", |
| 24 | + "pygccxml.binary_parsers", |
| 25 | + "pygccxml.utils"], |
| 26 | + classifiers=[ |
| 27 | + "Development Status :: 5 - Production/Stable", |
| 28 | + "Environment :: Console", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "Operating System :: MacOS :: MacOS X", |
| 31 | + "Operating System :: Microsoft :: Windows", |
| 32 | + "Operating System :: POSIX", |
| 33 | + "Programming Language :: Python", |
| 34 | + "Topic :: Software Development", |
| 35 | + ], |
19 | 36 | )
|
0 commit comments