forked from pyta-uoft/pyta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.23 KB
/
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
38
39
40
41
42
43
44
45
46
from setuptools import setup
with open('README.md') as fh:
long_description = fh.read()
setup(
name='python-ta',
version='1.6.0',
description='Code checking tool for teaching Python',
long_description=long_description,
long_description_content_type='text/markdown',
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.cfg', 'python_ta.contracts',
'python_ta.docstring', 'python_ta.patches', 'python_ta.parser',
'python_ta.transforms', 'python_ta.typecheck', 'python_ta.util'],
install_requires=[
'astroid>=2.4,<2.5',
'funcparserlib',
'hypothesis',
'pycodestyle',
'pylint>=2.5,<2.6',
'colorama',
'six',
'jinja2',
'pygments',
'wrapt>=1.12.0',
'typeguard>=2.7.1',
'requests'
],
extras_require={
'dev': [
'coveralls',
'graphviz',
'inflection',
'pytest',
'pytest-cov'
]
},
python_requires='~=3.8',
include_package_data=True,
zip_safe=False)