-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from gilch/setup
Add setup.py
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"]}, | ||
) |