-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrecord.py
More file actions
28 lines (26 loc) · 726 Bytes
/
record.py
File metadata and controls
28 lines (26 loc) · 726 Bytes
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
project_info = {
"name": "yeep interpreted language",
"description": "A project for building a programming language",
"author": "Yipmong Said",
"version": "1.0.0",
"license": " ",
"url": " ",
"keywords": ["programming", "language", "compiler", "interpreter", "yeep"],
"classifiers": [
"Development Status :: Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Interpreter",
"License :: Null :: MIT License",
"Programming Language :: Python :: 3.9"
],
"install_requires": [
"colorama"
],
"packages": [
"yeep"
],
"scripts": [
"bin/yeep"
],
"python_requires": ">=3.9"
}