-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 734 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 734 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
from setuptools import setup, find_packages
setup(
name="mod-translator",
version="1.0.0",
description="Minecraft Mod Translator - A tool for translating Minecraft mod files between languages.",
package_dir={'': 'src'},
packages=find_packages(where='src'),
entry_points={
'console_scripts': [
'mod-translator=app.commands.command_line:main',
'mod-translator-app=app.commands.app:main',
],
},
install_requires=[
"deep-translator>=1.9.0",
"rich>=12.0.0",
"questionary>=1.10.0",
"pyfiglet>=0.8.post1",
],
extras_require={
'ai': [
'openai>=1.0.0',
'python-dotenv>=0.19.0',
],
},
)