-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathsetup.py
82 lines (70 loc) · 2.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------------------------------------------------
# INFO:
#-----------------------------------------------------------------------------------------------------------------------
"""
Author: Evan Hubinger
License: Apache 2.0
Description: Installer for the Coconut Programming Language.
"""
#-----------------------------------------------------------------------------------------------------------------------
# IMPORTS:
#-----------------------------------------------------------------------------------------------------------------------
from __future__ import print_function, absolute_import, unicode_literals, division
import sys
import os.path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from coconut.root import * # NOQA
import setuptools
from coconut.constants import classifiers, search_terms, script_names
from coconut.requirements import requirements, extras
#-----------------------------------------------------------------------------------------------------------------------
# README:
#-----------------------------------------------------------------------------------------------------------------------
with open("README.rst", "r") as readme_file:
readme_lines = []
in_toc = False
for line in readme_file.readlines():
if line.startswith(".. toctree::"):
in_toc = True
elif in_toc and 0 < len(line.lstrip()) == len(line):
in_toc = False
if not in_toc:
readme_lines.append(line)
readme = "".join(readme_lines)
#-----------------------------------------------------------------------------------------------------------------------
# MAIN:
#-----------------------------------------------------------------------------------------------------------------------
setuptools.setup(
name="coconut" + ("-develop" if DEVELOP else ""),
version=VERSION,
description="Simple, elegant, Pythonic functional programming.",
long_description=readme,
url="http://coconut-lang.org",
author="Evan Hubinger",
author_email="[email protected]",
install_requires=requirements,
extras_require=extras,
packages=setuptools.find_packages(exclude=[
"docs",
"tests",
]),
include_package_data=True,
entry_points={
"console_scripts": [
script + " = coconut.main:main"
for script in script_names
] + [
script + "-run = coconut.main:main_run"
for script in script_names
],
"pygments.lexers": [
"coconut = coconut.highlighter:CoconutLexer",
"coconut_python = coconut.highlighter:CoconutPythonLexer",
"coconut_pycon = coconut.highlighter:CoconutPythonConsoleLexer",
]
},
classifiers=classifiers,
keywords=search_terms,
)