moved back to setup.py because buildroot does not seem to work with pure setup.cfg
This commit is contained in:
parent
d9a078a114
commit
48e076eb16
22
setup.cfg
22
setup.cfg
|
@ -16,28 +16,6 @@ classifiers =
|
||||||
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
|
|
||||||
[options]
|
|
||||||
python_requires = >=3.8
|
|
||||||
install_requires =
|
|
||||||
bleach
|
|
||||||
Flask
|
|
||||||
Flask-Mail
|
|
||||||
Flask-Security-Too
|
|
||||||
Flask-SQLAlchemy
|
|
||||||
Flask-WTF
|
|
||||||
email_validator
|
|
||||||
paho-mqtt
|
|
||||||
ldap3
|
|
||||||
wtforms
|
|
||||||
|
|
||||||
include_package_data = True
|
|
||||||
packages = find:
|
|
||||||
setup_requires =
|
|
||||||
wheel
|
|
||||||
tests_require = pytest>=3
|
|
||||||
zip_safe = False
|
|
||||||
scripts= bin/launch_webadmin
|
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
dev =
|
dev =
|
||||||
pytest
|
pytest
|
||||||
|
|
17
setup.py
17
setup.py
|
@ -1,3 +1,18 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup()
|
setup(install_requires=[
|
||||||
|
"bleach",
|
||||||
|
"Flask",
|
||||||
|
"Flask-Mail",
|
||||||
|
"Flask-Security-Too",
|
||||||
|
"Flask-SQLAlchemy",
|
||||||
|
"Flask-WTF",
|
||||||
|
"email_validator",
|
||||||
|
"paho-mqtt",
|
||||||
|
"ldap3",
|
||||||
|
"wtforms"
|
||||||
|
],
|
||||||
|
include_package_data=True,
|
||||||
|
scripts=['bin/launch_webadmin'],
|
||||||
|
packages=['imaginaerraum_door_admin'],
|
||||||
|
zip_safe=False)
|
Loading…
Reference in New Issue
Block a user