1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
from setuptools import setup, find_packages
version = '2.1.5'
setup(
name='textile',
version=version,
description='Textile processing for python.',
author='Chris Drackett',
author_email='chris@chrisdrackett.com',
url='http://github.com/chrisdrackett/python-textile',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='textile,text',
test_suite = 'nose.collector',
tests_require = ['nose'],
include_package_data=True,
zip_safe=False,
)
|