-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
25 lines (24 loc) · 831 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
23
24
25
from setuptools import setup, find_packages
setup(
name='python-textile',
version='2.1.5',
description='Make type not look like crap (for django apps)',
author='Mark Pilgrim, Roberto A. F. De Almeida, Alex Shiels, Jason Samsa, Chris Drackett, Kurt Raschke',
author_email='kurt@kurtraschke.com',
url='http://github.com/kurtraschke/python-textile',
packages = [
"textile",
"textile.tests",
],
classifiers=[
'Development Status :: 1',
'Environment :: Web Environment',
'Intended Audience :: Developers :: Designers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
test_suite = 'nose.collector',
tests_require = ['nose']
)