-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 979 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
29
#!/usr/bin/env python
# Copyright (c) Techland. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
import distutils.core
import setuptools
distutils.core.setup(
name='cppbuildprofiler',
version='1.0',
description='A tool that facilitates profiling C++ builds.',
author='Mikolaj Radwan @ Techland',
author_email='[email protected]',
url='https://github.com/techland-games/cpp-build-profiler',
download_url='https://github.com/techland-games/cpp-build-profiler/archive/0.1.tar.gz',
license='MIT',
packages=['cppbuildprofiler'],
keywords=['c++', 'building', 'compilation', 'profiling', 'optimisation'],
entry_points={
'console_scripts': [
'cppbuildprofiler-cli = cppbuildprofiler.cli:main',
'cppbuildprofiler = cppbuildprofiler.profiler:main',
]
},
install_requires=[
'networkx',
],
)