-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 677 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 677 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
28
29
#!/usr/bin/env python3
"""Setup script for TechLang."""
from setuptools import setup, find_packages
setup(
name="techlang",
version="1.0.0",
description="A hacker-themed, stack-based programming language",
author="TechLang Team",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=[
"requests",
"Pillow",
],
extras_require={
"dev": ["pytest"],
"gui": ["customtkinter"],
"web": ["flask"],
},
py_modules=["cli", "tlpm"],
entry_points={
"console_scripts": [
"tl=cli:main",
"tlpm=tlpm:main",
],
},
)