forked from pyta-uoft/pyta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1 KB
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
40
41
42
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.2',
description='Code checking tool for teaching Python',
long_description=readme(),
url='http://github.com/pyta-uoft/pyta',
author='David Liu',
author_email='david@cs.toronto.edu',
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,<=1.6.5',
'funcparserlib',
'hypothesis',
'pycodestyle',
'pylint>=1.8,<=1.9',
'nose',
'colorama',
'six',
'jinja2',
'pygments'
],
extras_require={
'dev': [
'graphviz'
]
},
include_package_data=True,
zip_safe=False)