forked from regit/coccigrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (25 loc) · 939 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
#!/usr/bin/env python
from setuptools import setup
from src.coccigrep import COCCIGREP_VERSION
setup(name='coccigrep',
version=COCCIGREP_VERSION,
description='Semantic grep for C based on coccinelle',
author='Eric Leblond',
author_email='[email protected]',
url='http://home.regit.org/software/coccigrep/',
scripts=['coccigrep'],
packages=['coccigrep'],
package_dir={'coccigrep':'src'},
package_data={'coccigrep': ['data/*.cocci', 'coccigrep.cfg']},
provides=['coccigrep'],
requires=['argparse'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development',
],
)