forked from pyta-uoft/pyta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 935 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
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
def readme():
try:
import pypandoc
except ImportError:
return ''
return pypandoc.convert('README.md', 'rst')
setup(
name='python-ta',
version='1.3.0',
description='Code checking tool for teaching Python',
long_description=readme(),
url='http://github.com/pyta-uoft/pyta',
author='David Liu',
author_email='[email protected]',
license='MIT',
packages=['python_ta', 'python_ta.reporters', 'python_ta.checkers',
'python_ta.docstring', 'python_ta.patches', 'python_ta.parser',
'python_ta.transforms', 'python_ta.typecheck'],
install_requires=[
'astroid>=1.6',
'funcparserlib',
'hypothesis',
'pycodestyle',
'pylint>=1.8',
'nose',
'colorama',
'six',
'jinja2',
'pygments'
],
include_package_data=True,
zip_safe=False)