Skip to content

Commit

Permalink
Merge pull request #12 from gilch/setup
Browse files Browse the repository at this point in the history
Add setup.py
  • Loading branch information
gilch authored Jun 17, 2019
2 parents 0b43d60 + 43cd4d6 commit eab6ce8
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/usr/bin/env python3
import setuptools

with open("README.md") as f:
long_description = f.read()

setuptools.setup(
name="hissp",
version="0.1.0",
description="It's Python with a Lissp.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Matthew Egan Odendahl",
author_email="[email protected]",
license="Apache-2.0",
url="https://github.com/gilch/hissp",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries",
],
keywords="lisp macro metaprogramming compiler DSL AST transpiler emacs clojure scheme",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.7",
entry_points={"console_scripts": ["hissp=hissp.__main__:repl"]},
)

0 comments on commit eab6ce8

Please sign in to comment.