-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (24 loc) · 931 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
26
27
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='custom_text_test_runner',
version='0.1.5',
description='Python Custom Text Test Runner',
long_description=read_md('README.md'),
author='Abtin Gramian',
author_email='[email protected]',
url='https://github.com/agramian/custom-text-test-runner',
packages=['custom_text_test_runner'],
install_requires=['table_printer'],
download_url = 'https://github.com/agramian/custom-text-test-runner/tarball/v0.1.5',
keywords = ['unittest', 'custom', 'test', 'runner', 'result', 'json'],
classifiers = [],
)