-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 845 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (23 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(name='opensvp',
version='0.5',
description='Firewall and application layer gateway testing tool',
author='Eric Leblond',
author_email='eric@regit.org',
url='https://home.regit.org/software/opensvp/',
scripts=['opensvp'],
packages=['opensvp'],
package_dir={'opensvp':'src'},
provides=['opensvp'],
requires=['argparse', 'scapy', 'ftplib'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Networking :: Firewalls',
],
)