mirror of
https://github.com/nelsbrock/NateMan.git
synced 2026-08-14 21:36:49 +02:00
Initialisierung: Übertragung aus altem Repository
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
"""
|
||||
Setupskript.
|
||||
von Niklas Elsbrock
|
||||
"""
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name="NateMan",
|
||||
version="1.2.0",
|
||||
author="Niklas Elsbrock, Johannes Bingel",
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
python_requires="~=3.6",
|
||||
install_requires=[
|
||||
"Flask",
|
||||
"Flask-SQLAlchemy>=2.0.0",
|
||||
"Click",
|
||||
"PyYAML",
|
||||
"bcrypt",
|
||||
"openpyxl"
|
||||
],
|
||||
entry_points={"console_scripts": ["nateman = nateman.commands:cli"]}
|
||||
)
|
||||
Reference in New Issue
Block a user