-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 941 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
from setuptools import setup
setup(
name='mft',
version='0.0.8',
description="A package to facilitate sharing files via SolarWinds Managed File Transfer.",
url='https://github.com/GitPushPullLegs/mft',
author='Joe Aguilar',
author_email='[email protected]',
license='GNU General Public License',
packages=['mft'],
install_requires=['requests>=2.25.1',
'urllib3>=1.26.3',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)