- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
14 lines (13 loc) · 370 Bytes
/
Copy pathsetup.py
File metadata and controls
14 lines (13 loc) · 370 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fromsetuptoolsimportsetup
setup(
name="ftpython",
version="0.0.1",
install_requires=[],
packages=['ftpython'],
maintainer="Ryan Lanese",
maintainer_email="ryanlanese@gmail.com",
description="A simple ftp client for the command line",
license="MIT",
url='https://github.com/ryanml/ftpython',
keywords="ftp client python cli"
)