forked from ElectronVector/ravioli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (17 loc) · 810 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(name='ravioli',
version='0.2.0',
description='Checks for spaghetti code',
long_description='A tool for calculating simple, useful complexity metrics -- notably the Koopman Spaghetti '
'Factor (KSF) -- for C. This tool is designed to work especially on embedded software written '
'for compilers with non-standard extensions. It works without a compiler or any preprocessing '
'required.',
url='https://github.com/ElectronVector/ravioli',
author='Matt Chernosky',
author_email='[email protected]',
license='MIT',
packages=['ravioli'],
entry_points={
'console_scripts': ['ravioli=ravioli.ravioli:main'],
},
zip_safe=False)