forked from Zimbra/Mezeo-Vendor-Storage-Module-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 773 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python2.6
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='company_vendormodules',
version='1.0',
description='Vendor Storage Modules for company',
long_description='Vendor Storage Modules for company',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
author='company',
author_email='[email protected]',
url='http://www.example.com',
packages=find_packages(exclude=['modules', 'simple', 'tests', 'tests.*']),
license='License :: Other/Proprietary License',
test_suite="nose.collector",
)