37 lines
1.1 KiB
Python
Executable file
37 lines
1.1 KiB
Python
Executable file
from distutils.core 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='wget',
|
|
version=get_version('wget.py'),
|
|
author='anatoly techtonik <techtonik@gmail.com>',
|
|
url='http://bitbucket.org/techtonik/python-wget/',
|
|
|
|
description="pure python download utility",
|
|
license="Public Domain",
|
|
classifiers=[
|
|
'Environment :: Console',
|
|
'License :: Public Domain',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
'Topic :: System :: Networking',
|
|
'Topic :: Utilities',
|
|
],
|
|
|
|
py_modules=['wget'],
|
|
|
|
long_description=open('README.txt').read(),
|
|
)
|