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
|
<%= header 'python.hdr' %>
""" Distutils script """
#----------------------------------------------------------------------------
from distutils.core import setup
#----------------------------------------------------------------------------
setup (
name='DistName',
version='1.0',
description='package description',
long_description='package long description',
author='<%= @username %>',
author_email='<%= @email %>',
maintainer='<%= @username %>',
maintainer_email='<%= @email %>',
url='<%= @webiste %>',
download_url='<%= @website %>',
package_dir = { '':'lib' },
packages = [ 'pack1', 'pack2', 'pack2.sub' ],
classifiers= [
'Programming Language :: Python'
]
)
|