forked from doganulus/reelay-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (40 loc) · 1.55 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
import os
import sys
from setuptools import setup
if __name__ == "__main__":
setup ( name = 'reelay',
version='0.1.0',
author='Dogan Ulus',
author_email='[email protected]',
url='http://github.com/doganulus/reelay/',
packages=[
"reelay",
"reelay.parser",
"reelay.target",
"reelay.machine",
"reelay.formal"
],
scripts=['scripts/reelay'],
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 = 'Reelay is a code generator from high-level patterns for monitoring, inspecting, and analyzing temporal data.',
# url='http://pypi.python.org/pypi/reelay/',
python_requires='>=3',
install_requires=[
'antlr4-python3-runtime', 'pyyaml'
],
include_package_data=True,
package_data={
'': ['cpp/*.h'],
'': ['cpp/*.hpp']
},
eager_resources = ['cpp/common.hpp', 'cpp/discrete_time.hpp', 'cpp/dense_time.hpp']
)