-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (34 loc) · 1.12 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
# -*- coding: utf-8 -*-
from setuptools import setup
def get_version(relpath):
"""read version info from file without importing it"""
from os.path import dirname, join
for line in open(join(dirname(__file__), relpath)):
if '__version__' in line:
if '"' in line:
# __version__ = "0.9"
return line.split('"')[1]
elif "'" in line:
return line.split("'")[1]
setup(
name = 'pyftp',
version = get_version('pyftp.py'),
author = 'Azlan',
author_email = '[email protected]',
py_modules = ['pyftp'],
url = 'http://github.com/adyzng/pyftp/',
keywords = 'pyftp, python ftp',
description = 'High level ftp client wrapper based on python ftplib',
platforms = 'any',
license='BSD',
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Utilities',
],
)