You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
509 B
19 lines
509 B
import setuptools
|
|
from monsun_backend import __author__
|
|
from monsun_backend import __email__
|
|
from monsun_backend import __version__
|
|
|
|
setuptools.setup(
|
|
name="monsun-backend",
|
|
version=__version__,
|
|
author=__author__,
|
|
author_email=__email__,
|
|
description="Monsun backend",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.7",
|
|
include_package_data=True,
|
|
)
|
|
|