-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 925 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="mazegroup",
version="0.1.4.3.1",
description="MazeGroup.py is an general prupose library for Python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Genius_um",
python_requires=">=3.9",
url="https://github.com/Geniusum/mazegroup.py",
packages=find_packages(),#["mazegroup", "mazegroup/cli", "mazegroup/echo", "mazegroup/saves"], # find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'mg = mazegroup.cli:main',
'mazegroup = mazegroup.cli:main'
]
},
install_requires=[
"cryptography",
"colorama",
"keyboard",
"requests"
]
)