|
a |
|
b/AlluraTesting/setup.py |
|
|
1 |
from setuptools import setup, find_packages
|
|
|
2 |
import sys, os
|
|
|
3 |
|
|
|
4 |
setup(name='AlluraTesting',
|
|
|
5 |
version='0.1',
|
|
|
6 |
description="Allura testing support",
|
|
|
7 |
long_description="""\
|
|
|
8 |
""",
|
|
|
9 |
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
10 |
keywords='',
|
|
|
11 |
author='',
|
|
|
12 |
author_email='',
|
|
|
13 |
url='',
|
|
|
14 |
license='',
|
|
|
15 |
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
|
16 |
include_package_data=True,
|
|
|
17 |
zip_safe=False,
|
|
|
18 |
install_requires=[
|
|
|
19 |
# -*- Extra requirements: -*-
|
|
|
20 |
]
|
|
|
21 |
)
|