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
|
#------------------------------------------------------------------------------
# Copyright (c) 2014-2019, Nucleic
#
# Distributed under the terms of the BSD 3-Clause License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
from setuptools import setup
# Before releasing the version needs to be updated in:
# - setup.py
# - cppy/__init__.py
# - docs/source/conf.py
setup(
name='cppy',
version='1.1.0',
author='The Nucleic Development Team',
author_email='sccolbert@gmail.com',
url='https://github.com/nucleic/cppy',
description='C++ headers for C extension development',
long_description=open('README.rst').read(),
packages=['cppy'],
package_data={'cppy': ['include/cppy/*.h']},
)
|