smileyface/setup.py

26 lines
730 B
Python
Raw Normal View History

#!/usr/bin/env python
2024-08-02 05:51:33 -06:00
from setuptools import find_packages, setup
2024-08-02 05:51:33 -06:00
__project__ = "SmileyFace UT4 Hub Automator"
__version__ = "0.1.0"
app_skellington_requirements = (
2024-08-02 05:51:33 -06:00
"appdirs",
"colorlog",
"configobj",
)
setup(
2024-08-02 05:51:33 -06:00
name=__project__,
version=__version__,
description="Unreal Tournament 4 Server Admin and Control Panel",
author="Mathew Guest",
author_email="t3h.zavage@gmail.com",
url="https://git-mirror.zavage-software.com",
# Third-party dependencies; will be automatically installed
2024-08-02 05:51:33 -06:00
install_requires=("rdiff-backup", "app_skellington", "appdirs", "sqlparse") + app_skellington_requirements,
packages=find_packages(),
package_dir={"app_skellington": "lib/app_skellington"},
)