Skip to content

Commit

Permalink
Start prep for PyPI. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenhombre committed Jul 18, 2022
1 parent 611cfd7 commit 8854baf
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Next steps

# License

[MIT](https://github.com/eigenhombre/smallscheme/blob/master/LICENSE)
[MIT](https://github.com/eigenhombre/smallscheme/blob/master/LICENSE.txt)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Expand Down
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import os
from setuptools import setup

setup(
name = "smallscheme",
version = "0.0.1",
author = "John Jacobsen",
author_email = "[email protected]"
description = ("A small implementation of enough Scheme "
"to follow along in SICP"),
license = "MIT",
keywords = "lisp sicp scheme",
url = "https://github.com/eigenhombre/smallscheme",
packages = ['smallscheme'],
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Languages",
"License :: OSI Approved :: MIT License",
],
)

0 comments on commit 8854baf

Please sign in to comment.