File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616"""
1717
18- __version__ = "0.5.0 "
18+ __version__ = "0.5.1 "
1919__author__ = "Will McGugan (will@willmcgugan.com)"
2020
2121# provide these by default so people can use 'fs.path.basename' etc.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3- #from distribute_setup import use_setuptools
4- #use_setuptools()
5-
63from setuptools import setup
74import sys
85PY3 = sys .version_info >= (3 ,)
96
10- VERSION = "0.5.1-dev "
7+ VERSION = "0.5.1"
118
129COMMANDS = ['fscat' ,
13- 'fscp' ,
1410 'fsinfo' ,
1511 'fsls' ,
1612 'fsmv' ,
2218 'fsmount' ]
2319
2420
21+ CONSOLE_SCRIPTS = ['{0} = fs.commands.{0}:run' .format (command )
22+ for command in COMMANDS ]
23+
2524classifiers = [
2625 "Development Status :: 5 - Production/Stable" ,
2726 'Intended Audience :: Developers' ,
5049 license = "BSD" ,
5150 author = "Will McGugan" ,
5251 author_email = "will@willmcgugan.com" ,
53- #url="http://code.google.com/p/pyfilesystem/",
54- #download_url="http://code.google.com/p/pyfilesystem/downloads/list",
5552 url = "http://pypi.python.org/pypi/fs/" ,
5653 platforms = ['any' ],
5754 packages = ['fs' ,
6865 'fs.contrib.tahoelafs' ,
6966 'fs.commands' ],
7067 package_data = {'fs' : ['tests/data/*.txt' ]},
71- scripts = [ 'fs/commands/%s' % command for command in COMMANDS ] ,
68+ entry_points = { "console_scripts" : CONSOLE_SCRIPTS } ,
7269 classifiers = classifiers ,
7370 ** extra
7471 )
You can’t perform that action at this time.
0 commit comments