Skip to content

Commit

Permalink
chore(petisco-dev): add installable app module to be able to use peti…
Browse files Browse the repository at this point in the history
…sco-dev
  • Loading branch information
acostapazo committed May 26, 2023
1 parent ebde40c commit 4c9a2e6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions lume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ install:
run:
- pip install -U -r requirements/dev-requirements.txt -r requirements/requirements.txt
- pre-commit install --hook-type commit-msg
- pip install -e .

uninstall:
run:
Expand Down
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import os

from setuptools import find_packages, setup

CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
PACKAGE_NAME = "app"

# The text of the README file
with open(os.path.join(CURRENT_DIR, "README.md")) as fid:
README = fid.read()

setup(
name=PACKAGE_NAME,
description="Application",
long_description=README,
long_description_content_type="text/markdown",
keywords=["Application"],
url="https://github.com/alice-biometrics/",
author="Alice Biometrics",
author_email="support@alicebiometrics.com",
license="MIT",
install_requires=[],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)

0 comments on commit 4c9a2e6

Please sign in to comment.