-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (28 loc) · 1016 Bytes
/
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
# !/usr/bin/env python
from distutils.core import setup
setup(
name='cpp_cookiecutter',
packages=[],
version='0.5.0',
description='Cookiecutter template for a C++ package',
author='Thorsten Beier',
license='BSD 3-Clause License',
author_email='derthorstenbeier@gmail.com',
url='https://github.com/DerThorsten/cpp_cookiecutter',
keywords=['cookiecutter', 'template', 'package', ],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD 3-Clause License',
'Programming Language :: C',
'Programming Language :: C++ :: 2.7',
'Programming Language :: C++ :: 3',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
],
)