source: waeup/trunk/setup.py @ 3519

Last change on this file since 3519 was 3518, checked in by uli, 17 years ago

Add a setup.py

File size: 780 bytes
Line 
1from setuptools import setup, find_packages
2
3version = '0.0'
4
5setup(name='waeup',
6      version=version,
7      description="",
8      long_description="""\
9""",
10      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
11      classifiers=[],
12      keywords="",
13      author="",
14      author_email="",
15      url="",
16      license="",
17      package_dir={'': 'src'},
18      packages=find_packages('src'),
19      include_package_data=True,
20      zip_safe=False,
21      install_requires=['setuptools',
22                        'grok',
23                        'hurry.query',
24                        'hurry.workflow',
25                        # Add extra requirements here
26                        ],
27      entry_points="""
28      # Add entry points here
29      """,
30      )
Note: See TracBrowser for help on using the repository browser.