-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 862 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
from setuptools import setup, find_packages
setup(
name="cmake-generator",
version="0.1",
packages=find_packages(),
install_requires=['diff_match_patch'],
author="Joybin Chen",
author_email="[email protected]",
description="A script to convert compile_commands.json into CMakeLists.txt",
license="MIT",
keywords="c c++ development compile_commands json cmake ldlogger CodeChecker",
url="https://github.com./joybinchen/cmake-generator",
project_urls={
"Bug Tracker": "https://github.com./joybinchen/cmake-generator/issues",
"Documentation": "https://github.com./joybinchen/cmake-generator",
"Source Code": "https://github.com./joybinchen/cmake-generator",
},
entry_points={
'console_scripts': [
'json2cmake = cmake_generator.json2cmake.main:main',
],
},
)