Blob Blame History Raw
diff -purN diff_cover-0.2.9.orig/setup3.py diff_cover-0.2.9/setup3.py
--- diff_cover-0.2.9.orig/setup3.py	1969-12-31 19:00:00.000000000 -0500
+++ diff_cover-0.2.9/setup3.py	2014-03-21 11:20:58.228016126 -0400
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+from diff_cover import VERSION, DESCRIPTION
+
+REQUIREMENTS = [line.strip() for line in
+                open("requirements.txt").readlines()]
+
+setup(
+    name='diff_cover',
+    version=VERSION,
+    author='edX',
+    url='http://github.com/edx/diff-cover',
+    description=DESCRIPTION,
+    license='AGPL',
+    classifiers=['Development Status :: 3 - Alpha',
+                 'Environment :: Console',
+                 'Intended Audience :: Developers',
+                 'License :: OSI Approved :: GNU Affero General Public License v3',
+                 'Operating System :: OS Independent',
+                 'Programming Language :: Python',
+                 'Topic :: Software Development :: Testing',
+                 'Topic :: Software Development :: Quality Assurance'],
+    packages=['diff_cover'],
+    package_data={'diff_cover': ['templates/*.txt', 'templates/*.html']},
+    install_requires=REQUIREMENTS
+)