[go: up one dir, main page]

File: setup.py

package info (click to toggle)
cppy 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 184 kB
  • sloc: cpp: 390; ansic: 62; python: 60; makefile: 13
file content (25 lines) | stat: -rw-r--r-- 829 bytes parent folder | download
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']},
)