source: products/quintagroup.zopeskel.blayer/trunk/setup.py @ 1511

Last change on this file since 1511 was 1511, checked in by mylan, 14 years ago

Fix url of the package in the setup.py

  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1'
5
6setup(name='quintagroup.zopeskel.blayer',
7      version=version,
8      description="Browser Layout subtemplate for Archetype template",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Programming Language :: Python",
14        ],
15      keywords='ZopeSkel archetype subtemplate',
16      author='Quintagroup',
17      author_email='mylan at quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.zopeskel.blayer',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup', 'quintagroup.zopeskel'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'setuptools',
26          # -*- Extra requirements: -*-
27      ],
28      entry_points="""
29      # -*- Entry points: -*-
30      """,
31      )
Note: See TracBrowser for help on using the repository browser.