-
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
69 additions
and
2 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
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
[bdist_wheel] | ||
universal=1 |
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,61 @@ | ||
#!/usr/bin/env python | ||
|
||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
# INFO: | ||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
""" | ||
Author: Evan Hubinger | ||
Date Created: 2014 | ||
Description: Coconut Language Installer. | ||
""" | ||
|
||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
# IMPORTS: | ||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
from __future__ import with_statement, print_function, absolute_import, unicode_literals, division | ||
|
||
from milk.util import * | ||
import setuptools | ||
|
||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
# MAIN: | ||
#------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
setuptools.setup( | ||
name="coconut", | ||
version="0.0.1", | ||
description="Coconut is a modern, developer-friendly scripting language that compiles to Python, built for functional programming.", | ||
long_description=readfile(openfile("README.md", "r")), | ||
url="https://github.com/evhub/coconut", | ||
author="Evan Hubinger", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Code Generators", | ||
"Topic :: Software Development :: Compilers", | ||
"Topic :: Software Development :: Interpreters", | ||
"Topic :: Software Development :: Libraries", | ||
"Environment :: Console", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.0", | ||
"Programming Language :: Python :: 3.1", | ||
"Programming Language :: Python :: 3.2", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
"Topic :: Utilities" | ||
], | ||
keywords=["functional programming language"], | ||
packages=setuptools.find_packages(), | ||
install_requires=["pyparsing"], | ||
extras_requires=["autopep8"], | ||
entry_points={"console_scripts":[ | ||
"coconut = coconut:main" | ||
]} | ||
) |