-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1.02 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
import os
from setuptools import setup
import versioneer
desc = ("A small Scheme implementation, whose aim is to provide enough "
"functionality to be used to run examples and work problems in SICP")
homeurl = "https://github.com/eigenhombre/smallscheme"
setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
name="smallscheme",
author="John Jacobsen",
author_email="[email protected]",
python_requires=">=3.5",
description=desc,
long_description=(desc +
". See " + homeurl +
" for more information."),
license="MIT",
keywords="lisp sicp scheme",
url=homeurl,
packages=['smallscheme'],
entry_points={
'console_scripts': [
'smallscheme = smallscheme.main:main',
],
},
install_requires=[
'lark == 1.1.2',
'prompt_toolkit == 3.0.30',
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
],
)