Skip to content

Commit 2a7fbe4

Browse files
committed
manually merge in changes from py32 branch.
1 parent f0da581 commit 2a7fbe4

4 files changed

Lines changed: 26 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ eggs
1515
parts
1616
develop-eggs
1717
.DS_Store
18+
*.swp
19+
*.tox

CONTRIBUTORS.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
Mark Pilgrim
1+
Dennis Burke
22
Roberto A. F. De Almeida
3+
Matt Layman
4+
Mark Pilgrim
35
Alex Shiels
46
Jason Samsa
57
Kurt Raschke

setup.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
from setuptools import setup, find_packages
2+
import sys
23

3-
version = __import__('textile').__version__
4+
from textile import __version__
5+
6+
install_requires = []
7+
8+
if 'develop' in sys.argv:
9+
install_requires.extend([
10+
'tox',
11+
])
412

513
setup(
614
name='textile',
7-
version=version,
15+
version=__version__,
816
description='Textile processing for python.',
9-
author='Chris Drackett',
10-
author_email='chris@chrisdrackett.com',
11-
url='http://github.com/chrisdrackett/python-textile',
17+
url='http://github.com/ikirudennis/python-textile',
1218
packages=find_packages(),
1319
classifiers=[
14-
'Development Status :: 3 - Alpha',
20+
'Development Status :: 5 - Production/Stable',
1521
'Environment :: Web Environment',
1622
'Intended Audience :: Developers',
1723
'License :: OSI Approved :: BSD License',
@@ -20,8 +26,10 @@
2026
'Topic :: Software Development :: Libraries :: Python Modules',
2127
],
2228
keywords='textile,text',
29+
install_requires=install_requires,
2330
test_suite='nose.collector',
2431
tests_require=['nose'],
2532
include_package_data=True,
2633
zip_safe=False,
2734
)
35+

tox.ini

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[tox]
2+
envlist = py27, py32, py34
3+
4+
[testenv]
5+
deps = nose
6+
coverage
7+
commands = nosetests

0 commit comments

Comments
 (0)