-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.05 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.05 KB
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
27
28
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='ftpscout',
version=0.01,
author='RubenRocha',
author_email='rubenadsr96@gmail.com',
url='https://github.com/RubenRocha/ftpscout',
license=open(join(dirname(__file__), 'LICENSE')).read(),
packages=find_packages(),
py_modules=['ftpscout', 'cidr_scout', 'server'],
install_requires=["colorama", "pika", "netaddr"],
description='A multi-threaded ftp anonymous access scanner',
long_description=open(join(dirname(__file__), 'README.md')).read(),
classifiers=[
'Programming Language :: Python :: 3.4',
'License :: GPLv3',
'Environment :: Console',
'Topic :: Security',
'Topic :: Utilities',
'Development Status :: 5 - Production/Stable',
],
entry_points={
'console_scripts':
['ftpscout = ftpscout:main', 'scout_cidr = cidr_scout:main', 'ftpscout_send = server:main']
}
)