-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (26 loc) · 967 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
"""Setup for PyPi distribution."""
from distutils.core import setup
setup(
name='codescan',
packages=['codescan'],
version='0.2.0',
description='Simple configurable code scanner in Python.',
author='Matt Rutkowski',
author_email='[email protected]',
url='https://github.com/mrutkows/codescan',
# data_files=[
# ('bitmaps', ['bm/b1.gif', 'bm/b2.gif']),
# ('config', ['cfg/data.cfg']),
# ('/etc/init.d', ['init-script'])]
# download_url='https://github.com/mrutkows/scancode/archive/0.1.tar.gz',
keywords=['scanning', 'code', 'scan'],
classifiers=(
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License'
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development'
'Topic :: Software Development :: Build Tools'
)
)