trytontasks-modules/setup.py
2015-12-14 15:29:08 +01:00

41 lines
1.3 KiB
Python

#!/usr/bin/env python
#This file is part of trytontasks_modules. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
from setuptools import setup, find_packages
import os
execfile(os.path.join('trytontasks_modules', 'version.py'))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name=PACKAGE,
version=VERSION,
description='Tryton Tasks Modules',
long_description=read('README'),
author=AUTHOR,
url=WEBSITE,
download_url="https://bitbucket.org/trytonspain/trytontasks-modules",
packages=find_packages(),
package_data={},
scripts=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
],
license=LICENSE,
install_requires=[
'invoke>=0.11.1',
],
extras_require={},
zip_safe=False,
#~ test_suite='trytontasks_modules.tests',
)