forked from codebynumbers/ftpretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.31 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
#!/usr/bin/env python3
from setuptools import setup
__version__ = '0.2.8'
def read(paths):
with open(paths, 'r') as f:
return f.read()
setup(
name='ftpretty',
version=__version__,
packages=['ftpretty', ],
author='bornwitbugs',
author_email='[email protected]',
description='Pretty FTP Wrapper',
download_url='https://pypi.python.org/pypi/ftpretty',
license='BSD',
long_description=(
read('README.rst') + '\n\n' +
read('HISTORY.rst') + '\n\n' +
read('AUTHORS.rst')
),
keywords='ftp ftps file transfer protocal',
platforms=['any'],
test_suite = 'tests.test_ftpretty.suite',
url='https://github.com/bornwitbugs/ftpretty',
classifiers=[
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
],
)