-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.cfg
61 lines (56 loc) · 1.58 KB
/
setup.cfg
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
56
57
58
59
60
61
[metadata]
name = exo-lang
version = attr: exo.__version__
description = Exo: Exocompiled Array Language
long_description = file: README.md
long_description_content_type = text/markdown
home_page = https://exo-lang.dev/
;author = VCLS (Visual Computing Languages & Systems)
;author_email = TBD
maintainer = Yuka Ikarashi
maintainer_email = [email protected]
license = MIT License
keywords = exo, exocompilation, array, dsl, language, performance
python_required =
>=3.9, <4
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Processing
Topic :: Software Development
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Compilers
include_package_data = True
[options]
packages = find:
package_dir =
=src
install_requires =
PySMT>=0.9.5
asdl-adt>=0.1,<0.2
asdl>=0.1.5
build>=1.2.1
z3-solver>=4.13.0.0
yapf>=0.40.2
[options.packages.find]
where = src
[options.package_data]
exo.libs =
*.c
*.h
[options.entry_points]
console_scripts =
exocc = exo.main:main
[options.data_files]
share/exo/cmake =
src/exo/cmake/*.cmake