-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 900 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
31
32
33
34
from setuptools import setup, find_packages
from configwebui import (
__version__,
__author__,
__email__,
__license__,
__url__,
__description__,
__dependencies__,
)
PACKAGE_NAME = "configwebui-lucien"
setup(
name=PACKAGE_NAME,
version=__version__,
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
description=__description__,
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
install_requires=__dependencies__,
)