-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
24 lines (23 loc) · 1.12 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
#!/usr/bin/env python
from distutils.core import setup
from pyntch import __version__
setup(name='pyntch',
version=__version__,
description='Static code analyzer for Python',
license='MIT/X',
author='Yusuke Shinyama',
author_email='yusuke at cs dot nyu dot edu',
url='http://www.unixuser.org/~euske/python/pyntch/index.html',
long_description='''Pyntch is a static code analyzer for Python. It detects possible runtime
errors before actually running a code. Pyntch examines a source
code statically and infers all possible types of variables,
attributes, function arguments, and return values of each function
or method. Then it detects possible errors caused by type
mismatch, attribute not found, or other types of exceptions raised
from each function. Unlike other Python code checkers (such as
Pychecker or Pyflakes), Pyntch does not address style issues.''',
packages=['pyntch'],
package_data={ 'pyntch': ['stub/*.pyi'] },
scripts=['tools/tchecker.py', 'tools/makestub.py', 'tools/annot.py'],
keywords=['static code analysis', 'type checking', 'type inference'],
)