root/galaxy-central/eggs/PasteScript-1.7.3-py2.6.egg/paste/script/paster-templates/basic_package/setup.py_tmpl @ 3

リビジョン 3, 0.8 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1from setuptools import setup, find_packages
2import sys, os
3
4version = {{repr(version or "0.0")}}
5
6setup(name={{repr(project)}},
7      version=version,
8      description="{{description or ''}}",
9      long_description="""\
10{{long_description or ''}}""",
11      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      keywords={{repr(keywords or '')}},
13      author={{repr(author or '')}},
14      author_email={{repr(author_email or '')}},
15      url={{repr(url or '')}},
16      license={{repr(license_name or '')}},
17      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
18      include_package_data=True,
19      zip_safe={{repr(bool(zip_safe or False))}},
20      install_requires=[
21          # -*- Extra requirements: -*-
22      ],
23      entry_points="""
24      # -*- Entry points: -*-
25      """,
26      )
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。