-
Notifications
You must be signed in to change notification settings - Fork 121
/
setup.py
54 lines (50 loc) · 1.64 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright: (c) 2019, Jordan Borean (@jborean93) <jborean93@gmail.com>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
from setuptools import setup
# PyPi supports only reStructuredText, so pandoc should be installed
# before uploading package
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except ImportError:
long_description = ''
setup(
name='smbprotocol',
version='1.0.2.dev0',
packages=['smbclient', 'smbprotocol'],
install_requires=[
'cryptography>=2.0',
'ntlm-auth>=1.2.0',
'pyasn1',
'six',
],
extras_require={
'kerberos:sys_platform=="win32"': [
'pywin32',
],
'kerberos:sys_platform!="win32"': [
'gssapi>=1.4.1',
],
},
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
author='Jordan Borean',
author_email='jborean93@gmail.com',
url='https://github.com/jborean93/smbprotocol',
description='Interact with a server using the SMB 2/3 Protocol',
long_description=long_description,
keywords='smb smb2 smb3 cifs python',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)