-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 809 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 809 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
25
26
27
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='smbcmp',
version='0.1',
author='Aurelien Aptel',
author_email='aurelien.aptel@gmail.com',
description='Diff and compare SMB network captures',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/smbcmp/smbcmp/",
packages=find_packages(),
install_requires=['curses'],
scripts=[
'scripts/smbcmp',
'scripts/smbcmp-gui',
],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: System :: Networking',
'Environment :: Console :: Curses',
]
)