-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
45 lines (41 loc) · 1.29 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
# Copyright Jay Conrod. All rights reserved.
#
# This file is part of Gypsum. Use of this source code is governed by
# the GPL license that can be found in the LICENSE.txt file.
# This script builds an installable source distribution for the Gypsum
# compiler. Don't run this directly. Instead, run:
# bazel build //:gypsum
from setuptools import setup, find_packages
setup(
name="gypsum",
version="0",
description="Gypsum compiler",
long_description="Compiler for the Gypsum programming language",
url="https://github.com/jayconrod/gypsum",
author="Jay Conrod",
author_email="jayconrod@gmail.com",
license="GPLv3",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Compilers",
],
keywords="gypsum compiler",
packages=find_packages(),
package_data={
"gypsum": [
"builtins.yaml",
"flags.yaml",
"opcodes.yaml",
],
},
entry_points={
"console_scripts": [
"gypsumc=gypsum:main",
],
},
)