-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
55 lines (52 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
"""
Copyright (c) 2023 ETH Zurich
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""
from setuptools import setup, find_packages
setup(
name='nagini',
version='1.1.1',
author='Viper Team',
author_email='[email protected]',
license='MPL-2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={
'': ['*.sil', '*.json', '*.typed'],
'nagini_translation.resources': ['backends/*.jar']
},
requires=[
'distribute',
],
install_requires=[
'mypy==0.782',
'toposort==1.5',
'jpype1==1.2.1',
'astunparse==1.6.2',
'pytest==4.3.0',
'pytest-xdist==1.27.0',
'z3-solver==4.8.7.0'
],
entry_points={
'console_scripts': [
'nagini = nagini_translation.main:main',
'nagini_client = nagini_translation.client:main',
]
},
url='http://www.pm.inf.ethz.ch/research/nagini.html',
description='Static verifier for Python 3, based on Viper.',
long_description=(open('README.rst').read()),
# Full list of classifiers could be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development',
],
)