-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
40 lines (34 loc) · 1.03 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
import sys
from textile import __version__
install_requires = []
try:
from collections import OrderedDict
except ImportError:
install_requires.extend(['ordereddict>=1.1'])
if 'develop' in sys.argv:
install_requires.extend([
'tox',
])
setup(
name='textile',
version=__version__,
description='Textile processing for python.',
url='http://github.com/ikirudennis/python-textile',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
install_requires=install_requires,
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False,
)