-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (28 loc) · 1.15 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
import setuptools
from distutils.core import setup
from distutils import util
if __name__ == "__main__":
setup ( name = 'python-monitors',
version='0.1.1',
author='Dogan Ulus',
author_email='doganulus@gmail.com',
url='http://github.com/doganulus/python-monitors/',
packages=setuptools.find_packages(),
license='GPLv3+',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
description = 'A pure Python package to monitor formal specifications over temporal sequences',
python_requires='>=3',
install_requires=[
'python-intervals',
'antlr4-python3-runtime'
],
include_package_data=True,
)