-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 780 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 780 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="textquestengine",
version="0.1.0",
description="Motore Python professionale per avventure testuali in terminale",
author="Bocaletto Luca",
author_email="",
url="https://github.com/bocaletto-luca/TextQuestEngine",
packages=find_packages(exclude=["tests*", ".github*"]),
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"PyYAML>=5.3.1",
"colorama>=0.4.4"
],
entry_points={
"console_scripts": [
"tqe=engine.utils.cli:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: GPL License"
]
)