-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.json
64 lines (64 loc) · 1.53 KB
/
setup.json
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
62
63
64
{
"name": "sibilant",
"version": "0.9.0",
"description": "Lisp dialect for Python",
"author": "Christopher O'Brien",
"author_email": "obriencj@gmail.com",
"url": "https://github.com/obriencj/python-sibilant",
"license": "GNU Lesser General Public License v3 (LGPLv3)",
"tests_require": [
"asynctest"
],
"packages": [
"sibilant",
"sibilant.compiler",
"sibilant.compiler.targets",
"sibilant.lib",
"sibilant.pseudops",
"sibilant.pseudops.targets",
"sibilant.site"
],
"package_data": {
"sibilant": [
"*.lspy"
],
"sibilant.site": [
"*.lspy"
]
},
"ext_modules": [
{
"name": "sibilant.lib._types",
"sources": [
"sibilant/lib/_types.c",
"sibilant/lib/atom.c",
"sibilant/lib/pair.c",
"sibilant/lib/tco.c",
"sibilant/lib/values.c"
],
"extra_compile_args": [
"--std=c99",
"-g",
"-Wall",
"-Werror"
]
}
],
"test_suite": "tests",
"entry_points": {
"console_scripts": [
"sibilant=sibilant.cli:main"
]
},
"zip_safe": false,
"classifiers": [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development"
]
}